less copy protection, more size visualization
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

32246 líneas
808 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", "candy"]
  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. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. "ant": {
  1380. name: "Ant",
  1381. parents: ["insect"]
  1382. },
  1383. "frog": {
  1384. name: "Frog",
  1385. parents: ["amphibian"]
  1386. },
  1387. "amphibian": {
  1388. name: "Amphibian",
  1389. parents: ["animal"]
  1390. },
  1391. "pangolin": {
  1392. name: "Pangolin",
  1393. parents: ["mammal"]
  1394. },
  1395. "uragi'viidorn": {
  1396. name: "Uragi'viidorn",
  1397. parents: ["avian", "bear"]
  1398. },
  1399. "gryphdelphais": {
  1400. name: "Gryphdelphais",
  1401. parents: ["dolphin", "gryphon"]
  1402. },
  1403. "plush": {
  1404. name: "Plush",
  1405. parents: ["construct"]
  1406. },
  1407. "draiger": {
  1408. name: "Draiger",
  1409. parents: ["dragon","tiger"]
  1410. },
  1411. "foxsky": {
  1412. name: "Foxsky",
  1413. parents: ["fox", "husky"]
  1414. },
  1415. "umbreon": {
  1416. name: "Umbreon",
  1417. parents: ["eeveelution"]
  1418. },
  1419. "slime-dragon": {
  1420. name: "Slime Dragon",
  1421. parents: ["dragon"]
  1422. },
  1423. "enderman": {
  1424. name: "Enderman",
  1425. parents: ["monster"]
  1426. },
  1427. "gremlin": {
  1428. name: "Gremlin",
  1429. parents: ["monster"]
  1430. },
  1431. "dragonsune": {
  1432. name: "Dragonsune",
  1433. parents: ["dragon", "kitsune"]
  1434. },
  1435. "ghost": {
  1436. name: "Ghost",
  1437. parents: ["monster"]
  1438. },
  1439. "false-vampire-bat": {
  1440. name: "False Vampire Bat",
  1441. parents: ["bat"]
  1442. },
  1443. }
  1444. //species
  1445. function getSpeciesInfo(speciesList) {
  1446. let result = new Set();
  1447. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1448. result.add(entry)
  1449. });
  1450. return Array.from(result);
  1451. };
  1452. function getSpeciesInfoHelper(species) {
  1453. if (!speciesData[species]) {
  1454. console.warn(species + " doesn't exist");
  1455. return [];
  1456. }
  1457. if (speciesData[species].parents) {
  1458. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1459. } else {
  1460. return [species];
  1461. }
  1462. }
  1463. characterMakers.push(() => makeCharacter(
  1464. {
  1465. name: "Fen",
  1466. species: ["crux"],
  1467. description: {
  1468. title: "Bio",
  1469. text: "Very furry. Sheds on everything."
  1470. },
  1471. tags: [
  1472. "anthro",
  1473. "goo"
  1474. ]
  1475. },
  1476. {
  1477. back: {
  1478. height: math.unit(2.2428, "meter"),
  1479. weight: math.unit(124.738, "kg"),
  1480. name: "Back",
  1481. image: {
  1482. source: "./media/characters/fen/back.svg",
  1483. extra: 2024 / 1867,
  1484. bottom: 13 / 2037
  1485. },
  1486. info: {
  1487. description: {
  1488. mode: "append",
  1489. text: "\n\nHe is not currently looking at you."
  1490. }
  1491. }
  1492. },
  1493. full: {
  1494. height: math.unit(1.34, "meter"),
  1495. weight: math.unit(225, "kg"),
  1496. name: "Full",
  1497. image: {
  1498. source: "./media/characters/fen/full.svg"
  1499. },
  1500. info: {
  1501. description: {
  1502. mode: "append",
  1503. text: "\n\nMunch."
  1504. }
  1505. }
  1506. },
  1507. kneeling: {
  1508. height: math.unit(5.4, "feet"),
  1509. weight: math.unit(124.738, "kg"),
  1510. name: "Kneeling",
  1511. image: {
  1512. source: "./media/characters/fen/kneeling.svg",
  1513. extra: 563 / 507
  1514. }
  1515. },
  1516. goo: {
  1517. height: math.unit(2.8, "feet"),
  1518. weight: math.unit(125, "kg"),
  1519. capacity: math.unit(1, "people"),
  1520. name: "Goo",
  1521. image: {
  1522. source: "./media/characters/fen/goo.svg",
  1523. bottom: 116 / 613
  1524. }
  1525. },
  1526. lounging: {
  1527. height: math.unit(6.5, "feet"),
  1528. weight: math.unit(125, "kg"),
  1529. name: "Lounging",
  1530. image: {
  1531. source: "./media/characters/fen/lounging.svg"
  1532. }
  1533. },
  1534. },
  1535. [
  1536. {
  1537. name: "Normal",
  1538. height: math.unit(2.2428, "meter")
  1539. },
  1540. {
  1541. name: "Big",
  1542. height: math.unit(12, "feet")
  1543. },
  1544. {
  1545. name: "Minimacro",
  1546. height: math.unit(40, "feet"),
  1547. default: true,
  1548. info: {
  1549. description: {
  1550. mode: "append",
  1551. text: "\n\nTOO DAMN BIG"
  1552. }
  1553. }
  1554. },
  1555. {
  1556. name: "Macro",
  1557. height: math.unit(100, "feet"),
  1558. info: {
  1559. description: {
  1560. mode: "append",
  1561. text: "\n\nTOO DAMN BIG"
  1562. }
  1563. }
  1564. },
  1565. {
  1566. name: "Macro+",
  1567. height: math.unit(300, "feet")
  1568. },
  1569. {
  1570. name: "Megamacro",
  1571. height: math.unit(2, "miles")
  1572. }
  1573. ]
  1574. ))
  1575. characterMakers.push(() => makeCharacter(
  1576. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1577. {
  1578. front: {
  1579. height: math.unit(183, "cm"),
  1580. weight: math.unit(80, "kg"),
  1581. name: "Front",
  1582. image: {
  1583. source: "./media/characters/sofia-fluttertail/front.svg",
  1584. bottom: 0.01,
  1585. extra: 2154 / 2081
  1586. }
  1587. },
  1588. frontAlt: {
  1589. height: math.unit(183, "cm"),
  1590. weight: math.unit(80, "kg"),
  1591. name: "Front (alt)",
  1592. image: {
  1593. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1594. }
  1595. },
  1596. back: {
  1597. height: math.unit(183, "cm"),
  1598. weight: math.unit(80, "kg"),
  1599. name: "Back",
  1600. image: {
  1601. source: "./media/characters/sofia-fluttertail/back.svg"
  1602. }
  1603. },
  1604. kneeling: {
  1605. height: math.unit(125, "cm"),
  1606. weight: math.unit(80, "kg"),
  1607. name: "Kneeling",
  1608. image: {
  1609. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1610. extra: 1033 / 977,
  1611. bottom: 23.7 / 1057
  1612. }
  1613. },
  1614. maw: {
  1615. height: math.unit(183 / 5, "cm"),
  1616. name: "Maw",
  1617. image: {
  1618. source: "./media/characters/sofia-fluttertail/maw.svg"
  1619. }
  1620. },
  1621. mawcloseup: {
  1622. height: math.unit(183 / 5 * 0.41, "cm"),
  1623. name: "Maw (Closeup)",
  1624. image: {
  1625. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1626. }
  1627. },
  1628. paws: {
  1629. height: math.unit(1.17, "feet"),
  1630. name: "Paws",
  1631. image: {
  1632. source: "./media/characters/sofia-fluttertail/paws.svg",
  1633. extra: 851 / 851,
  1634. bottom: 17 / 868
  1635. }
  1636. },
  1637. },
  1638. [
  1639. {
  1640. name: "Normal",
  1641. height: math.unit(1.83, "meter")
  1642. },
  1643. {
  1644. name: "Size Thief",
  1645. height: math.unit(18, "feet")
  1646. },
  1647. {
  1648. name: "50 Foot Collie",
  1649. height: math.unit(50, "feet")
  1650. },
  1651. {
  1652. name: "Macro",
  1653. height: math.unit(96, "feet"),
  1654. default: true
  1655. },
  1656. {
  1657. name: "Megamerger",
  1658. height: math.unit(650, "feet")
  1659. },
  1660. ]
  1661. ))
  1662. characterMakers.push(() => makeCharacter(
  1663. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1664. {
  1665. front: {
  1666. height: math.unit(7, "feet"),
  1667. weight: math.unit(100, "kg"),
  1668. name: "Front",
  1669. image: {
  1670. source: "./media/characters/march/front.svg",
  1671. extra: 1,
  1672. bottom: 0.015
  1673. }
  1674. },
  1675. foot: {
  1676. height: math.unit(0.9, "feet"),
  1677. name: "Foot",
  1678. image: {
  1679. source: "./media/characters/march/foot.svg"
  1680. }
  1681. },
  1682. },
  1683. [
  1684. {
  1685. name: "Normal",
  1686. height: math.unit(7.9, "feet")
  1687. },
  1688. {
  1689. name: "Macro",
  1690. height: math.unit(220, "meters")
  1691. },
  1692. {
  1693. name: "Megamacro",
  1694. height: math.unit(2.98, "km"),
  1695. default: true
  1696. },
  1697. {
  1698. name: "Gigamacro",
  1699. height: math.unit(15963, "km")
  1700. },
  1701. {
  1702. name: "Teramacro",
  1703. height: math.unit(2980000000, "km")
  1704. },
  1705. {
  1706. name: "Examacro",
  1707. height: math.unit(250, "parsecs")
  1708. },
  1709. ]
  1710. ))
  1711. characterMakers.push(() => makeCharacter(
  1712. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1713. {
  1714. front: {
  1715. height: math.unit(6, "feet"),
  1716. weight: math.unit(60, "kg"),
  1717. name: "Front",
  1718. image: {
  1719. source: "./media/characters/noir/front.svg",
  1720. extra: 1,
  1721. bottom: 0.032
  1722. }
  1723. },
  1724. },
  1725. [
  1726. {
  1727. name: "Normal",
  1728. height: math.unit(6.6, "feet")
  1729. },
  1730. {
  1731. name: "Macro",
  1732. height: math.unit(500, "feet")
  1733. },
  1734. {
  1735. name: "Megamacro",
  1736. height: math.unit(2.5, "km"),
  1737. default: true
  1738. },
  1739. {
  1740. name: "Gigamacro",
  1741. height: math.unit(22500, "km")
  1742. },
  1743. {
  1744. name: "Teramacro",
  1745. height: math.unit(2500000000, "km")
  1746. },
  1747. {
  1748. name: "Examacro",
  1749. height: math.unit(200, "parsecs")
  1750. },
  1751. ]
  1752. ))
  1753. characterMakers.push(() => makeCharacter(
  1754. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1755. {
  1756. front: {
  1757. height: math.unit(7, "feet"),
  1758. weight: math.unit(100, "kg"),
  1759. name: "Front",
  1760. image: {
  1761. source: "./media/characters/okuri/front.svg",
  1762. extra: 1,
  1763. bottom: 0.037
  1764. }
  1765. },
  1766. back: {
  1767. height: math.unit(7, "feet"),
  1768. weight: math.unit(100, "kg"),
  1769. name: "Back",
  1770. image: {
  1771. source: "./media/characters/okuri/back.svg",
  1772. extra: 1,
  1773. bottom: 0.007
  1774. }
  1775. },
  1776. },
  1777. [
  1778. {
  1779. name: "Megamacro",
  1780. height: math.unit(100, "miles"),
  1781. default: true
  1782. },
  1783. ]
  1784. ))
  1785. characterMakers.push(() => makeCharacter(
  1786. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1787. {
  1788. front: {
  1789. height: math.unit(7, "feet"),
  1790. weight: math.unit(100, "kg"),
  1791. name: "Front",
  1792. image: {
  1793. source: "./media/characters/manny/front.svg",
  1794. extra: 1,
  1795. bottom: 0.06
  1796. }
  1797. },
  1798. back: {
  1799. height: math.unit(7, "feet"),
  1800. weight: math.unit(100, "kg"),
  1801. name: "Back",
  1802. image: {
  1803. source: "./media/characters/manny/back.svg",
  1804. extra: 1,
  1805. bottom: 0.014
  1806. }
  1807. },
  1808. },
  1809. [
  1810. {
  1811. name: "Normal",
  1812. height: math.unit(7, "feet"),
  1813. },
  1814. {
  1815. name: "Macro",
  1816. height: math.unit(78, "feet"),
  1817. default: true
  1818. },
  1819. {
  1820. name: "Macro+",
  1821. height: math.unit(300, "meters")
  1822. },
  1823. {
  1824. name: "Macro++",
  1825. height: math.unit(2400, "meters")
  1826. },
  1827. {
  1828. name: "Megamacro",
  1829. height: math.unit(5167, "meters")
  1830. },
  1831. {
  1832. name: "Gigamacro",
  1833. height: math.unit(41769, "miles")
  1834. },
  1835. ]
  1836. ))
  1837. characterMakers.push(() => makeCharacter(
  1838. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1839. {
  1840. front: {
  1841. height: math.unit(7, "feet"),
  1842. weight: math.unit(100, "kg"),
  1843. name: "Front",
  1844. image: {
  1845. source: "./media/characters/adake/front-1.svg"
  1846. }
  1847. },
  1848. frontAlt: {
  1849. height: math.unit(7, "feet"),
  1850. weight: math.unit(100, "kg"),
  1851. name: "Front (Alt)",
  1852. image: {
  1853. source: "./media/characters/adake/front-2.svg",
  1854. extra: 1,
  1855. bottom: 0.01
  1856. }
  1857. },
  1858. back: {
  1859. height: math.unit(7, "feet"),
  1860. weight: math.unit(100, "kg"),
  1861. name: "Back",
  1862. image: {
  1863. source: "./media/characters/adake/back.svg",
  1864. }
  1865. },
  1866. kneel: {
  1867. height: math.unit(5.385, "feet"),
  1868. weight: math.unit(100, "kg"),
  1869. name: "Kneeling",
  1870. image: {
  1871. source: "./media/characters/adake/kneel.svg",
  1872. bottom: 0.052
  1873. }
  1874. },
  1875. },
  1876. [
  1877. {
  1878. name: "Normal",
  1879. height: math.unit(7, "feet"),
  1880. },
  1881. {
  1882. name: "Macro",
  1883. height: math.unit(78, "feet"),
  1884. default: true
  1885. },
  1886. {
  1887. name: "Macro+",
  1888. height: math.unit(300, "meters")
  1889. },
  1890. {
  1891. name: "Macro++",
  1892. height: math.unit(2400, "meters")
  1893. },
  1894. {
  1895. name: "Megamacro",
  1896. height: math.unit(5167, "meters")
  1897. },
  1898. {
  1899. name: "Gigamacro",
  1900. height: math.unit(41769, "miles")
  1901. },
  1902. ]
  1903. ))
  1904. characterMakers.push(() => makeCharacter(
  1905. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1906. {
  1907. front: {
  1908. height: math.unit(1.65, "meters"),
  1909. weight: math.unit(50, "kg"),
  1910. name: "Front",
  1911. image: {
  1912. source: "./media/characters/elijah/front.svg",
  1913. extra: 858 / 830,
  1914. bottom: 95.5 / 953.8559
  1915. }
  1916. },
  1917. back: {
  1918. height: math.unit(1.65, "meters"),
  1919. weight: math.unit(50, "kg"),
  1920. name: "Back",
  1921. image: {
  1922. source: "./media/characters/elijah/back.svg",
  1923. extra: 895 / 850,
  1924. bottom: 5.3 / 897.956
  1925. }
  1926. },
  1927. frontNsfw: {
  1928. height: math.unit(1.65, "meters"),
  1929. weight: math.unit(50, "kg"),
  1930. name: "Front (NSFW)",
  1931. image: {
  1932. source: "./media/characters/elijah/front-nsfw.svg",
  1933. extra: 858 / 830,
  1934. bottom: 95.5 / 953.8559
  1935. }
  1936. },
  1937. backNsfw: {
  1938. height: math.unit(1.65, "meters"),
  1939. weight: math.unit(50, "kg"),
  1940. name: "Back (NSFW)",
  1941. image: {
  1942. source: "./media/characters/elijah/back-nsfw.svg",
  1943. extra: 895 / 850,
  1944. bottom: 5.3 / 897.956
  1945. }
  1946. },
  1947. dick: {
  1948. height: math.unit(1, "feet"),
  1949. name: "Dick",
  1950. image: {
  1951. source: "./media/characters/elijah/dick.svg"
  1952. }
  1953. },
  1954. beakOpen: {
  1955. height: math.unit(1.25, "feet"),
  1956. name: "Beak (Open)",
  1957. image: {
  1958. source: "./media/characters/elijah/beak-open.svg"
  1959. }
  1960. },
  1961. beakShut: {
  1962. height: math.unit(1.25, "feet"),
  1963. name: "Beak (Shut)",
  1964. image: {
  1965. source: "./media/characters/elijah/beak-shut.svg"
  1966. }
  1967. },
  1968. footFlexing: {
  1969. height: math.unit(1.61, "feet"),
  1970. name: "Foot (Flexing)",
  1971. image: {
  1972. source: "./media/characters/elijah/foot-flexing.svg"
  1973. }
  1974. },
  1975. footStepping: {
  1976. height: math.unit(1.44, "feet"),
  1977. name: "Foot (Stepping)",
  1978. image: {
  1979. source: "./media/characters/elijah/foot-stepping.svg"
  1980. }
  1981. },
  1982. plantigradeLeg: {
  1983. height: math.unit(2.34, "feet"),
  1984. name: "Plantigrade Leg",
  1985. image: {
  1986. source: "./media/characters/elijah/plantigrade-leg.svg"
  1987. }
  1988. },
  1989. plantigradeFootLeft: {
  1990. height: math.unit(0.9, "feet"),
  1991. name: "Plantigrade Foot (Left)",
  1992. image: {
  1993. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1994. }
  1995. },
  1996. plantigradeFootRight: {
  1997. height: math.unit(0.9, "feet"),
  1998. name: "Plantigrade Foot (Right)",
  1999. image: {
  2000. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2001. }
  2002. },
  2003. },
  2004. [
  2005. {
  2006. name: "Normal",
  2007. height: math.unit(1.65, "meters")
  2008. },
  2009. {
  2010. name: "Macro",
  2011. height: math.unit(55, "meters"),
  2012. default: true
  2013. },
  2014. {
  2015. name: "Macro+",
  2016. height: math.unit(105, "meters")
  2017. },
  2018. ]
  2019. ))
  2020. characterMakers.push(() => makeCharacter(
  2021. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2022. {
  2023. front: {
  2024. height: math.unit(11, "feet"),
  2025. weight: math.unit(80, "kg"),
  2026. name: "Front",
  2027. image: {
  2028. source: "./media/characters/rai/front.svg",
  2029. extra: 1,
  2030. bottom: 0.03
  2031. }
  2032. },
  2033. side: {
  2034. height: math.unit(11, "feet"),
  2035. weight: math.unit(80, "kg"),
  2036. name: "Side",
  2037. image: {
  2038. source: "./media/characters/rai/side.svg"
  2039. }
  2040. },
  2041. back: {
  2042. height: math.unit(11, "feet"),
  2043. weight: math.unit(80, "lb"),
  2044. name: "Back",
  2045. image: {
  2046. source: "./media/characters/rai/back.svg",
  2047. extra: 1,
  2048. bottom: 0.01
  2049. }
  2050. },
  2051. feral: {
  2052. height: math.unit(11, "feet"),
  2053. weight: math.unit(800, "lb"),
  2054. name: "Feral",
  2055. image: {
  2056. source: "./media/characters/rai/feral.svg",
  2057. extra: 1050 / 659,
  2058. bottom: 0.07
  2059. }
  2060. },
  2061. dragon: {
  2062. height: math.unit(23, "feet"),
  2063. weight: math.unit(50000, "lb"),
  2064. name: "Dragon",
  2065. image: {
  2066. source: "./media/characters/rai/dragon.svg",
  2067. extra: 2498 / 2030,
  2068. bottom: 85.2 / 2584
  2069. }
  2070. },
  2071. maw: {
  2072. height: math.unit(6 / 3.81416, "feet"),
  2073. name: "Maw",
  2074. image: {
  2075. source: "./media/characters/rai/maw.svg"
  2076. }
  2077. },
  2078. },
  2079. [
  2080. {
  2081. name: "Normal",
  2082. height: math.unit(11, "feet")
  2083. },
  2084. {
  2085. name: "Macro",
  2086. height: math.unit(302, "feet"),
  2087. default: true
  2088. },
  2089. ]
  2090. ))
  2091. characterMakers.push(() => makeCharacter(
  2092. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2093. {
  2094. frontDressed: {
  2095. height: math.unit(216, "feet"),
  2096. weight: math.unit(7000000, "lb"),
  2097. name: "Front (Dressed)",
  2098. image: {
  2099. source: "./media/characters/jazzy/front-dressed.svg",
  2100. extra: 2738 / 2651,
  2101. bottom: 41.8 / 2786
  2102. }
  2103. },
  2104. backDressed: {
  2105. height: math.unit(216, "feet"),
  2106. weight: math.unit(7000000, "lb"),
  2107. name: "Back (Dressed)",
  2108. image: {
  2109. source: "./media/characters/jazzy/back-dressed.svg",
  2110. extra: 2775 / 2673,
  2111. bottom: 36.8 / 2817
  2112. }
  2113. },
  2114. front: {
  2115. height: math.unit(216, "feet"),
  2116. weight: math.unit(7000000, "lb"),
  2117. name: "Front",
  2118. image: {
  2119. source: "./media/characters/jazzy/front.svg",
  2120. extra: 2738 / 2651,
  2121. bottom: 41.8 / 2786
  2122. }
  2123. },
  2124. back: {
  2125. height: math.unit(216, "feet"),
  2126. weight: math.unit(7000000, "lb"),
  2127. name: "Back",
  2128. image: {
  2129. source: "./media/characters/jazzy/back.svg",
  2130. extra: 2775 / 2673,
  2131. bottom: 36.8 / 2817
  2132. }
  2133. },
  2134. maw: {
  2135. height: math.unit(20, "feet"),
  2136. name: "Maw",
  2137. image: {
  2138. source: "./media/characters/jazzy/maw.svg"
  2139. }
  2140. },
  2141. paws: {
  2142. height: math.unit(27.5, "feet"),
  2143. name: "Paws",
  2144. image: {
  2145. source: "./media/characters/jazzy/paws.svg"
  2146. }
  2147. },
  2148. eye: {
  2149. height: math.unit(4.4, "feet"),
  2150. name: "Eye",
  2151. image: {
  2152. source: "./media/characters/jazzy/eye.svg"
  2153. }
  2154. },
  2155. droneOffense: {
  2156. height: math.unit(9.5, "inches"),
  2157. name: "Drone (Offense)",
  2158. image: {
  2159. source: "./media/characters/jazzy/drone-offense.svg"
  2160. }
  2161. },
  2162. droneRecon: {
  2163. height: math.unit(9.5, "inches"),
  2164. name: "Drone (Recon)",
  2165. image: {
  2166. source: "./media/characters/jazzy/drone-recon.svg"
  2167. }
  2168. },
  2169. droneDefense: {
  2170. height: math.unit(9.5, "inches"),
  2171. name: "Drone (Defense)",
  2172. image: {
  2173. source: "./media/characters/jazzy/drone-defense.svg"
  2174. }
  2175. },
  2176. },
  2177. [
  2178. {
  2179. name: "Macro",
  2180. height: math.unit(216, "feet"),
  2181. default: true
  2182. },
  2183. ]
  2184. ))
  2185. characterMakers.push(() => makeCharacter(
  2186. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2187. {
  2188. front: {
  2189. height: math.unit(7, "feet"),
  2190. weight: math.unit(80, "kg"),
  2191. name: "Front",
  2192. image: {
  2193. source: "./media/characters/flamm/front.svg",
  2194. extra: 1794 / 1677,
  2195. bottom: 31.7 / 1828.5
  2196. }
  2197. },
  2198. },
  2199. [
  2200. {
  2201. name: "Normal",
  2202. height: math.unit(9.5, "feet")
  2203. },
  2204. {
  2205. name: "Macro",
  2206. height: math.unit(200, "feet"),
  2207. default: true
  2208. },
  2209. ]
  2210. ))
  2211. characterMakers.push(() => makeCharacter(
  2212. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2213. {
  2214. front: {
  2215. height: math.unit(7, "feet"),
  2216. weight: math.unit(80, "kg"),
  2217. name: "Front",
  2218. image: {
  2219. source: "./media/characters/zephiro/front.svg",
  2220. extra: 2309 / 2162,
  2221. bottom: 0.069
  2222. }
  2223. },
  2224. side: {
  2225. height: math.unit(7, "feet"),
  2226. weight: math.unit(80, "kg"),
  2227. name: "Side",
  2228. image: {
  2229. source: "./media/characters/zephiro/side.svg",
  2230. extra: 2403 / 2279,
  2231. bottom: 0.015
  2232. }
  2233. },
  2234. back: {
  2235. height: math.unit(7, "feet"),
  2236. weight: math.unit(80, "kg"),
  2237. name: "Back",
  2238. image: {
  2239. source: "./media/characters/zephiro/back.svg",
  2240. extra: 2373 / 2244,
  2241. bottom: 0.013
  2242. }
  2243. },
  2244. },
  2245. [
  2246. {
  2247. name: "Micro",
  2248. height: math.unit(3, "inches")
  2249. },
  2250. {
  2251. name: "Normal",
  2252. height: math.unit(5 + 3 / 12, "feet"),
  2253. default: true
  2254. },
  2255. {
  2256. name: "Macro",
  2257. height: math.unit(118, "feet")
  2258. },
  2259. ]
  2260. ))
  2261. characterMakers.push(() => makeCharacter(
  2262. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2263. {
  2264. front: {
  2265. height: math.unit(5, "feet"),
  2266. weight: math.unit(90, "kg"),
  2267. name: "Front",
  2268. image: {
  2269. source: "./media/characters/fory/front.svg",
  2270. extra: 2862 / 2674,
  2271. bottom: 180 / 3043.8
  2272. }
  2273. },
  2274. back: {
  2275. height: math.unit(5, "feet"),
  2276. weight: math.unit(90, "kg"),
  2277. name: "Back",
  2278. image: {
  2279. source: "./media/characters/fory/back.svg",
  2280. extra: 2962 / 2791,
  2281. bottom: 106 / 3071.8
  2282. }
  2283. },
  2284. foot: {
  2285. height: math.unit(2.14, "feet"),
  2286. name: "Foot",
  2287. image: {
  2288. source: "./media/characters/fory/foot.svg"
  2289. }
  2290. },
  2291. },
  2292. [
  2293. {
  2294. name: "Normal",
  2295. height: math.unit(5, "feet")
  2296. },
  2297. {
  2298. name: "Macro",
  2299. height: math.unit(50, "feet"),
  2300. default: true
  2301. },
  2302. {
  2303. name: "Megamacro",
  2304. height: math.unit(10, "miles")
  2305. },
  2306. {
  2307. name: "Gigamacro",
  2308. height: math.unit(5, "earths")
  2309. },
  2310. ]
  2311. ))
  2312. characterMakers.push(() => makeCharacter(
  2313. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2314. {
  2315. front: {
  2316. height: math.unit(7, "feet"),
  2317. weight: math.unit(90, "kg"),
  2318. name: "Front",
  2319. image: {
  2320. source: "./media/characters/kurrikage/front.svg",
  2321. extra: 1,
  2322. bottom: 0.035
  2323. }
  2324. },
  2325. back: {
  2326. height: math.unit(7, "feet"),
  2327. weight: math.unit(90, "lb"),
  2328. name: "Back",
  2329. image: {
  2330. source: "./media/characters/kurrikage/back.svg"
  2331. }
  2332. },
  2333. paw: {
  2334. height: math.unit(1.5, "feet"),
  2335. name: "Paw",
  2336. image: {
  2337. source: "./media/characters/kurrikage/paw.svg"
  2338. }
  2339. },
  2340. staff: {
  2341. height: math.unit(6.7, "feet"),
  2342. name: "Staff",
  2343. image: {
  2344. source: "./media/characters/kurrikage/staff.svg"
  2345. }
  2346. },
  2347. peek: {
  2348. height: math.unit(1.05, "feet"),
  2349. name: "Peeking",
  2350. image: {
  2351. source: "./media/characters/kurrikage/peek.svg",
  2352. bottom: 0.08
  2353. }
  2354. },
  2355. },
  2356. [
  2357. {
  2358. name: "Normal",
  2359. height: math.unit(12, "feet"),
  2360. default: true
  2361. },
  2362. {
  2363. name: "Big",
  2364. height: math.unit(20, "feet")
  2365. },
  2366. {
  2367. name: "Macro",
  2368. height: math.unit(500, "feet")
  2369. },
  2370. {
  2371. name: "Megamacro",
  2372. height: math.unit(20, "miles")
  2373. },
  2374. ]
  2375. ))
  2376. characterMakers.push(() => makeCharacter(
  2377. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2378. {
  2379. front: {
  2380. height: math.unit(6, "feet"),
  2381. weight: math.unit(75, "kg"),
  2382. name: "Front",
  2383. image: {
  2384. source: "./media/characters/shingo/front.svg",
  2385. extra: 3511 / 3338,
  2386. bottom: 0.005
  2387. }
  2388. },
  2389. paw: {
  2390. height: math.unit(1, "feet"),
  2391. name: "Paw",
  2392. image: {
  2393. source: "./media/characters/shingo/paw.svg"
  2394. }
  2395. },
  2396. },
  2397. [
  2398. {
  2399. name: "Micro",
  2400. height: math.unit(4, "inches")
  2401. },
  2402. {
  2403. name: "Normal",
  2404. height: math.unit(6, "feet"),
  2405. default: true
  2406. },
  2407. {
  2408. name: "Macro",
  2409. height: math.unit(108, "feet")
  2410. },
  2411. {
  2412. name: "Macro+",
  2413. height: math.unit(1500, "feet")
  2414. },
  2415. ]
  2416. ))
  2417. characterMakers.push(() => makeCharacter(
  2418. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2419. {
  2420. side: {
  2421. height: math.unit(6, "feet"),
  2422. weight: math.unit(75, "kg"),
  2423. name: "Side",
  2424. image: {
  2425. source: "./media/characters/aigey/side.svg"
  2426. }
  2427. },
  2428. },
  2429. [
  2430. {
  2431. name: "Macro",
  2432. height: math.unit(200, "feet"),
  2433. default: true
  2434. },
  2435. {
  2436. name: "Megamacro",
  2437. height: math.unit(100, "miles")
  2438. },
  2439. ]
  2440. )
  2441. )
  2442. characterMakers.push(() => makeCharacter(
  2443. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2444. {
  2445. front: {
  2446. height: math.unit(5 + 5 / 12, "feet"),
  2447. weight: math.unit(75, "kg"),
  2448. name: "Front",
  2449. image: {
  2450. source: "./media/characters/natasha/front.svg",
  2451. extra: 859 / 824,
  2452. bottom: 23 / 879.6
  2453. }
  2454. },
  2455. frontNsfw: {
  2456. height: math.unit(5 + 5 / 12, "feet"),
  2457. weight: math.unit(75, "kg"),
  2458. name: "Front (NSFW)",
  2459. image: {
  2460. source: "./media/characters/natasha/front-nsfw.svg",
  2461. extra: 859 / 824,
  2462. bottom: 23 / 879.6
  2463. }
  2464. },
  2465. frontErect: {
  2466. height: math.unit(5 + 5 / 12, "feet"),
  2467. weight: math.unit(75, "kg"),
  2468. name: "Front (Erect)",
  2469. image: {
  2470. source: "./media/characters/natasha/front-erect.svg",
  2471. extra: 859 / 824,
  2472. bottom: 23 / 879.6
  2473. }
  2474. },
  2475. back: {
  2476. height: math.unit(5 + 5 / 12, "feet"),
  2477. weight: math.unit(75, "kg"),
  2478. name: "Back",
  2479. image: {
  2480. source: "./media/characters/natasha/back.svg",
  2481. extra: 887.9 / 852.6,
  2482. bottom: 9.7 / 896.4
  2483. }
  2484. },
  2485. backAlt: {
  2486. height: math.unit(5 + 5 / 12, "feet"),
  2487. weight: math.unit(75, "kg"),
  2488. name: "Back (Alt)",
  2489. image: {
  2490. source: "./media/characters/natasha/back-alt.svg",
  2491. extra: 1236.7 / 1192,
  2492. bottom: 22.3 / 1258.2
  2493. }
  2494. },
  2495. dick: {
  2496. height: math.unit(1.772, "feet"),
  2497. name: "Dick",
  2498. image: {
  2499. source: "./media/characters/natasha/dick.svg"
  2500. }
  2501. },
  2502. paw: {
  2503. height: math.unit(0.250, "meters"),
  2504. name: "Paw",
  2505. image: {
  2506. source: "./media/characters/natasha/paw.svg"
  2507. }
  2508. },
  2509. },
  2510. [
  2511. {
  2512. name: "Normal",
  2513. height: math.unit(5 + 5 / 12, "feet")
  2514. },
  2515. {
  2516. name: "Large",
  2517. height: math.unit(12, "feet")
  2518. },
  2519. {
  2520. name: "Macro",
  2521. height: math.unit(100, "feet"),
  2522. default: true
  2523. },
  2524. {
  2525. name: "Macro+",
  2526. height: math.unit(260, "feet")
  2527. },
  2528. {
  2529. name: "Macro++",
  2530. height: math.unit(1, "mile")
  2531. },
  2532. ]
  2533. ))
  2534. characterMakers.push(() => makeCharacter(
  2535. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2536. {
  2537. front: {
  2538. height: math.unit(6, "feet"),
  2539. weight: math.unit(75, "kg"),
  2540. name: "Front",
  2541. image: {
  2542. source: "./media/characters/malik/front.svg"
  2543. }
  2544. },
  2545. side: {
  2546. height: math.unit(6, "feet"),
  2547. weight: math.unit(75, "kg"),
  2548. name: "Side",
  2549. image: {
  2550. source: "./media/characters/malik/side.svg",
  2551. extra: 1.1539
  2552. }
  2553. },
  2554. back: {
  2555. height: math.unit(6, "feet"),
  2556. weight: math.unit(75, "kg"),
  2557. name: "Back",
  2558. image: {
  2559. source: "./media/characters/malik/back.svg"
  2560. }
  2561. },
  2562. },
  2563. [
  2564. {
  2565. name: "Macro",
  2566. height: math.unit(156, "feet"),
  2567. default: true
  2568. },
  2569. {
  2570. name: "Macro+",
  2571. height: math.unit(1188, "feet")
  2572. },
  2573. ]
  2574. ))
  2575. characterMakers.push(() => makeCharacter(
  2576. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2577. {
  2578. front: {
  2579. height: math.unit(6, "feet"),
  2580. weight: math.unit(75, "kg"),
  2581. name: "Front",
  2582. image: {
  2583. source: "./media/characters/sefer/front.svg",
  2584. extra: 848 / 659,
  2585. bottom: 28.3 / 876.442
  2586. }
  2587. },
  2588. back: {
  2589. height: math.unit(6, "feet"),
  2590. weight: math.unit(75, "kg"),
  2591. name: "Back",
  2592. image: {
  2593. source: "./media/characters/sefer/back.svg",
  2594. extra: 864 / 695,
  2595. bottom: 10 / 871
  2596. }
  2597. },
  2598. frontDressed: {
  2599. height: math.unit(6, "feet"),
  2600. weight: math.unit(75, "kg"),
  2601. name: "Front (Dressed)",
  2602. image: {
  2603. source: "./media/characters/sefer/front-dressed.svg",
  2604. extra: 839 / 653,
  2605. bottom: 37.6 / 878
  2606. }
  2607. },
  2608. },
  2609. [
  2610. {
  2611. name: "Normal",
  2612. height: math.unit(6, "feet"),
  2613. default: true
  2614. },
  2615. ]
  2616. ))
  2617. characterMakers.push(() => makeCharacter(
  2618. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2619. {
  2620. body: {
  2621. height: math.unit(2.2428, "meter"),
  2622. weight: math.unit(124.738, "kg"),
  2623. name: "Body",
  2624. image: {
  2625. extra: 1225 / 1050,
  2626. source: "./media/characters/north/front.svg"
  2627. }
  2628. }
  2629. },
  2630. [
  2631. {
  2632. name: "Micro",
  2633. height: math.unit(4, "inches")
  2634. },
  2635. {
  2636. name: "Macro",
  2637. height: math.unit(63, "meters")
  2638. },
  2639. {
  2640. name: "Megamacro",
  2641. height: math.unit(101, "miles"),
  2642. default: true
  2643. }
  2644. ]
  2645. ))
  2646. characterMakers.push(() => makeCharacter(
  2647. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2648. {
  2649. angled: {
  2650. height: math.unit(4, "meter"),
  2651. weight: math.unit(150, "kg"),
  2652. name: "Angled",
  2653. image: {
  2654. source: "./media/characters/talan/angled-sfw.svg",
  2655. bottom: 29 / 3734
  2656. }
  2657. },
  2658. angledNsfw: {
  2659. height: math.unit(4, "meter"),
  2660. weight: math.unit(150, "kg"),
  2661. name: "Angled (NSFW)",
  2662. image: {
  2663. source: "./media/characters/talan/angled-nsfw.svg",
  2664. bottom: 29 / 3734
  2665. }
  2666. },
  2667. frontNsfw: {
  2668. height: math.unit(4, "meter"),
  2669. weight: math.unit(150, "kg"),
  2670. name: "Front (NSFW)",
  2671. image: {
  2672. source: "./media/characters/talan/front-nsfw.svg",
  2673. bottom: 29 / 3734
  2674. }
  2675. },
  2676. sideNsfw: {
  2677. height: math.unit(4, "meter"),
  2678. weight: math.unit(150, "kg"),
  2679. name: "Side (NSFW)",
  2680. image: {
  2681. source: "./media/characters/talan/side-nsfw.svg",
  2682. bottom: 29 / 3734
  2683. }
  2684. },
  2685. back: {
  2686. height: math.unit(4, "meter"),
  2687. weight: math.unit(150, "kg"),
  2688. name: "Back",
  2689. image: {
  2690. source: "./media/characters/talan/back.svg"
  2691. }
  2692. },
  2693. dickBottom: {
  2694. height: math.unit(0.621, "meter"),
  2695. name: "Dick (Bottom)",
  2696. image: {
  2697. source: "./media/characters/talan/dick-bottom.svg"
  2698. }
  2699. },
  2700. dickTop: {
  2701. height: math.unit(0.621, "meter"),
  2702. name: "Dick (Top)",
  2703. image: {
  2704. source: "./media/characters/talan/dick-top.svg"
  2705. }
  2706. },
  2707. dickSide: {
  2708. height: math.unit(0.305, "meter"),
  2709. name: "Dick (Side)",
  2710. image: {
  2711. source: "./media/characters/talan/dick-side.svg"
  2712. }
  2713. },
  2714. dickFront: {
  2715. height: math.unit(0.305, "meter"),
  2716. name: "Dick (Front)",
  2717. image: {
  2718. source: "./media/characters/talan/dick-front.svg"
  2719. }
  2720. },
  2721. },
  2722. [
  2723. {
  2724. name: "Normal",
  2725. height: math.unit(4, "meters")
  2726. },
  2727. {
  2728. name: "Macro",
  2729. height: math.unit(100, "meters")
  2730. },
  2731. {
  2732. name: "Megamacro",
  2733. height: math.unit(2, "miles"),
  2734. default: true
  2735. },
  2736. {
  2737. name: "Gigamacro",
  2738. height: math.unit(5000, "miles")
  2739. },
  2740. {
  2741. name: "Teramacro",
  2742. height: math.unit(100, "parsecs")
  2743. }
  2744. ]
  2745. ))
  2746. characterMakers.push(() => makeCharacter(
  2747. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2748. {
  2749. front: {
  2750. height: math.unit(2, "meter"),
  2751. weight: math.unit(90, "kg"),
  2752. name: "Front",
  2753. image: {
  2754. source: "./media/characters/gael'rathus/front.svg"
  2755. }
  2756. },
  2757. frontAlt: {
  2758. height: math.unit(2, "meter"),
  2759. weight: math.unit(90, "kg"),
  2760. name: "Front (alt)",
  2761. image: {
  2762. source: "./media/characters/gael'rathus/front-alt.svg"
  2763. }
  2764. },
  2765. frontAlt2: {
  2766. height: math.unit(2, "meter"),
  2767. weight: math.unit(90, "kg"),
  2768. name: "Front (alt 2)",
  2769. image: {
  2770. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2771. }
  2772. }
  2773. },
  2774. [
  2775. {
  2776. name: "Normal",
  2777. height: math.unit(9, "feet"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Large",
  2782. height: math.unit(25, "feet")
  2783. },
  2784. {
  2785. name: "Macro",
  2786. height: math.unit(0.25, "miles")
  2787. },
  2788. {
  2789. name: "Megamacro",
  2790. height: math.unit(10, "miles")
  2791. }
  2792. ]
  2793. ))
  2794. characterMakers.push(() => makeCharacter(
  2795. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2796. {
  2797. side: {
  2798. height: math.unit(2, "meter"),
  2799. weight: math.unit(140, "kg"),
  2800. name: "Side",
  2801. image: {
  2802. source: "./media/characters/sosha/side.svg",
  2803. bottom: 0.042
  2804. }
  2805. },
  2806. },
  2807. [
  2808. {
  2809. name: "Normal",
  2810. height: math.unit(12, "feet"),
  2811. default: true
  2812. }
  2813. ]
  2814. ))
  2815. characterMakers.push(() => makeCharacter(
  2816. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2817. {
  2818. side: {
  2819. height: math.unit(5 + 5 / 12, "feet"),
  2820. weight: math.unit(170, "kg"),
  2821. name: "Side",
  2822. image: {
  2823. source: "./media/characters/runnola/side.svg",
  2824. extra: 741 / 448,
  2825. bottom: 0.05
  2826. }
  2827. },
  2828. },
  2829. [
  2830. {
  2831. name: "Small",
  2832. height: math.unit(3, "feet")
  2833. },
  2834. {
  2835. name: "Normal",
  2836. height: math.unit(5 + 5 / 12, "feet"),
  2837. default: true
  2838. },
  2839. {
  2840. name: "Big",
  2841. height: math.unit(10, "feet")
  2842. },
  2843. ]
  2844. ))
  2845. characterMakers.push(() => makeCharacter(
  2846. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2847. {
  2848. front: {
  2849. height: math.unit(2, "meter"),
  2850. weight: math.unit(50, "kg"),
  2851. name: "Front",
  2852. image: {
  2853. source: "./media/characters/kurribird/front.svg",
  2854. bottom: 0.015
  2855. }
  2856. },
  2857. frontAlt: {
  2858. height: math.unit(1.5, "meter"),
  2859. weight: math.unit(50, "kg"),
  2860. name: "Front (Alt)",
  2861. image: {
  2862. source: "./media/characters/kurribird/front-alt.svg",
  2863. extra: 1.45
  2864. }
  2865. },
  2866. },
  2867. [
  2868. {
  2869. name: "Normal",
  2870. height: math.unit(7, "feet")
  2871. },
  2872. {
  2873. name: "Big",
  2874. height: math.unit(12, "feet"),
  2875. default: true
  2876. },
  2877. {
  2878. name: "Macro",
  2879. height: math.unit(1500, "feet")
  2880. },
  2881. {
  2882. name: "Megamacro",
  2883. height: math.unit(2, "miles")
  2884. }
  2885. ]
  2886. ))
  2887. characterMakers.push(() => makeCharacter(
  2888. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2889. {
  2890. front: {
  2891. height: math.unit(2, "meter"),
  2892. weight: math.unit(80, "kg"),
  2893. name: "Front",
  2894. image: {
  2895. source: "./media/characters/elbial/front.svg",
  2896. extra: 1643 / 1556,
  2897. bottom: 60.2 / 1696
  2898. }
  2899. },
  2900. side: {
  2901. height: math.unit(2, "meter"),
  2902. weight: math.unit(80, "kg"),
  2903. name: "Side",
  2904. image: {
  2905. source: "./media/characters/elbial/side.svg",
  2906. extra: 1630 / 1565,
  2907. bottom: 71.5 / 1697
  2908. }
  2909. },
  2910. back: {
  2911. height: math.unit(2, "meter"),
  2912. weight: math.unit(80, "kg"),
  2913. name: "Back",
  2914. image: {
  2915. source: "./media/characters/elbial/back.svg",
  2916. extra: 1668 / 1595,
  2917. bottom: 5.6 / 1672
  2918. }
  2919. },
  2920. frontDressed: {
  2921. height: math.unit(2, "meter"),
  2922. weight: math.unit(80, "kg"),
  2923. name: "Front (Dressed)",
  2924. image: {
  2925. source: "./media/characters/elbial/front-dressed.svg",
  2926. extra: 1653 / 1584,
  2927. bottom: 57 / 1708
  2928. }
  2929. },
  2930. genitals: {
  2931. height: math.unit(2 / 3.367, "meter"),
  2932. name: "Genitals",
  2933. image: {
  2934. source: "./media/characters/elbial/genitals.svg"
  2935. }
  2936. },
  2937. },
  2938. [
  2939. {
  2940. name: "Large",
  2941. height: math.unit(100, "feet")
  2942. },
  2943. {
  2944. name: "Macro",
  2945. height: math.unit(500, "feet"),
  2946. default: true
  2947. },
  2948. {
  2949. name: "Megamacro",
  2950. height: math.unit(10, "miles")
  2951. },
  2952. {
  2953. name: "Gigamacro",
  2954. height: math.unit(25000, "miles")
  2955. },
  2956. {
  2957. name: "Full-Size",
  2958. height: math.unit(8000000, "gigaparsecs")
  2959. }
  2960. ]
  2961. ))
  2962. characterMakers.push(() => makeCharacter(
  2963. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2964. {
  2965. front: {
  2966. height: math.unit(2, "meter"),
  2967. weight: math.unit(60, "kg"),
  2968. name: "Front",
  2969. image: {
  2970. source: "./media/characters/noah/front.svg"
  2971. }
  2972. },
  2973. talons: {
  2974. height: math.unit(0.315, "meter"),
  2975. name: "Talons",
  2976. image: {
  2977. source: "./media/characters/noah/talons.svg"
  2978. }
  2979. }
  2980. },
  2981. [
  2982. {
  2983. name: "Large",
  2984. height: math.unit(50, "feet")
  2985. },
  2986. {
  2987. name: "Macro",
  2988. height: math.unit(750, "feet"),
  2989. default: true
  2990. },
  2991. {
  2992. name: "Megamacro",
  2993. height: math.unit(50, "miles")
  2994. },
  2995. {
  2996. name: "Gigamacro",
  2997. height: math.unit(100000, "miles")
  2998. },
  2999. {
  3000. name: "Full-Size",
  3001. height: math.unit(3000000000, "miles")
  3002. }
  3003. ]
  3004. ))
  3005. characterMakers.push(() => makeCharacter(
  3006. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3007. {
  3008. front: {
  3009. height: math.unit(2, "meter"),
  3010. weight: math.unit(80, "kg"),
  3011. name: "Front",
  3012. image: {
  3013. source: "./media/characters/natalya/front.svg"
  3014. }
  3015. },
  3016. back: {
  3017. height: math.unit(2, "meter"),
  3018. weight: math.unit(80, "kg"),
  3019. name: "Back",
  3020. image: {
  3021. source: "./media/characters/natalya/back.svg"
  3022. }
  3023. }
  3024. },
  3025. [
  3026. {
  3027. name: "Normal",
  3028. height: math.unit(150, "feet"),
  3029. default: true
  3030. },
  3031. {
  3032. name: "Megamacro",
  3033. height: math.unit(5, "miles")
  3034. },
  3035. {
  3036. name: "Full-Size",
  3037. height: math.unit(600, "kiloparsecs")
  3038. }
  3039. ]
  3040. ))
  3041. characterMakers.push(() => makeCharacter(
  3042. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3043. {
  3044. front: {
  3045. height: math.unit(2, "meter"),
  3046. weight: math.unit(50, "kg"),
  3047. name: "Front",
  3048. image: {
  3049. source: "./media/characters/erestrebah/front.svg",
  3050. extra: 208 / 193,
  3051. bottom: 0.055
  3052. }
  3053. },
  3054. back: {
  3055. height: math.unit(2, "meter"),
  3056. weight: math.unit(50, "kg"),
  3057. name: "Back",
  3058. image: {
  3059. source: "./media/characters/erestrebah/back.svg",
  3060. extra: 1.3
  3061. }
  3062. }
  3063. },
  3064. [
  3065. {
  3066. name: "Normal",
  3067. height: math.unit(10, "feet")
  3068. },
  3069. {
  3070. name: "Large",
  3071. height: math.unit(50, "feet"),
  3072. default: true
  3073. },
  3074. {
  3075. name: "Macro",
  3076. height: math.unit(300, "feet")
  3077. },
  3078. {
  3079. name: "Macro+",
  3080. height: math.unit(750, "feet")
  3081. },
  3082. {
  3083. name: "Megamacro",
  3084. height: math.unit(3, "miles")
  3085. }
  3086. ]
  3087. ))
  3088. characterMakers.push(() => makeCharacter(
  3089. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3090. {
  3091. front: {
  3092. height: math.unit(2, "meter"),
  3093. weight: math.unit(80, "kg"),
  3094. name: "Front",
  3095. image: {
  3096. source: "./media/characters/jennifer/front.svg",
  3097. bottom: 0.11,
  3098. extra: 1.16
  3099. }
  3100. },
  3101. frontAlt: {
  3102. height: math.unit(2, "meter"),
  3103. weight: math.unit(80, "kg"),
  3104. name: "Front (Alt)",
  3105. image: {
  3106. source: "./media/characters/jennifer/front-alt.svg"
  3107. }
  3108. }
  3109. },
  3110. [
  3111. {
  3112. name: "Canon Height",
  3113. height: math.unit(120, "feet"),
  3114. default: true
  3115. },
  3116. {
  3117. name: "Macro+",
  3118. height: math.unit(300, "feet")
  3119. },
  3120. {
  3121. name: "Megamacro",
  3122. height: math.unit(20000, "feet")
  3123. }
  3124. ]
  3125. ))
  3126. characterMakers.push(() => makeCharacter(
  3127. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3128. {
  3129. front: {
  3130. height: math.unit(2, "meter"),
  3131. weight: math.unit(50, "kg"),
  3132. name: "Front",
  3133. image: {
  3134. source: "./media/characters/kalista/front.svg",
  3135. extra: 1947 / 1700,
  3136. bottom: 76.6 / 1412.98
  3137. }
  3138. },
  3139. back: {
  3140. height: math.unit(2, "meter"),
  3141. weight: math.unit(50, "kg"),
  3142. name: "Back",
  3143. image: {
  3144. source: "./media/characters/kalista/back.svg",
  3145. extra: 1366 / 1156,
  3146. bottom: 33.9 / 1362.78
  3147. }
  3148. }
  3149. },
  3150. [
  3151. {
  3152. name: "Uncomfortably Small",
  3153. height: math.unit(10, "feet")
  3154. },
  3155. {
  3156. name: "Small",
  3157. height: math.unit(30, "feet")
  3158. },
  3159. {
  3160. name: "Macro",
  3161. height: math.unit(100, "feet"),
  3162. default: true
  3163. },
  3164. {
  3165. name: "Macro+",
  3166. height: math.unit(2000, "feet")
  3167. },
  3168. {
  3169. name: "True Form",
  3170. height: math.unit(8924, "miles")
  3171. }
  3172. ]
  3173. ))
  3174. characterMakers.push(() => makeCharacter(
  3175. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3176. {
  3177. front: {
  3178. height: math.unit(2, "meter"),
  3179. weight: math.unit(120, "kg"),
  3180. name: "Front",
  3181. image: {
  3182. source: "./media/characters/ggv/front.svg"
  3183. }
  3184. },
  3185. side: {
  3186. height: math.unit(2, "meter"),
  3187. weight: math.unit(120, "kg"),
  3188. name: "Side",
  3189. image: {
  3190. source: "./media/characters/ggv/side.svg"
  3191. }
  3192. }
  3193. },
  3194. [
  3195. {
  3196. name: "Extremely Puny",
  3197. height: math.unit(9 + 5 / 12, "feet")
  3198. },
  3199. {
  3200. name: "Horribly Small",
  3201. height: math.unit(47.7, "miles"),
  3202. default: true
  3203. },
  3204. {
  3205. name: "Reasonably Sized",
  3206. height: math.unit(25000, "parsecs")
  3207. },
  3208. {
  3209. name: "Slightly Uncompressed",
  3210. height: math.unit(7.77e31, "parsecs")
  3211. },
  3212. {
  3213. name: "Omniversal",
  3214. height: math.unit(1e300, "meters")
  3215. },
  3216. ]
  3217. ))
  3218. characterMakers.push(() => makeCharacter(
  3219. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3220. {
  3221. front: {
  3222. height: math.unit(2, "meter"),
  3223. weight: math.unit(75, "lb"),
  3224. name: "Front",
  3225. image: {
  3226. source: "./media/characters/napalm/front.svg"
  3227. }
  3228. },
  3229. back: {
  3230. height: math.unit(2, "meter"),
  3231. weight: math.unit(75, "lb"),
  3232. name: "Back",
  3233. image: {
  3234. source: "./media/characters/napalm/back.svg"
  3235. }
  3236. }
  3237. },
  3238. [
  3239. {
  3240. name: "Standard",
  3241. height: math.unit(55, "feet"),
  3242. default: true
  3243. }
  3244. ]
  3245. ))
  3246. characterMakers.push(() => makeCharacter(
  3247. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3248. {
  3249. front: {
  3250. height: math.unit(7 + 5 / 6, "feet"),
  3251. weight: math.unit(325, "lb"),
  3252. name: "Front",
  3253. image: {
  3254. source: "./media/characters/asana/front.svg",
  3255. extra: 1133 / 1060,
  3256. bottom: 15.2 / 1148.6
  3257. }
  3258. },
  3259. back: {
  3260. height: math.unit(7 + 5 / 6, "feet"),
  3261. weight: math.unit(325, "lb"),
  3262. name: "Back",
  3263. image: {
  3264. source: "./media/characters/asana/back.svg",
  3265. extra: 1114 / 1043,
  3266. bottom: 5 / 1120
  3267. }
  3268. },
  3269. dressedDark: {
  3270. height: math.unit(7 + 5 / 6, "feet"),
  3271. weight: math.unit(325, "lb"),
  3272. name: "Dressed (Dark)",
  3273. image: {
  3274. source: "./media/characters/asana/dressed-dark.svg",
  3275. extra: 1133 / 1060,
  3276. bottom: 15.2 / 1148.6
  3277. }
  3278. },
  3279. dressedLight: {
  3280. height: math.unit(7 + 5 / 6, "feet"),
  3281. weight: math.unit(325, "lb"),
  3282. name: "Dressed (Light)",
  3283. image: {
  3284. source: "./media/characters/asana/dressed-light.svg",
  3285. extra: 1133 / 1060,
  3286. bottom: 15.2 / 1148.6
  3287. }
  3288. },
  3289. },
  3290. [
  3291. {
  3292. name: "Standard",
  3293. height: math.unit(7 + 5 / 6, "feet"),
  3294. default: true
  3295. },
  3296. {
  3297. name: "Large",
  3298. height: math.unit(10, "meters")
  3299. },
  3300. {
  3301. name: "Macro",
  3302. height: math.unit(2500, "meters")
  3303. },
  3304. {
  3305. name: "Megamacro",
  3306. height: math.unit(5e6, "meters")
  3307. },
  3308. {
  3309. name: "Examacro",
  3310. height: math.unit(5e12, "lightyears")
  3311. },
  3312. {
  3313. name: "Max Size",
  3314. height: math.unit(1e31, "lightyears")
  3315. }
  3316. ]
  3317. ))
  3318. characterMakers.push(() => makeCharacter(
  3319. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3320. {
  3321. front: {
  3322. height: math.unit(2, "meter"),
  3323. weight: math.unit(60, "kg"),
  3324. name: "Front",
  3325. image: {
  3326. source: "./media/characters/ebony/front.svg",
  3327. bottom: 0.03,
  3328. extra: 1045 / 810 + 0.03
  3329. }
  3330. },
  3331. side: {
  3332. height: math.unit(2, "meter"),
  3333. weight: math.unit(60, "kg"),
  3334. name: "Side",
  3335. image: {
  3336. source: "./media/characters/ebony/side.svg",
  3337. bottom: 0.03,
  3338. extra: 1045 / 810 + 0.03
  3339. }
  3340. },
  3341. back: {
  3342. height: math.unit(2, "meter"),
  3343. weight: math.unit(60, "kg"),
  3344. name: "Back",
  3345. image: {
  3346. source: "./media/characters/ebony/back.svg",
  3347. bottom: 0.01,
  3348. extra: 1045 / 810 + 0.01
  3349. }
  3350. },
  3351. },
  3352. [
  3353. // TODO check why I did this lol
  3354. {
  3355. name: "Standard",
  3356. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3357. default: true
  3358. },
  3359. {
  3360. name: "Macro",
  3361. height: math.unit(200, "feet")
  3362. },
  3363. {
  3364. name: "Gigamacro",
  3365. height: math.unit(13000, "km")
  3366. }
  3367. ]
  3368. ))
  3369. characterMakers.push(() => makeCharacter(
  3370. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3371. {
  3372. front: {
  3373. height: math.unit(6, "feet"),
  3374. weight: math.unit(175, "lb"),
  3375. name: "Front",
  3376. image: {
  3377. source: "./media/characters/mountain/front.svg",
  3378. extra: 972 / 955,
  3379. bottom: 64 / 1036.6
  3380. }
  3381. },
  3382. back: {
  3383. height: math.unit(6, "feet"),
  3384. weight: math.unit(175, "lb"),
  3385. name: "Back",
  3386. image: {
  3387. source: "./media/characters/mountain/back.svg",
  3388. extra: 970 / 950,
  3389. bottom: 28.25 / 999
  3390. }
  3391. },
  3392. },
  3393. [
  3394. {
  3395. name: "Large",
  3396. height: math.unit(20, "meters")
  3397. },
  3398. {
  3399. name: "Macro",
  3400. height: math.unit(300, "meters")
  3401. },
  3402. {
  3403. name: "Gigamacro",
  3404. height: math.unit(10000, "km"),
  3405. default: true
  3406. },
  3407. {
  3408. name: "Examacro",
  3409. height: math.unit(10e9, "lightyears")
  3410. }
  3411. ]
  3412. ))
  3413. characterMakers.push(() => makeCharacter(
  3414. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3415. {
  3416. front: {
  3417. height: math.unit(8, "feet"),
  3418. weight: math.unit(500, "lb"),
  3419. name: "Front",
  3420. image: {
  3421. source: "./media/characters/rick/front.svg"
  3422. }
  3423. }
  3424. },
  3425. [
  3426. {
  3427. name: "Normal",
  3428. height: math.unit(8, "feet"),
  3429. default: true
  3430. },
  3431. {
  3432. name: "Macro",
  3433. height: math.unit(5, "km")
  3434. }
  3435. ]
  3436. ))
  3437. characterMakers.push(() => makeCharacter(
  3438. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3439. {
  3440. front: {
  3441. height: math.unit(8, "feet"),
  3442. weight: math.unit(120, "lb"),
  3443. name: "Front",
  3444. image: {
  3445. source: "./media/characters/ona/front.svg"
  3446. }
  3447. },
  3448. frontAlt: {
  3449. height: math.unit(8, "feet"),
  3450. weight: math.unit(120, "lb"),
  3451. name: "Front (Alt)",
  3452. image: {
  3453. source: "./media/characters/ona/front-alt.svg"
  3454. }
  3455. },
  3456. back: {
  3457. height: math.unit(8, "feet"),
  3458. weight: math.unit(120, "lb"),
  3459. name: "Back",
  3460. image: {
  3461. source: "./media/characters/ona/back.svg"
  3462. }
  3463. },
  3464. foot: {
  3465. height: math.unit(1.1, "feet"),
  3466. name: "Foot",
  3467. image: {
  3468. source: "./media/characters/ona/foot.svg"
  3469. }
  3470. }
  3471. },
  3472. [
  3473. {
  3474. name: "Megamacro",
  3475. height: math.unit(70, "km"),
  3476. default: true
  3477. },
  3478. {
  3479. name: "Gigamacro",
  3480. height: math.unit(681818, "miles")
  3481. },
  3482. {
  3483. name: "Examacro",
  3484. height: math.unit(3800000, "lightyears")
  3485. },
  3486. ]
  3487. ))
  3488. characterMakers.push(() => makeCharacter(
  3489. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3490. {
  3491. front: {
  3492. height: math.unit(12, "feet"),
  3493. weight: math.unit(3000, "lb"),
  3494. name: "Front",
  3495. image: {
  3496. source: "./media/characters/mech/front.svg",
  3497. extra: 2900 / 2770,
  3498. bottom: 110 / 3010
  3499. }
  3500. },
  3501. back: {
  3502. height: math.unit(12, "feet"),
  3503. weight: math.unit(3000, "lb"),
  3504. name: "Back",
  3505. image: {
  3506. source: "./media/characters/mech/back.svg",
  3507. extra: 3011 / 2890,
  3508. bottom: 94 / 3105
  3509. }
  3510. },
  3511. maw: {
  3512. height: math.unit(3.07, "feet"),
  3513. name: "Maw",
  3514. image: {
  3515. source: "./media/characters/mech/maw.svg"
  3516. }
  3517. },
  3518. head: {
  3519. height: math.unit(2.82, "feet"),
  3520. name: "Head",
  3521. image: {
  3522. source: "./media/characters/mech/head.svg"
  3523. }
  3524. },
  3525. dick: {
  3526. height: math.unit(1.43, "feet"),
  3527. name: "Dick",
  3528. image: {
  3529. source: "./media/characters/mech/dick.svg"
  3530. }
  3531. },
  3532. },
  3533. [
  3534. {
  3535. name: "Normal",
  3536. height: math.unit(12, "feet")
  3537. },
  3538. {
  3539. name: "Macro",
  3540. height: math.unit(300, "feet"),
  3541. default: true
  3542. },
  3543. {
  3544. name: "Macro+",
  3545. height: math.unit(1500, "feet")
  3546. },
  3547. ]
  3548. ))
  3549. characterMakers.push(() => makeCharacter(
  3550. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3551. {
  3552. front: {
  3553. height: math.unit(1.3, "meter"),
  3554. weight: math.unit(30, "kg"),
  3555. name: "Front",
  3556. image: {
  3557. source: "./media/characters/gregory/front.svg",
  3558. }
  3559. }
  3560. },
  3561. [
  3562. {
  3563. name: "Normal",
  3564. height: math.unit(1.3, "meter"),
  3565. default: true
  3566. },
  3567. {
  3568. name: "Macro",
  3569. height: math.unit(20, "meter")
  3570. }
  3571. ]
  3572. ))
  3573. characterMakers.push(() => makeCharacter(
  3574. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3575. {
  3576. front: {
  3577. height: math.unit(2.8, "meter"),
  3578. weight: math.unit(200, "kg"),
  3579. name: "Front",
  3580. image: {
  3581. source: "./media/characters/elory/front.svg",
  3582. }
  3583. }
  3584. },
  3585. [
  3586. {
  3587. name: "Normal",
  3588. height: math.unit(2.8, "meter"),
  3589. default: true
  3590. },
  3591. {
  3592. name: "Macro",
  3593. height: math.unit(38, "meter")
  3594. }
  3595. ]
  3596. ))
  3597. characterMakers.push(() => makeCharacter(
  3598. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3599. {
  3600. front: {
  3601. height: math.unit(470, "feet"),
  3602. weight: math.unit(924, "tons"),
  3603. name: "Front",
  3604. image: {
  3605. source: "./media/characters/angelpatamon/front.svg",
  3606. }
  3607. }
  3608. },
  3609. [
  3610. {
  3611. name: "Normal",
  3612. height: math.unit(470, "feet"),
  3613. default: true
  3614. },
  3615. {
  3616. name: "Deity Size I",
  3617. height: math.unit(28651.2, "km")
  3618. },
  3619. {
  3620. name: "Deity Size II",
  3621. height: math.unit(171907.2, "km")
  3622. }
  3623. ]
  3624. ))
  3625. characterMakers.push(() => makeCharacter(
  3626. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3627. {
  3628. side: {
  3629. height: math.unit(7.2, "meter"),
  3630. weight: math.unit(8.2, "tons"),
  3631. name: "Side",
  3632. image: {
  3633. source: "./media/characters/cryae/side.svg",
  3634. extra: 3500 / 1500
  3635. }
  3636. }
  3637. },
  3638. [
  3639. {
  3640. name: "Normal",
  3641. height: math.unit(7.2, "meter"),
  3642. default: true
  3643. }
  3644. ]
  3645. ))
  3646. characterMakers.push(() => makeCharacter(
  3647. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3648. {
  3649. front: {
  3650. height: math.unit(6, "feet"),
  3651. weight: math.unit(175, "lb"),
  3652. name: "Front",
  3653. image: {
  3654. source: "./media/characters/xera/front.svg",
  3655. extra: 2377 / 1972,
  3656. bottom: 75.5 / 2452
  3657. }
  3658. },
  3659. side: {
  3660. height: math.unit(6, "feet"),
  3661. weight: math.unit(175, "lb"),
  3662. name: "Side",
  3663. image: {
  3664. source: "./media/characters/xera/side.svg",
  3665. extra: 2345 / 2019,
  3666. bottom: 39.7 / 2384
  3667. }
  3668. },
  3669. back: {
  3670. height: math.unit(6, "feet"),
  3671. weight: math.unit(175, "lb"),
  3672. name: "Back",
  3673. image: {
  3674. source: "./media/characters/xera/back.svg",
  3675. extra: 2095 / 1984,
  3676. bottom: 67 / 2166
  3677. }
  3678. },
  3679. },
  3680. [
  3681. {
  3682. name: "Small",
  3683. height: math.unit(10, "feet")
  3684. },
  3685. {
  3686. name: "Macro",
  3687. height: math.unit(500, "meters"),
  3688. default: true
  3689. },
  3690. {
  3691. name: "Macro+",
  3692. height: math.unit(10, "km")
  3693. },
  3694. {
  3695. name: "Gigamacro",
  3696. height: math.unit(25000, "km")
  3697. },
  3698. {
  3699. name: "Teramacro",
  3700. height: math.unit(3e6, "km")
  3701. }
  3702. ]
  3703. ))
  3704. characterMakers.push(() => makeCharacter(
  3705. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3706. {
  3707. front: {
  3708. height: math.unit(6, "feet"),
  3709. weight: math.unit(175, "lb"),
  3710. name: "Front",
  3711. image: {
  3712. source: "./media/characters/nebula/front.svg",
  3713. extra: 2566 / 2362,
  3714. bottom: 81 / 2644
  3715. }
  3716. }
  3717. },
  3718. [
  3719. {
  3720. name: "Small",
  3721. height: math.unit(4.5, "meters")
  3722. },
  3723. {
  3724. name: "Macro",
  3725. height: math.unit(1500, "meters"),
  3726. default: true
  3727. },
  3728. {
  3729. name: "Megamacro",
  3730. height: math.unit(150, "km")
  3731. },
  3732. {
  3733. name: "Gigamacro",
  3734. height: math.unit(27000, "km")
  3735. }
  3736. ]
  3737. ))
  3738. characterMakers.push(() => makeCharacter(
  3739. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3740. {
  3741. front: {
  3742. height: math.unit(6, "feet"),
  3743. weight: math.unit(225, "lb"),
  3744. name: "Front",
  3745. image: {
  3746. source: "./media/characters/abysgar/front.svg"
  3747. }
  3748. }
  3749. },
  3750. [
  3751. {
  3752. name: "Small",
  3753. height: math.unit(4.5, "meters")
  3754. },
  3755. {
  3756. name: "Macro",
  3757. height: math.unit(1250, "meters"),
  3758. default: true
  3759. },
  3760. {
  3761. name: "Megamacro",
  3762. height: math.unit(125, "km")
  3763. },
  3764. {
  3765. name: "Gigamacro",
  3766. height: math.unit(26000, "km")
  3767. }
  3768. ]
  3769. ))
  3770. characterMakers.push(() => makeCharacter(
  3771. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3772. {
  3773. front: {
  3774. height: math.unit(6, "feet"),
  3775. weight: math.unit(180, "lb"),
  3776. name: "Front",
  3777. image: {
  3778. source: "./media/characters/yakuz/front.svg"
  3779. }
  3780. }
  3781. },
  3782. [
  3783. {
  3784. name: "Small",
  3785. height: math.unit(5, "meters")
  3786. },
  3787. {
  3788. name: "Macro",
  3789. height: math.unit(1500, "meters"),
  3790. default: true
  3791. },
  3792. {
  3793. name: "Megamacro",
  3794. height: math.unit(200, "km")
  3795. },
  3796. {
  3797. name: "Gigamacro",
  3798. height: math.unit(100000, "km")
  3799. }
  3800. ]
  3801. ))
  3802. characterMakers.push(() => makeCharacter(
  3803. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3804. {
  3805. front: {
  3806. height: math.unit(6, "feet"),
  3807. weight: math.unit(175, "lb"),
  3808. name: "Front",
  3809. image: {
  3810. source: "./media/characters/mirova/front.svg",
  3811. extra: 3334 / 3071,
  3812. bottom: 42 / 3375.6
  3813. }
  3814. }
  3815. },
  3816. [
  3817. {
  3818. name: "Small",
  3819. height: math.unit(5, "meters")
  3820. },
  3821. {
  3822. name: "Macro",
  3823. height: math.unit(900, "meters"),
  3824. default: true
  3825. },
  3826. {
  3827. name: "Megamacro",
  3828. height: math.unit(135, "km")
  3829. },
  3830. {
  3831. name: "Gigamacro",
  3832. height: math.unit(20000, "km")
  3833. }
  3834. ]
  3835. ))
  3836. characterMakers.push(() => makeCharacter(
  3837. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3838. {
  3839. side: {
  3840. height: math.unit(28.35, "feet"),
  3841. weight: math.unit(99.75, "tons"),
  3842. name: "Side",
  3843. image: {
  3844. source: "./media/characters/asana-mech/side.svg",
  3845. extra: 923 / 699,
  3846. bottom: 50 / 975
  3847. }
  3848. },
  3849. chaingun: {
  3850. height: math.unit(7, "feet"),
  3851. weight: math.unit(2400, "lb"),
  3852. name: "Chaingun",
  3853. image: {
  3854. source: "./media/characters/asana-mech/chaingun.svg"
  3855. }
  3856. },
  3857. laser: {
  3858. height: math.unit(7.12, "feet"),
  3859. weight: math.unit(2000, "lb"),
  3860. name: "Laser",
  3861. image: {
  3862. source: "./media/characters/asana-mech/laser.svg"
  3863. }
  3864. },
  3865. },
  3866. [
  3867. {
  3868. name: "Normal",
  3869. height: math.unit(28.35, "feet"),
  3870. default: true
  3871. },
  3872. {
  3873. name: "Macro",
  3874. height: math.unit(2500, "feet")
  3875. },
  3876. {
  3877. name: "Megamacro",
  3878. height: math.unit(25, "miles")
  3879. },
  3880. {
  3881. name: "Examacro",
  3882. height: math.unit(6e8, "lightyears")
  3883. },
  3884. ]
  3885. ))
  3886. characterMakers.push(() => makeCharacter(
  3887. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3888. {
  3889. front: {
  3890. height: math.unit(5, "meters"),
  3891. weight: math.unit(1000, "kg"),
  3892. name: "Front",
  3893. image: {
  3894. source: "./media/characters/asche/front.svg",
  3895. extra: 1258 / 1190,
  3896. bottom: 47 / 1305
  3897. }
  3898. },
  3899. frontUnderwear: {
  3900. height: math.unit(5, "meters"),
  3901. weight: math.unit(1000, "kg"),
  3902. name: "Front (Underwear)",
  3903. image: {
  3904. source: "./media/characters/asche/front-underwear.svg",
  3905. extra: 1258 / 1190,
  3906. bottom: 47 / 1305
  3907. }
  3908. },
  3909. frontDressed: {
  3910. height: math.unit(5, "meters"),
  3911. weight: math.unit(1000, "kg"),
  3912. name: "Front (Dressed)",
  3913. image: {
  3914. source: "./media/characters/asche/front-dressed.svg",
  3915. extra: 1258 / 1190,
  3916. bottom: 47 / 1305
  3917. }
  3918. },
  3919. frontArmor: {
  3920. height: math.unit(5, "meters"),
  3921. weight: math.unit(1000, "kg"),
  3922. name: "Front (Armored)",
  3923. image: {
  3924. source: "./media/characters/asche/front-armored.svg",
  3925. extra: 1374 / 1308,
  3926. bottom: 23 / 1397
  3927. }
  3928. },
  3929. mp724: {
  3930. height: math.unit(0.96, "meters"),
  3931. weight: math.unit(38, "kg"),
  3932. name: "H&K MP724",
  3933. image: {
  3934. source: "./media/characters/asche/h&k-mp724.svg"
  3935. }
  3936. },
  3937. side: {
  3938. height: math.unit(5, "meters"),
  3939. weight: math.unit(1000, "kg"),
  3940. name: "Side",
  3941. image: {
  3942. source: "./media/characters/asche/side.svg",
  3943. extra: 1717 / 1609,
  3944. bottom: 0.005
  3945. }
  3946. },
  3947. back: {
  3948. height: math.unit(5, "meters"),
  3949. weight: math.unit(1000, "kg"),
  3950. name: "Back",
  3951. image: {
  3952. source: "./media/characters/asche/back.svg",
  3953. extra: 1570 / 1501
  3954. }
  3955. },
  3956. },
  3957. [
  3958. {
  3959. name: "DEFCON 5",
  3960. height: math.unit(5, "meters")
  3961. },
  3962. {
  3963. name: "DEFCON 4",
  3964. height: math.unit(500, "meters"),
  3965. default: true
  3966. },
  3967. {
  3968. name: "DEFCON 3",
  3969. height: math.unit(5, "km")
  3970. },
  3971. {
  3972. name: "DEFCON 2",
  3973. height: math.unit(500, "km")
  3974. },
  3975. {
  3976. name: "DEFCON 1",
  3977. height: math.unit(500000, "km")
  3978. },
  3979. {
  3980. name: "DEFCON 0",
  3981. height: math.unit(3, "gigaparsecs")
  3982. },
  3983. ]
  3984. ))
  3985. characterMakers.push(() => makeCharacter(
  3986. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3987. {
  3988. front: {
  3989. height: math.unit(2, "meters"),
  3990. weight: math.unit(76, "kg"),
  3991. name: "Front",
  3992. image: {
  3993. source: "./media/characters/gale/front.svg"
  3994. }
  3995. },
  3996. frontAlt1: {
  3997. height: math.unit(2, "meters"),
  3998. weight: math.unit(76, "kg"),
  3999. name: "Front (Alt 1)",
  4000. image: {
  4001. source: "./media/characters/gale/front-alt-1.svg"
  4002. }
  4003. },
  4004. frontAlt2: {
  4005. height: math.unit(2, "meters"),
  4006. weight: math.unit(76, "kg"),
  4007. name: "Front (Alt 2)",
  4008. image: {
  4009. source: "./media/characters/gale/front-alt-2.svg"
  4010. }
  4011. },
  4012. },
  4013. [
  4014. {
  4015. name: "Normal",
  4016. height: math.unit(7, "feet")
  4017. },
  4018. {
  4019. name: "Macro",
  4020. height: math.unit(150, "feet"),
  4021. default: true
  4022. },
  4023. {
  4024. name: "Macro+",
  4025. height: math.unit(300, "feet")
  4026. },
  4027. ]
  4028. ))
  4029. characterMakers.push(() => makeCharacter(
  4030. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4031. {
  4032. front: {
  4033. height: math.unit(2, "meters"),
  4034. weight: math.unit(76, "kg"),
  4035. name: "Front",
  4036. image: {
  4037. source: "./media/characters/draylen/front.svg"
  4038. }
  4039. }
  4040. },
  4041. [
  4042. {
  4043. name: "Macro",
  4044. height: math.unit(150, "feet"),
  4045. default: true
  4046. }
  4047. ]
  4048. ))
  4049. characterMakers.push(() => makeCharacter(
  4050. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4051. {
  4052. front: {
  4053. height: math.unit(7 + 9 / 12, "feet"),
  4054. weight: math.unit(379, "lbs"),
  4055. name: "Front",
  4056. image: {
  4057. source: "./media/characters/chez/front.svg"
  4058. }
  4059. },
  4060. side: {
  4061. height: math.unit(7 + 9 / 12, "feet"),
  4062. weight: math.unit(379, "lbs"),
  4063. name: "Side",
  4064. image: {
  4065. source: "./media/characters/chez/side.svg"
  4066. }
  4067. }
  4068. },
  4069. [
  4070. {
  4071. name: "Normal",
  4072. height: math.unit(7 + 9 / 12, "feet"),
  4073. default: true
  4074. },
  4075. {
  4076. name: "God King",
  4077. height: math.unit(9750000, "meters")
  4078. }
  4079. ]
  4080. ))
  4081. characterMakers.push(() => makeCharacter(
  4082. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4083. {
  4084. front: {
  4085. height: math.unit(6, "feet"),
  4086. weight: math.unit(275, "lbs"),
  4087. name: "Front",
  4088. image: {
  4089. source: "./media/characters/kaylum/front.svg",
  4090. bottom: 0.01,
  4091. extra: 1166 / 1031
  4092. }
  4093. },
  4094. frontWingless: {
  4095. height: math.unit(6, "feet"),
  4096. weight: math.unit(275, "lbs"),
  4097. name: "Front (Wingless)",
  4098. image: {
  4099. source: "./media/characters/kaylum/front-wingless.svg",
  4100. bottom: 0.01,
  4101. extra: 1117 / 1031
  4102. }
  4103. }
  4104. },
  4105. [
  4106. {
  4107. name: "Normal",
  4108. height: math.unit(3.05, "meters")
  4109. },
  4110. {
  4111. name: "Master",
  4112. height: math.unit(5.5, "meters")
  4113. },
  4114. {
  4115. name: "Rampage",
  4116. height: math.unit(19, "meters")
  4117. },
  4118. {
  4119. name: "Macro Lite",
  4120. height: math.unit(37, "meters")
  4121. },
  4122. {
  4123. name: "Hyper Predator",
  4124. height: math.unit(61, "meters")
  4125. },
  4126. {
  4127. name: "Macro",
  4128. height: math.unit(138, "meters"),
  4129. default: true
  4130. }
  4131. ]
  4132. ))
  4133. characterMakers.push(() => makeCharacter(
  4134. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4135. {
  4136. front: {
  4137. height: math.unit(6, "feet"),
  4138. weight: math.unit(150, "lbs"),
  4139. name: "Front",
  4140. image: {
  4141. source: "./media/characters/geta/front.svg"
  4142. }
  4143. }
  4144. },
  4145. [
  4146. {
  4147. name: "Micro",
  4148. height: math.unit(3, "inches"),
  4149. default: true
  4150. },
  4151. {
  4152. name: "Normal",
  4153. height: math.unit(5 + 5 / 12, "feet")
  4154. }
  4155. ]
  4156. ))
  4157. characterMakers.push(() => makeCharacter(
  4158. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4159. {
  4160. front: {
  4161. height: math.unit(6, "feet"),
  4162. weight: math.unit(300, "lbs"),
  4163. name: "Front",
  4164. image: {
  4165. source: "./media/characters/tyrnn/front.svg"
  4166. }
  4167. }
  4168. },
  4169. [
  4170. {
  4171. name: "Main Height",
  4172. height: math.unit(355, "feet"),
  4173. default: true
  4174. },
  4175. {
  4176. name: "Fave. Height",
  4177. height: math.unit(2400, "feet")
  4178. }
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(6, "feet"),
  4186. weight: math.unit(300, "lbs"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/appledectomy/front.svg"
  4190. }
  4191. }
  4192. },
  4193. [
  4194. {
  4195. name: "Macro",
  4196. height: math.unit(2500, "feet")
  4197. },
  4198. {
  4199. name: "Megamacro",
  4200. height: math.unit(50, "miles"),
  4201. default: true
  4202. },
  4203. {
  4204. name: "Gigamacro",
  4205. height: math.unit(5000, "miles")
  4206. },
  4207. {
  4208. name: "Teramacro",
  4209. height: math.unit(250000, "miles")
  4210. },
  4211. ]
  4212. ))
  4213. characterMakers.push(() => makeCharacter(
  4214. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4215. {
  4216. front: {
  4217. height: math.unit(6, "feet"),
  4218. weight: math.unit(200, "lbs"),
  4219. name: "Front",
  4220. image: {
  4221. source: "./media/characters/vulpes/front.svg",
  4222. extra: 573 / 543,
  4223. bottom: 0.033
  4224. }
  4225. },
  4226. side: {
  4227. height: math.unit(6, "feet"),
  4228. weight: math.unit(200, "lbs"),
  4229. name: "Side",
  4230. image: {
  4231. source: "./media/characters/vulpes/side.svg",
  4232. extra: 577 / 549,
  4233. bottom: 11 / 588
  4234. }
  4235. },
  4236. back: {
  4237. height: math.unit(6, "feet"),
  4238. weight: math.unit(200, "lbs"),
  4239. name: "Back",
  4240. image: {
  4241. source: "./media/characters/vulpes/back.svg",
  4242. extra: 573 / 549,
  4243. bottom: 20 / 593
  4244. }
  4245. },
  4246. feet: {
  4247. height: math.unit(1.276, "feet"),
  4248. name: "Feet",
  4249. image: {
  4250. source: "./media/characters/vulpes/feet.svg"
  4251. }
  4252. },
  4253. maw: {
  4254. height: math.unit(1.18, "feet"),
  4255. name: "Maw",
  4256. image: {
  4257. source: "./media/characters/vulpes/maw.svg"
  4258. }
  4259. },
  4260. },
  4261. [
  4262. {
  4263. name: "Micro",
  4264. height: math.unit(2, "inches")
  4265. },
  4266. {
  4267. name: "Normal",
  4268. height: math.unit(6.3, "feet")
  4269. },
  4270. {
  4271. name: "Macro",
  4272. height: math.unit(850, "feet")
  4273. },
  4274. {
  4275. name: "Megamacro",
  4276. height: math.unit(7500, "feet"),
  4277. default: true
  4278. },
  4279. {
  4280. name: "Gigamacro",
  4281. height: math.unit(570000, "miles")
  4282. }
  4283. ]
  4284. ))
  4285. characterMakers.push(() => makeCharacter(
  4286. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4287. {
  4288. front: {
  4289. height: math.unit(6, "feet"),
  4290. weight: math.unit(210, "lbs"),
  4291. name: "Front",
  4292. image: {
  4293. source: "./media/characters/rain-fallen/front.svg"
  4294. }
  4295. },
  4296. side: {
  4297. height: math.unit(6, "feet"),
  4298. weight: math.unit(210, "lbs"),
  4299. name: "Side",
  4300. image: {
  4301. source: "./media/characters/rain-fallen/side.svg"
  4302. }
  4303. },
  4304. back: {
  4305. height: math.unit(6, "feet"),
  4306. weight: math.unit(210, "lbs"),
  4307. name: "Back",
  4308. image: {
  4309. source: "./media/characters/rain-fallen/back.svg"
  4310. }
  4311. },
  4312. feral: {
  4313. height: math.unit(9, "feet"),
  4314. weight: math.unit(700, "lbs"),
  4315. name: "Feral",
  4316. image: {
  4317. source: "./media/characters/rain-fallen/feral.svg"
  4318. }
  4319. },
  4320. },
  4321. [
  4322. {
  4323. name: "Meddling with Mortals",
  4324. height: math.unit(8 + 8/12, "feet")
  4325. },
  4326. {
  4327. name: "Normal",
  4328. height: math.unit(5, "meter")
  4329. },
  4330. {
  4331. name: "Macro",
  4332. height: math.unit(150, "meter"),
  4333. default: true
  4334. },
  4335. {
  4336. name: "Megamacro",
  4337. height: math.unit(278e6, "meter")
  4338. },
  4339. {
  4340. name: "Gigamacro",
  4341. height: math.unit(2e9, "meter")
  4342. },
  4343. {
  4344. name: "Teramacro",
  4345. height: math.unit(8e12, "meter")
  4346. },
  4347. {
  4348. name: "Devourer",
  4349. height: math.unit(14, "zettameters")
  4350. },
  4351. {
  4352. name: "Scarlet King",
  4353. height: math.unit(18, "yottameters")
  4354. },
  4355. {
  4356. name: "Void",
  4357. height: math.unit(6.66e66, "yottameters")
  4358. }
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4363. {
  4364. standing: {
  4365. height: math.unit(6, "feet"),
  4366. weight: math.unit(180, "lbs"),
  4367. name: "Standing",
  4368. image: {
  4369. source: "./media/characters/zaakira/standing.svg"
  4370. }
  4371. },
  4372. laying: {
  4373. height: math.unit(3, "feet"),
  4374. weight: math.unit(180, "lbs"),
  4375. name: "Laying",
  4376. image: {
  4377. source: "./media/characters/zaakira/laying.svg"
  4378. }
  4379. },
  4380. },
  4381. [
  4382. {
  4383. name: "Normal",
  4384. height: math.unit(12, "feet")
  4385. },
  4386. {
  4387. name: "Macro",
  4388. height: math.unit(279, "feet"),
  4389. default: true
  4390. }
  4391. ]
  4392. ))
  4393. characterMakers.push(() => makeCharacter(
  4394. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4395. {
  4396. femSfw: {
  4397. height: math.unit(8, "feet"),
  4398. weight: math.unit(350, "lb"),
  4399. name: "Fem",
  4400. image: {
  4401. source: "./media/characters/sigvald/fem-sfw.svg",
  4402. extra: 182 / 164,
  4403. bottom: 8.7 / 190.5
  4404. }
  4405. },
  4406. femNsfw: {
  4407. height: math.unit(8, "feet"),
  4408. weight: math.unit(350, "lb"),
  4409. name: "Fem (NSFW)",
  4410. image: {
  4411. source: "./media/characters/sigvald/fem-nsfw.svg",
  4412. extra: 182 / 164,
  4413. bottom: 8.7 / 190.5
  4414. }
  4415. },
  4416. maleNsfw: {
  4417. height: math.unit(8, "feet"),
  4418. weight: math.unit(350, "lb"),
  4419. name: "Male (NSFW)",
  4420. image: {
  4421. source: "./media/characters/sigvald/male-nsfw.svg",
  4422. extra: 182 / 164,
  4423. bottom: 8.7 / 190.5
  4424. }
  4425. },
  4426. hermNsfw: {
  4427. height: math.unit(8, "feet"),
  4428. weight: math.unit(350, "lb"),
  4429. name: "Herm (NSFW)",
  4430. image: {
  4431. source: "./media/characters/sigvald/herm-nsfw.svg",
  4432. extra: 182 / 164,
  4433. bottom: 8.7 / 190.5
  4434. }
  4435. },
  4436. dick: {
  4437. height: math.unit(2.36, "feet"),
  4438. name: "Dick",
  4439. image: {
  4440. source: "./media/characters/sigvald/dick.svg"
  4441. }
  4442. },
  4443. eye: {
  4444. height: math.unit(0.31, "feet"),
  4445. name: "Eye",
  4446. image: {
  4447. source: "./media/characters/sigvald/eye.svg"
  4448. }
  4449. },
  4450. mouth: {
  4451. height: math.unit(0.92, "feet"),
  4452. name: "Mouth",
  4453. image: {
  4454. source: "./media/characters/sigvald/mouth.svg"
  4455. }
  4456. },
  4457. paws: {
  4458. height: math.unit(2.2, "feet"),
  4459. name: "Paws",
  4460. image: {
  4461. source: "./media/characters/sigvald/paws.svg"
  4462. }
  4463. }
  4464. },
  4465. [
  4466. {
  4467. name: "Normal",
  4468. height: math.unit(8, "feet")
  4469. },
  4470. {
  4471. name: "Large",
  4472. height: math.unit(12, "feet")
  4473. },
  4474. {
  4475. name: "Larger",
  4476. height: math.unit(20, "feet")
  4477. },
  4478. {
  4479. name: "Macro",
  4480. height: math.unit(150, "feet")
  4481. },
  4482. {
  4483. name: "Macro+",
  4484. height: math.unit(200, "feet"),
  4485. default: true
  4486. },
  4487. ]
  4488. ))
  4489. characterMakers.push(() => makeCharacter(
  4490. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4491. {
  4492. side: {
  4493. height: math.unit(12, "feet"),
  4494. weight: math.unit(2000, "kg"),
  4495. name: "Side",
  4496. image: {
  4497. source: "./media/characters/scott/side.svg",
  4498. extra: 754 / 724,
  4499. bottom: 0.069
  4500. }
  4501. },
  4502. upright: {
  4503. height: math.unit(12, "feet"),
  4504. weight: math.unit(2000, "kg"),
  4505. name: "Upright",
  4506. image: {
  4507. source: "./media/characters/scott/upright.svg",
  4508. extra: 3881 / 3722,
  4509. bottom: 0.05
  4510. }
  4511. },
  4512. },
  4513. [
  4514. {
  4515. name: "Normal",
  4516. height: math.unit(12, "feet"),
  4517. default: true
  4518. },
  4519. ]
  4520. ))
  4521. characterMakers.push(() => makeCharacter(
  4522. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4523. {
  4524. side: {
  4525. height: math.unit(8, "meters"),
  4526. weight: math.unit(84755, "lbs"),
  4527. name: "Side",
  4528. image: {
  4529. source: "./media/characters/tobias/side.svg",
  4530. extra: 1474 / 1096,
  4531. bottom: 38.9 / 1513.1235
  4532. }
  4533. },
  4534. },
  4535. [
  4536. {
  4537. name: "Normal",
  4538. height: math.unit(8, "meters"),
  4539. default: true
  4540. },
  4541. ]
  4542. ))
  4543. characterMakers.push(() => makeCharacter(
  4544. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4545. {
  4546. front: {
  4547. height: math.unit(5.5, "feet"),
  4548. weight: math.unit(400, "lbs"),
  4549. name: "Front",
  4550. image: {
  4551. source: "./media/characters/kieran/front.svg",
  4552. extra: 2694 / 2364,
  4553. bottom: 217 / 2908
  4554. }
  4555. },
  4556. side: {
  4557. height: math.unit(5.5, "feet"),
  4558. weight: math.unit(400, "lbs"),
  4559. name: "Side",
  4560. image: {
  4561. source: "./media/characters/kieran/side.svg",
  4562. extra: 875 / 777,
  4563. bottom: 84.6 / 959
  4564. }
  4565. },
  4566. },
  4567. [
  4568. {
  4569. name: "Normal",
  4570. height: math.unit(5.5, "feet"),
  4571. default: true
  4572. },
  4573. ]
  4574. ))
  4575. characterMakers.push(() => makeCharacter(
  4576. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4577. {
  4578. side: {
  4579. height: math.unit(2, "meters"),
  4580. weight: math.unit(70, "kg"),
  4581. name: "Side",
  4582. image: {
  4583. source: "./media/characters/sanya/side.svg",
  4584. bottom: 0.02,
  4585. extra: 1.02
  4586. }
  4587. },
  4588. },
  4589. [
  4590. {
  4591. name: "Small",
  4592. height: math.unit(2, "meters")
  4593. },
  4594. {
  4595. name: "Normal",
  4596. height: math.unit(3, "meters")
  4597. },
  4598. {
  4599. name: "Macro",
  4600. height: math.unit(16, "meters"),
  4601. default: true
  4602. },
  4603. ]
  4604. ))
  4605. characterMakers.push(() => makeCharacter(
  4606. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4607. {
  4608. front: {
  4609. height: math.unit(2, "meters"),
  4610. weight: math.unit(120, "kg"),
  4611. name: "Front",
  4612. image: {
  4613. source: "./media/characters/miranda/front.svg",
  4614. extra: 195 / 185,
  4615. bottom: 10.9 / 206.5
  4616. }
  4617. },
  4618. back: {
  4619. height: math.unit(2, "meters"),
  4620. weight: math.unit(120, "kg"),
  4621. name: "Back",
  4622. image: {
  4623. source: "./media/characters/miranda/back.svg",
  4624. extra: 201 / 193,
  4625. bottom: 2.3 / 203.7
  4626. }
  4627. },
  4628. },
  4629. [
  4630. {
  4631. name: "Normal",
  4632. height: math.unit(10, "feet"),
  4633. default: true
  4634. }
  4635. ]
  4636. ))
  4637. characterMakers.push(() => makeCharacter(
  4638. { name: "James", species: ["deer"], tags: ["anthro"] },
  4639. {
  4640. side: {
  4641. height: math.unit(2, "meters"),
  4642. weight: math.unit(100, "kg"),
  4643. name: "Front",
  4644. image: {
  4645. source: "./media/characters/james/front.svg",
  4646. extra: 10 / 8.5
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "Normal",
  4653. height: math.unit(8.5, "feet"),
  4654. default: true
  4655. }
  4656. ]
  4657. ))
  4658. characterMakers.push(() => makeCharacter(
  4659. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4660. {
  4661. side: {
  4662. height: math.unit(9.5, "feet"),
  4663. weight: math.unit(2500, "lbs"),
  4664. name: "Side",
  4665. image: {
  4666. source: "./media/characters/heather/side.svg"
  4667. }
  4668. },
  4669. },
  4670. [
  4671. {
  4672. name: "Normal",
  4673. height: math.unit(9.5, "feet"),
  4674. default: true
  4675. }
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4680. {
  4681. side: {
  4682. height: math.unit(6.5, "feet"),
  4683. weight: math.unit(400, "lbs"),
  4684. name: "Side",
  4685. image: {
  4686. source: "./media/characters/lukas/side.svg",
  4687. extra: 7.25 / 6.5
  4688. }
  4689. },
  4690. },
  4691. [
  4692. {
  4693. name: "Normal",
  4694. height: math.unit(6.5, "feet"),
  4695. default: true
  4696. }
  4697. ]
  4698. ))
  4699. characterMakers.push(() => makeCharacter(
  4700. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4701. {
  4702. side: {
  4703. height: math.unit(5, "feet"),
  4704. weight: math.unit(3000, "lbs"),
  4705. name: "Side",
  4706. image: {
  4707. source: "./media/characters/louise/side.svg"
  4708. }
  4709. },
  4710. },
  4711. [
  4712. {
  4713. name: "Normal",
  4714. height: math.unit(5, "feet"),
  4715. default: true
  4716. }
  4717. ]
  4718. ))
  4719. characterMakers.push(() => makeCharacter(
  4720. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4721. {
  4722. side: {
  4723. height: math.unit(6, "feet"),
  4724. weight: math.unit(150, "lbs"),
  4725. name: "Side",
  4726. image: {
  4727. source: "./media/characters/ramona/side.svg"
  4728. }
  4729. },
  4730. },
  4731. [
  4732. {
  4733. name: "Normal",
  4734. height: math.unit(5.3, "meters"),
  4735. default: true
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(20, "stories")
  4740. },
  4741. {
  4742. name: "Macro+",
  4743. height: math.unit(50, "stories")
  4744. },
  4745. ]
  4746. ))
  4747. characterMakers.push(() => makeCharacter(
  4748. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4749. {
  4750. standing: {
  4751. height: math.unit(5.75, "feet"),
  4752. weight: math.unit(160, "lbs"),
  4753. name: "Standing",
  4754. image: {
  4755. source: "./media/characters/deerpuff/standing.svg",
  4756. extra: 682 / 624
  4757. }
  4758. },
  4759. sitting: {
  4760. height: math.unit(5.75 / 1.79, "feet"),
  4761. weight: math.unit(160, "lbs"),
  4762. name: "Sitting",
  4763. image: {
  4764. source: "./media/characters/deerpuff/sitting.svg",
  4765. bottom: 44 / 400,
  4766. extra: 1
  4767. }
  4768. },
  4769. taurLaying: {
  4770. height: math.unit(6, "feet"),
  4771. weight: math.unit(400, "lbs"),
  4772. name: "Taur (Laying)",
  4773. image: {
  4774. source: "./media/characters/deerpuff/taur-laying.svg"
  4775. }
  4776. },
  4777. },
  4778. [
  4779. {
  4780. name: "Puffball",
  4781. height: math.unit(6, "inches")
  4782. },
  4783. {
  4784. name: "Normalpuff",
  4785. height: math.unit(5.75, "feet")
  4786. },
  4787. {
  4788. name: "Macropuff",
  4789. height: math.unit(1500, "feet"),
  4790. default: true
  4791. },
  4792. {
  4793. name: "Megapuff",
  4794. height: math.unit(500, "miles")
  4795. },
  4796. {
  4797. name: "Gigapuff",
  4798. height: math.unit(250000, "miles")
  4799. },
  4800. {
  4801. name: "Omegapuff",
  4802. height: math.unit(1000, "lightyears")
  4803. },
  4804. ]
  4805. ))
  4806. characterMakers.push(() => makeCharacter(
  4807. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4808. {
  4809. stomping: {
  4810. height: math.unit(6, "feet"),
  4811. weight: math.unit(170, "lbs"),
  4812. name: "Stomping",
  4813. image: {
  4814. source: "./media/characters/vivian/stomping.svg"
  4815. }
  4816. },
  4817. sitting: {
  4818. height: math.unit(6 / 1.75, "feet"),
  4819. weight: math.unit(170, "lbs"),
  4820. name: "Sitting",
  4821. image: {
  4822. source: "./media/characters/vivian/sitting.svg",
  4823. bottom: 1 / 6.4,
  4824. extra: 1,
  4825. }
  4826. },
  4827. },
  4828. [
  4829. {
  4830. name: "Normal",
  4831. height: math.unit(7, "feet"),
  4832. default: true
  4833. },
  4834. {
  4835. name: "Macro",
  4836. height: math.unit(10, "stories")
  4837. },
  4838. {
  4839. name: "Macro+",
  4840. height: math.unit(30, "stories")
  4841. },
  4842. {
  4843. name: "Megamacro",
  4844. height: math.unit(10, "miles")
  4845. },
  4846. {
  4847. name: "Megamacro+",
  4848. height: math.unit(2750000, "meters")
  4849. },
  4850. ]
  4851. ))
  4852. characterMakers.push(() => makeCharacter(
  4853. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4854. {
  4855. front: {
  4856. height: math.unit(6, "feet"),
  4857. weight: math.unit(160, "lbs"),
  4858. name: "Front",
  4859. image: {
  4860. source: "./media/characters/prince/front.svg",
  4861. extra: 3400 / 3000
  4862. }
  4863. },
  4864. jumping: {
  4865. height: math.unit(6, "feet"),
  4866. weight: math.unit(160, "lbs"),
  4867. name: "Jumping",
  4868. image: {
  4869. source: "./media/characters/prince/jump.svg",
  4870. extra: 2555 / 2134
  4871. }
  4872. },
  4873. },
  4874. [
  4875. {
  4876. name: "Normal",
  4877. height: math.unit(7.75, "feet"),
  4878. default: true
  4879. },
  4880. {
  4881. name: "Not cute",
  4882. height: math.unit(17, "feet")
  4883. },
  4884. {
  4885. name: "I said NOT",
  4886. height: math.unit(91, "feet")
  4887. },
  4888. {
  4889. name: "Please stop",
  4890. height: math.unit(560, "feet")
  4891. },
  4892. {
  4893. name: "What have you done",
  4894. height: math.unit(2200, "feet")
  4895. },
  4896. {
  4897. name: "Deer God",
  4898. height: math.unit(3.6, "miles")
  4899. },
  4900. ]
  4901. ))
  4902. characterMakers.push(() => makeCharacter(
  4903. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4904. {
  4905. standing: {
  4906. height: math.unit(6, "feet"),
  4907. weight: math.unit(300, "lbs"),
  4908. name: "Standing",
  4909. image: {
  4910. source: "./media/characters/psymon/standing.svg",
  4911. extra: 1888 / 1810,
  4912. bottom: 0.05
  4913. }
  4914. },
  4915. slithering: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(300, "lbs"),
  4918. name: "Slithering",
  4919. image: {
  4920. source: "./media/characters/psymon/slithering.svg",
  4921. extra: 1330 / 1224
  4922. }
  4923. },
  4924. slitheringAlt: {
  4925. height: math.unit(6, "feet"),
  4926. weight: math.unit(300, "lbs"),
  4927. name: "Slithering (Alt)",
  4928. image: {
  4929. source: "./media/characters/psymon/slithering-alt.svg",
  4930. extra: 1330 / 1224
  4931. }
  4932. },
  4933. },
  4934. [
  4935. {
  4936. name: "Normal",
  4937. height: math.unit(11.25, "feet"),
  4938. default: true
  4939. },
  4940. {
  4941. name: "Large",
  4942. height: math.unit(27, "feet")
  4943. },
  4944. {
  4945. name: "Giant",
  4946. height: math.unit(87, "feet")
  4947. },
  4948. {
  4949. name: "Macro",
  4950. height: math.unit(365, "feet")
  4951. },
  4952. {
  4953. name: "Megamacro",
  4954. height: math.unit(3, "miles")
  4955. },
  4956. {
  4957. name: "World Serpent",
  4958. height: math.unit(8000, "miles")
  4959. },
  4960. ]
  4961. ))
  4962. characterMakers.push(() => makeCharacter(
  4963. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4964. {
  4965. front: {
  4966. height: math.unit(6, "feet"),
  4967. weight: math.unit(180, "lbs"),
  4968. name: "Front",
  4969. image: {
  4970. source: "./media/characters/daimos/front.svg",
  4971. extra: 4160 / 3897,
  4972. bottom: 0.021
  4973. }
  4974. }
  4975. },
  4976. [
  4977. {
  4978. name: "Normal",
  4979. height: math.unit(8, "feet"),
  4980. default: true
  4981. },
  4982. {
  4983. name: "Big Dog",
  4984. height: math.unit(22, "feet")
  4985. },
  4986. {
  4987. name: "Macro",
  4988. height: math.unit(127, "feet")
  4989. },
  4990. {
  4991. name: "Megamacro",
  4992. height: math.unit(3600, "feet")
  4993. },
  4994. ]
  4995. ))
  4996. characterMakers.push(() => makeCharacter(
  4997. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4998. {
  4999. side: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(180, "lbs"),
  5002. name: "Side",
  5003. image: {
  5004. source: "./media/characters/blake/side.svg",
  5005. extra: 1212 / 1120,
  5006. bottom: 0.05
  5007. }
  5008. },
  5009. crouched: {
  5010. height: math.unit(6 * 0.57, "feet"),
  5011. weight: math.unit(180, "lbs"),
  5012. name: "Crouched",
  5013. image: {
  5014. source: "./media/characters/blake/crouched.svg",
  5015. extra: 840 / 587,
  5016. bottom: 0.04
  5017. }
  5018. },
  5019. bent: {
  5020. height: math.unit(6 * 0.75, "feet"),
  5021. weight: math.unit(180, "lbs"),
  5022. name: "Bent",
  5023. image: {
  5024. source: "./media/characters/blake/bent.svg",
  5025. extra: 592 / 544,
  5026. bottom: 0.035
  5027. }
  5028. },
  5029. },
  5030. [
  5031. {
  5032. name: "Normal",
  5033. height: math.unit(8 + 1 / 6, "feet"),
  5034. default: true
  5035. },
  5036. {
  5037. name: "Big Backside",
  5038. height: math.unit(37, "feet")
  5039. },
  5040. {
  5041. name: "Subway Shredder",
  5042. height: math.unit(72, "feet")
  5043. },
  5044. {
  5045. name: "City Carver",
  5046. height: math.unit(1675, "feet")
  5047. },
  5048. {
  5049. name: "Tectonic Tweaker",
  5050. height: math.unit(2300, "miles")
  5051. },
  5052. ]
  5053. ))
  5054. characterMakers.push(() => makeCharacter(
  5055. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5056. {
  5057. front: {
  5058. height: math.unit(6, "feet"),
  5059. weight: math.unit(180, "lbs"),
  5060. name: "Front",
  5061. image: {
  5062. source: "./media/characters/guisetto/front.svg",
  5063. extra: 856 / 817,
  5064. bottom: 0.06
  5065. }
  5066. },
  5067. airborne: {
  5068. height: math.unit(6, "feet"),
  5069. weight: math.unit(180, "lbs"),
  5070. name: "Airborne",
  5071. image: {
  5072. source: "./media/characters/guisetto/airborne.svg",
  5073. extra: 584 / 525
  5074. }
  5075. },
  5076. },
  5077. [
  5078. {
  5079. name: "Normal",
  5080. height: math.unit(10 + 11 / 12, "feet"),
  5081. default: true
  5082. },
  5083. {
  5084. name: "Large",
  5085. height: math.unit(35, "feet")
  5086. },
  5087. {
  5088. name: "Macro",
  5089. height: math.unit(475, "feet")
  5090. },
  5091. ]
  5092. ))
  5093. characterMakers.push(() => makeCharacter(
  5094. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5095. {
  5096. front: {
  5097. height: math.unit(6, "feet"),
  5098. weight: math.unit(180, "lbs"),
  5099. name: "Front",
  5100. image: {
  5101. source: "./media/characters/luxor/front.svg",
  5102. extra: 2940 / 2152
  5103. }
  5104. },
  5105. back: {
  5106. height: math.unit(6, "feet"),
  5107. weight: math.unit(180, "lbs"),
  5108. name: "Back",
  5109. image: {
  5110. source: "./media/characters/luxor/back.svg",
  5111. extra: 1083 / 960
  5112. }
  5113. },
  5114. },
  5115. [
  5116. {
  5117. name: "Normal",
  5118. height: math.unit(5 + 5 / 6, "feet"),
  5119. default: true
  5120. },
  5121. {
  5122. name: "Lamp",
  5123. height: math.unit(50, "feet")
  5124. },
  5125. {
  5126. name: "Lämp",
  5127. height: math.unit(300, "feet")
  5128. },
  5129. {
  5130. name: "The sun is a lamp",
  5131. height: math.unit(250000, "miles")
  5132. },
  5133. ]
  5134. ))
  5135. characterMakers.push(() => makeCharacter(
  5136. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5137. {
  5138. front: {
  5139. height: math.unit(6, "feet"),
  5140. weight: math.unit(50, "lbs"),
  5141. name: "Front",
  5142. image: {
  5143. source: "./media/characters/huoyan/front.svg"
  5144. }
  5145. },
  5146. side: {
  5147. height: math.unit(6, "feet"),
  5148. weight: math.unit(180, "lbs"),
  5149. name: "Side",
  5150. image: {
  5151. source: "./media/characters/huoyan/side.svg"
  5152. }
  5153. },
  5154. },
  5155. [
  5156. {
  5157. name: "Chef",
  5158. height: math.unit(9, "feet")
  5159. },
  5160. {
  5161. name: "Normal",
  5162. height: math.unit(65, "feet"),
  5163. default: true
  5164. },
  5165. {
  5166. name: "Macro",
  5167. height: math.unit(780, "feet")
  5168. },
  5169. {
  5170. name: "Flaming Mountain",
  5171. height: math.unit(4.8, "miles")
  5172. },
  5173. {
  5174. name: "Celestial",
  5175. height: math.unit(765000, "miles")
  5176. },
  5177. ]
  5178. ))
  5179. characterMakers.push(() => makeCharacter(
  5180. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5181. {
  5182. front: {
  5183. height: math.unit(5 + 3 / 4, "feet"),
  5184. weight: math.unit(120, "lbs"),
  5185. name: "Front",
  5186. image: {
  5187. source: "./media/characters/tails/front.svg"
  5188. }
  5189. }
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(5 + 3 / 4, "feet"),
  5195. default: true
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5201. {
  5202. front: {
  5203. height: math.unit(4, "feet"),
  5204. weight: math.unit(50, "lbs"),
  5205. name: "Front",
  5206. image: {
  5207. source: "./media/characters/rainy/front.svg"
  5208. }
  5209. }
  5210. },
  5211. [
  5212. {
  5213. name: "Macro",
  5214. height: math.unit(800, "feet"),
  5215. default: true
  5216. }
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5221. {
  5222. front: {
  5223. height: math.unit(6, "feet"),
  5224. weight: math.unit(150, "lbs"),
  5225. name: "Front",
  5226. image: {
  5227. source: "./media/characters/rainier/front.svg"
  5228. }
  5229. }
  5230. },
  5231. [
  5232. {
  5233. name: "Micro",
  5234. height: math.unit(2, "mm"),
  5235. default: true
  5236. }
  5237. ]
  5238. ))
  5239. characterMakers.push(() => makeCharacter(
  5240. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5241. {
  5242. front: {
  5243. height: math.unit(6, "feet"),
  5244. weight: math.unit(180, "lbs"),
  5245. name: "Front",
  5246. image: {
  5247. source: "./media/characters/andy/front.svg"
  5248. }
  5249. }
  5250. },
  5251. [
  5252. {
  5253. name: "Normal",
  5254. height: math.unit(8, "feet"),
  5255. default: true
  5256. },
  5257. {
  5258. name: "Macro",
  5259. height: math.unit(1000, "feet")
  5260. },
  5261. {
  5262. name: "Megamacro",
  5263. height: math.unit(5, "miles")
  5264. },
  5265. {
  5266. name: "Gigamacro",
  5267. height: math.unit(5000, "miles")
  5268. },
  5269. ]
  5270. ))
  5271. characterMakers.push(() => makeCharacter(
  5272. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5273. {
  5274. front: {
  5275. height: math.unit(6, "feet"),
  5276. weight: math.unit(210, "lbs"),
  5277. name: "Front",
  5278. image: {
  5279. source: "./media/characters/cimmaron/front-sfw.svg",
  5280. extra: 701 / 676,
  5281. bottom: 0.046
  5282. }
  5283. },
  5284. back: {
  5285. height: math.unit(6, "feet"),
  5286. weight: math.unit(210, "lbs"),
  5287. name: "Back",
  5288. image: {
  5289. source: "./media/characters/cimmaron/back-sfw.svg",
  5290. extra: 701 / 676,
  5291. bottom: 0.046
  5292. }
  5293. },
  5294. frontNsfw: {
  5295. height: math.unit(6, "feet"),
  5296. weight: math.unit(210, "lbs"),
  5297. name: "Front (NSFW)",
  5298. image: {
  5299. source: "./media/characters/cimmaron/front-nsfw.svg",
  5300. extra: 701 / 676,
  5301. bottom: 0.046
  5302. }
  5303. },
  5304. backNsfw: {
  5305. height: math.unit(6, "feet"),
  5306. weight: math.unit(210, "lbs"),
  5307. name: "Back (NSFW)",
  5308. image: {
  5309. source: "./media/characters/cimmaron/back-nsfw.svg",
  5310. extra: 701 / 676,
  5311. bottom: 0.046
  5312. }
  5313. },
  5314. dick: {
  5315. height: math.unit(1.714, "feet"),
  5316. name: "Dick",
  5317. image: {
  5318. source: "./media/characters/cimmaron/dick.svg"
  5319. }
  5320. },
  5321. },
  5322. [
  5323. {
  5324. name: "Normal",
  5325. height: math.unit(6, "feet"),
  5326. default: true
  5327. },
  5328. {
  5329. name: "Macro Mayor",
  5330. height: math.unit(350, "meters")
  5331. },
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5336. {
  5337. front: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(200, "lbs"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/akari/front.svg",
  5343. extra: 962 / 901,
  5344. bottom: 0.04
  5345. }
  5346. }
  5347. },
  5348. [
  5349. {
  5350. name: "Micro",
  5351. height: math.unit(5, "inches"),
  5352. default: true
  5353. },
  5354. {
  5355. name: "Normal",
  5356. height: math.unit(7, "feet")
  5357. },
  5358. ]
  5359. ))
  5360. characterMakers.push(() => makeCharacter(
  5361. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5362. {
  5363. front: {
  5364. height: math.unit(6, "feet"),
  5365. weight: math.unit(140, "lbs"),
  5366. name: "Front",
  5367. image: {
  5368. source: "./media/characters/cynosura/front.svg",
  5369. extra: 896 / 847
  5370. }
  5371. },
  5372. back: {
  5373. height: math.unit(6, "feet"),
  5374. weight: math.unit(140, "lbs"),
  5375. name: "Back",
  5376. image: {
  5377. source: "./media/characters/cynosura/back.svg",
  5378. extra: 1365 / 1250
  5379. }
  5380. },
  5381. },
  5382. [
  5383. {
  5384. name: "Micro",
  5385. height: math.unit(4, "inches")
  5386. },
  5387. {
  5388. name: "Normal",
  5389. height: math.unit(5.75, "feet"),
  5390. default: true
  5391. },
  5392. {
  5393. name: "Tall",
  5394. height: math.unit(10, "feet")
  5395. },
  5396. {
  5397. name: "Big",
  5398. height: math.unit(20, "feet")
  5399. },
  5400. {
  5401. name: "Macro",
  5402. height: math.unit(50, "feet")
  5403. },
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5408. {
  5409. front: {
  5410. height: math.unit(6, "feet"),
  5411. weight: math.unit(170, "lbs"),
  5412. name: "Front",
  5413. image: {
  5414. source: "./media/characters/gin/front.svg",
  5415. extra: 1.053,
  5416. bottom: 0.025
  5417. }
  5418. },
  5419. foot: {
  5420. height: math.unit(6 / 4.25, "feet"),
  5421. name: "Foot",
  5422. image: {
  5423. source: "./media/characters/gin/foot.svg"
  5424. }
  5425. },
  5426. sole: {
  5427. height: math.unit(6 / 4.40, "feet"),
  5428. name: "Sole",
  5429. image: {
  5430. source: "./media/characters/gin/sole.svg"
  5431. }
  5432. },
  5433. },
  5434. [
  5435. {
  5436. name: "Normal",
  5437. height: math.unit(13 + 2 / 12, "feet")
  5438. },
  5439. {
  5440. name: "Macro",
  5441. height: math.unit(1500, "feet")
  5442. },
  5443. {
  5444. name: "Megamacro",
  5445. height: math.unit(200, "miles"),
  5446. default: true
  5447. },
  5448. {
  5449. name: "Gigamacro",
  5450. height: math.unit(500, "megameters")
  5451. },
  5452. {
  5453. name: "Teramacro",
  5454. height: math.unit(15, "lightyears")
  5455. }
  5456. ]
  5457. ))
  5458. characterMakers.push(() => makeCharacter(
  5459. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5460. {
  5461. front: {
  5462. height: math.unit(6 + 1 / 6, "feet"),
  5463. weight: math.unit(178, "lbs"),
  5464. name: "Front",
  5465. image: {
  5466. source: "./media/characters/guy/front.svg"
  5467. }
  5468. }
  5469. },
  5470. [
  5471. {
  5472. name: "Normal",
  5473. height: math.unit(6 + 1 / 6, "feet"),
  5474. default: true
  5475. },
  5476. {
  5477. name: "Large",
  5478. height: math.unit(25 + 7 / 12, "feet")
  5479. },
  5480. {
  5481. name: "Macro",
  5482. height: math.unit(60 + 9 / 12, "feet")
  5483. },
  5484. {
  5485. name: "Macro+",
  5486. height: math.unit(246, "feet")
  5487. },
  5488. {
  5489. name: "Macro++",
  5490. height: math.unit(878, "feet")
  5491. }
  5492. ]
  5493. ))
  5494. characterMakers.push(() => makeCharacter(
  5495. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5496. {
  5497. front: {
  5498. height: math.unit(9, "feet"),
  5499. weight: math.unit(800, "lbs"),
  5500. name: "Front",
  5501. image: {
  5502. source: "./media/characters/tiberius/front.svg",
  5503. extra: 2295 / 2071
  5504. }
  5505. },
  5506. back: {
  5507. height: math.unit(9, "feet"),
  5508. weight: math.unit(800, "lbs"),
  5509. name: "Back",
  5510. image: {
  5511. source: "./media/characters/tiberius/back.svg",
  5512. extra: 2373 / 2160
  5513. }
  5514. },
  5515. },
  5516. [
  5517. {
  5518. name: "Normal",
  5519. height: math.unit(9, "feet"),
  5520. default: true
  5521. }
  5522. ]
  5523. ))
  5524. characterMakers.push(() => makeCharacter(
  5525. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5526. {
  5527. front: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(600, "lbs"),
  5530. name: "Front",
  5531. image: {
  5532. source: "./media/characters/surgo/front.svg",
  5533. extra: 3591 / 2227
  5534. }
  5535. },
  5536. back: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(600, "lbs"),
  5539. name: "Back",
  5540. image: {
  5541. source: "./media/characters/surgo/back.svg",
  5542. extra: 3557 / 2228
  5543. }
  5544. },
  5545. laying: {
  5546. height: math.unit(6 * 0.85, "feet"),
  5547. weight: math.unit(600, "lbs"),
  5548. name: "Laying",
  5549. image: {
  5550. source: "./media/characters/surgo/laying.svg"
  5551. }
  5552. },
  5553. },
  5554. [
  5555. {
  5556. name: "Normal",
  5557. height: math.unit(6, "feet"),
  5558. default: true
  5559. }
  5560. ]
  5561. ))
  5562. characterMakers.push(() => makeCharacter(
  5563. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5564. {
  5565. side: {
  5566. height: math.unit(6, "feet"),
  5567. weight: math.unit(150, "lbs"),
  5568. name: "Side",
  5569. image: {
  5570. source: "./media/characters/cibus/side.svg",
  5571. extra: 800 / 400
  5572. }
  5573. },
  5574. },
  5575. [
  5576. {
  5577. name: "Normal",
  5578. height: math.unit(6, "feet"),
  5579. default: true
  5580. }
  5581. ]
  5582. ))
  5583. characterMakers.push(() => makeCharacter(
  5584. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5585. {
  5586. front: {
  5587. height: math.unit(6, "feet"),
  5588. weight: math.unit(240, "lbs"),
  5589. name: "Front",
  5590. image: {
  5591. source: "./media/characters/nibbles/front.svg"
  5592. }
  5593. },
  5594. side: {
  5595. height: math.unit(6, "feet"),
  5596. weight: math.unit(240, "lbs"),
  5597. name: "Side",
  5598. image: {
  5599. source: "./media/characters/nibbles/side.svg"
  5600. }
  5601. },
  5602. },
  5603. [
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(9, "feet"),
  5607. default: true
  5608. }
  5609. ]
  5610. ))
  5611. characterMakers.push(() => makeCharacter(
  5612. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5613. {
  5614. side: {
  5615. height: math.unit(5 + 1 / 6, "feet"),
  5616. weight: math.unit(130, "lbs"),
  5617. name: "Side",
  5618. image: {
  5619. source: "./media/characters/rikky/side.svg",
  5620. extra: 851 / 801
  5621. }
  5622. },
  5623. },
  5624. [
  5625. {
  5626. name: "Normal",
  5627. height: math.unit(5 + 1 / 6, "feet")
  5628. },
  5629. {
  5630. name: "Macro",
  5631. height: math.unit(152, "feet"),
  5632. default: true
  5633. },
  5634. {
  5635. name: "Megamacro",
  5636. height: math.unit(7, "miles")
  5637. }
  5638. ]
  5639. ))
  5640. characterMakers.push(() => makeCharacter(
  5641. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5642. {
  5643. side: {
  5644. height: math.unit(370, "cm"),
  5645. weight: math.unit(350, "lbs"),
  5646. name: "Side",
  5647. image: {
  5648. source: "./media/characters/malfressa/side.svg"
  5649. }
  5650. },
  5651. walking: {
  5652. height: math.unit(370, "cm"),
  5653. weight: math.unit(350, "lbs"),
  5654. name: "Walking",
  5655. image: {
  5656. source: "./media/characters/malfressa/walking.svg"
  5657. }
  5658. },
  5659. feral: {
  5660. height: math.unit(2500, "cm"),
  5661. weight: math.unit(100000, "lbs"),
  5662. name: "Feral",
  5663. image: {
  5664. source: "./media/characters/malfressa/feral.svg",
  5665. extra: 2108 / 837,
  5666. bottom: 0.02
  5667. }
  5668. },
  5669. },
  5670. [
  5671. {
  5672. name: "Normal",
  5673. height: math.unit(370, "cm")
  5674. },
  5675. {
  5676. name: "Macro",
  5677. height: math.unit(300, "meters"),
  5678. default: true
  5679. }
  5680. ]
  5681. ))
  5682. characterMakers.push(() => makeCharacter(
  5683. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5684. {
  5685. front: {
  5686. height: math.unit(6, "feet"),
  5687. weight: math.unit(60, "kg"),
  5688. name: "Front",
  5689. image: {
  5690. source: "./media/characters/jaro/front.svg"
  5691. }
  5692. },
  5693. back: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(60, "kg"),
  5696. name: "Back",
  5697. image: {
  5698. source: "./media/characters/jaro/back.svg"
  5699. }
  5700. },
  5701. },
  5702. [
  5703. {
  5704. name: "Micro",
  5705. height: math.unit(7, "inches")
  5706. },
  5707. {
  5708. name: "Normal",
  5709. height: math.unit(5.5, "feet"),
  5710. default: true
  5711. },
  5712. {
  5713. name: "Minimacro",
  5714. height: math.unit(20, "feet")
  5715. },
  5716. {
  5717. name: "Macro",
  5718. height: math.unit(200, "meters")
  5719. }
  5720. ]
  5721. ))
  5722. characterMakers.push(() => makeCharacter(
  5723. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5724. {
  5725. front: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(195, "lb"),
  5728. name: "Front",
  5729. image: {
  5730. source: "./media/characters/rogue/front.svg"
  5731. }
  5732. },
  5733. },
  5734. [
  5735. {
  5736. name: "Macro",
  5737. height: math.unit(90, "feet"),
  5738. default: true
  5739. },
  5740. ]
  5741. ))
  5742. characterMakers.push(() => makeCharacter(
  5743. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5744. {
  5745. front: {
  5746. height: math.unit(5 + 8 / 12, "feet"),
  5747. weight: math.unit(140, "lb"),
  5748. name: "Front",
  5749. image: {
  5750. source: "./media/characters/piper/front.svg",
  5751. extra: 3948/3655,
  5752. bottom: 0/3948
  5753. }
  5754. },
  5755. },
  5756. [
  5757. {
  5758. name: "Micro",
  5759. height: math.unit(2, "inches")
  5760. },
  5761. {
  5762. name: "Normal",
  5763. height: math.unit(5 + 8 / 12, "feet")
  5764. },
  5765. {
  5766. name: "Macro",
  5767. height: math.unit(250, "feet"),
  5768. default: true
  5769. },
  5770. {
  5771. name: "Megamacro",
  5772. height: math.unit(7, "miles")
  5773. },
  5774. ]
  5775. ))
  5776. characterMakers.push(() => makeCharacter(
  5777. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5778. {
  5779. front: {
  5780. height: math.unit(6, "feet"),
  5781. weight: math.unit(220, "lb"),
  5782. name: "Front",
  5783. image: {
  5784. source: "./media/characters/gemini/front.svg"
  5785. }
  5786. },
  5787. back: {
  5788. height: math.unit(6, "feet"),
  5789. weight: math.unit(220, "lb"),
  5790. name: "Back",
  5791. image: {
  5792. source: "./media/characters/gemini/back.svg"
  5793. }
  5794. },
  5795. kneeling: {
  5796. height: math.unit(6 / 1.5, "feet"),
  5797. weight: math.unit(220, "lb"),
  5798. name: "Kneeling",
  5799. image: {
  5800. source: "./media/characters/gemini/kneeling.svg",
  5801. bottom: 0.02
  5802. }
  5803. },
  5804. },
  5805. [
  5806. {
  5807. name: "Macro",
  5808. height: math.unit(300, "meters"),
  5809. default: true
  5810. },
  5811. {
  5812. name: "Megamacro",
  5813. height: math.unit(6900, "meters")
  5814. },
  5815. ]
  5816. ))
  5817. characterMakers.push(() => makeCharacter(
  5818. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5819. {
  5820. anthro: {
  5821. height: math.unit(2.35, "meters"),
  5822. weight: math.unit(73, "kg"),
  5823. name: "Anthro",
  5824. image: {
  5825. source: "./media/characters/alicia/anthro.svg",
  5826. extra: 2571 / 2385,
  5827. bottom: 75 / 2648
  5828. }
  5829. },
  5830. paw: {
  5831. height: math.unit(1.32, "feet"),
  5832. name: "Paw",
  5833. image: {
  5834. source: "./media/characters/alicia/paw.svg"
  5835. }
  5836. },
  5837. feral: {
  5838. height: math.unit(1.69, "meters"),
  5839. weight: math.unit(73, "kg"),
  5840. name: "Feral",
  5841. image: {
  5842. source: "./media/characters/alicia/feral.svg",
  5843. extra: 2123 / 1715,
  5844. bottom: 222 / 2349
  5845. }
  5846. },
  5847. },
  5848. [
  5849. {
  5850. name: "Normal",
  5851. height: math.unit(2.35, "meters")
  5852. },
  5853. {
  5854. name: "Macro",
  5855. height: math.unit(60, "meters"),
  5856. default: true
  5857. },
  5858. {
  5859. name: "Megamacro",
  5860. height: math.unit(10000, "kilometers")
  5861. },
  5862. ]
  5863. ))
  5864. characterMakers.push(() => makeCharacter(
  5865. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5866. {
  5867. front: {
  5868. height: math.unit(7, "feet"),
  5869. weight: math.unit(250, "lbs"),
  5870. name: "Front",
  5871. image: {
  5872. source: "./media/characters/archy/front.svg"
  5873. }
  5874. }
  5875. },
  5876. [
  5877. {
  5878. name: "Micro",
  5879. height: math.unit(1, "inch")
  5880. },
  5881. {
  5882. name: "Shorty",
  5883. height: math.unit(5, "feet")
  5884. },
  5885. {
  5886. name: "Normal",
  5887. height: math.unit(7, "feet")
  5888. },
  5889. {
  5890. name: "Macro",
  5891. height: math.unit(600, "meters"),
  5892. default: true
  5893. },
  5894. {
  5895. name: "Megamacro",
  5896. height: math.unit(1, "mile")
  5897. },
  5898. ]
  5899. ))
  5900. characterMakers.push(() => makeCharacter(
  5901. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5902. {
  5903. front: {
  5904. height: math.unit(1.65, "meters"),
  5905. weight: math.unit(74, "kg"),
  5906. name: "Front",
  5907. image: {
  5908. source: "./media/characters/berri/front.svg",
  5909. extra: 857 / 837,
  5910. bottom: 18 / 877
  5911. }
  5912. },
  5913. bum: {
  5914. height: math.unit(1.46, "feet"),
  5915. name: "Bum",
  5916. image: {
  5917. source: "./media/characters/berri/bum.svg"
  5918. }
  5919. },
  5920. mouth: {
  5921. height: math.unit(0.44, "feet"),
  5922. name: "Mouth",
  5923. image: {
  5924. source: "./media/characters/berri/mouth.svg"
  5925. }
  5926. },
  5927. paw: {
  5928. height: math.unit(0.826, "feet"),
  5929. name: "Paw",
  5930. image: {
  5931. source: "./media/characters/berri/paw.svg"
  5932. }
  5933. },
  5934. },
  5935. [
  5936. {
  5937. name: "Normal",
  5938. height: math.unit(1.65, "meters")
  5939. },
  5940. {
  5941. name: "Macro",
  5942. height: math.unit(60, "m"),
  5943. default: true
  5944. },
  5945. {
  5946. name: "Megamacro",
  5947. height: math.unit(9.213, "km")
  5948. },
  5949. {
  5950. name: "Planet Eater",
  5951. height: math.unit(489, "megameters")
  5952. },
  5953. {
  5954. name: "Teramacro",
  5955. height: math.unit(2471635000000, "meters")
  5956. },
  5957. {
  5958. name: "Examacro",
  5959. height: math.unit(8.0624e+26, "meters")
  5960. }
  5961. ]
  5962. ))
  5963. characterMakers.push(() => makeCharacter(
  5964. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5965. {
  5966. front: {
  5967. height: math.unit(1.72, "meters"),
  5968. weight: math.unit(68, "kg"),
  5969. name: "Front",
  5970. image: {
  5971. source: "./media/characters/lexi/front.svg"
  5972. }
  5973. }
  5974. },
  5975. [
  5976. {
  5977. name: "Very Smol",
  5978. height: math.unit(10, "mm")
  5979. },
  5980. {
  5981. name: "Micro",
  5982. height: math.unit(6.8, "cm"),
  5983. default: true
  5984. },
  5985. {
  5986. name: "Normal",
  5987. height: math.unit(1.72, "m")
  5988. }
  5989. ]
  5990. ))
  5991. characterMakers.push(() => makeCharacter(
  5992. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5993. {
  5994. front: {
  5995. height: math.unit(1.69, "meters"),
  5996. weight: math.unit(68, "kg"),
  5997. name: "Front",
  5998. image: {
  5999. source: "./media/characters/martin/front.svg",
  6000. extra: 596 / 581
  6001. }
  6002. }
  6003. },
  6004. [
  6005. {
  6006. name: "Micro",
  6007. height: math.unit(6.85, "cm"),
  6008. default: true
  6009. },
  6010. {
  6011. name: "Normal",
  6012. height: math.unit(1.69, "m")
  6013. }
  6014. ]
  6015. ))
  6016. characterMakers.push(() => makeCharacter(
  6017. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6018. {
  6019. front: {
  6020. height: math.unit(1.69, "meters"),
  6021. weight: math.unit(68, "kg"),
  6022. name: "Front",
  6023. image: {
  6024. source: "./media/characters/juno/front.svg"
  6025. }
  6026. }
  6027. },
  6028. [
  6029. {
  6030. name: "Micro",
  6031. height: math.unit(7, "cm")
  6032. },
  6033. {
  6034. name: "Normal",
  6035. height: math.unit(1.89, "m")
  6036. },
  6037. {
  6038. name: "Macro",
  6039. height: math.unit(353, "meters"),
  6040. default: true
  6041. }
  6042. ]
  6043. ))
  6044. characterMakers.push(() => makeCharacter(
  6045. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6046. {
  6047. front: {
  6048. height: math.unit(1.93, "meters"),
  6049. weight: math.unit(83, "kg"),
  6050. name: "Front",
  6051. image: {
  6052. source: "./media/characters/samantha/front.svg"
  6053. }
  6054. },
  6055. frontClothed: {
  6056. height: math.unit(1.93, "meters"),
  6057. weight: math.unit(83, "kg"),
  6058. name: "Front (Clothed)",
  6059. image: {
  6060. source: "./media/characters/samantha/front-clothed.svg"
  6061. }
  6062. },
  6063. back: {
  6064. height: math.unit(1.93, "meters"),
  6065. weight: math.unit(83, "kg"),
  6066. name: "Back",
  6067. image: {
  6068. source: "./media/characters/samantha/back.svg"
  6069. }
  6070. },
  6071. },
  6072. [
  6073. {
  6074. name: "Normal",
  6075. height: math.unit(1.93, "m")
  6076. },
  6077. {
  6078. name: "Macro",
  6079. height: math.unit(74, "meters"),
  6080. default: true
  6081. },
  6082. {
  6083. name: "Macro+",
  6084. height: math.unit(223, "meters"),
  6085. },
  6086. {
  6087. name: "Megamacro",
  6088. height: math.unit(8381, "meters"),
  6089. },
  6090. {
  6091. name: "Megamacro+",
  6092. height: math.unit(12000, "kilometers")
  6093. },
  6094. ]
  6095. ))
  6096. characterMakers.push(() => makeCharacter(
  6097. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6098. {
  6099. front: {
  6100. height: math.unit(1.92, "meters"),
  6101. weight: math.unit(80, "kg"),
  6102. name: "Front",
  6103. image: {
  6104. source: "./media/characters/dr-clay/front.svg"
  6105. }
  6106. },
  6107. frontClothed: {
  6108. height: math.unit(1.92, "meters"),
  6109. weight: math.unit(80, "kg"),
  6110. name: "Front (Clothed)",
  6111. image: {
  6112. source: "./media/characters/dr-clay/front-clothed.svg"
  6113. }
  6114. }
  6115. },
  6116. [
  6117. {
  6118. name: "Normal",
  6119. height: math.unit(1.92, "m")
  6120. },
  6121. {
  6122. name: "Macro",
  6123. height: math.unit(214, "meters"),
  6124. default: true
  6125. },
  6126. {
  6127. name: "Macro+",
  6128. height: math.unit(12.237, "meters"),
  6129. },
  6130. {
  6131. name: "Megamacro",
  6132. height: math.unit(557, "megameters"),
  6133. },
  6134. {
  6135. name: "Unimaginable",
  6136. height: math.unit(120e9, "lightyears")
  6137. },
  6138. ]
  6139. ))
  6140. characterMakers.push(() => makeCharacter(
  6141. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6142. {
  6143. front: {
  6144. height: math.unit(2, "meters"),
  6145. weight: math.unit(80, "kg"),
  6146. name: "Front",
  6147. image: {
  6148. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6149. }
  6150. }
  6151. },
  6152. [
  6153. {
  6154. name: "Teramacro",
  6155. height: math.unit(500000, "lightyears"),
  6156. default: true
  6157. },
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6162. {
  6163. front: {
  6164. height: math.unit(2, "meters"),
  6165. weight: math.unit(150, "kg"),
  6166. name: "Front",
  6167. image: {
  6168. source: "./media/characters/vemus/front.svg",
  6169. extra: 2384 / 2084,
  6170. bottom: 0.0123
  6171. }
  6172. }
  6173. },
  6174. [
  6175. {
  6176. name: "Normal",
  6177. height: math.unit(3.75, "meters"),
  6178. default: true
  6179. },
  6180. {
  6181. name: "Big",
  6182. height: math.unit(8, "meters")
  6183. },
  6184. {
  6185. name: "Macro",
  6186. height: math.unit(100, "meters")
  6187. },
  6188. {
  6189. name: "Macro+",
  6190. height: math.unit(1500, "meters")
  6191. },
  6192. {
  6193. name: "Stellar",
  6194. height: math.unit(14e8, "meters")
  6195. },
  6196. ]
  6197. ))
  6198. characterMakers.push(() => makeCharacter(
  6199. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6200. {
  6201. front: {
  6202. height: math.unit(2, "meters"),
  6203. weight: math.unit(70, "kg"),
  6204. name: "Front",
  6205. image: {
  6206. source: "./media/characters/beherit/front.svg",
  6207. extra: 1408 / 1242
  6208. }
  6209. }
  6210. },
  6211. [
  6212. {
  6213. name: "Normal",
  6214. height: math.unit(6, "feet")
  6215. },
  6216. {
  6217. name: "Lorg",
  6218. height: math.unit(25, "feet"),
  6219. default: true
  6220. },
  6221. {
  6222. name: "Lorger",
  6223. height: math.unit(75, "feet")
  6224. },
  6225. {
  6226. name: "Macro",
  6227. height: math.unit(200, "meters")
  6228. },
  6229. ]
  6230. ))
  6231. characterMakers.push(() => makeCharacter(
  6232. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6233. {
  6234. front: {
  6235. height: math.unit(2, "meters"),
  6236. weight: math.unit(150, "kg"),
  6237. name: "Front",
  6238. image: {
  6239. source: "./media/characters/everett/front.svg",
  6240. extra: 2038 / 1737,
  6241. bottom: 0.03
  6242. }
  6243. },
  6244. paw: {
  6245. height: math.unit(2 / 3.6, "meters"),
  6246. name: "Paw",
  6247. image: {
  6248. source: "./media/characters/everett/paw.svg"
  6249. }
  6250. },
  6251. },
  6252. [
  6253. {
  6254. name: "Normal",
  6255. height: math.unit(15, "feet"),
  6256. default: true
  6257. },
  6258. {
  6259. name: "Lorg",
  6260. height: math.unit(70, "feet"),
  6261. default: true
  6262. },
  6263. {
  6264. name: "Lorger",
  6265. height: math.unit(250, "feet")
  6266. },
  6267. {
  6268. name: "Macro",
  6269. height: math.unit(500, "meters")
  6270. },
  6271. ]
  6272. ))
  6273. characterMakers.push(() => makeCharacter(
  6274. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6275. {
  6276. front: {
  6277. height: math.unit(2, "meters"),
  6278. weight: math.unit(86, "kg"),
  6279. name: "Front",
  6280. image: {
  6281. source: "./media/characters/rose/front.svg",
  6282. extra: 350/335,
  6283. bottom: 10/360
  6284. }
  6285. },
  6286. frontAlt: {
  6287. height: math.unit(1.6, "meters"),
  6288. weight: math.unit(86, "kg"),
  6289. name: "Front (Alt)",
  6290. image: {
  6291. source: "./media/characters/rose/front-alt.svg",
  6292. extra: 299/283,
  6293. bottom: 3/302
  6294. }
  6295. },
  6296. plush: {
  6297. height: math.unit(2, "meters"),
  6298. weight: math.unit(86/3, "kg"),
  6299. name: "Plush",
  6300. image: {
  6301. source: "./media/characters/rose/plush.svg",
  6302. extra: 361/337,
  6303. bottom: 11/372
  6304. }
  6305. },
  6306. },
  6307. [
  6308. {
  6309. name: "Mini-Micro",
  6310. height: math.unit(1, "cm")
  6311. },
  6312. {
  6313. name: "Micro",
  6314. height: math.unit(3.5, "inches"),
  6315. default: true
  6316. },
  6317. {
  6318. name: "Normal",
  6319. height: math.unit(6 + 1 / 6, "feet")
  6320. },
  6321. {
  6322. name: "Mini-Macro",
  6323. height: math.unit(9 + 10 / 12, "feet")
  6324. },
  6325. ]
  6326. ))
  6327. characterMakers.push(() => makeCharacter(
  6328. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6329. {
  6330. front: {
  6331. height: math.unit(2, "meters"),
  6332. weight: math.unit(350, "lbs"),
  6333. name: "Front",
  6334. image: {
  6335. source: "./media/characters/regal/front.svg"
  6336. }
  6337. },
  6338. back: {
  6339. height: math.unit(2, "meters"),
  6340. weight: math.unit(350, "lbs"),
  6341. name: "Back",
  6342. image: {
  6343. source: "./media/characters/regal/back.svg"
  6344. }
  6345. },
  6346. },
  6347. [
  6348. {
  6349. name: "Macro",
  6350. height: math.unit(350, "feet"),
  6351. default: true
  6352. }
  6353. ]
  6354. ))
  6355. characterMakers.push(() => makeCharacter(
  6356. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6357. {
  6358. front: {
  6359. height: math.unit(4 + 11 / 12, "feet"),
  6360. weight: math.unit(100, "lbs"),
  6361. name: "Front",
  6362. image: {
  6363. source: "./media/characters/opal/front.svg"
  6364. }
  6365. },
  6366. frontAlt: {
  6367. height: math.unit(4 + 11 / 12, "feet"),
  6368. weight: math.unit(100, "lbs"),
  6369. name: "Front (Alt)",
  6370. image: {
  6371. source: "./media/characters/opal/front-alt.svg"
  6372. }
  6373. },
  6374. },
  6375. [
  6376. {
  6377. name: "Small",
  6378. height: math.unit(4 + 11 / 12, "feet")
  6379. },
  6380. {
  6381. name: "Normal",
  6382. height: math.unit(20, "feet"),
  6383. default: true
  6384. },
  6385. {
  6386. name: "Macro",
  6387. height: math.unit(120, "feet")
  6388. },
  6389. {
  6390. name: "Megamacro",
  6391. height: math.unit(80, "miles")
  6392. },
  6393. {
  6394. name: "True Size",
  6395. height: math.unit(100000, "lightyears")
  6396. },
  6397. ]
  6398. ))
  6399. characterMakers.push(() => makeCharacter(
  6400. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6401. {
  6402. front: {
  6403. height: math.unit(6, "feet"),
  6404. weight: math.unit(200, "lbs"),
  6405. name: "Front",
  6406. image: {
  6407. source: "./media/characters/vector-wuff/front.svg"
  6408. }
  6409. }
  6410. },
  6411. [
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(2.8, "meters")
  6415. },
  6416. {
  6417. name: "Macro",
  6418. height: math.unit(450, "meters"),
  6419. default: true
  6420. },
  6421. {
  6422. name: "Megamacro",
  6423. height: math.unit(15, "kilometers")
  6424. }
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6429. {
  6430. front: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(256, "lbs"),
  6433. name: "Front",
  6434. image: {
  6435. source: "./media/characters/dannik/front.svg"
  6436. }
  6437. }
  6438. },
  6439. [
  6440. {
  6441. name: "Macro",
  6442. height: math.unit(69.57, "meters"),
  6443. default: true
  6444. },
  6445. ]
  6446. ))
  6447. characterMakers.push(() => makeCharacter(
  6448. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6449. {
  6450. front: {
  6451. height: math.unit(6, "feet"),
  6452. weight: math.unit(120, "lbs"),
  6453. name: "Front",
  6454. image: {
  6455. source: "./media/characters/azura-saharah/front.svg"
  6456. }
  6457. },
  6458. back: {
  6459. height: math.unit(6, "feet"),
  6460. weight: math.unit(120, "lbs"),
  6461. name: "Back",
  6462. image: {
  6463. source: "./media/characters/azura-saharah/back.svg"
  6464. }
  6465. },
  6466. },
  6467. [
  6468. {
  6469. name: "Macro",
  6470. height: math.unit(100, "feet"),
  6471. default: true
  6472. },
  6473. ]
  6474. ))
  6475. characterMakers.push(() => makeCharacter(
  6476. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6477. {
  6478. side: {
  6479. height: math.unit(5 + 4 / 12, "feet"),
  6480. weight: math.unit(163, "lbs"),
  6481. name: "Side",
  6482. image: {
  6483. source: "./media/characters/kennedy/side.svg"
  6484. }
  6485. }
  6486. },
  6487. [
  6488. {
  6489. name: "Standard Doggo",
  6490. height: math.unit(5 + 4 / 12, "feet")
  6491. },
  6492. {
  6493. name: "Big Doggo",
  6494. height: math.unit(25 + 3 / 12, "feet"),
  6495. default: true
  6496. },
  6497. ]
  6498. ))
  6499. characterMakers.push(() => makeCharacter(
  6500. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6501. {
  6502. front: {
  6503. height: math.unit(6, "feet"),
  6504. weight: math.unit(90, "lbs"),
  6505. name: "Front",
  6506. image: {
  6507. source: "./media/characters/odi-lunar/front.svg"
  6508. }
  6509. }
  6510. },
  6511. [
  6512. {
  6513. name: "Micro",
  6514. height: math.unit(3, "inches"),
  6515. default: true
  6516. },
  6517. {
  6518. name: "Normal",
  6519. height: math.unit(5.5, "feet")
  6520. }
  6521. ]
  6522. ))
  6523. characterMakers.push(() => makeCharacter(
  6524. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6525. {
  6526. back: {
  6527. height: math.unit(6, "feet"),
  6528. weight: math.unit(220, "lbs"),
  6529. name: "Back",
  6530. image: {
  6531. source: "./media/characters/mandake/back.svg"
  6532. }
  6533. }
  6534. },
  6535. [
  6536. {
  6537. name: "Normal",
  6538. height: math.unit(7, "feet"),
  6539. default: true
  6540. },
  6541. {
  6542. name: "Macro",
  6543. height: math.unit(78, "feet")
  6544. },
  6545. {
  6546. name: "Macro+",
  6547. height: math.unit(300, "meters")
  6548. },
  6549. {
  6550. name: "Macro++",
  6551. height: math.unit(2400, "feet")
  6552. },
  6553. {
  6554. name: "Megamacro",
  6555. height: math.unit(5167, "meters")
  6556. },
  6557. {
  6558. name: "Gigamacro",
  6559. height: math.unit(41769, "miles")
  6560. },
  6561. ]
  6562. ))
  6563. characterMakers.push(() => makeCharacter(
  6564. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6565. {
  6566. front: {
  6567. height: math.unit(6, "feet"),
  6568. weight: math.unit(120, "lbs"),
  6569. name: "Front",
  6570. image: {
  6571. source: "./media/characters/yozey/front.svg"
  6572. }
  6573. },
  6574. frontAlt: {
  6575. height: math.unit(6, "feet"),
  6576. weight: math.unit(120, "lbs"),
  6577. name: "Front (Alt)",
  6578. image: {
  6579. source: "./media/characters/yozey/front-alt.svg"
  6580. }
  6581. },
  6582. side: {
  6583. height: math.unit(6, "feet"),
  6584. weight: math.unit(120, "lbs"),
  6585. name: "Side",
  6586. image: {
  6587. source: "./media/characters/yozey/side.svg"
  6588. }
  6589. },
  6590. },
  6591. [
  6592. {
  6593. name: "Micro",
  6594. height: math.unit(3, "inches"),
  6595. default: true
  6596. },
  6597. {
  6598. name: "Normal",
  6599. height: math.unit(6, "feet")
  6600. }
  6601. ]
  6602. ))
  6603. characterMakers.push(() => makeCharacter(
  6604. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6605. {
  6606. front: {
  6607. height: math.unit(6, "feet"),
  6608. weight: math.unit(103, "lbs"),
  6609. name: "Front",
  6610. image: {
  6611. source: "./media/characters/valeska-voss/front.svg"
  6612. }
  6613. }
  6614. },
  6615. [
  6616. {
  6617. name: "Mini-Sized Sub",
  6618. height: math.unit(3.1, "inches")
  6619. },
  6620. {
  6621. name: "Mid-Sized Sub",
  6622. height: math.unit(6.2, "inches")
  6623. },
  6624. {
  6625. name: "Full-Sized Sub",
  6626. height: math.unit(9.3, "inches")
  6627. },
  6628. {
  6629. name: "Normal",
  6630. height: math.unit(5 + 2 / 12, "foot"),
  6631. default: true
  6632. },
  6633. ]
  6634. ))
  6635. characterMakers.push(() => makeCharacter(
  6636. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6637. {
  6638. front: {
  6639. height: math.unit(6, "feet"),
  6640. weight: math.unit(160, "lbs"),
  6641. name: "Front",
  6642. image: {
  6643. source: "./media/characters/gene-zeta/front.svg",
  6644. extra: 3006 / 2826,
  6645. bottom: 182 / 3188
  6646. }
  6647. }
  6648. },
  6649. [
  6650. {
  6651. name: "Micro",
  6652. height: math.unit(6, "inches")
  6653. },
  6654. {
  6655. name: "Normal",
  6656. height: math.unit(5 + 11 / 12, "foot"),
  6657. default: true
  6658. },
  6659. {
  6660. name: "Macro",
  6661. height: math.unit(140, "feet")
  6662. },
  6663. {
  6664. name: "Supercharged",
  6665. height: math.unit(2500, "feet")
  6666. },
  6667. ]
  6668. ))
  6669. characterMakers.push(() => makeCharacter(
  6670. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6671. {
  6672. front: {
  6673. height: math.unit(6, "feet"),
  6674. weight: math.unit(350, "lbs"),
  6675. name: "Front",
  6676. image: {
  6677. source: "./media/characters/razinox/front.svg",
  6678. extra: 1686 / 1548,
  6679. bottom: 28.2 / 1868
  6680. }
  6681. },
  6682. back: {
  6683. height: math.unit(6, "feet"),
  6684. weight: math.unit(350, "lbs"),
  6685. name: "Back",
  6686. image: {
  6687. source: "./media/characters/razinox/back.svg",
  6688. extra: 1660 / 1590,
  6689. bottom: 15 / 1665
  6690. }
  6691. },
  6692. },
  6693. [
  6694. {
  6695. name: "Normal",
  6696. height: math.unit(10 + 8 / 12, "foot")
  6697. },
  6698. {
  6699. name: "Minimacro",
  6700. height: math.unit(15, "foot")
  6701. },
  6702. {
  6703. name: "Macro",
  6704. height: math.unit(60, "foot"),
  6705. default: true
  6706. },
  6707. {
  6708. name: "Megamacro",
  6709. height: math.unit(5, "miles")
  6710. },
  6711. {
  6712. name: "Gigamacro",
  6713. height: math.unit(6000, "miles")
  6714. },
  6715. ]
  6716. ))
  6717. characterMakers.push(() => makeCharacter(
  6718. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6719. {
  6720. front: {
  6721. height: math.unit(6, "feet"),
  6722. weight: math.unit(150, "lbs"),
  6723. name: "Front",
  6724. image: {
  6725. source: "./media/characters/cobalt/front.svg"
  6726. }
  6727. }
  6728. },
  6729. [
  6730. {
  6731. name: "Normal",
  6732. height: math.unit(8 + 1 / 12, "foot")
  6733. },
  6734. {
  6735. name: "Macro",
  6736. height: math.unit(111, "foot"),
  6737. default: true
  6738. },
  6739. {
  6740. name: "Supracosmic",
  6741. height: math.unit(1e42, "feet")
  6742. },
  6743. ]
  6744. ))
  6745. characterMakers.push(() => makeCharacter(
  6746. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6747. {
  6748. front: {
  6749. height: math.unit(6, "feet"),
  6750. weight: math.unit(140, "lbs"),
  6751. name: "Front",
  6752. image: {
  6753. source: "./media/characters/amanda/front.svg"
  6754. }
  6755. }
  6756. },
  6757. [
  6758. {
  6759. name: "Micro",
  6760. height: math.unit(5, "inches"),
  6761. default: true
  6762. },
  6763. ]
  6764. ))
  6765. characterMakers.push(() => makeCharacter(
  6766. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6767. {
  6768. front: {
  6769. height: math.unit(2.75, "meters"),
  6770. weight: math.unit(1200, "lb"),
  6771. name: "Front",
  6772. image: {
  6773. source: "./media/characters/teal/front.svg",
  6774. extra: 2463 / 2320,
  6775. bottom: 166 / 2629
  6776. }
  6777. },
  6778. back: {
  6779. height: math.unit(2.75, "meters"),
  6780. weight: math.unit(1200, "lb"),
  6781. name: "Back",
  6782. image: {
  6783. source: "./media/characters/teal/back.svg",
  6784. extra: 2580 / 2489,
  6785. bottom: 151 / 2731
  6786. }
  6787. },
  6788. sitting: {
  6789. height: math.unit(1.9, "meters"),
  6790. weight: math.unit(1200, "lb"),
  6791. name: "Sitting",
  6792. image: {
  6793. source: "./media/characters/teal/sitting.svg",
  6794. extra: 623 / 590,
  6795. bottom: 121 / 744
  6796. }
  6797. },
  6798. standing: {
  6799. height: math.unit(2.75, "meters"),
  6800. weight: math.unit(1200, "lb"),
  6801. name: "Standing",
  6802. image: {
  6803. source: "./media/characters/teal/standing.svg",
  6804. extra: 923 / 893,
  6805. bottom: 60 / 983
  6806. }
  6807. },
  6808. stretching: {
  6809. height: math.unit(3.65, "meters"),
  6810. weight: math.unit(1200, "lb"),
  6811. name: "Stretching",
  6812. image: {
  6813. source: "./media/characters/teal/stretching.svg",
  6814. extra: 1276 / 1244,
  6815. bottom: 0 / 1276
  6816. }
  6817. },
  6818. legged: {
  6819. height: math.unit(1.3, "meters"),
  6820. weight: math.unit(100, "lb"),
  6821. name: "Legged",
  6822. image: {
  6823. source: "./media/characters/teal/legged.svg",
  6824. extra: 462 / 437,
  6825. bottom: 24 / 486
  6826. }
  6827. },
  6828. naga: {
  6829. height: math.unit(5.4, "meters"),
  6830. weight: math.unit(4000, "lb"),
  6831. name: "Naga",
  6832. image: {
  6833. source: "./media/characters/teal/naga.svg",
  6834. extra: 1902 / 1858,
  6835. bottom: 0 / 1902
  6836. }
  6837. },
  6838. hand: {
  6839. height: math.unit(0.52, "meters"),
  6840. name: "Hand",
  6841. image: {
  6842. source: "./media/characters/teal/hand.svg"
  6843. }
  6844. },
  6845. maw: {
  6846. height: math.unit(0.43, "meters"),
  6847. name: "Maw",
  6848. image: {
  6849. source: "./media/characters/teal/maw.svg"
  6850. }
  6851. },
  6852. slit: {
  6853. height: math.unit(0.25, "meters"),
  6854. name: "Slit",
  6855. image: {
  6856. source: "./media/characters/teal/slit.svg"
  6857. }
  6858. },
  6859. },
  6860. [
  6861. {
  6862. name: "Normal",
  6863. height: math.unit(2.75, "meters"),
  6864. default: true
  6865. },
  6866. {
  6867. name: "Macro",
  6868. height: math.unit(300, "feet")
  6869. },
  6870. {
  6871. name: "Macro+",
  6872. height: math.unit(2000, "feet")
  6873. },
  6874. ]
  6875. ))
  6876. characterMakers.push(() => makeCharacter(
  6877. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6878. {
  6879. frontCat: {
  6880. height: math.unit(6, "feet"),
  6881. weight: math.unit(180, "lbs"),
  6882. name: "Front (Cat)",
  6883. image: {
  6884. source: "./media/characters/ravin-amulet/front-cat.svg"
  6885. }
  6886. },
  6887. frontCatAlt: {
  6888. height: math.unit(6, "feet"),
  6889. weight: math.unit(180, "lbs"),
  6890. name: "Front (Alt, Cat)",
  6891. image: {
  6892. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6893. }
  6894. },
  6895. frontWerewolf: {
  6896. height: math.unit(6 * 1.2, "feet"),
  6897. weight: math.unit(225, "lbs"),
  6898. name: "Front (Werewolf)",
  6899. image: {
  6900. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6901. }
  6902. },
  6903. backWerewolf: {
  6904. height: math.unit(6 * 1.2, "feet"),
  6905. weight: math.unit(225, "lbs"),
  6906. name: "Back (Werewolf)",
  6907. image: {
  6908. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6909. }
  6910. },
  6911. },
  6912. [
  6913. {
  6914. name: "Nano",
  6915. height: math.unit(1, "micrometer")
  6916. },
  6917. {
  6918. name: "Micro",
  6919. height: math.unit(1, "inch")
  6920. },
  6921. {
  6922. name: "Normal",
  6923. height: math.unit(6, "feet"),
  6924. default: true
  6925. },
  6926. {
  6927. name: "Macro",
  6928. height: math.unit(60, "feet")
  6929. }
  6930. ]
  6931. ))
  6932. characterMakers.push(() => makeCharacter(
  6933. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6934. {
  6935. front: {
  6936. height: math.unit(6, "feet"),
  6937. weight: math.unit(165, "lbs"),
  6938. name: "Front",
  6939. image: {
  6940. source: "./media/characters/fluoresce/front.svg"
  6941. }
  6942. }
  6943. },
  6944. [
  6945. {
  6946. name: "Micro",
  6947. height: math.unit(6, "cm")
  6948. },
  6949. {
  6950. name: "Normal",
  6951. height: math.unit(5 + 7 / 12, "feet"),
  6952. default: true
  6953. },
  6954. {
  6955. name: "Macro",
  6956. height: math.unit(56, "feet")
  6957. },
  6958. {
  6959. name: "Megamacro",
  6960. height: math.unit(1.9, "miles")
  6961. },
  6962. ]
  6963. ))
  6964. characterMakers.push(() => makeCharacter(
  6965. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6966. {
  6967. front: {
  6968. height: math.unit(9 + 6 / 12, "feet"),
  6969. weight: math.unit(523, "lbs"),
  6970. name: "Side",
  6971. image: {
  6972. source: "./media/characters/aurora/side.svg"
  6973. }
  6974. }
  6975. },
  6976. [
  6977. {
  6978. name: "Normal",
  6979. height: math.unit(9 + 6 / 12, "feet")
  6980. },
  6981. {
  6982. name: "Macro",
  6983. height: math.unit(96, "feet"),
  6984. default: true
  6985. },
  6986. {
  6987. name: "Macro+",
  6988. height: math.unit(243, "feet")
  6989. },
  6990. ]
  6991. ))
  6992. characterMakers.push(() => makeCharacter(
  6993. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6994. {
  6995. front: {
  6996. height: math.unit(194, "cm"),
  6997. weight: math.unit(90, "kg"),
  6998. name: "Front",
  6999. image: {
  7000. source: "./media/characters/ranek/front.svg"
  7001. }
  7002. },
  7003. side: {
  7004. height: math.unit(194, "cm"),
  7005. weight: math.unit(90, "kg"),
  7006. name: "Side",
  7007. image: {
  7008. source: "./media/characters/ranek/side.svg"
  7009. }
  7010. },
  7011. back: {
  7012. height: math.unit(194, "cm"),
  7013. weight: math.unit(90, "kg"),
  7014. name: "Back",
  7015. image: {
  7016. source: "./media/characters/ranek/back.svg"
  7017. }
  7018. },
  7019. feral: {
  7020. height: math.unit(30, "cm"),
  7021. weight: math.unit(1.6, "lbs"),
  7022. name: "Feral",
  7023. image: {
  7024. source: "./media/characters/ranek/feral.svg"
  7025. }
  7026. },
  7027. },
  7028. [
  7029. {
  7030. name: "Normal",
  7031. height: math.unit(194, "cm"),
  7032. default: true
  7033. },
  7034. {
  7035. name: "Macro",
  7036. height: math.unit(100, "meters")
  7037. },
  7038. ]
  7039. ))
  7040. characterMakers.push(() => makeCharacter(
  7041. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7042. {
  7043. front: {
  7044. height: math.unit(5 + 6 / 12, "feet"),
  7045. weight: math.unit(153, "lbs"),
  7046. name: "Front",
  7047. image: {
  7048. source: "./media/characters/andrew-cooper/front.svg"
  7049. }
  7050. },
  7051. },
  7052. [
  7053. {
  7054. name: "Nano",
  7055. height: math.unit(1, "mm")
  7056. },
  7057. {
  7058. name: "Micro",
  7059. height: math.unit(2, "inches")
  7060. },
  7061. {
  7062. name: "Normal",
  7063. height: math.unit(5 + 6 / 12, "feet"),
  7064. default: true
  7065. }
  7066. ]
  7067. ))
  7068. characterMakers.push(() => makeCharacter(
  7069. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7070. {
  7071. front: {
  7072. height: math.unit(6, "feet"),
  7073. weight: math.unit(180, "lbs"),
  7074. name: "Front",
  7075. image: {
  7076. source: "./media/characters/akane-sato/front.svg",
  7077. extra: 1219 / 1140
  7078. }
  7079. },
  7080. back: {
  7081. height: math.unit(6, "feet"),
  7082. weight: math.unit(180, "lbs"),
  7083. name: "Back",
  7084. image: {
  7085. source: "./media/characters/akane-sato/back.svg",
  7086. extra: 1219 / 1170
  7087. }
  7088. },
  7089. },
  7090. [
  7091. {
  7092. name: "Normal",
  7093. height: math.unit(2.5, "meters")
  7094. },
  7095. {
  7096. name: "Macro",
  7097. height: math.unit(250, "meters"),
  7098. default: true
  7099. },
  7100. {
  7101. name: "Megamacro",
  7102. height: math.unit(25, "km")
  7103. },
  7104. ]
  7105. ))
  7106. characterMakers.push(() => makeCharacter(
  7107. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7108. {
  7109. front: {
  7110. height: math.unit(6, "feet"),
  7111. weight: math.unit(65, "kg"),
  7112. name: "Front",
  7113. image: {
  7114. source: "./media/characters/rook/front.svg",
  7115. extra: 960 / 950
  7116. }
  7117. }
  7118. },
  7119. [
  7120. {
  7121. name: "Normal",
  7122. height: math.unit(8.8, "feet")
  7123. },
  7124. {
  7125. name: "Macro",
  7126. height: math.unit(88, "feet"),
  7127. default: true
  7128. },
  7129. {
  7130. name: "Megamacro",
  7131. height: math.unit(8, "miles")
  7132. },
  7133. ]
  7134. ))
  7135. characterMakers.push(() => makeCharacter(
  7136. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7137. {
  7138. front: {
  7139. height: math.unit(12 + 2 / 12, "feet"),
  7140. weight: math.unit(808, "lbs"),
  7141. name: "Front",
  7142. image: {
  7143. source: "./media/characters/prodigy/front.svg"
  7144. }
  7145. }
  7146. },
  7147. [
  7148. {
  7149. name: "Normal",
  7150. height: math.unit(12 + 2 / 12, "feet"),
  7151. default: true
  7152. },
  7153. {
  7154. name: "Macro",
  7155. height: math.unit(143, "feet")
  7156. },
  7157. {
  7158. name: "Macro+",
  7159. height: math.unit(400, "feet")
  7160. },
  7161. ]
  7162. ))
  7163. characterMakers.push(() => makeCharacter(
  7164. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7165. {
  7166. front: {
  7167. height: math.unit(6, "feet"),
  7168. weight: math.unit(225, "lbs"),
  7169. name: "Front",
  7170. image: {
  7171. source: "./media/characters/daniel/front.svg"
  7172. }
  7173. },
  7174. leaning: {
  7175. height: math.unit(6, "feet"),
  7176. weight: math.unit(225, "lbs"),
  7177. name: "Leaning",
  7178. image: {
  7179. source: "./media/characters/daniel/leaning.svg"
  7180. }
  7181. },
  7182. },
  7183. [
  7184. {
  7185. name: "Macro",
  7186. height: math.unit(1000, "feet"),
  7187. default: true
  7188. },
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7193. {
  7194. front: {
  7195. height: math.unit(6, "feet"),
  7196. weight: math.unit(88, "lbs"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/chiros/front.svg",
  7200. extra: 306 / 226
  7201. }
  7202. },
  7203. side: {
  7204. height: math.unit(6, "feet"),
  7205. weight: math.unit(88, "lbs"),
  7206. name: "Side",
  7207. image: {
  7208. source: "./media/characters/chiros/side.svg",
  7209. extra: 306 / 226
  7210. }
  7211. },
  7212. },
  7213. [
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(6, "cm"),
  7217. default: true
  7218. },
  7219. ]
  7220. ))
  7221. characterMakers.push(() => makeCharacter(
  7222. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7223. {
  7224. front: {
  7225. height: math.unit(6, "feet"),
  7226. weight: math.unit(100, "lbs"),
  7227. name: "Front",
  7228. image: {
  7229. source: "./media/characters/selka/front.svg",
  7230. extra: 947 / 887
  7231. }
  7232. }
  7233. },
  7234. [
  7235. {
  7236. name: "Normal",
  7237. height: math.unit(5, "cm"),
  7238. default: true
  7239. },
  7240. ]
  7241. ))
  7242. characterMakers.push(() => makeCharacter(
  7243. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7244. {
  7245. front: {
  7246. height: math.unit(8 + 3 / 12, "feet"),
  7247. weight: math.unit(424, "lbs"),
  7248. name: "Front",
  7249. image: {
  7250. source: "./media/characters/verin/front.svg",
  7251. extra: 1845 / 1550
  7252. }
  7253. },
  7254. frontArmored: {
  7255. height: math.unit(8 + 3 / 12, "feet"),
  7256. weight: math.unit(424, "lbs"),
  7257. name: "Front (Armored)",
  7258. image: {
  7259. source: "./media/characters/verin/front-armor.svg",
  7260. extra: 1845 / 1550,
  7261. bottom: 0.01
  7262. }
  7263. },
  7264. back: {
  7265. height: math.unit(8 + 3 / 12, "feet"),
  7266. weight: math.unit(424, "lbs"),
  7267. name: "Back",
  7268. image: {
  7269. source: "./media/characters/verin/back.svg",
  7270. bottom: 0.1,
  7271. extra: 1
  7272. }
  7273. },
  7274. foot: {
  7275. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7276. name: "Foot",
  7277. image: {
  7278. source: "./media/characters/verin/foot.svg"
  7279. }
  7280. },
  7281. },
  7282. [
  7283. {
  7284. name: "Normal",
  7285. height: math.unit(8 + 3 / 12, "feet")
  7286. },
  7287. {
  7288. name: "Minimacro",
  7289. height: math.unit(21, "feet"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Macro",
  7294. height: math.unit(626, "feet")
  7295. },
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7300. {
  7301. front: {
  7302. height: math.unit(2.718, "meters"),
  7303. weight: math.unit(150, "lbs"),
  7304. name: "Front",
  7305. image: {
  7306. source: "./media/characters/sovrim-terraquian/front.svg"
  7307. }
  7308. },
  7309. back: {
  7310. height: math.unit(2.718, "meters"),
  7311. weight: math.unit(150, "lbs"),
  7312. name: "Back",
  7313. image: {
  7314. source: "./media/characters/sovrim-terraquian/back.svg"
  7315. }
  7316. }
  7317. },
  7318. [
  7319. {
  7320. name: "Micro",
  7321. height: math.unit(2, "inches")
  7322. },
  7323. {
  7324. name: "Small",
  7325. height: math.unit(1, "meter")
  7326. },
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(Math.E, "meters"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(20, "meters")
  7335. },
  7336. {
  7337. name: "Macro+",
  7338. height: math.unit(400, "meters")
  7339. },
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7344. {
  7345. front: {
  7346. height: math.unit(7, "feet"),
  7347. weight: math.unit(489, "lbs"),
  7348. name: "Front",
  7349. image: {
  7350. source: "./media/characters/reece-silvermane/front.svg",
  7351. bottom: 0.02,
  7352. extra: 1
  7353. }
  7354. },
  7355. },
  7356. [
  7357. {
  7358. name: "Macro",
  7359. height: math.unit(1.5, "miles"),
  7360. default: true
  7361. },
  7362. ]
  7363. ))
  7364. characterMakers.push(() => makeCharacter(
  7365. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7366. {
  7367. front: {
  7368. height: math.unit(6, "feet"),
  7369. weight: math.unit(78, "kg"),
  7370. name: "Front",
  7371. image: {
  7372. source: "./media/characters/kane/front.svg",
  7373. extra: 978 / 899
  7374. }
  7375. },
  7376. },
  7377. [
  7378. {
  7379. name: "Normal",
  7380. height: math.unit(2.1, "m"),
  7381. },
  7382. {
  7383. name: "Macro",
  7384. height: math.unit(1, "km"),
  7385. default: true
  7386. },
  7387. ]
  7388. ))
  7389. characterMakers.push(() => makeCharacter(
  7390. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7391. {
  7392. front: {
  7393. height: math.unit(6, "feet"),
  7394. weight: math.unit(200, "kg"),
  7395. name: "Front",
  7396. image: {
  7397. source: "./media/characters/tegon/front.svg",
  7398. bottom: 0.01,
  7399. extra: 1
  7400. }
  7401. },
  7402. },
  7403. [
  7404. {
  7405. name: "Micro",
  7406. height: math.unit(1, "inch")
  7407. },
  7408. {
  7409. name: "Normal",
  7410. height: math.unit(6 + 3 / 12, "feet"),
  7411. default: true
  7412. },
  7413. {
  7414. name: "Macro",
  7415. height: math.unit(300, "feet")
  7416. },
  7417. {
  7418. name: "Megamacro",
  7419. height: math.unit(69, "miles")
  7420. },
  7421. ]
  7422. ))
  7423. characterMakers.push(() => makeCharacter(
  7424. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7425. {
  7426. side: {
  7427. height: math.unit(6, "feet"),
  7428. weight: math.unit(2304, "lbs"),
  7429. name: "Side",
  7430. image: {
  7431. source: "./media/characters/arcturax/side.svg",
  7432. extra: 790 / 376,
  7433. bottom: 0.01
  7434. }
  7435. },
  7436. },
  7437. [
  7438. {
  7439. name: "Micro",
  7440. height: math.unit(2, "inch")
  7441. },
  7442. {
  7443. name: "Normal",
  7444. height: math.unit(6, "feet")
  7445. },
  7446. {
  7447. name: "Macro",
  7448. height: math.unit(39, "feet"),
  7449. default: true
  7450. },
  7451. {
  7452. name: "Megamacro",
  7453. height: math.unit(7, "miles")
  7454. },
  7455. ]
  7456. ))
  7457. characterMakers.push(() => makeCharacter(
  7458. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7459. {
  7460. front: {
  7461. height: math.unit(6, "feet"),
  7462. weight: math.unit(50, "lbs"),
  7463. name: "Front",
  7464. image: {
  7465. source: "./media/characters/sentri/front.svg",
  7466. extra: 1750 / 1570,
  7467. bottom: 0.025
  7468. }
  7469. },
  7470. frontAlt: {
  7471. height: math.unit(6, "feet"),
  7472. weight: math.unit(50, "lbs"),
  7473. name: "Front (Alt)",
  7474. image: {
  7475. source: "./media/characters/sentri/front-alt.svg",
  7476. extra: 1750 / 1570,
  7477. bottom: 0.025
  7478. }
  7479. },
  7480. },
  7481. [
  7482. {
  7483. name: "Normal",
  7484. height: math.unit(15, "feet"),
  7485. default: true
  7486. },
  7487. {
  7488. name: "Macro",
  7489. height: math.unit(2500, "feet")
  7490. }
  7491. ]
  7492. ))
  7493. characterMakers.push(() => makeCharacter(
  7494. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7495. {
  7496. front: {
  7497. height: math.unit(5 + 8 / 12, "feet"),
  7498. weight: math.unit(130, "lbs"),
  7499. name: "Front",
  7500. image: {
  7501. source: "./media/characters/corvin/front.svg",
  7502. extra: 1803 / 1629
  7503. }
  7504. },
  7505. frontShirt: {
  7506. height: math.unit(5 + 8 / 12, "feet"),
  7507. weight: math.unit(130, "lbs"),
  7508. name: "Front (Shirt)",
  7509. image: {
  7510. source: "./media/characters/corvin/front-shirt.svg",
  7511. extra: 1803 / 1629
  7512. }
  7513. },
  7514. frontPoncho: {
  7515. height: math.unit(5 + 8 / 12, "feet"),
  7516. weight: math.unit(130, "lbs"),
  7517. name: "Front (Poncho)",
  7518. image: {
  7519. source: "./media/characters/corvin/front-poncho.svg",
  7520. extra: 1803 / 1629
  7521. }
  7522. },
  7523. side: {
  7524. height: math.unit(5 + 8 / 12, "feet"),
  7525. weight: math.unit(130, "lbs"),
  7526. name: "Side",
  7527. image: {
  7528. source: "./media/characters/corvin/side.svg",
  7529. extra: 1012 / 945
  7530. }
  7531. },
  7532. back: {
  7533. height: math.unit(5 + 8 / 12, "feet"),
  7534. weight: math.unit(130, "lbs"),
  7535. name: "Back",
  7536. image: {
  7537. source: "./media/characters/corvin/back.svg",
  7538. extra: 1803 / 1629
  7539. }
  7540. },
  7541. },
  7542. [
  7543. {
  7544. name: "Micro",
  7545. height: math.unit(3, "inches")
  7546. },
  7547. {
  7548. name: "Normal",
  7549. height: math.unit(5 + 8 / 12, "feet")
  7550. },
  7551. {
  7552. name: "Macro",
  7553. height: math.unit(300, "feet"),
  7554. default: true
  7555. },
  7556. {
  7557. name: "Megamacro",
  7558. height: math.unit(500, "miles")
  7559. }
  7560. ]
  7561. ))
  7562. characterMakers.push(() => makeCharacter(
  7563. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7564. {
  7565. front: {
  7566. height: math.unit(6, "feet"),
  7567. weight: math.unit(135, "lbs"),
  7568. name: "Front",
  7569. image: {
  7570. source: "./media/characters/q/front.svg",
  7571. extra: 854 / 752,
  7572. bottom: 0.005
  7573. }
  7574. },
  7575. back: {
  7576. height: math.unit(6, "feet"),
  7577. weight: math.unit(130, "lbs"),
  7578. name: "Back",
  7579. image: {
  7580. source: "./media/characters/q/back.svg",
  7581. extra: 854 / 752
  7582. }
  7583. },
  7584. },
  7585. [
  7586. {
  7587. name: "Macro",
  7588. height: math.unit(90, "feet"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Extra Macro",
  7593. height: math.unit(300, "feet"),
  7594. },
  7595. {
  7596. name: "BIG WALF",
  7597. height: math.unit(750, "feet"),
  7598. },
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(6, "feet"),
  7606. weight: math.unit(150, "lbs"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/carley/front.svg",
  7610. extra: 3927 / 3540,
  7611. bottom: 29.2 / 735
  7612. }
  7613. }
  7614. },
  7615. [
  7616. {
  7617. name: "Normal",
  7618. height: math.unit(6 + 3 / 12, "feet")
  7619. },
  7620. {
  7621. name: "Macro",
  7622. height: math.unit(185, "feet"),
  7623. default: true
  7624. },
  7625. {
  7626. name: "Megamacro",
  7627. height: math.unit(8, "miles"),
  7628. },
  7629. ]
  7630. ))
  7631. characterMakers.push(() => makeCharacter(
  7632. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7633. {
  7634. front: {
  7635. height: math.unit(3, "feet"),
  7636. weight: math.unit(28, "lbs"),
  7637. name: "Front",
  7638. image: {
  7639. source: "./media/characters/citrine/front.svg"
  7640. }
  7641. }
  7642. },
  7643. [
  7644. {
  7645. name: "Normal",
  7646. height: math.unit(3, "feet"),
  7647. default: true
  7648. }
  7649. ]
  7650. ))
  7651. characterMakers.push(() => makeCharacter(
  7652. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7653. {
  7654. front: {
  7655. height: math.unit(14, "feet"),
  7656. weight: math.unit(1450, "kg"),
  7657. capacity: math.unit(15, "people"),
  7658. name: "Front",
  7659. image: {
  7660. source: "./media/characters/aura-starwind/front.svg",
  7661. extra: 1455 / 1335
  7662. }
  7663. },
  7664. side: {
  7665. height: math.unit(14, "feet"),
  7666. weight: math.unit(1450, "kg"),
  7667. capacity: math.unit(15, "people"),
  7668. name: "Side",
  7669. image: {
  7670. source: "./media/characters/aura-starwind/side.svg",
  7671. extra: 1654 / 1497
  7672. }
  7673. },
  7674. taur: {
  7675. height: math.unit(18, "feet"),
  7676. weight: math.unit(5500, "kg"),
  7677. capacity: math.unit(50, "people"),
  7678. name: "Taur",
  7679. image: {
  7680. source: "./media/characters/aura-starwind/taur.svg",
  7681. extra: 1760 / 1650
  7682. }
  7683. },
  7684. feral: {
  7685. height: math.unit(46, "feet"),
  7686. weight: math.unit(25000, "kg"),
  7687. capacity: math.unit(120, "people"),
  7688. name: "Feral",
  7689. image: {
  7690. source: "./media/characters/aura-starwind/feral.svg"
  7691. }
  7692. },
  7693. },
  7694. [
  7695. {
  7696. name: "Normal",
  7697. height: math.unit(14, "feet"),
  7698. default: true
  7699. },
  7700. {
  7701. name: "Macro",
  7702. height: math.unit(50, "meters")
  7703. },
  7704. {
  7705. name: "Megamacro",
  7706. height: math.unit(5000, "meters")
  7707. },
  7708. {
  7709. name: "Gigamacro",
  7710. height: math.unit(100000, "kilometers")
  7711. },
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(2 + 7 / 12, "feet"),
  7719. weight: math.unit(32, "lbs"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/rivet/front.svg",
  7723. extra: 1716 / 1658,
  7724. bottom: 0.03
  7725. }
  7726. },
  7727. foot: {
  7728. height: math.unit(0.551, "feet"),
  7729. name: "Rivet's Foot",
  7730. image: {
  7731. source: "./media/characters/rivet/foot.svg"
  7732. },
  7733. rename: true
  7734. }
  7735. },
  7736. [
  7737. {
  7738. name: "Micro",
  7739. height: math.unit(1.5, "inches"),
  7740. },
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(2 + 7 / 12, "feet"),
  7744. default: true
  7745. },
  7746. {
  7747. name: "Macro",
  7748. height: math.unit(85, "feet")
  7749. },
  7750. {
  7751. name: "Megamacro",
  7752. height: math.unit(2.2, "km")
  7753. }
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(5 + 9 / 12, "feet"),
  7761. weight: math.unit(150, "lbs"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/coffee/front.svg",
  7765. extra: 3666 / 3032,
  7766. bottom: 0.04
  7767. }
  7768. },
  7769. foot: {
  7770. height: math.unit(1.29, "feet"),
  7771. name: "Foot",
  7772. image: {
  7773. source: "./media/characters/coffee/foot.svg"
  7774. }
  7775. },
  7776. },
  7777. [
  7778. {
  7779. name: "Micro",
  7780. height: math.unit(2, "inches"),
  7781. },
  7782. {
  7783. name: "Normal",
  7784. height: math.unit(5 + 9 / 12, "feet"),
  7785. default: true
  7786. },
  7787. {
  7788. name: "Macro",
  7789. height: math.unit(800, "feet")
  7790. },
  7791. {
  7792. name: "Megamacro",
  7793. height: math.unit(25, "miles")
  7794. }
  7795. ]
  7796. ))
  7797. characterMakers.push(() => makeCharacter(
  7798. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7799. {
  7800. front: {
  7801. height: math.unit(6, "feet"),
  7802. weight: math.unit(200, "lbs"),
  7803. name: "Front",
  7804. image: {
  7805. source: "./media/characters/chari-gal/front.svg",
  7806. extra: 1568 / 1385,
  7807. bottom: 0.047
  7808. }
  7809. },
  7810. gigantamax: {
  7811. height: math.unit(6 * 16, "feet"),
  7812. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7813. name: "Gigantamax",
  7814. image: {
  7815. source: "./media/characters/chari-gal/gigantamax.svg",
  7816. extra: 1124 / 888,
  7817. bottom: 0.03
  7818. }
  7819. },
  7820. },
  7821. [
  7822. {
  7823. name: "Normal",
  7824. height: math.unit(5 + 7 / 12, "feet")
  7825. },
  7826. {
  7827. name: "Macro",
  7828. height: math.unit(200, "feet"),
  7829. default: true
  7830. }
  7831. ]
  7832. ))
  7833. characterMakers.push(() => makeCharacter(
  7834. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7835. {
  7836. front: {
  7837. height: math.unit(6, "feet"),
  7838. weight: math.unit(150, "lbs"),
  7839. name: "Front",
  7840. image: {
  7841. source: "./media/characters/nova/front.svg",
  7842. extra: 5000 / 4722,
  7843. bottom: 0.02
  7844. }
  7845. }
  7846. },
  7847. [
  7848. {
  7849. name: "Micro-",
  7850. height: math.unit(0.8, "inches")
  7851. },
  7852. {
  7853. name: "Micro",
  7854. height: math.unit(2, "inches"),
  7855. default: true
  7856. },
  7857. ]
  7858. ))
  7859. characterMakers.push(() => makeCharacter(
  7860. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7861. {
  7862. front: {
  7863. height: math.unit(3 + 1 / 12, "feet"),
  7864. weight: math.unit(21.7, "lbs"),
  7865. name: "Front",
  7866. image: {
  7867. source: "./media/characters/argent/front.svg",
  7868. extra: 1471 / 1331,
  7869. bottom: 100.8 / 1575.5
  7870. }
  7871. }
  7872. },
  7873. [
  7874. {
  7875. name: "Micro",
  7876. height: math.unit(2, "inches")
  7877. },
  7878. {
  7879. name: "Normal",
  7880. height: math.unit(3 + 1 / 12, "feet"),
  7881. default: true
  7882. },
  7883. {
  7884. name: "Macro",
  7885. height: math.unit(120, "feet")
  7886. },
  7887. ]
  7888. ))
  7889. characterMakers.push(() => makeCharacter(
  7890. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7891. {
  7892. lamp: {
  7893. height: math.unit(7 * 1559 / 989, "feet"),
  7894. name: "Magic Lamp",
  7895. image: {
  7896. source: "./media/characters/mira-al-cul/lamp.svg",
  7897. extra: 1617 / 1559
  7898. }
  7899. },
  7900. front: {
  7901. height: math.unit(7, "feet"),
  7902. name: "Front",
  7903. image: {
  7904. source: "./media/characters/mira-al-cul/front.svg",
  7905. extra: 1044 / 990
  7906. }
  7907. },
  7908. },
  7909. [
  7910. {
  7911. name: "Heavily Restricted",
  7912. height: math.unit(7 * 1559 / 989, "feet")
  7913. },
  7914. {
  7915. name: "Freshly Freed",
  7916. height: math.unit(50 * 1559 / 989, "feet")
  7917. },
  7918. {
  7919. name: "World Encompassing",
  7920. height: math.unit(10000 * 1559 / 989, "miles")
  7921. },
  7922. {
  7923. name: "Galactic",
  7924. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7925. },
  7926. {
  7927. name: "Palmed Universe",
  7928. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7929. default: true
  7930. },
  7931. {
  7932. name: "Multiversal Matriarch",
  7933. height: math.unit(8.87e10, "yottameters")
  7934. },
  7935. {
  7936. name: "Void Mother",
  7937. height: math.unit(3.14e110, "yottaparsecs")
  7938. },
  7939. {
  7940. name: "Toying with Transcendence",
  7941. height: math.unit(1e307, "meters")
  7942. },
  7943. ]
  7944. ))
  7945. characterMakers.push(() => makeCharacter(
  7946. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7947. {
  7948. front: {
  7949. height: math.unit(17 + 1 / 12, "feet"),
  7950. weight: math.unit(476.2 * 5, "lbs"),
  7951. name: "Front",
  7952. image: {
  7953. source: "./media/characters/kuro-shi-uchū/front.svg",
  7954. extra: 2329 / 1835,
  7955. bottom: 0.02
  7956. }
  7957. },
  7958. },
  7959. [
  7960. {
  7961. name: "Micro",
  7962. height: math.unit(2, "inches")
  7963. },
  7964. {
  7965. name: "Normal",
  7966. height: math.unit(12, "meters")
  7967. },
  7968. {
  7969. name: "Planetary",
  7970. height: math.unit(0.00929, "AU"),
  7971. default: true
  7972. },
  7973. {
  7974. name: "Universal",
  7975. height: math.unit(20, "gigaparsecs")
  7976. },
  7977. ]
  7978. ))
  7979. characterMakers.push(() => makeCharacter(
  7980. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7981. {
  7982. front: {
  7983. height: math.unit(5 + 2 / 12, "feet"),
  7984. weight: math.unit(120, "lbs"),
  7985. name: "Front",
  7986. image: {
  7987. source: "./media/characters/katherine/front.svg",
  7988. extra: 2075 / 1969
  7989. }
  7990. },
  7991. dress: {
  7992. height: math.unit(5 + 2 / 12, "feet"),
  7993. weight: math.unit(120, "lbs"),
  7994. name: "Dress",
  7995. image: {
  7996. source: "./media/characters/katherine/dress.svg",
  7997. extra: 2258 / 2064
  7998. }
  7999. },
  8000. },
  8001. [
  8002. {
  8003. name: "Micro",
  8004. height: math.unit(1, "inches"),
  8005. default: true
  8006. },
  8007. {
  8008. name: "Normal",
  8009. height: math.unit(5 + 2 / 12, "feet")
  8010. },
  8011. {
  8012. name: "Macro",
  8013. height: math.unit(100, "meters")
  8014. },
  8015. {
  8016. name: "Megamacro",
  8017. height: math.unit(80, "miles")
  8018. },
  8019. ]
  8020. ))
  8021. characterMakers.push(() => makeCharacter(
  8022. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8023. {
  8024. front: {
  8025. height: math.unit(7 + 8 / 12, "feet"),
  8026. weight: math.unit(250, "lbs"),
  8027. name: "Front",
  8028. image: {
  8029. source: "./media/characters/yevis/front.svg",
  8030. extra: 1938 / 1755
  8031. }
  8032. }
  8033. },
  8034. [
  8035. {
  8036. name: "Mortal",
  8037. height: math.unit(7 + 8 / 12, "feet")
  8038. },
  8039. {
  8040. name: "Battle",
  8041. height: math.unit(25 + 11 / 12, "feet")
  8042. },
  8043. {
  8044. name: "Wrath",
  8045. height: math.unit(1654 + 11 / 12, "feet")
  8046. },
  8047. {
  8048. name: "Planet Destroyer",
  8049. height: math.unit(12000, "miles")
  8050. },
  8051. {
  8052. name: "Galaxy Conqueror",
  8053. height: math.unit(1.45, "zettameters"),
  8054. default: true
  8055. },
  8056. {
  8057. name: "Universal War",
  8058. height: math.unit(184, "gigaparsecs")
  8059. },
  8060. {
  8061. name: "Eternity War",
  8062. height: math.unit(1.98e55, "yottaparsecs")
  8063. },
  8064. ]
  8065. ))
  8066. characterMakers.push(() => makeCharacter(
  8067. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8068. {
  8069. front: {
  8070. height: math.unit(5 + 8 / 12, "feet"),
  8071. weight: math.unit(63, "kg"),
  8072. name: "Front",
  8073. image: {
  8074. source: "./media/characters/xavier/front.svg",
  8075. extra: 944 / 883
  8076. }
  8077. },
  8078. frontStretch: {
  8079. height: math.unit(5 + 8 / 12, "feet"),
  8080. weight: math.unit(63, "kg"),
  8081. name: "Stretching",
  8082. image: {
  8083. source: "./media/characters/xavier/front-stretch.svg",
  8084. extra: 962 / 820
  8085. }
  8086. },
  8087. },
  8088. [
  8089. {
  8090. name: "Normal",
  8091. height: math.unit(5 + 8 / 12, "feet")
  8092. },
  8093. {
  8094. name: "Macro",
  8095. height: math.unit(100, "meters"),
  8096. default: true
  8097. },
  8098. {
  8099. name: "McLargeHuge",
  8100. height: math.unit(10, "miles")
  8101. },
  8102. ]
  8103. ))
  8104. characterMakers.push(() => makeCharacter(
  8105. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8106. {
  8107. front: {
  8108. height: math.unit(5 + 5 / 12, "feet"),
  8109. weight: math.unit(150, "lb"),
  8110. name: "Front",
  8111. image: {
  8112. source: "./media/characters/joshii/front.svg",
  8113. extra: 765 / 653,
  8114. bottom: 51 / 816
  8115. }
  8116. },
  8117. foot: {
  8118. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8119. name: "Foot",
  8120. image: {
  8121. source: "./media/characters/joshii/foot.svg"
  8122. }
  8123. },
  8124. },
  8125. [
  8126. {
  8127. name: "Micro",
  8128. height: math.unit(2, "inches"),
  8129. default: true
  8130. },
  8131. {
  8132. name: "Normal",
  8133. height: math.unit(5 + 5 / 12, "feet")
  8134. },
  8135. {
  8136. name: "Macro",
  8137. height: math.unit(785, "feet")
  8138. },
  8139. {
  8140. name: "Megamacro",
  8141. height: math.unit(24.5, "miles")
  8142. },
  8143. ]
  8144. ))
  8145. characterMakers.push(() => makeCharacter(
  8146. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8147. {
  8148. front: {
  8149. height: math.unit(6, "feet"),
  8150. weight: math.unit(150, "lb"),
  8151. name: "Front",
  8152. image: {
  8153. source: "./media/characters/goddess-elizabeth/front.svg",
  8154. extra: 1800 / 1525,
  8155. bottom: 0.005
  8156. }
  8157. },
  8158. foot: {
  8159. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8160. name: "Foot",
  8161. image: {
  8162. source: "./media/characters/goddess-elizabeth/foot.svg"
  8163. }
  8164. },
  8165. mouth: {
  8166. height: math.unit(6, "feet"),
  8167. name: "Mouth",
  8168. image: {
  8169. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8170. }
  8171. },
  8172. },
  8173. [
  8174. {
  8175. name: "Micro",
  8176. height: math.unit(12, "feet")
  8177. },
  8178. {
  8179. name: "Normal",
  8180. height: math.unit(80, "miles"),
  8181. default: true
  8182. },
  8183. {
  8184. name: "Macro",
  8185. height: math.unit(15000, "parsecs")
  8186. },
  8187. ]
  8188. ))
  8189. characterMakers.push(() => makeCharacter(
  8190. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8191. {
  8192. front: {
  8193. height: math.unit(5 + 9 / 12, "feet"),
  8194. weight: math.unit(144, "lb"),
  8195. name: "Front",
  8196. image: {
  8197. source: "./media/characters/kara/front.svg"
  8198. }
  8199. },
  8200. feet: {
  8201. height: math.unit(6 / 6.765, "feet"),
  8202. name: "Kara's Feet",
  8203. rename: true,
  8204. image: {
  8205. source: "./media/characters/kara/feet.svg"
  8206. }
  8207. },
  8208. },
  8209. [
  8210. {
  8211. name: "Normal",
  8212. height: math.unit(5 + 9 / 12, "feet")
  8213. },
  8214. {
  8215. name: "Macro",
  8216. height: math.unit(174, "feet"),
  8217. default: true
  8218. },
  8219. ]
  8220. ))
  8221. characterMakers.push(() => makeCharacter(
  8222. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8223. {
  8224. front: {
  8225. height: math.unit(18, "feet"),
  8226. weight: math.unit(4050, "lb"),
  8227. name: "Front",
  8228. image: {
  8229. source: "./media/characters/tyrone/front.svg",
  8230. extra: 2405 / 2270,
  8231. bottom: 182 / 2587
  8232. }
  8233. },
  8234. },
  8235. [
  8236. {
  8237. name: "Normal",
  8238. height: math.unit(18, "feet"),
  8239. default: true
  8240. },
  8241. {
  8242. name: "Macro",
  8243. height: math.unit(300, "feet")
  8244. },
  8245. {
  8246. name: "Megamacro",
  8247. height: math.unit(15, "km")
  8248. },
  8249. {
  8250. name: "Gigamacro",
  8251. height: math.unit(500, "km")
  8252. },
  8253. {
  8254. name: "Teramacro",
  8255. height: math.unit(0.5, "gigameters")
  8256. },
  8257. {
  8258. name: "Omnimacro",
  8259. height: math.unit(1e252, "yottauniverse")
  8260. },
  8261. ]
  8262. ))
  8263. characterMakers.push(() => makeCharacter(
  8264. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8265. {
  8266. front: {
  8267. height: math.unit(7 + 8 / 12, "feet"),
  8268. weight: math.unit(120, "lb"),
  8269. name: "Front",
  8270. image: {
  8271. source: "./media/characters/danny/front.svg",
  8272. extra: 1490 / 1350
  8273. }
  8274. },
  8275. back: {
  8276. height: math.unit(7 + 8 / 12, "feet"),
  8277. weight: math.unit(120, "lb"),
  8278. name: "Back",
  8279. image: {
  8280. source: "./media/characters/danny/back.svg",
  8281. extra: 1490 / 1350
  8282. }
  8283. },
  8284. },
  8285. [
  8286. {
  8287. name: "Normal",
  8288. height: math.unit(7 + 8 / 12, "feet"),
  8289. default: true
  8290. },
  8291. ]
  8292. ))
  8293. characterMakers.push(() => makeCharacter(
  8294. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8295. {
  8296. front: {
  8297. height: math.unit(3.5, "inches"),
  8298. weight: math.unit(19, "grams"),
  8299. name: "Front",
  8300. image: {
  8301. source: "./media/characters/mallow/front.svg",
  8302. extra: 471 / 431
  8303. }
  8304. },
  8305. back: {
  8306. height: math.unit(3.5, "inches"),
  8307. weight: math.unit(19, "grams"),
  8308. name: "Back",
  8309. image: {
  8310. source: "./media/characters/mallow/back.svg",
  8311. extra: 471 / 431
  8312. }
  8313. },
  8314. },
  8315. [
  8316. {
  8317. name: "Normal",
  8318. height: math.unit(3.5, "inches"),
  8319. default: true
  8320. },
  8321. ]
  8322. ))
  8323. characterMakers.push(() => makeCharacter(
  8324. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8325. {
  8326. front: {
  8327. height: math.unit(9, "feet"),
  8328. weight: math.unit(230, "kg"),
  8329. name: "Front",
  8330. image: {
  8331. source: "./media/characters/starry-aqua/front.svg"
  8332. }
  8333. },
  8334. back: {
  8335. height: math.unit(9, "feet"),
  8336. weight: math.unit(230, "kg"),
  8337. name: "Back",
  8338. image: {
  8339. source: "./media/characters/starry-aqua/back.svg"
  8340. }
  8341. },
  8342. hand: {
  8343. height: math.unit(9 * 0.1168, "feet"),
  8344. name: "Hand",
  8345. image: {
  8346. source: "./media/characters/starry-aqua/hand.svg"
  8347. }
  8348. },
  8349. foot: {
  8350. height: math.unit(9 * 0.18, "feet"),
  8351. name: "Foot",
  8352. image: {
  8353. source: "./media/characters/starry-aqua/foot.svg"
  8354. }
  8355. }
  8356. },
  8357. [
  8358. {
  8359. name: "Micro",
  8360. height: math.unit(3, "inches")
  8361. },
  8362. {
  8363. name: "Normal",
  8364. height: math.unit(9, "feet")
  8365. },
  8366. {
  8367. name: "Macro",
  8368. height: math.unit(300, "feet"),
  8369. default: true
  8370. },
  8371. {
  8372. name: "Megamacro",
  8373. height: math.unit(3200, "feet")
  8374. }
  8375. ]
  8376. ))
  8377. characterMakers.push(() => makeCharacter(
  8378. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8379. {
  8380. front: {
  8381. height: math.unit(6, "feet"),
  8382. weight: math.unit(230, "lb"),
  8383. name: "Front",
  8384. image: {
  8385. source: "./media/characters/luka/front.svg",
  8386. extra: 1,
  8387. bottom: 0.025
  8388. }
  8389. },
  8390. },
  8391. [
  8392. {
  8393. name: "Normal",
  8394. height: math.unit(12 + 8 / 12, "feet"),
  8395. default: true
  8396. },
  8397. {
  8398. name: "Minimacro",
  8399. height: math.unit(20, "feet")
  8400. },
  8401. {
  8402. name: "Macro",
  8403. height: math.unit(250, "feet")
  8404. },
  8405. {
  8406. name: "Megamacro",
  8407. height: math.unit(5, "miles")
  8408. },
  8409. {
  8410. name: "Gigamacro",
  8411. height: math.unit(8000, "miles")
  8412. },
  8413. ]
  8414. ))
  8415. characterMakers.push(() => makeCharacter(
  8416. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8417. {
  8418. front: {
  8419. height: math.unit(6, "feet"),
  8420. weight: math.unit(150, "lb"),
  8421. name: "Front",
  8422. image: {
  8423. source: "./media/characters/natalie-nightring/front.svg",
  8424. extra: 1,
  8425. bottom: 0.06
  8426. }
  8427. },
  8428. },
  8429. [
  8430. {
  8431. name: "Uh Oh",
  8432. height: math.unit(0.1, "mm")
  8433. },
  8434. {
  8435. name: "Small",
  8436. height: math.unit(3, "inches")
  8437. },
  8438. {
  8439. name: "Human Scale",
  8440. height: math.unit(6, "feet")
  8441. },
  8442. {
  8443. name: "Librarian",
  8444. height: math.unit(50, "feet"),
  8445. default: true
  8446. },
  8447. {
  8448. name: "Immense",
  8449. height: math.unit(200, "miles")
  8450. },
  8451. ]
  8452. ))
  8453. characterMakers.push(() => makeCharacter(
  8454. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8455. {
  8456. front: {
  8457. height: math.unit(6, "feet"),
  8458. weight: math.unit(180, "lbs"),
  8459. name: "Front",
  8460. image: {
  8461. source: "./media/characters/danni-rosie/front.svg",
  8462. extra: 1260 / 1128,
  8463. bottom: 0.022
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Micro",
  8470. height: math.unit(2, "inches"),
  8471. default: true
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8477. {
  8478. front: {
  8479. height: math.unit(5 + 9 / 12, "feet"),
  8480. weight: math.unit(220, "lb"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/samantha-kruse/front.svg",
  8484. extra: (985 / 935),
  8485. bottom: 0.03
  8486. }
  8487. },
  8488. frontUndressed: {
  8489. height: math.unit(5 + 9 / 12, "feet"),
  8490. weight: math.unit(220, "lb"),
  8491. name: "Front (Undressed)",
  8492. image: {
  8493. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8494. extra: (973 / 923),
  8495. bottom: 0.025
  8496. }
  8497. },
  8498. fat: {
  8499. height: math.unit(5 + 9 / 12, "feet"),
  8500. weight: math.unit(900, "lb"),
  8501. name: "Front (Fat)",
  8502. image: {
  8503. source: "./media/characters/samantha-kruse/fat.svg",
  8504. extra: 2688 / 2561
  8505. }
  8506. },
  8507. },
  8508. [
  8509. {
  8510. name: "Normal",
  8511. height: math.unit(5 + 9 / 12, "feet"),
  8512. default: true
  8513. }
  8514. ]
  8515. ))
  8516. characterMakers.push(() => makeCharacter(
  8517. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8518. {
  8519. back: {
  8520. height: math.unit(5 + 4 / 12, "feet"),
  8521. weight: math.unit(4963, "lb"),
  8522. name: "Back",
  8523. image: {
  8524. source: "./media/characters/amelia-rosie/back.svg",
  8525. extra: 1113 / 963,
  8526. bottom: 0.01
  8527. }
  8528. },
  8529. },
  8530. [
  8531. {
  8532. name: "Level 0",
  8533. height: math.unit(5 + 4 / 12, "feet")
  8534. },
  8535. {
  8536. name: "Level 1",
  8537. height: math.unit(164597, "feet"),
  8538. default: true
  8539. },
  8540. {
  8541. name: "Level 2",
  8542. height: math.unit(956243, "miles")
  8543. },
  8544. {
  8545. name: "Level 3",
  8546. height: math.unit(29421709423, "miles")
  8547. },
  8548. {
  8549. name: "Level 4",
  8550. height: math.unit(154, "lightyears")
  8551. },
  8552. {
  8553. name: "Level 5",
  8554. height: math.unit(4738272, "lightyears")
  8555. },
  8556. {
  8557. name: "Level 6",
  8558. height: math.unit(145787152896, "lightyears")
  8559. },
  8560. ]
  8561. ))
  8562. characterMakers.push(() => makeCharacter(
  8563. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8564. {
  8565. front: {
  8566. height: math.unit(5 + 11 / 12, "feet"),
  8567. weight: math.unit(65, "kg"),
  8568. name: "Front",
  8569. image: {
  8570. source: "./media/characters/rook-kitara/front.svg",
  8571. extra: 1347 / 1274,
  8572. bottom: 0.005
  8573. }
  8574. },
  8575. },
  8576. [
  8577. {
  8578. name: "Totally Unfair",
  8579. height: math.unit(1.8, "mm")
  8580. },
  8581. {
  8582. name: "Lap Rookie",
  8583. height: math.unit(1.4, "feet")
  8584. },
  8585. {
  8586. name: "Normal",
  8587. height: math.unit(5 + 11 / 12, "feet"),
  8588. default: true
  8589. },
  8590. {
  8591. name: "How Did This Happen",
  8592. height: math.unit(80, "miles")
  8593. }
  8594. ]
  8595. ))
  8596. characterMakers.push(() => makeCharacter(
  8597. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8598. {
  8599. front: {
  8600. height: math.unit(7, "feet"),
  8601. weight: math.unit(300, "lb"),
  8602. name: "Front",
  8603. image: {
  8604. source: "./media/characters/pisces/front.svg",
  8605. extra: 2255 / 2115,
  8606. bottom: 0.03
  8607. }
  8608. },
  8609. back: {
  8610. height: math.unit(7, "feet"),
  8611. weight: math.unit(300, "lb"),
  8612. name: "Back",
  8613. image: {
  8614. source: "./media/characters/pisces/back.svg",
  8615. extra: 2146 / 2055,
  8616. bottom: 0.04
  8617. }
  8618. },
  8619. },
  8620. [
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(7, "feet"),
  8624. default: true
  8625. },
  8626. {
  8627. name: "Swimming Pool",
  8628. height: math.unit(12.2, "meters")
  8629. },
  8630. {
  8631. name: "Olympic Swimming Pool",
  8632. height: math.unit(56.3, "meters")
  8633. },
  8634. {
  8635. name: "Lake Superior",
  8636. height: math.unit(93900, "meters")
  8637. },
  8638. {
  8639. name: "Mediterranean Sea",
  8640. height: math.unit(644457, "meters")
  8641. },
  8642. {
  8643. name: "World's Oceans",
  8644. height: math.unit(4567491, "meters")
  8645. },
  8646. ]
  8647. ))
  8648. characterMakers.push(() => makeCharacter(
  8649. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8650. {
  8651. front: {
  8652. height: math.unit(2.3, "meters"),
  8653. weight: math.unit(120, "kg"),
  8654. name: "Front",
  8655. image: {
  8656. source: "./media/characters/zelas/front.svg"
  8657. }
  8658. },
  8659. side: {
  8660. height: math.unit(2.3, "meters"),
  8661. weight: math.unit(120, "kg"),
  8662. name: "Side",
  8663. image: {
  8664. source: "./media/characters/zelas/side.svg"
  8665. }
  8666. },
  8667. back: {
  8668. height: math.unit(2.3, "meters"),
  8669. weight: math.unit(120, "kg"),
  8670. name: "Back",
  8671. image: {
  8672. source: "./media/characters/zelas/back.svg"
  8673. }
  8674. },
  8675. foot: {
  8676. height: math.unit(1.116, "feet"),
  8677. name: "Foot",
  8678. image: {
  8679. source: "./media/characters/zelas/foot.svg"
  8680. }
  8681. },
  8682. },
  8683. [
  8684. {
  8685. name: "Normal",
  8686. height: math.unit(2.3, "meters")
  8687. },
  8688. {
  8689. name: "Macro",
  8690. height: math.unit(30, "meters"),
  8691. default: true
  8692. },
  8693. ]
  8694. ))
  8695. characterMakers.push(() => makeCharacter(
  8696. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8697. {
  8698. front: {
  8699. height: math.unit(1, "inch"),
  8700. weight: math.unit(0.21, "grams"),
  8701. name: "Front",
  8702. image: {
  8703. source: "./media/characters/talbot/front.svg",
  8704. extra: 594 / 544
  8705. }
  8706. },
  8707. },
  8708. [
  8709. {
  8710. name: "Micro",
  8711. height: math.unit(1, "inch"),
  8712. default: true
  8713. },
  8714. ]
  8715. ))
  8716. characterMakers.push(() => makeCharacter(
  8717. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8718. {
  8719. front: {
  8720. height: math.unit(3 + 3 / 12, "feet"),
  8721. weight: math.unit(51.8, "lb"),
  8722. name: "Front",
  8723. image: {
  8724. source: "./media/characters/fliss/front.svg",
  8725. extra: 840 / 640
  8726. }
  8727. },
  8728. },
  8729. [
  8730. {
  8731. name: "Teeny Tiny",
  8732. height: math.unit(1, "mm")
  8733. },
  8734. {
  8735. name: "Small",
  8736. height: math.unit(1, "inch"),
  8737. default: true
  8738. },
  8739. {
  8740. name: "Standard Sylveon",
  8741. height: math.unit(3 + 3 / 12, "feet")
  8742. },
  8743. {
  8744. name: "Large Nuisance",
  8745. height: math.unit(33, "feet")
  8746. },
  8747. {
  8748. name: "City Filler",
  8749. height: math.unit(3000, "feet")
  8750. },
  8751. {
  8752. name: "New Horizon",
  8753. height: math.unit(6000, "miles")
  8754. },
  8755. ]
  8756. ))
  8757. characterMakers.push(() => makeCharacter(
  8758. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8759. {
  8760. front: {
  8761. height: math.unit(5, "cm"),
  8762. weight: math.unit(1.94, "g"),
  8763. name: "Front",
  8764. image: {
  8765. source: "./media/characters/fleta/front.svg",
  8766. extra: 835 / 803
  8767. }
  8768. },
  8769. back: {
  8770. height: math.unit(5, "cm"),
  8771. weight: math.unit(1.94, "g"),
  8772. name: "Back",
  8773. image: {
  8774. source: "./media/characters/fleta/back.svg",
  8775. extra: 835 / 803
  8776. }
  8777. },
  8778. },
  8779. [
  8780. {
  8781. name: "Micro",
  8782. height: math.unit(5, "cm"),
  8783. default: true
  8784. },
  8785. ]
  8786. ))
  8787. characterMakers.push(() => makeCharacter(
  8788. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8789. {
  8790. front: {
  8791. height: math.unit(6, "feet"),
  8792. weight: math.unit(225, "lb"),
  8793. name: "Front",
  8794. image: {
  8795. source: "./media/characters/dominic/front.svg",
  8796. extra: 1770 / 1620,
  8797. bottom: 0.025
  8798. }
  8799. },
  8800. back: {
  8801. height: math.unit(6, "feet"),
  8802. weight: math.unit(225, "lb"),
  8803. name: "Back",
  8804. image: {
  8805. source: "./media/characters/dominic/back.svg",
  8806. extra: 1745 / 1620,
  8807. bottom: 0.065
  8808. }
  8809. },
  8810. },
  8811. [
  8812. {
  8813. name: "Nano",
  8814. height: math.unit(0.1, "mm")
  8815. },
  8816. {
  8817. name: "Micro-",
  8818. height: math.unit(1, "mm")
  8819. },
  8820. {
  8821. name: "Micro",
  8822. height: math.unit(4, "inches")
  8823. },
  8824. {
  8825. name: "Normal",
  8826. height: math.unit(6 + 4 / 12, "feet"),
  8827. default: true
  8828. },
  8829. {
  8830. name: "Macro",
  8831. height: math.unit(115, "feet")
  8832. },
  8833. {
  8834. name: "Macro+",
  8835. height: math.unit(955, "feet")
  8836. },
  8837. {
  8838. name: "Megamacro",
  8839. height: math.unit(8990, "feet")
  8840. },
  8841. {
  8842. name: "Gigmacro",
  8843. height: math.unit(9310, "miles")
  8844. },
  8845. {
  8846. name: "Teramacro",
  8847. height: math.unit(1567005010, "miles")
  8848. },
  8849. {
  8850. name: "Examacro",
  8851. height: math.unit(1425, "parsecs")
  8852. },
  8853. ]
  8854. ))
  8855. characterMakers.push(() => makeCharacter(
  8856. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8857. {
  8858. front: {
  8859. height: math.unit(400, "feet"),
  8860. weight: math.unit(44444444, "lb"),
  8861. name: "Front",
  8862. image: {
  8863. source: "./media/characters/major-colonel/front.svg"
  8864. }
  8865. },
  8866. back: {
  8867. height: math.unit(400, "feet"),
  8868. weight: math.unit(44444444, "lb"),
  8869. name: "Back",
  8870. image: {
  8871. source: "./media/characters/major-colonel/back.svg"
  8872. }
  8873. },
  8874. },
  8875. [
  8876. {
  8877. name: "Macro",
  8878. height: math.unit(400, "feet"),
  8879. default: true
  8880. },
  8881. ]
  8882. ))
  8883. characterMakers.push(() => makeCharacter(
  8884. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8885. {
  8886. catFront: {
  8887. height: math.unit(6, "feet"),
  8888. weight: math.unit(120, "lb"),
  8889. name: "Front (Cat Side)",
  8890. image: {
  8891. source: "./media/characters/axel-lycan/cat-front.svg",
  8892. extra: 430 / 402,
  8893. bottom: 43 / 472.35
  8894. }
  8895. },
  8896. catBack: {
  8897. height: math.unit(6, "feet"),
  8898. weight: math.unit(120, "lb"),
  8899. name: "Back (Cat Side)",
  8900. image: {
  8901. source: "./media/characters/axel-lycan/cat-back.svg",
  8902. extra: 447 / 419,
  8903. bottom: 23.3 / 469
  8904. }
  8905. },
  8906. wolfFront: {
  8907. height: math.unit(6, "feet"),
  8908. weight: math.unit(120, "lb"),
  8909. name: "Front (Wolf Side)",
  8910. image: {
  8911. source: "./media/characters/axel-lycan/wolf-front.svg",
  8912. extra: 485 / 456,
  8913. bottom: 19 / 504
  8914. }
  8915. },
  8916. wolfBack: {
  8917. height: math.unit(6, "feet"),
  8918. weight: math.unit(120, "lb"),
  8919. name: "Back (Wolf Side)",
  8920. image: {
  8921. source: "./media/characters/axel-lycan/wolf-back.svg",
  8922. extra: 475 / 438,
  8923. bottom: 39.2 / 514
  8924. }
  8925. },
  8926. },
  8927. [
  8928. {
  8929. name: "Macro",
  8930. height: math.unit(1, "km"),
  8931. default: true
  8932. },
  8933. ]
  8934. ))
  8935. characterMakers.push(() => makeCharacter(
  8936. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8937. {
  8938. front: {
  8939. height: math.unit(5 + 9 / 12, "feet"),
  8940. weight: math.unit(175, "lb"),
  8941. name: "Front",
  8942. image: {
  8943. source: "./media/characters/vanrel-hyena/front.svg",
  8944. extra: 1086 / 1010,
  8945. bottom: 0.04
  8946. }
  8947. },
  8948. },
  8949. [
  8950. {
  8951. name: "Normal",
  8952. height: math.unit(5 + 9 / 12, "feet"),
  8953. default: true
  8954. },
  8955. ]
  8956. ))
  8957. characterMakers.push(() => makeCharacter(
  8958. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8959. {
  8960. front: {
  8961. height: math.unit(6, "feet"),
  8962. weight: math.unit(103, "lb"),
  8963. name: "Front",
  8964. image: {
  8965. source: "./media/characters/abbott-absol/front.svg",
  8966. extra: 2010 / 1842
  8967. }
  8968. },
  8969. },
  8970. [
  8971. {
  8972. name: "Megamicro",
  8973. height: math.unit(0.1, "mm")
  8974. },
  8975. {
  8976. name: "Micro",
  8977. height: math.unit(1, "inch")
  8978. },
  8979. {
  8980. name: "Normal",
  8981. height: math.unit(6, "feet"),
  8982. default: true
  8983. },
  8984. ]
  8985. ))
  8986. characterMakers.push(() => makeCharacter(
  8987. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8988. {
  8989. front: {
  8990. height: math.unit(6, "feet"),
  8991. weight: math.unit(264, "lb"),
  8992. name: "Front",
  8993. image: {
  8994. source: "./media/characters/hector/front.svg",
  8995. extra: 2280 / 2130,
  8996. bottom: 0.07
  8997. }
  8998. },
  8999. },
  9000. [
  9001. {
  9002. name: "Normal",
  9003. height: math.unit(12.25, "foot"),
  9004. default: true
  9005. },
  9006. {
  9007. name: "Macro",
  9008. height: math.unit(160, "feet")
  9009. },
  9010. ]
  9011. ))
  9012. characterMakers.push(() => makeCharacter(
  9013. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9014. {
  9015. front: {
  9016. height: math.unit(6, "feet"),
  9017. weight: math.unit(150, "lb"),
  9018. name: "Front",
  9019. image: {
  9020. source: "./media/characters/sal/front.svg",
  9021. extra: 1846 / 1699,
  9022. bottom: 0.04
  9023. }
  9024. },
  9025. },
  9026. [
  9027. {
  9028. name: "Megamacro",
  9029. height: math.unit(10, "miles"),
  9030. default: true
  9031. },
  9032. ]
  9033. ))
  9034. characterMakers.push(() => makeCharacter(
  9035. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9036. {
  9037. front: {
  9038. height: math.unit(3, "meters"),
  9039. weight: math.unit(450, "kg"),
  9040. name: "front",
  9041. image: {
  9042. source: "./media/characters/ranger/front.svg",
  9043. extra: 2401 / 2243,
  9044. bottom: 0.05
  9045. }
  9046. },
  9047. },
  9048. [
  9049. {
  9050. name: "Normal",
  9051. height: math.unit(3, "meters"),
  9052. default: true
  9053. },
  9054. ]
  9055. ))
  9056. characterMakers.push(() => makeCharacter(
  9057. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9058. {
  9059. front: {
  9060. height: math.unit(14, "feet"),
  9061. weight: math.unit(800, "kg"),
  9062. name: "Front",
  9063. image: {
  9064. source: "./media/characters/theresa/front.svg",
  9065. extra: 3575 / 3346,
  9066. bottom: 0.03
  9067. }
  9068. },
  9069. },
  9070. [
  9071. {
  9072. name: "Normal",
  9073. height: math.unit(14, "feet"),
  9074. default: true
  9075. },
  9076. ]
  9077. ))
  9078. characterMakers.push(() => makeCharacter(
  9079. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9080. {
  9081. front: {
  9082. height: math.unit(6, "feet"),
  9083. weight: math.unit(3, "kg"),
  9084. name: "Front",
  9085. image: {
  9086. source: "./media/characters/ine/front.svg",
  9087. extra: 678 / 539,
  9088. bottom: 0.023
  9089. }
  9090. },
  9091. },
  9092. [
  9093. {
  9094. name: "Normal",
  9095. height: math.unit(2.265, "feet"),
  9096. default: true
  9097. },
  9098. ]
  9099. ))
  9100. characterMakers.push(() => makeCharacter(
  9101. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9102. {
  9103. front: {
  9104. height: math.unit(5, "feet"),
  9105. weight: math.unit(30, "kg"),
  9106. name: "Front",
  9107. image: {
  9108. source: "./media/characters/vial/front.svg",
  9109. extra: 1365 / 1277,
  9110. bottom: 0.04
  9111. }
  9112. },
  9113. },
  9114. [
  9115. {
  9116. name: "Normal",
  9117. height: math.unit(5, "feet"),
  9118. default: true
  9119. },
  9120. ]
  9121. ))
  9122. characterMakers.push(() => makeCharacter(
  9123. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9124. {
  9125. side: {
  9126. height: math.unit(3.4, "meters"),
  9127. weight: math.unit(1000, "lb"),
  9128. name: "Side",
  9129. image: {
  9130. source: "./media/characters/rovoska/side.svg",
  9131. extra: 4403 / 1515
  9132. }
  9133. },
  9134. },
  9135. [
  9136. {
  9137. name: "Normal",
  9138. height: math.unit(3.4, "meters"),
  9139. default: true
  9140. },
  9141. ]
  9142. ))
  9143. characterMakers.push(() => makeCharacter(
  9144. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9145. {
  9146. front: {
  9147. height: math.unit(8, "feet"),
  9148. weight: math.unit(315, "lb"),
  9149. name: "Front",
  9150. image: {
  9151. source: "./media/characters/gunner-rotthbauer/front.svg"
  9152. }
  9153. },
  9154. back: {
  9155. height: math.unit(8, "feet"),
  9156. weight: math.unit(315, "lb"),
  9157. name: "Back",
  9158. image: {
  9159. source: "./media/characters/gunner-rotthbauer/back.svg"
  9160. }
  9161. },
  9162. },
  9163. [
  9164. {
  9165. name: "Micro",
  9166. height: math.unit(3.5, "inches")
  9167. },
  9168. {
  9169. name: "Normal",
  9170. height: math.unit(8, "feet"),
  9171. default: true
  9172. },
  9173. {
  9174. name: "Macro",
  9175. height: math.unit(250, "feet")
  9176. },
  9177. {
  9178. name: "Megamacro",
  9179. height: math.unit(1, "AU")
  9180. },
  9181. ]
  9182. ))
  9183. characterMakers.push(() => makeCharacter(
  9184. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9185. {
  9186. front: {
  9187. height: math.unit(5 + 5 / 12, "feet"),
  9188. weight: math.unit(140, "lb"),
  9189. name: "Front",
  9190. image: {
  9191. source: "./media/characters/allatia/front.svg",
  9192. extra: 1227 / 1180,
  9193. bottom: 0.027
  9194. }
  9195. },
  9196. },
  9197. [
  9198. {
  9199. name: "Normal",
  9200. height: math.unit(5 + 5 / 12, "feet")
  9201. },
  9202. {
  9203. name: "Macro",
  9204. height: math.unit(250, "feet"),
  9205. default: true
  9206. },
  9207. {
  9208. name: "Megamacro",
  9209. height: math.unit(8, "miles")
  9210. }
  9211. ]
  9212. ))
  9213. characterMakers.push(() => makeCharacter(
  9214. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9215. {
  9216. front: {
  9217. height: math.unit(6, "feet"),
  9218. weight: math.unit(120, "lb"),
  9219. name: "Front",
  9220. image: {
  9221. source: "./media/characters/tene/front.svg",
  9222. extra: 1728 / 1578,
  9223. bottom: 0.022
  9224. }
  9225. },
  9226. stomping: {
  9227. height: math.unit(2.025, "meters"),
  9228. weight: math.unit(120, "lb"),
  9229. name: "Stomping",
  9230. image: {
  9231. source: "./media/characters/tene/stomping.svg",
  9232. extra: 938 / 873,
  9233. bottom: 0.01
  9234. }
  9235. },
  9236. sitting: {
  9237. height: math.unit(1, "meter"),
  9238. weight: math.unit(120, "lb"),
  9239. name: "Sitting",
  9240. image: {
  9241. source: "./media/characters/tene/sitting.svg",
  9242. extra: 437 / 415,
  9243. bottom: 0.1
  9244. }
  9245. },
  9246. feral: {
  9247. height: math.unit(3.9, "feet"),
  9248. weight: math.unit(250, "lb"),
  9249. name: "Feral",
  9250. image: {
  9251. source: "./media/characters/tene/feral.svg",
  9252. extra: 717 / 458,
  9253. bottom: 0.179
  9254. }
  9255. },
  9256. },
  9257. [
  9258. {
  9259. name: "Normal",
  9260. height: math.unit(6, "feet")
  9261. },
  9262. {
  9263. name: "Macro",
  9264. height: math.unit(300, "feet"),
  9265. default: true
  9266. },
  9267. {
  9268. name: "Megamacro",
  9269. height: math.unit(5, "miles")
  9270. },
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9275. {
  9276. side: {
  9277. height: math.unit(6, "feet"),
  9278. name: "Side",
  9279. image: {
  9280. source: "./media/characters/evander/side.svg",
  9281. extra: 877 / 477
  9282. }
  9283. },
  9284. },
  9285. [
  9286. {
  9287. name: "Normal",
  9288. height: math.unit(0.83, "meters"),
  9289. default: true
  9290. },
  9291. ]
  9292. ))
  9293. characterMakers.push(() => makeCharacter(
  9294. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9295. {
  9296. front: {
  9297. height: math.unit(12, "feet"),
  9298. weight: math.unit(1000, "lb"),
  9299. name: "Front",
  9300. image: {
  9301. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9302. extra: 1762 / 1611
  9303. }
  9304. },
  9305. back: {
  9306. height: math.unit(12, "feet"),
  9307. weight: math.unit(1000, "lb"),
  9308. name: "Back",
  9309. image: {
  9310. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9311. extra: 1762 / 1611
  9312. }
  9313. },
  9314. },
  9315. [
  9316. {
  9317. name: "Normal",
  9318. height: math.unit(12, "feet"),
  9319. default: true
  9320. },
  9321. {
  9322. name: "Kaiju",
  9323. height: math.unit(150, "feet")
  9324. },
  9325. ]
  9326. ))
  9327. characterMakers.push(() => makeCharacter(
  9328. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9329. {
  9330. front: {
  9331. height: math.unit(6, "feet"),
  9332. weight: math.unit(150, "lb"),
  9333. name: "Front",
  9334. image: {
  9335. source: "./media/characters/zero-alurus/front.svg"
  9336. }
  9337. },
  9338. back: {
  9339. height: math.unit(6, "feet"),
  9340. weight: math.unit(150, "lb"),
  9341. name: "Back",
  9342. image: {
  9343. source: "./media/characters/zero-alurus/back.svg"
  9344. }
  9345. },
  9346. },
  9347. [
  9348. {
  9349. name: "Normal",
  9350. height: math.unit(5 + 10 / 12, "feet")
  9351. },
  9352. {
  9353. name: "Macro",
  9354. height: math.unit(60, "feet"),
  9355. default: true
  9356. },
  9357. {
  9358. name: "Macro+",
  9359. height: math.unit(450, "feet")
  9360. },
  9361. ]
  9362. ))
  9363. characterMakers.push(() => makeCharacter(
  9364. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9365. {
  9366. front: {
  9367. height: math.unit(6, "feet"),
  9368. weight: math.unit(200, "lb"),
  9369. name: "Front",
  9370. image: {
  9371. source: "./media/characters/mega-shi/front.svg",
  9372. extra: 1279 / 1250,
  9373. bottom: 0.02
  9374. }
  9375. },
  9376. back: {
  9377. height: math.unit(6, "feet"),
  9378. weight: math.unit(200, "lb"),
  9379. name: "Back",
  9380. image: {
  9381. source: "./media/characters/mega-shi/back.svg",
  9382. extra: 1279 / 1250,
  9383. bottom: 0.02
  9384. }
  9385. },
  9386. },
  9387. [
  9388. {
  9389. name: "Micro",
  9390. height: math.unit(16 + 6 / 12, "feet")
  9391. },
  9392. {
  9393. name: "Third Dimension",
  9394. height: math.unit(40, "meters")
  9395. },
  9396. {
  9397. name: "Normal",
  9398. height: math.unit(660, "feet"),
  9399. default: true
  9400. },
  9401. {
  9402. name: "Megamacro",
  9403. height: math.unit(10, "miles")
  9404. },
  9405. {
  9406. name: "Planetary Launch",
  9407. height: math.unit(500, "miles")
  9408. },
  9409. {
  9410. name: "Interstellar",
  9411. height: math.unit(1e9, "miles")
  9412. },
  9413. {
  9414. name: "Leaving the Universe",
  9415. height: math.unit(1, "gigaparsec")
  9416. },
  9417. {
  9418. name: "Travelling Universes",
  9419. height: math.unit(30e15, "parsecs")
  9420. },
  9421. ]
  9422. ))
  9423. characterMakers.push(() => makeCharacter(
  9424. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9425. {
  9426. front: {
  9427. height: math.unit(6, "feet"),
  9428. weight: math.unit(150, "lb"),
  9429. name: "Front",
  9430. image: {
  9431. source: "./media/characters/odyssey/front.svg",
  9432. extra: 1782 / 1582,
  9433. bottom: 0.01
  9434. }
  9435. },
  9436. side: {
  9437. height: math.unit(5.7, "feet"),
  9438. weight: math.unit(140, "lb"),
  9439. name: "Side",
  9440. image: {
  9441. source: "./media/characters/odyssey/side.svg",
  9442. extra: 6462 / 5700
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(5 + 4 / 12, "feet")
  9450. },
  9451. {
  9452. name: "Macro",
  9453. height: math.unit(1, "km")
  9454. },
  9455. {
  9456. name: "Megamacro",
  9457. height: math.unit(3000, "km")
  9458. },
  9459. {
  9460. name: "Gigamacro",
  9461. height: math.unit(1, "AU"),
  9462. default: true
  9463. },
  9464. {
  9465. name: "Omniversal",
  9466. height: math.unit(100e14, "lightyears")
  9467. },
  9468. ]
  9469. ))
  9470. characterMakers.push(() => makeCharacter(
  9471. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9472. {
  9473. front: {
  9474. height: math.unit(6, "feet"),
  9475. weight: math.unit(300, "lb"),
  9476. name: "Front",
  9477. image: {
  9478. source: "./media/characters/mekuto/front.svg",
  9479. extra: 921 / 832,
  9480. bottom: 0.03
  9481. }
  9482. },
  9483. hand: {
  9484. height: math.unit(6 / 10.24, "feet"),
  9485. name: "Hand",
  9486. image: {
  9487. source: "./media/characters/mekuto/hand.svg"
  9488. }
  9489. },
  9490. foot: {
  9491. height: math.unit(6 / 5.05, "feet"),
  9492. name: "Foot",
  9493. image: {
  9494. source: "./media/characters/mekuto/foot.svg"
  9495. }
  9496. },
  9497. },
  9498. [
  9499. {
  9500. name: "Minimicro",
  9501. height: math.unit(0.2, "inches")
  9502. },
  9503. {
  9504. name: "Micro",
  9505. height: math.unit(1.5, "inches")
  9506. },
  9507. {
  9508. name: "Normal",
  9509. height: math.unit(5 + 11 / 12, "feet"),
  9510. default: true
  9511. },
  9512. {
  9513. name: "Minimacro",
  9514. height: math.unit(17 + 9 / 12, "feet")
  9515. },
  9516. {
  9517. name: "Macro",
  9518. height: math.unit(177.5, "feet")
  9519. },
  9520. {
  9521. name: "Megamacro",
  9522. height: math.unit(152, "miles")
  9523. },
  9524. ]
  9525. ))
  9526. characterMakers.push(() => makeCharacter(
  9527. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9528. {
  9529. front: {
  9530. height: math.unit(6.5, "inches"),
  9531. weight: math.unit(13, "oz"),
  9532. name: "Front",
  9533. image: {
  9534. source: "./media/characters/dafydd-tomos/front.svg",
  9535. extra: 2990 / 2603,
  9536. bottom: 0.03
  9537. }
  9538. },
  9539. },
  9540. [
  9541. {
  9542. name: "Micro",
  9543. height: math.unit(6.5, "inches"),
  9544. default: true
  9545. },
  9546. ]
  9547. ))
  9548. characterMakers.push(() => makeCharacter(
  9549. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9550. {
  9551. front: {
  9552. height: math.unit(6, "feet"),
  9553. weight: math.unit(150, "lb"),
  9554. name: "Front",
  9555. image: {
  9556. source: "./media/characters/splinter/front.svg",
  9557. extra: 2990 / 2882,
  9558. bottom: 0.04
  9559. }
  9560. },
  9561. back: {
  9562. height: math.unit(6, "feet"),
  9563. weight: math.unit(150, "lb"),
  9564. name: "Back",
  9565. image: {
  9566. source: "./media/characters/splinter/back.svg",
  9567. extra: 2990 / 2882,
  9568. bottom: 0.04
  9569. }
  9570. },
  9571. },
  9572. [
  9573. {
  9574. name: "Normal",
  9575. height: math.unit(6, "feet")
  9576. },
  9577. {
  9578. name: "Macro",
  9579. height: math.unit(230, "meters"),
  9580. default: true
  9581. },
  9582. ]
  9583. ))
  9584. characterMakers.push(() => makeCharacter(
  9585. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9586. {
  9587. front: {
  9588. height: math.unit(4 + 10 / 12, "feet"),
  9589. weight: math.unit(480, "lb"),
  9590. name: "Front",
  9591. image: {
  9592. source: "./media/characters/snow-gabumon/front.svg",
  9593. extra: 1140 / 963,
  9594. bottom: 0.058
  9595. }
  9596. },
  9597. back: {
  9598. height: math.unit(4 + 10 / 12, "feet"),
  9599. weight: math.unit(480, "lb"),
  9600. name: "Back",
  9601. image: {
  9602. source: "./media/characters/snow-gabumon/back.svg",
  9603. extra: 1115 / 962,
  9604. bottom: 0.041
  9605. }
  9606. },
  9607. frontUndresed: {
  9608. height: math.unit(4 + 10 / 12, "feet"),
  9609. weight: math.unit(480, "lb"),
  9610. name: "Front (Undressed)",
  9611. image: {
  9612. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9613. extra: 1061 / 960,
  9614. bottom: 0.045
  9615. }
  9616. },
  9617. },
  9618. [
  9619. {
  9620. name: "Micro",
  9621. height: math.unit(1, "inch")
  9622. },
  9623. {
  9624. name: "Normal",
  9625. height: math.unit(4 + 10 / 12, "feet"),
  9626. default: true
  9627. },
  9628. {
  9629. name: "Macro",
  9630. height: math.unit(200, "feet")
  9631. },
  9632. {
  9633. name: "Megamacro",
  9634. height: math.unit(120, "miles")
  9635. },
  9636. {
  9637. name: "Gigamacro",
  9638. height: math.unit(9800, "miles")
  9639. },
  9640. ]
  9641. ))
  9642. characterMakers.push(() => makeCharacter(
  9643. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9644. {
  9645. front: {
  9646. height: math.unit(1.7, "meters"),
  9647. weight: math.unit(140, "lb"),
  9648. name: "Front",
  9649. image: {
  9650. source: "./media/characters/moody/front.svg",
  9651. extra: 3226 / 3007,
  9652. bottom: 0.087
  9653. }
  9654. },
  9655. },
  9656. [
  9657. {
  9658. name: "Micro",
  9659. height: math.unit(1, "mm")
  9660. },
  9661. {
  9662. name: "Normal",
  9663. height: math.unit(1.7, "meters"),
  9664. default: true
  9665. },
  9666. {
  9667. name: "Macro",
  9668. height: math.unit(80, "meters")
  9669. },
  9670. {
  9671. name: "Macro+",
  9672. height: math.unit(500, "meters")
  9673. },
  9674. ]
  9675. ))
  9676. characterMakers.push(() => makeCharacter(
  9677. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9678. {
  9679. front: {
  9680. height: math.unit(6, "feet"),
  9681. weight: math.unit(150, "lb"),
  9682. name: "Front",
  9683. image: {
  9684. source: "./media/characters/zyas/front.svg",
  9685. extra: 1180 / 1120,
  9686. bottom: 0.045
  9687. }
  9688. },
  9689. },
  9690. [
  9691. {
  9692. name: "Normal",
  9693. height: math.unit(10, "feet"),
  9694. default: true
  9695. },
  9696. {
  9697. name: "Macro",
  9698. height: math.unit(500, "feet")
  9699. },
  9700. {
  9701. name: "Megamacro",
  9702. height: math.unit(5, "miles")
  9703. },
  9704. {
  9705. name: "Teramacro",
  9706. height: math.unit(150000, "miles")
  9707. },
  9708. ]
  9709. ))
  9710. characterMakers.push(() => makeCharacter(
  9711. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9712. {
  9713. front: {
  9714. height: math.unit(6, "feet"),
  9715. weight: math.unit(150, "lb"),
  9716. name: "Front",
  9717. image: {
  9718. source: "./media/characters/cuon/front.svg",
  9719. extra: 1390 / 1320,
  9720. bottom: 0.008
  9721. }
  9722. },
  9723. },
  9724. [
  9725. {
  9726. name: "Micro",
  9727. height: math.unit(3, "inches")
  9728. },
  9729. {
  9730. name: "Normal",
  9731. height: math.unit(18 + 9 / 12, "feet"),
  9732. default: true
  9733. },
  9734. {
  9735. name: "Macro",
  9736. height: math.unit(360, "feet")
  9737. },
  9738. {
  9739. name: "Megamacro",
  9740. height: math.unit(360, "miles")
  9741. },
  9742. ]
  9743. ))
  9744. characterMakers.push(() => makeCharacter(
  9745. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9746. {
  9747. front: {
  9748. height: math.unit(2.4, "meters"),
  9749. weight: math.unit(70, "kg"),
  9750. name: "Front",
  9751. image: {
  9752. source: "./media/characters/nyanuxk/front.svg",
  9753. extra: 1172 / 1084,
  9754. bottom: 0.065
  9755. }
  9756. },
  9757. side: {
  9758. height: math.unit(2.4, "meters"),
  9759. weight: math.unit(70, "kg"),
  9760. name: "Side",
  9761. image: {
  9762. source: "./media/characters/nyanuxk/side.svg",
  9763. extra: 1190 / 1132,
  9764. bottom: 0.007
  9765. }
  9766. },
  9767. back: {
  9768. height: math.unit(2.4, "meters"),
  9769. weight: math.unit(70, "kg"),
  9770. name: "Back",
  9771. image: {
  9772. source: "./media/characters/nyanuxk/back.svg",
  9773. extra: 1200 / 1141,
  9774. bottom: 0.015
  9775. }
  9776. },
  9777. foot: {
  9778. height: math.unit(0.52, "meters"),
  9779. name: "Foot",
  9780. image: {
  9781. source: "./media/characters/nyanuxk/foot.svg"
  9782. }
  9783. },
  9784. },
  9785. [
  9786. {
  9787. name: "Micro",
  9788. height: math.unit(2, "cm")
  9789. },
  9790. {
  9791. name: "Normal",
  9792. height: math.unit(2.4, "meters"),
  9793. default: true
  9794. },
  9795. {
  9796. name: "Smaller Macro",
  9797. height: math.unit(120, "meters")
  9798. },
  9799. {
  9800. name: "Bigger Macro",
  9801. height: math.unit(1.2, "km")
  9802. },
  9803. {
  9804. name: "Megamacro",
  9805. height: math.unit(15, "kilometers")
  9806. },
  9807. {
  9808. name: "Gigamacro",
  9809. height: math.unit(2000, "km")
  9810. },
  9811. {
  9812. name: "Teramacro",
  9813. height: math.unit(500000, "km")
  9814. },
  9815. ]
  9816. ))
  9817. characterMakers.push(() => makeCharacter(
  9818. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9819. {
  9820. side: {
  9821. height: math.unit(6, "feet"),
  9822. name: "Side",
  9823. image: {
  9824. source: "./media/characters/ailbhe/side.svg",
  9825. extra: 757 / 464,
  9826. bottom: 0.041
  9827. }
  9828. },
  9829. },
  9830. [
  9831. {
  9832. name: "Normal",
  9833. height: math.unit(1.07, "meters"),
  9834. default: true
  9835. },
  9836. ]
  9837. ))
  9838. characterMakers.push(() => makeCharacter(
  9839. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9840. {
  9841. front: {
  9842. height: math.unit(6, "feet"),
  9843. weight: math.unit(120, "kg"),
  9844. name: "Front",
  9845. image: {
  9846. source: "./media/characters/zevulfius/front.svg",
  9847. extra: 965 / 903
  9848. }
  9849. },
  9850. side: {
  9851. height: math.unit(6, "feet"),
  9852. weight: math.unit(120, "kg"),
  9853. name: "Side",
  9854. image: {
  9855. source: "./media/characters/zevulfius/side.svg",
  9856. extra: 939 / 900
  9857. }
  9858. },
  9859. back: {
  9860. height: math.unit(6, "feet"),
  9861. weight: math.unit(120, "kg"),
  9862. name: "Back",
  9863. image: {
  9864. source: "./media/characters/zevulfius/back.svg",
  9865. extra: 918 / 854,
  9866. bottom: 0.005
  9867. }
  9868. },
  9869. foot: {
  9870. height: math.unit(6 / 3.72, "feet"),
  9871. name: "Foot",
  9872. image: {
  9873. source: "./media/characters/zevulfius/foot.svg"
  9874. }
  9875. },
  9876. },
  9877. [
  9878. {
  9879. name: "Macro",
  9880. height: math.unit(750, "meters")
  9881. },
  9882. {
  9883. name: "Megamacro",
  9884. height: math.unit(20, "km"),
  9885. default: true
  9886. },
  9887. {
  9888. name: "Gigamacro",
  9889. height: math.unit(2000, "km")
  9890. },
  9891. {
  9892. name: "Teramacro",
  9893. height: math.unit(250000, "km")
  9894. },
  9895. ]
  9896. ))
  9897. characterMakers.push(() => makeCharacter(
  9898. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9899. {
  9900. front: {
  9901. height: math.unit(100, "feet"),
  9902. weight: math.unit(350, "kg"),
  9903. name: "Front",
  9904. image: {
  9905. source: "./media/characters/rikes/front.svg",
  9906. extra: 1565 / 1483,
  9907. bottom: 0.017
  9908. }
  9909. },
  9910. },
  9911. [
  9912. {
  9913. name: "Macro",
  9914. height: math.unit(100, "feet"),
  9915. default: true
  9916. },
  9917. ]
  9918. ))
  9919. characterMakers.push(() => makeCharacter(
  9920. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9921. {
  9922. anthro: {
  9923. height: math.unit(8, "feet"),
  9924. weight: math.unit(120, "kg"),
  9925. name: "Anthro",
  9926. image: {
  9927. source: "./media/characters/adam-silver-mane/anthro.svg",
  9928. extra: 5743 / 5339,
  9929. bottom: 0.07
  9930. }
  9931. },
  9932. taur: {
  9933. height: math.unit(16, "feet"),
  9934. weight: math.unit(1500, "kg"),
  9935. name: "Taur",
  9936. image: {
  9937. source: "./media/characters/adam-silver-mane/taur.svg",
  9938. extra: 1713 / 1571,
  9939. bottom: 0.01
  9940. }
  9941. },
  9942. },
  9943. [
  9944. {
  9945. name: "Normal",
  9946. height: math.unit(8, "feet")
  9947. },
  9948. {
  9949. name: "Minimacro",
  9950. height: math.unit(80, "feet")
  9951. },
  9952. {
  9953. name: "Macro",
  9954. height: math.unit(800, "feet"),
  9955. default: true
  9956. },
  9957. {
  9958. name: "Megamacro",
  9959. height: math.unit(8000, "feet")
  9960. },
  9961. {
  9962. name: "Gigamacro",
  9963. height: math.unit(800, "miles")
  9964. },
  9965. {
  9966. name: "Teramacro",
  9967. height: math.unit(80000, "miles")
  9968. },
  9969. {
  9970. name: "Celestial",
  9971. height: math.unit(8e6, "miles")
  9972. },
  9973. {
  9974. name: "Star Dragon",
  9975. height: math.unit(800000, "parsecs")
  9976. },
  9977. {
  9978. name: "Godly",
  9979. height: math.unit(800, "teraparsecs")
  9980. },
  9981. ]
  9982. ))
  9983. characterMakers.push(() => makeCharacter(
  9984. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9985. {
  9986. front: {
  9987. height: math.unit(6, "feet"),
  9988. weight: math.unit(150, "lb"),
  9989. name: "Front",
  9990. image: {
  9991. source: "./media/characters/ky'owin/front.svg",
  9992. extra: 3888 / 3068,
  9993. bottom: 0.015
  9994. }
  9995. },
  9996. },
  9997. [
  9998. {
  9999. name: "Normal",
  10000. height: math.unit(6 + 8 / 12, "feet")
  10001. },
  10002. {
  10003. name: "Large",
  10004. height: math.unit(68, "feet")
  10005. },
  10006. {
  10007. name: "Macro",
  10008. height: math.unit(132, "feet")
  10009. },
  10010. {
  10011. name: "Macro+",
  10012. height: math.unit(340, "feet")
  10013. },
  10014. {
  10015. name: "Macro++",
  10016. height: math.unit(680, "feet"),
  10017. default: true
  10018. },
  10019. {
  10020. name: "Megamacro",
  10021. height: math.unit(1, "mile")
  10022. },
  10023. {
  10024. name: "Megamacro+",
  10025. height: math.unit(10, "miles")
  10026. },
  10027. ]
  10028. ))
  10029. characterMakers.push(() => makeCharacter(
  10030. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10031. {
  10032. front: {
  10033. height: math.unit(4, "feet"),
  10034. weight: math.unit(50, "lb"),
  10035. name: "Front",
  10036. image: {
  10037. source: "./media/characters/mal/front.svg",
  10038. extra: 785 / 724,
  10039. bottom: 0.07
  10040. }
  10041. },
  10042. },
  10043. [
  10044. {
  10045. name: "Micro",
  10046. height: math.unit(4, "inches")
  10047. },
  10048. {
  10049. name: "Normal",
  10050. height: math.unit(4, "feet"),
  10051. default: true
  10052. },
  10053. {
  10054. name: "Macro",
  10055. height: math.unit(200, "feet")
  10056. },
  10057. ]
  10058. ))
  10059. characterMakers.push(() => makeCharacter(
  10060. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10061. {
  10062. front: {
  10063. height: math.unit(6, "feet"),
  10064. weight: math.unit(150, "lb"),
  10065. name: "Front",
  10066. image: {
  10067. source: "./media/characters/jordan-deware/front.svg",
  10068. extra: 1191 / 1012
  10069. }
  10070. },
  10071. },
  10072. [
  10073. {
  10074. name: "Nano",
  10075. height: math.unit(0.01, "mm")
  10076. },
  10077. {
  10078. name: "Minimicro",
  10079. height: math.unit(1, "mm")
  10080. },
  10081. {
  10082. name: "Micro",
  10083. height: math.unit(0.5, "inches")
  10084. },
  10085. {
  10086. name: "Normal",
  10087. height: math.unit(4, "feet"),
  10088. default: true
  10089. },
  10090. {
  10091. name: "Minimacro",
  10092. height: math.unit(40, "meters")
  10093. },
  10094. {
  10095. name: "Small Macro",
  10096. height: math.unit(400, "meters")
  10097. },
  10098. {
  10099. name: "Macro",
  10100. height: math.unit(4, "miles")
  10101. },
  10102. {
  10103. name: "Megamacro",
  10104. height: math.unit(40, "miles")
  10105. },
  10106. {
  10107. name: "Megamacro+",
  10108. height: math.unit(400, "miles")
  10109. },
  10110. {
  10111. name: "Gigamacro",
  10112. height: math.unit(400000, "miles")
  10113. },
  10114. ]
  10115. ))
  10116. characterMakers.push(() => makeCharacter(
  10117. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10118. {
  10119. side: {
  10120. height: math.unit(6, "feet"),
  10121. weight: math.unit(150, "lb"),
  10122. name: "Side",
  10123. image: {
  10124. source: "./media/characters/kimiko/side.svg",
  10125. extra: 600 / 358
  10126. }
  10127. },
  10128. },
  10129. [
  10130. {
  10131. name: "Normal",
  10132. height: math.unit(15, "feet"),
  10133. default: true
  10134. },
  10135. {
  10136. name: "Macro",
  10137. height: math.unit(220, "feet")
  10138. },
  10139. {
  10140. name: "Macro+",
  10141. height: math.unit(1450, "feet")
  10142. },
  10143. {
  10144. name: "Megamacro",
  10145. height: math.unit(11500, "feet")
  10146. },
  10147. {
  10148. name: "Gigamacro",
  10149. height: math.unit(9500, "miles")
  10150. },
  10151. {
  10152. name: "Teramacro",
  10153. height: math.unit(2208005005, "miles")
  10154. },
  10155. {
  10156. name: "Examacro",
  10157. height: math.unit(2750, "parsecs")
  10158. },
  10159. {
  10160. name: "Zettamacro",
  10161. height: math.unit(101500, "parsecs")
  10162. },
  10163. ]
  10164. ))
  10165. characterMakers.push(() => makeCharacter(
  10166. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10167. {
  10168. front: {
  10169. height: math.unit(6, "feet"),
  10170. weight: math.unit(70, "kg"),
  10171. name: "Front",
  10172. image: {
  10173. source: "./media/characters/andrew-sleepy/front.svg"
  10174. }
  10175. },
  10176. side: {
  10177. height: math.unit(6, "feet"),
  10178. weight: math.unit(70, "kg"),
  10179. name: "Side",
  10180. image: {
  10181. source: "./media/characters/andrew-sleepy/side.svg"
  10182. }
  10183. },
  10184. },
  10185. [
  10186. {
  10187. name: "Micro",
  10188. height: math.unit(1, "mm"),
  10189. default: true
  10190. },
  10191. ]
  10192. ))
  10193. characterMakers.push(() => makeCharacter(
  10194. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10195. {
  10196. front: {
  10197. height: math.unit(6, "feet"),
  10198. weight: math.unit(150, "lb"),
  10199. name: "Front",
  10200. image: {
  10201. source: "./media/characters/judio/front.svg",
  10202. extra: 1258 / 1110
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(5 + 6 / 12, "feet")
  10210. },
  10211. {
  10212. name: "Macro",
  10213. height: math.unit(1000, "feet"),
  10214. default: true
  10215. },
  10216. {
  10217. name: "Megamacro",
  10218. height: math.unit(10, "miles")
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10224. {
  10225. front: {
  10226. height: math.unit(6, "feet"),
  10227. weight: math.unit(68, "kg"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/nomaxice/front.svg",
  10231. extra: 1498 / 1073,
  10232. bottom: 0.075
  10233. }
  10234. },
  10235. foot: {
  10236. height: math.unit(1.1, "feet"),
  10237. name: "Foot",
  10238. image: {
  10239. source: "./media/characters/nomaxice/foot.svg"
  10240. }
  10241. },
  10242. },
  10243. [
  10244. {
  10245. name: "Micro",
  10246. height: math.unit(8, "cm")
  10247. },
  10248. {
  10249. name: "Norm",
  10250. height: math.unit(1.82, "m")
  10251. },
  10252. {
  10253. name: "Norm+",
  10254. height: math.unit(8.8, "feet")
  10255. },
  10256. {
  10257. name: "Big",
  10258. height: math.unit(8, "meters"),
  10259. default: true
  10260. },
  10261. {
  10262. name: "Macro",
  10263. height: math.unit(18, "meters")
  10264. },
  10265. {
  10266. name: "Macro+",
  10267. height: math.unit(88, "meters")
  10268. },
  10269. ]
  10270. ))
  10271. characterMakers.push(() => makeCharacter(
  10272. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10273. {
  10274. front: {
  10275. height: math.unit(12, "feet"),
  10276. weight: math.unit(1.5, "tons"),
  10277. name: "Front",
  10278. image: {
  10279. source: "./media/characters/dydros/front.svg",
  10280. extra: 863 / 800,
  10281. bottom: 0.015
  10282. }
  10283. },
  10284. back: {
  10285. height: math.unit(12, "feet"),
  10286. weight: math.unit(1.5, "tons"),
  10287. name: "Back",
  10288. image: {
  10289. source: "./media/characters/dydros/back.svg",
  10290. extra: 900 / 843,
  10291. bottom: 0.005
  10292. }
  10293. },
  10294. },
  10295. [
  10296. {
  10297. name: "Normal",
  10298. height: math.unit(12, "feet"),
  10299. default: true
  10300. },
  10301. ]
  10302. ))
  10303. characterMakers.push(() => makeCharacter(
  10304. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10305. {
  10306. front: {
  10307. height: math.unit(6, "feet"),
  10308. weight: math.unit(100, "kg"),
  10309. name: "Front",
  10310. image: {
  10311. source: "./media/characters/riggi/front.svg",
  10312. extra: 5787 / 5303
  10313. }
  10314. },
  10315. hyper: {
  10316. height: math.unit(6 * 5 / 3, "feet"),
  10317. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10318. name: "Hyper",
  10319. image: {
  10320. source: "./media/characters/riggi/hyper.svg",
  10321. extra: 3595 / 3485
  10322. }
  10323. },
  10324. },
  10325. [
  10326. {
  10327. name: "Small Macro",
  10328. height: math.unit(50, "feet")
  10329. },
  10330. {
  10331. name: "Default",
  10332. height: math.unit(200, "feet"),
  10333. default: true
  10334. },
  10335. {
  10336. name: "Loom",
  10337. height: math.unit(10000, "feet")
  10338. },
  10339. {
  10340. name: "Cruising Altitude",
  10341. height: math.unit(30000, "feet")
  10342. },
  10343. {
  10344. name: "Megamacro",
  10345. height: math.unit(100, "miles")
  10346. },
  10347. {
  10348. name: "Continent Sized",
  10349. height: math.unit(2800, "miles")
  10350. },
  10351. {
  10352. name: "Earth Sized",
  10353. height: math.unit(8000, "miles")
  10354. },
  10355. ]
  10356. ))
  10357. characterMakers.push(() => makeCharacter(
  10358. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10359. {
  10360. front: {
  10361. height: math.unit(6, "feet"),
  10362. weight: math.unit(250, "lb"),
  10363. name: "Front",
  10364. image: {
  10365. source: "./media/characters/alexi/front.svg",
  10366. extra: 3483 / 3291,
  10367. bottom: 0.04
  10368. }
  10369. },
  10370. back: {
  10371. height: math.unit(6, "feet"),
  10372. weight: math.unit(250, "lb"),
  10373. name: "Back",
  10374. image: {
  10375. source: "./media/characters/alexi/back.svg",
  10376. extra: 3533 / 3356,
  10377. bottom: 0.021
  10378. }
  10379. },
  10380. frontTransforming: {
  10381. height: math.unit(8.58, "feet"),
  10382. weight: math.unit(1300, "lb"),
  10383. name: "Transforming",
  10384. image: {
  10385. source: "./media/characters/alexi/front-transforming.svg",
  10386. extra: 437 / 409,
  10387. bottom: 19 / 458.66
  10388. }
  10389. },
  10390. frontTransformed: {
  10391. height: math.unit(12.5, "feet"),
  10392. weight: math.unit(4000, "lb"),
  10393. name: "Transformed",
  10394. image: {
  10395. source: "./media/characters/alexi/front-transformed.svg",
  10396. extra: 639 / 614,
  10397. bottom: 30.55 / 671
  10398. }
  10399. },
  10400. },
  10401. [
  10402. {
  10403. name: "Normal",
  10404. height: math.unit(14, "feet"),
  10405. default: true
  10406. },
  10407. {
  10408. name: "Minimacro",
  10409. height: math.unit(30, "meters")
  10410. },
  10411. {
  10412. name: "Macro",
  10413. height: math.unit(500, "meters")
  10414. },
  10415. {
  10416. name: "Megamacro",
  10417. height: math.unit(9000, "km")
  10418. },
  10419. {
  10420. name: "Teramacro",
  10421. height: math.unit(384000, "km")
  10422. },
  10423. ]
  10424. ))
  10425. characterMakers.push(() => makeCharacter(
  10426. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10427. {
  10428. front: {
  10429. height: math.unit(6, "feet"),
  10430. weight: math.unit(150, "lb"),
  10431. name: "Front",
  10432. image: {
  10433. source: "./media/characters/kayroo/front.svg",
  10434. extra: 1153 / 1038,
  10435. bottom: 0.06
  10436. }
  10437. },
  10438. foot: {
  10439. height: math.unit(6, "feet"),
  10440. weight: math.unit(150, "lb"),
  10441. name: "Foot",
  10442. image: {
  10443. source: "./media/characters/kayroo/foot.svg"
  10444. }
  10445. },
  10446. },
  10447. [
  10448. {
  10449. name: "Normal",
  10450. height: math.unit(8, "feet"),
  10451. default: true
  10452. },
  10453. {
  10454. name: "Minimacro",
  10455. height: math.unit(250, "feet")
  10456. },
  10457. {
  10458. name: "Macro",
  10459. height: math.unit(2800, "feet")
  10460. },
  10461. {
  10462. name: "Megamacro",
  10463. height: math.unit(5200, "feet")
  10464. },
  10465. {
  10466. name: "Gigamacro",
  10467. height: math.unit(27000, "feet")
  10468. },
  10469. {
  10470. name: "Omega",
  10471. height: math.unit(45000, "feet")
  10472. },
  10473. ]
  10474. ))
  10475. characterMakers.push(() => makeCharacter(
  10476. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10477. {
  10478. front: {
  10479. height: math.unit(18, "feet"),
  10480. weight: math.unit(5800, "lb"),
  10481. name: "Front",
  10482. image: {
  10483. source: "./media/characters/rhys/front.svg",
  10484. extra: 3386 / 3090,
  10485. bottom: 0.07
  10486. }
  10487. },
  10488. },
  10489. [
  10490. {
  10491. name: "Normal",
  10492. height: math.unit(18, "feet"),
  10493. default: true
  10494. },
  10495. {
  10496. name: "Working Size",
  10497. height: math.unit(200, "feet")
  10498. },
  10499. {
  10500. name: "Demolition Size",
  10501. height: math.unit(2000, "feet")
  10502. },
  10503. {
  10504. name: "Maximum Licensed Size",
  10505. height: math.unit(5, "miles")
  10506. },
  10507. {
  10508. name: "Maximum Observed Size",
  10509. height: math.unit(10, "yottameters")
  10510. },
  10511. ]
  10512. ))
  10513. characterMakers.push(() => makeCharacter(
  10514. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10515. {
  10516. front: {
  10517. height: math.unit(6, "feet"),
  10518. weight: math.unit(250, "lb"),
  10519. name: "Front",
  10520. image: {
  10521. source: "./media/characters/toto/front.svg",
  10522. extra: 527 / 479,
  10523. bottom: 0.05
  10524. }
  10525. },
  10526. },
  10527. [
  10528. {
  10529. name: "Micro",
  10530. height: math.unit(3, "feet")
  10531. },
  10532. {
  10533. name: "Normal",
  10534. height: math.unit(10, "feet")
  10535. },
  10536. {
  10537. name: "Macro",
  10538. height: math.unit(150, "feet"),
  10539. default: true
  10540. },
  10541. {
  10542. name: "Megamacro",
  10543. height: math.unit(1200, "feet")
  10544. },
  10545. ]
  10546. ))
  10547. characterMakers.push(() => makeCharacter(
  10548. { name: "King", species: ["lion"], tags: ["anthro"] },
  10549. {
  10550. back: {
  10551. height: math.unit(6, "feet"),
  10552. weight: math.unit(150, "lb"),
  10553. name: "Back",
  10554. image: {
  10555. source: "./media/characters/king/back.svg"
  10556. }
  10557. },
  10558. },
  10559. [
  10560. {
  10561. name: "Micro",
  10562. height: math.unit(2, "inches")
  10563. },
  10564. {
  10565. name: "Normal",
  10566. height: math.unit(8, "feet")
  10567. },
  10568. {
  10569. name: "Macro",
  10570. height: math.unit(200, "feet"),
  10571. default: true
  10572. },
  10573. {
  10574. name: "Megamacro",
  10575. height: math.unit(50, "miles")
  10576. },
  10577. ]
  10578. ))
  10579. characterMakers.push(() => makeCharacter(
  10580. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10581. {
  10582. anthro: {
  10583. height: math.unit(6 + 5 / 12, "feet"),
  10584. weight: math.unit(280, "lb"),
  10585. name: "Anthro",
  10586. image: {
  10587. source: "./media/characters/cordite/anthro.svg",
  10588. extra: 1986 / 1905,
  10589. bottom: 0.025
  10590. }
  10591. },
  10592. feral: {
  10593. height: math.unit(2, "feet"),
  10594. weight: math.unit(90, "lb"),
  10595. name: "Feral",
  10596. image: {
  10597. source: "./media/characters/cordite/feral.svg",
  10598. extra: 1260 / 755,
  10599. bottom: 0.05
  10600. }
  10601. },
  10602. },
  10603. [
  10604. {
  10605. name: "Normal",
  10606. height: math.unit(6 + 5 / 12, "feet"),
  10607. default: true
  10608. },
  10609. ]
  10610. ))
  10611. characterMakers.push(() => makeCharacter(
  10612. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10613. {
  10614. front: {
  10615. height: math.unit(6, "feet"),
  10616. weight: math.unit(150, "lb"),
  10617. name: "Front",
  10618. image: {
  10619. source: "./media/characters/pianostrong/front.svg",
  10620. extra: 6577 / 6254,
  10621. bottom: 0.02
  10622. }
  10623. },
  10624. side: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(150, "lb"),
  10627. name: "Side",
  10628. image: {
  10629. source: "./media/characters/pianostrong/side.svg",
  10630. extra: 6106 / 5730
  10631. }
  10632. },
  10633. back: {
  10634. height: math.unit(6, "feet"),
  10635. weight: math.unit(150, "lb"),
  10636. name: "Back",
  10637. image: {
  10638. source: "./media/characters/pianostrong/back.svg",
  10639. extra: 6085 / 5733,
  10640. bottom: 0.01
  10641. }
  10642. },
  10643. },
  10644. [
  10645. {
  10646. name: "Macro",
  10647. height: math.unit(100, "feet")
  10648. },
  10649. {
  10650. name: "Macro+",
  10651. height: math.unit(300, "feet"),
  10652. default: true
  10653. },
  10654. {
  10655. name: "Macro++",
  10656. height: math.unit(1000, "feet")
  10657. },
  10658. ]
  10659. ))
  10660. characterMakers.push(() => makeCharacter(
  10661. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10662. {
  10663. front: {
  10664. height: math.unit(6, "feet"),
  10665. weight: math.unit(150, "lb"),
  10666. name: "Front",
  10667. image: {
  10668. source: "./media/characters/kona/front.svg",
  10669. extra: 2960 / 2629,
  10670. bottom: 0.005
  10671. }
  10672. },
  10673. },
  10674. [
  10675. {
  10676. name: "Normal",
  10677. height: math.unit(11 + 8 / 12, "feet")
  10678. },
  10679. {
  10680. name: "Macro",
  10681. height: math.unit(850, "feet"),
  10682. default: true
  10683. },
  10684. {
  10685. name: "Macro+",
  10686. height: math.unit(1.5, "km"),
  10687. default: true
  10688. },
  10689. {
  10690. name: "Megamacro",
  10691. height: math.unit(80, "miles")
  10692. },
  10693. {
  10694. name: "Gigamacro",
  10695. height: math.unit(3500, "miles")
  10696. },
  10697. ]
  10698. ))
  10699. characterMakers.push(() => makeCharacter(
  10700. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10701. {
  10702. side: {
  10703. height: math.unit(1.9, "meters"),
  10704. weight: math.unit(326, "kg"),
  10705. name: "Side",
  10706. image: {
  10707. source: "./media/characters/levi/side.svg",
  10708. extra: 1704 / 1334,
  10709. bottom: 0.02
  10710. }
  10711. },
  10712. },
  10713. [
  10714. {
  10715. name: "Normal",
  10716. height: math.unit(1.9, "meters"),
  10717. default: true
  10718. },
  10719. {
  10720. name: "Macro",
  10721. height: math.unit(20, "meters")
  10722. },
  10723. {
  10724. name: "Macro+",
  10725. height: math.unit(200, "meters")
  10726. },
  10727. {
  10728. name: "Megamacro",
  10729. height: math.unit(2, "km")
  10730. },
  10731. {
  10732. name: "Megamacro+",
  10733. height: math.unit(20, "km")
  10734. },
  10735. {
  10736. name: "Gigamacro",
  10737. height: math.unit(2500, "km")
  10738. },
  10739. {
  10740. name: "Gigamacro+",
  10741. height: math.unit(120000, "km")
  10742. },
  10743. {
  10744. name: "Teramacro",
  10745. height: math.unit(7.77e6, "km")
  10746. },
  10747. ]
  10748. ))
  10749. characterMakers.push(() => makeCharacter(
  10750. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10751. {
  10752. front: {
  10753. height: math.unit(6 + 4 / 12, "feet"),
  10754. weight: math.unit(188, "lb"),
  10755. name: "Front",
  10756. image: {
  10757. source: "./media/characters/bmc/front.svg",
  10758. extra: 1067 / 1022,
  10759. bottom: 0.047
  10760. }
  10761. },
  10762. },
  10763. [
  10764. {
  10765. name: "Human-sized",
  10766. height: math.unit(6 + 4 / 12, "feet")
  10767. },
  10768. {
  10769. name: "Small",
  10770. height: math.unit(250, "feet")
  10771. },
  10772. {
  10773. name: "Normal",
  10774. height: math.unit(1250, "feet"),
  10775. default: true
  10776. },
  10777. {
  10778. name: "Good Day",
  10779. height: math.unit(88, "miles")
  10780. },
  10781. {
  10782. name: "Largest Measured Size",
  10783. height: math.unit(11.2e6, "lightyears")
  10784. },
  10785. ]
  10786. ))
  10787. characterMakers.push(() => makeCharacter(
  10788. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10789. {
  10790. front: {
  10791. height: math.unit(20, "feet"),
  10792. weight: math.unit(2016, "kg"),
  10793. name: "Front",
  10794. image: {
  10795. source: "./media/characters/sven-the-kaiju/front.svg",
  10796. extra: 1479 / 1449,
  10797. bottom: 0.05
  10798. }
  10799. },
  10800. },
  10801. [
  10802. {
  10803. name: "Fairy",
  10804. height: math.unit(6, "inches")
  10805. },
  10806. {
  10807. name: "Normal",
  10808. height: math.unit(20, "feet"),
  10809. default: true
  10810. },
  10811. {
  10812. name: "Rampage",
  10813. height: math.unit(200, "feet")
  10814. },
  10815. {
  10816. name: "Archfey Forest Guardian",
  10817. height: math.unit(1, "mile")
  10818. },
  10819. ]
  10820. ))
  10821. characterMakers.push(() => makeCharacter(
  10822. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10823. {
  10824. front: {
  10825. height: math.unit(4, "meters"),
  10826. weight: math.unit(2, "tons"),
  10827. name: "Front",
  10828. image: {
  10829. source: "./media/characters/marik/front.svg",
  10830. extra: 1057 / 1003,
  10831. bottom: 0.08
  10832. }
  10833. },
  10834. },
  10835. [
  10836. {
  10837. name: "Normal",
  10838. height: math.unit(4, "meters"),
  10839. default: true
  10840. },
  10841. {
  10842. name: "Macro",
  10843. height: math.unit(20, "meters")
  10844. },
  10845. {
  10846. name: "Megamacro",
  10847. height: math.unit(50, "km")
  10848. },
  10849. {
  10850. name: "Gigamacro",
  10851. height: math.unit(100, "km")
  10852. },
  10853. {
  10854. name: "Alpha Macro",
  10855. height: math.unit(7.88e7, "yottameters")
  10856. },
  10857. ]
  10858. ))
  10859. characterMakers.push(() => makeCharacter(
  10860. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10861. {
  10862. front: {
  10863. height: math.unit(6, "feet"),
  10864. weight: math.unit(110, "lb"),
  10865. name: "Front",
  10866. image: {
  10867. source: "./media/characters/mel/front.svg",
  10868. extra: 736 / 617,
  10869. bottom: 0.017
  10870. }
  10871. },
  10872. },
  10873. [
  10874. {
  10875. name: "Pico",
  10876. height: math.unit(3, "pm")
  10877. },
  10878. {
  10879. name: "Nano",
  10880. height: math.unit(3, "nm")
  10881. },
  10882. {
  10883. name: "Micro",
  10884. height: math.unit(0.3, "mm"),
  10885. default: true
  10886. },
  10887. {
  10888. name: "Micro+",
  10889. height: math.unit(3, "mm")
  10890. },
  10891. {
  10892. name: "Normal",
  10893. height: math.unit(5 + 10.5 / 12, "feet")
  10894. },
  10895. ]
  10896. ))
  10897. characterMakers.push(() => makeCharacter(
  10898. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10899. {
  10900. kaiju: {
  10901. height: math.unit(1.75, "meters"),
  10902. weight: math.unit(55, "kg"),
  10903. name: "Kaiju",
  10904. image: {
  10905. source: "./media/characters/lykonous/kaiju.svg",
  10906. extra: 1055 / 946,
  10907. bottom: 0.135
  10908. }
  10909. },
  10910. },
  10911. [
  10912. {
  10913. name: "Normal",
  10914. height: math.unit(2.5, "meters"),
  10915. default: true
  10916. },
  10917. {
  10918. name: "Kaiju Dragon",
  10919. height: math.unit(60, "meters")
  10920. },
  10921. {
  10922. name: "Mega Kaiju",
  10923. height: math.unit(120, "km")
  10924. },
  10925. {
  10926. name: "Giga Kaiju",
  10927. height: math.unit(200, "megameters")
  10928. },
  10929. {
  10930. name: "Terra Kaiju",
  10931. height: math.unit(400, "gigameters")
  10932. },
  10933. {
  10934. name: "Kaiju Dragon God",
  10935. height: math.unit(13000, "exaparsecs")
  10936. },
  10937. ]
  10938. ))
  10939. characterMakers.push(() => makeCharacter(
  10940. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10941. {
  10942. front: {
  10943. height: math.unit(6, "feet"),
  10944. weight: math.unit(150, "lb"),
  10945. name: "Front",
  10946. image: {
  10947. source: "./media/characters/blü/front.svg",
  10948. extra: 1883 / 1564,
  10949. bottom: 0.031
  10950. }
  10951. },
  10952. },
  10953. [
  10954. {
  10955. name: "Normal",
  10956. height: math.unit(13, "feet"),
  10957. default: true
  10958. },
  10959. {
  10960. name: "Big Boi",
  10961. height: math.unit(150, "meters")
  10962. },
  10963. {
  10964. name: "Mini Stomper",
  10965. height: math.unit(300, "meters")
  10966. },
  10967. {
  10968. name: "Macro",
  10969. height: math.unit(1000, "meters")
  10970. },
  10971. {
  10972. name: "Megamacro",
  10973. height: math.unit(11000, "meters")
  10974. },
  10975. {
  10976. name: "Gigamacro",
  10977. height: math.unit(11000, "km")
  10978. },
  10979. {
  10980. name: "Teramacro",
  10981. height: math.unit(420000, "km")
  10982. },
  10983. {
  10984. name: "Examacro",
  10985. height: math.unit(120, "parsecs")
  10986. },
  10987. {
  10988. name: "God Tho",
  10989. height: math.unit(98000000000, "parsecs")
  10990. },
  10991. ]
  10992. ))
  10993. characterMakers.push(() => makeCharacter(
  10994. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10995. {
  10996. taurFront: {
  10997. height: math.unit(6, "feet"),
  10998. weight: math.unit(200, "lb"),
  10999. name: "Taur (Front)",
  11000. image: {
  11001. source: "./media/characters/scales/taur-front.svg",
  11002. extra: 1,
  11003. bottom: 0.05
  11004. }
  11005. },
  11006. taurBack: {
  11007. height: math.unit(6, "feet"),
  11008. weight: math.unit(200, "lb"),
  11009. name: "Taur (Back)",
  11010. image: {
  11011. source: "./media/characters/scales/taur-back.svg",
  11012. extra: 1,
  11013. bottom: 0.08
  11014. }
  11015. },
  11016. anthro: {
  11017. height: math.unit(6 * 7 / 12, "feet"),
  11018. weight: math.unit(100, "lb"),
  11019. name: "Anthro",
  11020. image: {
  11021. source: "./media/characters/scales/anthro.svg",
  11022. extra: 1,
  11023. bottom: 0.06
  11024. }
  11025. },
  11026. },
  11027. [
  11028. {
  11029. name: "Normal",
  11030. height: math.unit(12, "feet"),
  11031. default: true
  11032. },
  11033. ]
  11034. ))
  11035. characterMakers.push(() => makeCharacter(
  11036. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11037. {
  11038. front: {
  11039. height: math.unit(6, "feet"),
  11040. weight: math.unit(150, "lb"),
  11041. name: "Front",
  11042. image: {
  11043. source: "./media/characters/koragos/front.svg",
  11044. extra: 841 / 794,
  11045. bottom: 0.035
  11046. }
  11047. },
  11048. back: {
  11049. height: math.unit(6, "feet"),
  11050. weight: math.unit(150, "lb"),
  11051. name: "Back",
  11052. image: {
  11053. source: "./media/characters/koragos/back.svg",
  11054. extra: 841 / 810,
  11055. bottom: 0.022
  11056. }
  11057. },
  11058. },
  11059. [
  11060. {
  11061. name: "Normal",
  11062. height: math.unit(6 + 11 / 12, "feet"),
  11063. default: true
  11064. },
  11065. {
  11066. name: "Macro",
  11067. height: math.unit(490, "feet")
  11068. },
  11069. {
  11070. name: "Megamacro",
  11071. height: math.unit(10, "miles")
  11072. },
  11073. {
  11074. name: "Gigamacro",
  11075. height: math.unit(50, "miles")
  11076. },
  11077. ]
  11078. ))
  11079. characterMakers.push(() => makeCharacter(
  11080. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11081. {
  11082. front: {
  11083. height: math.unit(6, "feet"),
  11084. weight: math.unit(250, "lb"),
  11085. name: "Front",
  11086. image: {
  11087. source: "./media/characters/xylrem/front.svg",
  11088. extra: 3323 / 3050,
  11089. bottom: 0.065
  11090. }
  11091. },
  11092. },
  11093. [
  11094. {
  11095. name: "Micro",
  11096. height: math.unit(4, "feet")
  11097. },
  11098. {
  11099. name: "Normal",
  11100. height: math.unit(16, "feet"),
  11101. default: true
  11102. },
  11103. {
  11104. name: "Macro",
  11105. height: math.unit(2720, "feet")
  11106. },
  11107. {
  11108. name: "Megamacro",
  11109. height: math.unit(25000, "miles")
  11110. },
  11111. ]
  11112. ))
  11113. characterMakers.push(() => makeCharacter(
  11114. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11115. {
  11116. front: {
  11117. height: math.unit(8, "feet"),
  11118. weight: math.unit(250, "kg"),
  11119. name: "Front",
  11120. image: {
  11121. source: "./media/characters/ikideru/front.svg",
  11122. extra: 930 / 870,
  11123. bottom: 0.087
  11124. }
  11125. },
  11126. back: {
  11127. height: math.unit(8, "feet"),
  11128. weight: math.unit(250, "kg"),
  11129. name: "Back",
  11130. image: {
  11131. source: "./media/characters/ikideru/back.svg",
  11132. extra: 919 / 852,
  11133. bottom: 0.055
  11134. }
  11135. },
  11136. },
  11137. [
  11138. {
  11139. name: "Rare",
  11140. height: math.unit(8, "feet"),
  11141. default: true
  11142. },
  11143. {
  11144. name: "Playful Loom",
  11145. height: math.unit(80, "feet")
  11146. },
  11147. {
  11148. name: "City Leaner",
  11149. height: math.unit(230, "feet")
  11150. },
  11151. {
  11152. name: "Megamacro",
  11153. height: math.unit(2500, "feet")
  11154. },
  11155. {
  11156. name: "Gigamacro",
  11157. height: math.unit(26400, "feet")
  11158. },
  11159. {
  11160. name: "Tectonic Shifter",
  11161. height: math.unit(1.7, "megameters")
  11162. },
  11163. {
  11164. name: "Planet Carer",
  11165. height: math.unit(21, "megameters")
  11166. },
  11167. {
  11168. name: "God",
  11169. height: math.unit(11157.22, "parsecs")
  11170. },
  11171. ]
  11172. ))
  11173. characterMakers.push(() => makeCharacter(
  11174. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11175. {
  11176. front: {
  11177. height: math.unit(6, "feet"),
  11178. weight: math.unit(120, "lb"),
  11179. name: "Front",
  11180. image: {
  11181. source: "./media/characters/neo/front.svg"
  11182. }
  11183. },
  11184. },
  11185. [
  11186. {
  11187. name: "Micro",
  11188. height: math.unit(2, "inches"),
  11189. default: true
  11190. },
  11191. {
  11192. name: "Human Size",
  11193. height: math.unit(5 + 8 / 12, "feet")
  11194. },
  11195. ]
  11196. ))
  11197. characterMakers.push(() => makeCharacter(
  11198. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11199. {
  11200. front: {
  11201. height: math.unit(13 + 10 / 12, "feet"),
  11202. weight: math.unit(5320, "lb"),
  11203. name: "Front",
  11204. image: {
  11205. source: "./media/characters/chauncey-chantz/front.svg",
  11206. extra: 1587 / 1435,
  11207. bottom: 0.02
  11208. }
  11209. },
  11210. },
  11211. [
  11212. {
  11213. name: "Normal",
  11214. height: math.unit(13 + 10 / 12, "feet"),
  11215. default: true
  11216. },
  11217. {
  11218. name: "Macro",
  11219. height: math.unit(45, "feet")
  11220. },
  11221. {
  11222. name: "Megamacro",
  11223. height: math.unit(250, "miles")
  11224. },
  11225. {
  11226. name: "Planetary",
  11227. height: math.unit(10000, "miles")
  11228. },
  11229. {
  11230. name: "Galactic",
  11231. height: math.unit(40000, "parsecs")
  11232. },
  11233. {
  11234. name: "Universal",
  11235. height: math.unit(1, "yottameter")
  11236. },
  11237. ]
  11238. ))
  11239. characterMakers.push(() => makeCharacter(
  11240. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11241. {
  11242. front: {
  11243. height: math.unit(6, "feet"),
  11244. weight: math.unit(150, "lb"),
  11245. name: "Front",
  11246. image: {
  11247. source: "./media/characters/epifox/front.svg",
  11248. extra: 1,
  11249. bottom: 0.075
  11250. }
  11251. },
  11252. },
  11253. [
  11254. {
  11255. name: "Micro",
  11256. height: math.unit(6, "inches")
  11257. },
  11258. {
  11259. name: "Normal",
  11260. height: math.unit(12, "feet"),
  11261. default: true
  11262. },
  11263. {
  11264. name: "Macro",
  11265. height: math.unit(3810, "feet")
  11266. },
  11267. {
  11268. name: "Megamacro",
  11269. height: math.unit(500, "miles")
  11270. },
  11271. ]
  11272. ))
  11273. characterMakers.push(() => makeCharacter(
  11274. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11275. {
  11276. front: {
  11277. height: math.unit(1.8796, "m"),
  11278. weight: math.unit(230, "lb"),
  11279. name: "Front",
  11280. image: {
  11281. source: "./media/characters/colin-t/front.svg",
  11282. extra: 1272 / 1193,
  11283. bottom: 0.07
  11284. }
  11285. },
  11286. },
  11287. [
  11288. {
  11289. name: "Micro",
  11290. height: math.unit(0.571, "meters")
  11291. },
  11292. {
  11293. name: "Normal",
  11294. height: math.unit(1.8796, "meters"),
  11295. default: true
  11296. },
  11297. {
  11298. name: "Tall",
  11299. height: math.unit(4, "meters")
  11300. },
  11301. {
  11302. name: "Macro",
  11303. height: math.unit(67.241, "meters")
  11304. },
  11305. {
  11306. name: "Megamacro",
  11307. height: math.unit(371.856, "meters")
  11308. },
  11309. {
  11310. name: "Planetary",
  11311. height: math.unit(12631.5689, "km")
  11312. },
  11313. ]
  11314. ))
  11315. characterMakers.push(() => makeCharacter(
  11316. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11317. {
  11318. front: {
  11319. height: math.unit(1.85, "meters"),
  11320. weight: math.unit(80, "kg"),
  11321. name: "Front",
  11322. image: {
  11323. source: "./media/characters/matvei/front.svg",
  11324. extra: 614 / 594,
  11325. bottom: 0.01
  11326. }
  11327. },
  11328. },
  11329. [
  11330. {
  11331. name: "Normal",
  11332. height: math.unit(1.85, "meters"),
  11333. default: true
  11334. },
  11335. ]
  11336. ))
  11337. characterMakers.push(() => makeCharacter(
  11338. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11339. {
  11340. front: {
  11341. height: math.unit(5 + 9 / 12, "feet"),
  11342. weight: math.unit(70, "lb"),
  11343. name: "Front",
  11344. image: {
  11345. source: "./media/characters/quincy/front.svg",
  11346. extra: 3041 / 2751
  11347. }
  11348. },
  11349. back: {
  11350. height: math.unit(5 + 9 / 12, "feet"),
  11351. weight: math.unit(70, "lb"),
  11352. name: "Back",
  11353. image: {
  11354. source: "./media/characters/quincy/back.svg",
  11355. extra: 3041 / 2751
  11356. }
  11357. },
  11358. flying: {
  11359. height: math.unit(5 + 4 / 12, "feet"),
  11360. weight: math.unit(70, "lb"),
  11361. name: "Flying",
  11362. image: {
  11363. source: "./media/characters/quincy/flying.svg",
  11364. extra: 1044 / 930
  11365. }
  11366. },
  11367. },
  11368. [
  11369. {
  11370. name: "Micro",
  11371. height: math.unit(3, "cm")
  11372. },
  11373. {
  11374. name: "Normal",
  11375. height: math.unit(5 + 9 / 12, "feet")
  11376. },
  11377. {
  11378. name: "Macro",
  11379. height: math.unit(200, "meters"),
  11380. default: true
  11381. },
  11382. {
  11383. name: "Megamacro",
  11384. height: math.unit(1000, "meters")
  11385. },
  11386. ]
  11387. ))
  11388. characterMakers.push(() => makeCharacter(
  11389. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11390. {
  11391. front: {
  11392. height: math.unit(4 + 7 / 12, "feet"),
  11393. weight: math.unit(50, "lb"),
  11394. name: "Front",
  11395. image: {
  11396. source: "./media/characters/vanrel/front.svg",
  11397. extra: 1,
  11398. bottom: 0.02
  11399. }
  11400. },
  11401. frontAlt: {
  11402. height: math.unit(4 + 7 / 12, "feet"),
  11403. weight: math.unit(50, "lb"),
  11404. name: "Front-alt",
  11405. image: {
  11406. source: "./media/characters/vanrel/front-alt.svg",
  11407. extra: 1,
  11408. bottom: 15 / 1511
  11409. }
  11410. },
  11411. elemental: {
  11412. height: math.unit(3, "feet"),
  11413. weight: math.unit(50, "lb"),
  11414. name: "Elemental",
  11415. image: {
  11416. source: "./media/characters/vanrel/elemental.svg",
  11417. extra: 192.3 / 162.8,
  11418. bottom: 1.79 / 194.17
  11419. }
  11420. },
  11421. side: {
  11422. height: math.unit(4 + 7 / 12, "feet"),
  11423. weight: math.unit(50, "lb"),
  11424. name: "Side",
  11425. image: {
  11426. source: "./media/characters/vanrel/side.svg",
  11427. extra: 1,
  11428. bottom: 0.025
  11429. }
  11430. },
  11431. tome: {
  11432. height: math.unit(1.35, "feet"),
  11433. weight: math.unit(10, "lb"),
  11434. name: "Vanrel's Tome",
  11435. rename: true,
  11436. image: {
  11437. source: "./media/characters/vanrel/tome.svg"
  11438. }
  11439. },
  11440. beans: {
  11441. height: math.unit(0.89, "feet"),
  11442. name: "Beans",
  11443. image: {
  11444. source: "./media/characters/vanrel/beans.svg"
  11445. }
  11446. },
  11447. },
  11448. [
  11449. {
  11450. name: "Normal",
  11451. height: math.unit(4 + 7 / 12, "feet"),
  11452. default: true
  11453. },
  11454. ]
  11455. ))
  11456. characterMakers.push(() => makeCharacter(
  11457. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11458. {
  11459. front: {
  11460. height: math.unit(7 + 5 / 12, "feet"),
  11461. weight: math.unit(150, "lb"),
  11462. name: "Front",
  11463. image: {
  11464. source: "./media/characters/kuiper-vanrel/front.svg",
  11465. extra: 1118 / 1068,
  11466. bottom: 0.09
  11467. }
  11468. },
  11469. foot: {
  11470. height: math.unit(0.55, "meters"),
  11471. name: "Foot",
  11472. image: {
  11473. source: "./media/characters/kuiper-vanrel/foot.svg",
  11474. }
  11475. },
  11476. battle: {
  11477. height: math.unit(6.824, "feet"),
  11478. weight: math.unit(150, "lb"),
  11479. name: "Battle",
  11480. image: {
  11481. source: "./media/characters/kuiper-vanrel/battle.svg",
  11482. extra: 1466 / 1327,
  11483. bottom: 29 / 1492.5
  11484. }
  11485. },
  11486. battleAlt: {
  11487. height: math.unit(6.824, "feet"),
  11488. weight: math.unit(150, "lb"),
  11489. name: "Battle (Alt)",
  11490. image: {
  11491. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11492. extra: 2081 / 1965,
  11493. bottom: 40 / 2121
  11494. }
  11495. },
  11496. },
  11497. [
  11498. {
  11499. name: "Normal",
  11500. height: math.unit(7 + 5 / 12, "feet"),
  11501. default: true
  11502. },
  11503. ]
  11504. ))
  11505. characterMakers.push(() => makeCharacter(
  11506. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11507. {
  11508. front: {
  11509. height: math.unit(8 + 5 / 12, "feet"),
  11510. weight: math.unit(150, "lb"),
  11511. name: "Front",
  11512. image: {
  11513. source: "./media/characters/keset-vanrel/front.svg",
  11514. extra: 1150 / 1084,
  11515. bottom: 0.05
  11516. }
  11517. },
  11518. hand: {
  11519. height: math.unit(0.6, "meters"),
  11520. name: "Hand",
  11521. image: {
  11522. source: "./media/characters/keset-vanrel/hand.svg"
  11523. }
  11524. },
  11525. foot: {
  11526. height: math.unit(0.94978, "meters"),
  11527. name: "Foot",
  11528. image: {
  11529. source: "./media/characters/keset-vanrel/foot.svg"
  11530. }
  11531. },
  11532. battle: {
  11533. height: math.unit(7.408, "feet"),
  11534. weight: math.unit(150, "lb"),
  11535. name: "Battle",
  11536. image: {
  11537. source: "./media/characters/keset-vanrel/battle.svg",
  11538. extra: 1890 / 1386,
  11539. bottom: 73.28 / 1970
  11540. }
  11541. },
  11542. },
  11543. [
  11544. {
  11545. name: "Normal",
  11546. height: math.unit(8 + 5 / 12, "feet"),
  11547. default: true
  11548. },
  11549. ]
  11550. ))
  11551. characterMakers.push(() => makeCharacter(
  11552. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11553. {
  11554. front: {
  11555. height: math.unit(6, "feet"),
  11556. weight: math.unit(150, "lb"),
  11557. name: "Front",
  11558. image: {
  11559. source: "./media/characters/neos/front.svg",
  11560. extra: 1696 / 992,
  11561. bottom: 0.14
  11562. }
  11563. },
  11564. },
  11565. [
  11566. {
  11567. name: "Normal",
  11568. height: math.unit(54, "cm"),
  11569. default: true
  11570. },
  11571. {
  11572. name: "Macro",
  11573. height: math.unit(100, "m")
  11574. },
  11575. {
  11576. name: "Megamacro",
  11577. height: math.unit(10, "km")
  11578. },
  11579. {
  11580. name: "Megamacro+",
  11581. height: math.unit(100, "km")
  11582. },
  11583. {
  11584. name: "Gigamacro",
  11585. height: math.unit(100, "Mm")
  11586. },
  11587. {
  11588. name: "Teramacro",
  11589. height: math.unit(100, "Gm")
  11590. },
  11591. {
  11592. name: "Examacro",
  11593. height: math.unit(100, "Em")
  11594. },
  11595. {
  11596. name: "Godly",
  11597. height: math.unit(10000, "Ym")
  11598. },
  11599. {
  11600. name: "Beyond Godly",
  11601. height: math.unit(25, "multiverses")
  11602. },
  11603. ]
  11604. ))
  11605. characterMakers.push(() => makeCharacter(
  11606. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11607. {
  11608. feminine: {
  11609. height: math.unit(5, "feet"),
  11610. weight: math.unit(100, "lb"),
  11611. name: "Feminine",
  11612. image: {
  11613. source: "./media/characters/sammy-mouse/feminine.svg",
  11614. extra: 2526 / 2425,
  11615. bottom: 0.123
  11616. }
  11617. },
  11618. masculine: {
  11619. height: math.unit(5, "feet"),
  11620. weight: math.unit(100, "lb"),
  11621. name: "Masculine",
  11622. image: {
  11623. source: "./media/characters/sammy-mouse/masculine.svg",
  11624. extra: 2526 / 2425,
  11625. bottom: 0.123
  11626. }
  11627. },
  11628. },
  11629. [
  11630. {
  11631. name: "Micro",
  11632. height: math.unit(5, "inches")
  11633. },
  11634. {
  11635. name: "Normal",
  11636. height: math.unit(5, "feet"),
  11637. default: true
  11638. },
  11639. {
  11640. name: "Macro",
  11641. height: math.unit(60, "feet")
  11642. },
  11643. ]
  11644. ))
  11645. characterMakers.push(() => makeCharacter(
  11646. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11647. {
  11648. front: {
  11649. height: math.unit(4, "feet"),
  11650. weight: math.unit(50, "lb"),
  11651. name: "Front",
  11652. image: {
  11653. source: "./media/characters/kole/front.svg",
  11654. extra: 1423 / 1303,
  11655. bottom: 0.025
  11656. }
  11657. },
  11658. back: {
  11659. height: math.unit(4, "feet"),
  11660. weight: math.unit(50, "lb"),
  11661. name: "Back",
  11662. image: {
  11663. source: "./media/characters/kole/back.svg",
  11664. extra: 1426 / 1280,
  11665. bottom: 0.02
  11666. }
  11667. },
  11668. },
  11669. [
  11670. {
  11671. name: "Normal",
  11672. height: math.unit(4, "feet"),
  11673. default: true
  11674. },
  11675. ]
  11676. ))
  11677. characterMakers.push(() => makeCharacter(
  11678. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11679. {
  11680. front: {
  11681. height: math.unit(2 + 6 / 12, "feet"),
  11682. weight: math.unit(20, "lb"),
  11683. name: "Front",
  11684. image: {
  11685. source: "./media/characters/rufran/front.svg",
  11686. extra: 2041 / 1839,
  11687. bottom: 0.055
  11688. }
  11689. },
  11690. back: {
  11691. height: math.unit(2 + 6 / 12, "feet"),
  11692. weight: math.unit(20, "lb"),
  11693. name: "Back",
  11694. image: {
  11695. source: "./media/characters/rufran/back.svg",
  11696. extra: 2054 / 1839,
  11697. bottom: 0.01
  11698. }
  11699. },
  11700. hand: {
  11701. height: math.unit(0.2166, "meters"),
  11702. name: "Hand",
  11703. image: {
  11704. source: "./media/characters/rufran/hand.svg"
  11705. }
  11706. },
  11707. foot: {
  11708. height: math.unit(0.185, "meters"),
  11709. name: "Foot",
  11710. image: {
  11711. source: "./media/characters/rufran/foot.svg"
  11712. }
  11713. },
  11714. },
  11715. [
  11716. {
  11717. name: "Micro",
  11718. height: math.unit(1, "inch")
  11719. },
  11720. {
  11721. name: "Normal",
  11722. height: math.unit(2 + 6 / 12, "feet"),
  11723. default: true
  11724. },
  11725. {
  11726. name: "Big",
  11727. height: math.unit(60, "feet")
  11728. },
  11729. {
  11730. name: "Macro",
  11731. height: math.unit(325, "feet")
  11732. },
  11733. ]
  11734. ))
  11735. characterMakers.push(() => makeCharacter(
  11736. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11737. {
  11738. front: {
  11739. height: math.unit(0.3, "meters"),
  11740. weight: math.unit(3.5, "kg"),
  11741. name: "Front",
  11742. image: {
  11743. source: "./media/characters/chip/front.svg",
  11744. extra: 748 / 674
  11745. }
  11746. },
  11747. },
  11748. [
  11749. {
  11750. name: "Micro",
  11751. height: math.unit(1, "inch"),
  11752. default: true
  11753. },
  11754. ]
  11755. ))
  11756. characterMakers.push(() => makeCharacter(
  11757. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11758. {
  11759. side: {
  11760. height: math.unit(2.3, "meters"),
  11761. weight: math.unit(3500, "lb"),
  11762. name: "Side",
  11763. image: {
  11764. source: "./media/characters/torvid/side.svg",
  11765. extra: 1972 / 722,
  11766. bottom: 0.035
  11767. }
  11768. },
  11769. },
  11770. [
  11771. {
  11772. name: "Normal",
  11773. height: math.unit(2.3, "meters"),
  11774. default: true
  11775. },
  11776. ]
  11777. ))
  11778. characterMakers.push(() => makeCharacter(
  11779. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11780. {
  11781. front: {
  11782. height: math.unit(2, "meters"),
  11783. weight: math.unit(150.5, "kg"),
  11784. name: "Front",
  11785. image: {
  11786. source: "./media/characters/susan/front.svg",
  11787. extra: 693 / 635,
  11788. bottom: 0.05
  11789. }
  11790. },
  11791. },
  11792. [
  11793. {
  11794. name: "Megamacro",
  11795. height: math.unit(505, "miles"),
  11796. default: true
  11797. },
  11798. ]
  11799. ))
  11800. characterMakers.push(() => makeCharacter(
  11801. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11802. {
  11803. front: {
  11804. height: math.unit(6, "feet"),
  11805. weight: math.unit(150, "lb"),
  11806. name: "Front",
  11807. image: {
  11808. source: "./media/characters/raindrops/front.svg",
  11809. extra: 2655 / 2461,
  11810. bottom: 49 / 2705
  11811. }
  11812. },
  11813. back: {
  11814. height: math.unit(6, "feet"),
  11815. weight: math.unit(150, "lb"),
  11816. name: "Back",
  11817. image: {
  11818. source: "./media/characters/raindrops/back.svg",
  11819. extra: 2574 / 2400,
  11820. bottom: 65 / 2634
  11821. }
  11822. },
  11823. },
  11824. [
  11825. {
  11826. name: "Micro",
  11827. height: math.unit(6, "inches")
  11828. },
  11829. {
  11830. name: "Normal",
  11831. height: math.unit(6 + 2 / 12, "feet")
  11832. },
  11833. {
  11834. name: "Macro",
  11835. height: math.unit(131, "feet"),
  11836. default: true
  11837. },
  11838. {
  11839. name: "Megamacro",
  11840. height: math.unit(15, "miles")
  11841. },
  11842. {
  11843. name: "Gigamacro",
  11844. height: math.unit(4000, "miles")
  11845. },
  11846. {
  11847. name: "Teramacro",
  11848. height: math.unit(315000, "miles")
  11849. },
  11850. ]
  11851. ))
  11852. characterMakers.push(() => makeCharacter(
  11853. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11854. {
  11855. front: {
  11856. height: math.unit(2.794, "meters"),
  11857. weight: math.unit(325, "kg"),
  11858. name: "Front",
  11859. image: {
  11860. source: "./media/characters/tezwa/front.svg",
  11861. extra: 2083 / 1906,
  11862. bottom: 0.031
  11863. }
  11864. },
  11865. foot: {
  11866. height: math.unit(0.687, "meters"),
  11867. name: "Foot",
  11868. image: {
  11869. source: "./media/characters/tezwa/foot.svg"
  11870. }
  11871. },
  11872. },
  11873. [
  11874. {
  11875. name: "Normal",
  11876. height: math.unit(9 + 2 / 12, "feet"),
  11877. default: true
  11878. },
  11879. ]
  11880. ))
  11881. characterMakers.push(() => makeCharacter(
  11882. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11883. {
  11884. front: {
  11885. height: math.unit(58, "feet"),
  11886. weight: math.unit(89000, "lb"),
  11887. name: "Front",
  11888. image: {
  11889. source: "./media/characters/typhus/front.svg",
  11890. extra: 816 / 800,
  11891. bottom: 0.065
  11892. }
  11893. },
  11894. },
  11895. [
  11896. {
  11897. name: "Macro",
  11898. height: math.unit(58, "feet"),
  11899. default: true
  11900. },
  11901. ]
  11902. ))
  11903. characterMakers.push(() => makeCharacter(
  11904. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11905. {
  11906. front: {
  11907. height: math.unit(12, "feet"),
  11908. weight: math.unit(6, "tonnes"),
  11909. name: "Front",
  11910. image: {
  11911. source: "./media/characters/lyra-von-wulf/front.svg",
  11912. extra: 1,
  11913. bottom: 0.10
  11914. }
  11915. },
  11916. frontMecha: {
  11917. height: math.unit(12, "feet"),
  11918. weight: math.unit(12, "tonnes"),
  11919. name: "Front (Mecha)",
  11920. image: {
  11921. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11922. extra: 1,
  11923. bottom: 0.042
  11924. }
  11925. },
  11926. maw: {
  11927. height: math.unit(2.2, "feet"),
  11928. name: "Maw",
  11929. image: {
  11930. source: "./media/characters/lyra-von-wulf/maw.svg"
  11931. }
  11932. },
  11933. },
  11934. [
  11935. {
  11936. name: "Normal",
  11937. height: math.unit(12, "feet"),
  11938. default: true
  11939. },
  11940. {
  11941. name: "Classic",
  11942. height: math.unit(50, "feet")
  11943. },
  11944. {
  11945. name: "Macro",
  11946. height: math.unit(500, "feet")
  11947. },
  11948. {
  11949. name: "Megamacro",
  11950. height: math.unit(1, "mile")
  11951. },
  11952. {
  11953. name: "Gigamacro",
  11954. height: math.unit(400, "miles")
  11955. },
  11956. {
  11957. name: "Teramacro",
  11958. height: math.unit(22000, "miles")
  11959. },
  11960. {
  11961. name: "Solarmacro",
  11962. height: math.unit(8600000, "miles")
  11963. },
  11964. {
  11965. name: "Galactic",
  11966. height: math.unit(1057000, "lightyears")
  11967. },
  11968. ]
  11969. ))
  11970. characterMakers.push(() => makeCharacter(
  11971. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11972. {
  11973. front: {
  11974. height: math.unit(6 + 10 / 12, "feet"),
  11975. weight: math.unit(150, "lb"),
  11976. name: "Front",
  11977. image: {
  11978. source: "./media/characters/dixon/front.svg",
  11979. extra: 3361 / 3209,
  11980. bottom: 0.01
  11981. }
  11982. },
  11983. },
  11984. [
  11985. {
  11986. name: "Normal",
  11987. height: math.unit(6 + 10 / 12, "feet"),
  11988. default: true
  11989. },
  11990. {
  11991. name: "Big",
  11992. height: math.unit(12, "meters")
  11993. },
  11994. {
  11995. name: "Macro",
  11996. height: math.unit(500, "meters")
  11997. },
  11998. {
  11999. name: "Megamacro",
  12000. height: math.unit(2, "km")
  12001. },
  12002. ]
  12003. ))
  12004. characterMakers.push(() => makeCharacter(
  12005. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12006. {
  12007. front: {
  12008. height: math.unit(185, "cm"),
  12009. weight: math.unit(68, "kg"),
  12010. name: "Front",
  12011. image: {
  12012. source: "./media/characters/kauko/front.svg",
  12013. extra: 1455 / 1421,
  12014. bottom: 0.03
  12015. }
  12016. },
  12017. back: {
  12018. height: math.unit(185, "cm"),
  12019. weight: math.unit(68, "kg"),
  12020. name: "Back",
  12021. image: {
  12022. source: "./media/characters/kauko/back.svg",
  12023. extra: 1455 / 1421,
  12024. bottom: 0.004
  12025. }
  12026. },
  12027. },
  12028. [
  12029. {
  12030. name: "Normal",
  12031. height: math.unit(185, "cm"),
  12032. default: true
  12033. },
  12034. ]
  12035. ))
  12036. characterMakers.push(() => makeCharacter(
  12037. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12038. {
  12039. front: {
  12040. height: math.unit(6, "feet"),
  12041. weight: math.unit(150, "kg"),
  12042. name: "Front",
  12043. image: {
  12044. source: "./media/characters/varg/front.svg",
  12045. extra: 1108 / 1018,
  12046. bottom: 0.0375
  12047. }
  12048. },
  12049. },
  12050. [
  12051. {
  12052. name: "Normal",
  12053. height: math.unit(5, "meters")
  12054. },
  12055. {
  12056. name: "Macro",
  12057. height: math.unit(200, "meters")
  12058. },
  12059. {
  12060. name: "Megamacro",
  12061. height: math.unit(20, "kilometers")
  12062. },
  12063. {
  12064. name: "True Size",
  12065. height: math.unit(211, "km"),
  12066. default: true
  12067. },
  12068. {
  12069. name: "Gigamacro",
  12070. height: math.unit(1000, "km")
  12071. },
  12072. {
  12073. name: "Gigamacro+",
  12074. height: math.unit(8000, "km")
  12075. },
  12076. {
  12077. name: "Teramacro",
  12078. height: math.unit(1000000, "km")
  12079. },
  12080. ]
  12081. ))
  12082. characterMakers.push(() => makeCharacter(
  12083. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12084. {
  12085. front: {
  12086. height: math.unit(7 + 7 / 12, "feet"),
  12087. weight: math.unit(267, "lb"),
  12088. name: "Front",
  12089. image: {
  12090. source: "./media/characters/dayza/front.svg",
  12091. extra: 1262 / 1200,
  12092. bottom: 0.035
  12093. }
  12094. },
  12095. side: {
  12096. height: math.unit(7 + 7 / 12, "feet"),
  12097. weight: math.unit(267, "lb"),
  12098. name: "Side",
  12099. image: {
  12100. source: "./media/characters/dayza/side.svg",
  12101. extra: 1295 / 1245,
  12102. bottom: 0.05
  12103. }
  12104. },
  12105. back: {
  12106. height: math.unit(7 + 7 / 12, "feet"),
  12107. weight: math.unit(267, "lb"),
  12108. name: "Back",
  12109. image: {
  12110. source: "./media/characters/dayza/back.svg",
  12111. extra: 1241 / 1170
  12112. }
  12113. },
  12114. },
  12115. [
  12116. {
  12117. name: "Normal",
  12118. height: math.unit(7 + 7 / 12, "feet"),
  12119. default: true
  12120. },
  12121. {
  12122. name: "Macro",
  12123. height: math.unit(155, "feet")
  12124. },
  12125. ]
  12126. ))
  12127. characterMakers.push(() => makeCharacter(
  12128. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12129. {
  12130. front: {
  12131. height: math.unit(6 + 5 / 12, "feet"),
  12132. weight: math.unit(160, "lb"),
  12133. name: "Front",
  12134. image: {
  12135. source: "./media/characters/xanthos/front.svg",
  12136. extra: 1,
  12137. bottom: 0.04
  12138. }
  12139. },
  12140. back: {
  12141. height: math.unit(6 + 5 / 12, "feet"),
  12142. weight: math.unit(160, "lb"),
  12143. name: "Back",
  12144. image: {
  12145. source: "./media/characters/xanthos/back.svg",
  12146. extra: 1,
  12147. bottom: 0.03
  12148. }
  12149. },
  12150. hand: {
  12151. height: math.unit(0.928, "feet"),
  12152. name: "Hand",
  12153. image: {
  12154. source: "./media/characters/xanthos/hand.svg"
  12155. }
  12156. },
  12157. foot: {
  12158. height: math.unit(1.286, "feet"),
  12159. name: "Foot",
  12160. image: {
  12161. source: "./media/characters/xanthos/foot.svg"
  12162. }
  12163. },
  12164. },
  12165. [
  12166. {
  12167. name: "Normal",
  12168. height: math.unit(6 + 5 / 12, "feet"),
  12169. default: true
  12170. },
  12171. {
  12172. name: "Normal+",
  12173. height: math.unit(6, "meters")
  12174. },
  12175. {
  12176. name: "Macro",
  12177. height: math.unit(40, "feet")
  12178. },
  12179. {
  12180. name: "Macro+",
  12181. height: math.unit(200, "meters")
  12182. },
  12183. {
  12184. name: "Megamacro",
  12185. height: math.unit(20, "km")
  12186. },
  12187. {
  12188. name: "Megamacro+",
  12189. height: math.unit(100, "km")
  12190. },
  12191. ]
  12192. ))
  12193. characterMakers.push(() => makeCharacter(
  12194. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12195. {
  12196. front: {
  12197. height: math.unit(6 + 3 / 12, "feet"),
  12198. weight: math.unit(215, "lb"),
  12199. name: "Front",
  12200. image: {
  12201. source: "./media/characters/grynn/front.svg",
  12202. extra: 4627 / 4209,
  12203. bottom: 0.047
  12204. }
  12205. },
  12206. },
  12207. [
  12208. {
  12209. name: "Micro",
  12210. height: math.unit(6, "inches")
  12211. },
  12212. {
  12213. name: "Normal",
  12214. height: math.unit(6 + 3 / 12, "feet"),
  12215. default: true
  12216. },
  12217. {
  12218. name: "Big",
  12219. height: math.unit(104, "feet")
  12220. },
  12221. {
  12222. name: "Macro",
  12223. height: math.unit(944, "feet")
  12224. },
  12225. {
  12226. name: "Macro+",
  12227. height: math.unit(9480, "feet")
  12228. },
  12229. {
  12230. name: "Megamacro",
  12231. height: math.unit(78752, "feet")
  12232. },
  12233. {
  12234. name: "Megamacro+",
  12235. height: math.unit(630128, "feet")
  12236. },
  12237. {
  12238. name: "Megamacro++",
  12239. height: math.unit(3150695, "feet")
  12240. },
  12241. ]
  12242. ))
  12243. characterMakers.push(() => makeCharacter(
  12244. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12245. {
  12246. front: {
  12247. height: math.unit(7 + 5 / 12, "feet"),
  12248. weight: math.unit(450, "lb"),
  12249. name: "Front",
  12250. image: {
  12251. source: "./media/characters/mocha-aura/front.svg",
  12252. extra: 1907 / 1817,
  12253. bottom: 0.04
  12254. }
  12255. },
  12256. back: {
  12257. height: math.unit(7 + 5 / 12, "feet"),
  12258. weight: math.unit(450, "lb"),
  12259. name: "Back",
  12260. image: {
  12261. source: "./media/characters/mocha-aura/back.svg",
  12262. extra: 1900 / 1825,
  12263. bottom: 0.045
  12264. }
  12265. },
  12266. },
  12267. [
  12268. {
  12269. name: "Nano",
  12270. height: math.unit(1, "nm")
  12271. },
  12272. {
  12273. name: "Megamicro",
  12274. height: math.unit(1, "mm")
  12275. },
  12276. {
  12277. name: "Micro",
  12278. height: math.unit(3, "inches")
  12279. },
  12280. {
  12281. name: "Normal",
  12282. height: math.unit(7 + 5 / 12, "feet"),
  12283. default: true
  12284. },
  12285. {
  12286. name: "Macro",
  12287. height: math.unit(30, "feet")
  12288. },
  12289. {
  12290. name: "Megamacro",
  12291. height: math.unit(3500, "feet")
  12292. },
  12293. {
  12294. name: "Teramacro",
  12295. height: math.unit(500000, "miles")
  12296. },
  12297. {
  12298. name: "Petamacro",
  12299. height: math.unit(50000000000000000, "parsecs")
  12300. },
  12301. ]
  12302. ))
  12303. characterMakers.push(() => makeCharacter(
  12304. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12305. {
  12306. front: {
  12307. height: math.unit(6, "feet"),
  12308. weight: math.unit(150, "lb"),
  12309. name: "Front",
  12310. image: {
  12311. source: "./media/characters/ilisha-devya/front.svg",
  12312. extra: 1,
  12313. bottom: 0.175
  12314. }
  12315. },
  12316. back: {
  12317. height: math.unit(6, "feet"),
  12318. weight: math.unit(150, "lb"),
  12319. name: "Back",
  12320. image: {
  12321. source: "./media/characters/ilisha-devya/back.svg",
  12322. extra: 1,
  12323. bottom: 0.015
  12324. }
  12325. },
  12326. },
  12327. [
  12328. {
  12329. name: "Macro",
  12330. height: math.unit(500, "feet"),
  12331. default: true
  12332. },
  12333. {
  12334. name: "Megamacro",
  12335. height: math.unit(10, "miles")
  12336. },
  12337. {
  12338. name: "Gigamacro",
  12339. height: math.unit(100000, "miles")
  12340. },
  12341. {
  12342. name: "Examacro",
  12343. height: math.unit(1e9, "lightyears")
  12344. },
  12345. {
  12346. name: "Omniversal",
  12347. height: math.unit(1e33, "lightyears")
  12348. },
  12349. {
  12350. name: "Beyond Infinite",
  12351. height: math.unit(1e100, "lightyears")
  12352. },
  12353. ]
  12354. ))
  12355. characterMakers.push(() => makeCharacter(
  12356. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12357. {
  12358. Side: {
  12359. height: math.unit(6, "feet"),
  12360. weight: math.unit(150, "lb"),
  12361. name: "Side",
  12362. image: {
  12363. source: "./media/characters/mira/side.svg",
  12364. extra: 900 / 799,
  12365. bottom: 0.02
  12366. }
  12367. },
  12368. },
  12369. [
  12370. {
  12371. name: "Human Size",
  12372. height: math.unit(6, "feet")
  12373. },
  12374. {
  12375. name: "Macro",
  12376. height: math.unit(100, "feet"),
  12377. default: true
  12378. },
  12379. {
  12380. name: "Megamacro",
  12381. height: math.unit(10, "miles")
  12382. },
  12383. {
  12384. name: "Gigamacro",
  12385. height: math.unit(25000, "miles")
  12386. },
  12387. {
  12388. name: "Teramacro",
  12389. height: math.unit(300, "AU")
  12390. },
  12391. {
  12392. name: "Full Size",
  12393. height: math.unit(4.5e10, "lightyears")
  12394. },
  12395. ]
  12396. ))
  12397. characterMakers.push(() => makeCharacter(
  12398. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12399. {
  12400. front: {
  12401. height: math.unit(6, "feet"),
  12402. weight: math.unit(150, "lb"),
  12403. name: "Front",
  12404. image: {
  12405. source: "./media/characters/holly/front.svg",
  12406. extra: 639 / 606
  12407. }
  12408. },
  12409. back: {
  12410. height: math.unit(6, "feet"),
  12411. weight: math.unit(150, "lb"),
  12412. name: "Back",
  12413. image: {
  12414. source: "./media/characters/holly/back.svg",
  12415. extra: 623 / 598
  12416. }
  12417. },
  12418. frontWorking: {
  12419. height: math.unit(6, "feet"),
  12420. weight: math.unit(150, "lb"),
  12421. name: "Front (Working)",
  12422. image: {
  12423. source: "./media/characters/holly/front-working.svg",
  12424. extra: 607 / 577,
  12425. bottom: 0.048
  12426. }
  12427. },
  12428. },
  12429. [
  12430. {
  12431. name: "Normal",
  12432. height: math.unit(12 + 3 / 12, "feet"),
  12433. default: true
  12434. },
  12435. ]
  12436. ))
  12437. characterMakers.push(() => makeCharacter(
  12438. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12439. {
  12440. front: {
  12441. height: math.unit(6, "feet"),
  12442. weight: math.unit(150, "lb"),
  12443. name: "Front",
  12444. image: {
  12445. source: "./media/characters/porter/front.svg",
  12446. extra: 1,
  12447. bottom: 0.01
  12448. }
  12449. },
  12450. frontRobes: {
  12451. height: math.unit(6, "feet"),
  12452. weight: math.unit(150, "lb"),
  12453. name: "Front (Robes)",
  12454. image: {
  12455. source: "./media/characters/porter/front-robes.svg",
  12456. extra: 1.01,
  12457. bottom: 0.01
  12458. }
  12459. },
  12460. },
  12461. [
  12462. {
  12463. name: "Normal",
  12464. height: math.unit(11 + 9 / 12, "feet"),
  12465. default: true
  12466. },
  12467. ]
  12468. ))
  12469. characterMakers.push(() => makeCharacter(
  12470. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12471. {
  12472. legendary: {
  12473. height: math.unit(6, "feet"),
  12474. weight: math.unit(150, "lb"),
  12475. name: "Legendary",
  12476. image: {
  12477. source: "./media/characters/lucy/legendary.svg",
  12478. extra: 1355 / 1100,
  12479. bottom: 0.045
  12480. }
  12481. },
  12482. },
  12483. [
  12484. {
  12485. name: "Legendary",
  12486. height: math.unit(86882 * 2, "miles"),
  12487. default: true
  12488. },
  12489. ]
  12490. ))
  12491. characterMakers.push(() => makeCharacter(
  12492. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12493. {
  12494. front: {
  12495. height: math.unit(6, "feet"),
  12496. weight: math.unit(150, "lb"),
  12497. name: "Front",
  12498. image: {
  12499. source: "./media/characters/drusilla/front.svg",
  12500. extra: 678 / 635,
  12501. bottom: 0.03
  12502. }
  12503. },
  12504. back: {
  12505. height: math.unit(6, "feet"),
  12506. weight: math.unit(150, "lb"),
  12507. name: "Back",
  12508. image: {
  12509. source: "./media/characters/drusilla/back.svg",
  12510. extra: 678 / 635,
  12511. bottom: 0.005
  12512. }
  12513. },
  12514. },
  12515. [
  12516. {
  12517. name: "Macro",
  12518. height: math.unit(100, "feet")
  12519. },
  12520. {
  12521. name: "Canon Height",
  12522. height: math.unit(2000, "feet"),
  12523. default: true
  12524. },
  12525. ]
  12526. ))
  12527. characterMakers.push(() => makeCharacter(
  12528. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12529. {
  12530. front: {
  12531. height: math.unit(6, "feet"),
  12532. weight: math.unit(180, "lb"),
  12533. name: "Front",
  12534. image: {
  12535. source: "./media/characters/renard-thatch/front.svg",
  12536. extra: 2411 / 2275,
  12537. bottom: 0.01
  12538. }
  12539. },
  12540. frontPosing: {
  12541. height: math.unit(6, "feet"),
  12542. weight: math.unit(180, "lb"),
  12543. name: "Front (Posing)",
  12544. image: {
  12545. source: "./media/characters/renard-thatch/front-posing.svg",
  12546. extra: 2381 / 2261,
  12547. bottom: 0.01
  12548. }
  12549. },
  12550. back: {
  12551. height: math.unit(6, "feet"),
  12552. weight: math.unit(180, "lb"),
  12553. name: "Back",
  12554. image: {
  12555. source: "./media/characters/renard-thatch/back.svg",
  12556. extra: 2428 / 2288
  12557. }
  12558. },
  12559. },
  12560. [
  12561. {
  12562. name: "Micro",
  12563. height: math.unit(3, "inches")
  12564. },
  12565. {
  12566. name: "Default",
  12567. height: math.unit(6, "feet"),
  12568. default: true
  12569. },
  12570. {
  12571. name: "Macro",
  12572. height: math.unit(75, "feet")
  12573. },
  12574. ]
  12575. ))
  12576. characterMakers.push(() => makeCharacter(
  12577. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12578. {
  12579. front: {
  12580. height: math.unit(1450, "feet"),
  12581. weight: math.unit(1.21e6, "tons"),
  12582. name: "Front",
  12583. image: {
  12584. source: "./media/characters/sekvra/front.svg",
  12585. extra: 1,
  12586. bottom: 0.03
  12587. }
  12588. },
  12589. frontClothed: {
  12590. height: math.unit(1450, "feet"),
  12591. weight: math.unit(1.21e6, "tons"),
  12592. name: "Front (Clothed)",
  12593. image: {
  12594. source: "./media/characters/sekvra/front-clothed.svg",
  12595. extra: 1,
  12596. bottom: 0.03
  12597. }
  12598. },
  12599. side: {
  12600. height: math.unit(1450, "feet"),
  12601. weight: math.unit(1.21e6, "tons"),
  12602. name: "Side",
  12603. image: {
  12604. source: "./media/characters/sekvra/side.svg",
  12605. extra: 1,
  12606. bottom: 0.025
  12607. }
  12608. },
  12609. back: {
  12610. height: math.unit(1450, "feet"),
  12611. weight: math.unit(1.21e6, "tons"),
  12612. name: "Back",
  12613. image: {
  12614. source: "./media/characters/sekvra/back.svg",
  12615. extra: 1,
  12616. bottom: 0.005
  12617. }
  12618. },
  12619. },
  12620. [
  12621. {
  12622. name: "Macro",
  12623. height: math.unit(1450, "feet"),
  12624. default: true
  12625. },
  12626. {
  12627. name: "Megamacro",
  12628. height: math.unit(15000, "feet")
  12629. },
  12630. ]
  12631. ))
  12632. characterMakers.push(() => makeCharacter(
  12633. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12634. {
  12635. front: {
  12636. height: math.unit(6, "feet"),
  12637. weight: math.unit(150, "lb"),
  12638. name: "Front",
  12639. image: {
  12640. source: "./media/characters/carmine/front.svg",
  12641. extra: 1,
  12642. bottom: 0.035
  12643. }
  12644. },
  12645. frontArmor: {
  12646. height: math.unit(6, "feet"),
  12647. weight: math.unit(150, "lb"),
  12648. name: "Front (Armor)",
  12649. image: {
  12650. source: "./media/characters/carmine/front-armor.svg",
  12651. extra: 1,
  12652. bottom: 0.035
  12653. }
  12654. },
  12655. },
  12656. [
  12657. {
  12658. name: "Large",
  12659. height: math.unit(1, "mile")
  12660. },
  12661. {
  12662. name: "Huge",
  12663. height: math.unit(40, "miles"),
  12664. default: true
  12665. },
  12666. {
  12667. name: "Colossal",
  12668. height: math.unit(2500, "miles")
  12669. },
  12670. ]
  12671. ))
  12672. characterMakers.push(() => makeCharacter(
  12673. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12674. {
  12675. front: {
  12676. height: math.unit(6, "feet"),
  12677. weight: math.unit(150, "lb"),
  12678. name: "Front",
  12679. image: {
  12680. source: "./media/characters/elyssia/front.svg",
  12681. extra: 2201 / 2035,
  12682. bottom: 0.05
  12683. }
  12684. },
  12685. frontClothed: {
  12686. height: math.unit(6, "feet"),
  12687. weight: math.unit(150, "lb"),
  12688. name: "Front (Clothed)",
  12689. image: {
  12690. source: "./media/characters/elyssia/front-clothed.svg",
  12691. extra: 2201 / 2035,
  12692. bottom: 0.05
  12693. }
  12694. },
  12695. back: {
  12696. height: math.unit(6, "feet"),
  12697. weight: math.unit(150, "lb"),
  12698. name: "Back",
  12699. image: {
  12700. source: "./media/characters/elyssia/back.svg",
  12701. extra: 2201 / 2035,
  12702. bottom: 0.013
  12703. }
  12704. },
  12705. },
  12706. [
  12707. {
  12708. name: "Smaller",
  12709. height: math.unit(150, "feet")
  12710. },
  12711. {
  12712. name: "Standard",
  12713. height: math.unit(1400, "feet"),
  12714. default: true
  12715. },
  12716. {
  12717. name: "Distracted",
  12718. height: math.unit(15000, "feet")
  12719. },
  12720. ]
  12721. ))
  12722. characterMakers.push(() => makeCharacter(
  12723. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12724. {
  12725. front: {
  12726. height: math.unit(7 + 4 / 12, "feet"),
  12727. weight: math.unit(500, "lb"),
  12728. name: "Front",
  12729. image: {
  12730. source: "./media/characters/geno-maxwell/front.svg",
  12731. extra: 2207 / 2040,
  12732. bottom: 0.015
  12733. }
  12734. },
  12735. },
  12736. [
  12737. {
  12738. name: "Micro",
  12739. height: math.unit(3, "inches")
  12740. },
  12741. {
  12742. name: "Normal",
  12743. height: math.unit(7 + 4 / 12, "feet"),
  12744. default: true
  12745. },
  12746. {
  12747. name: "Macro",
  12748. height: math.unit(220, "feet")
  12749. },
  12750. {
  12751. name: "Megamacro",
  12752. height: math.unit(11, "miles")
  12753. },
  12754. ]
  12755. ))
  12756. characterMakers.push(() => makeCharacter(
  12757. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12758. {
  12759. front: {
  12760. height: math.unit(7 + 4 / 12, "feet"),
  12761. weight: math.unit(500, "lb"),
  12762. name: "Front",
  12763. image: {
  12764. source: "./media/characters/regena-maxwell/front.svg",
  12765. extra: 3115 / 2770,
  12766. bottom: 0.02
  12767. }
  12768. },
  12769. },
  12770. [
  12771. {
  12772. name: "Normal",
  12773. height: math.unit(7 + 4 / 12, "feet"),
  12774. default: true
  12775. },
  12776. {
  12777. name: "Macro",
  12778. height: math.unit(220, "feet")
  12779. },
  12780. {
  12781. name: "Megamacro",
  12782. height: math.unit(11, "miles")
  12783. },
  12784. ]
  12785. ))
  12786. characterMakers.push(() => makeCharacter(
  12787. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12788. {
  12789. front: {
  12790. height: math.unit(6, "feet"),
  12791. weight: math.unit(150, "lb"),
  12792. name: "Front",
  12793. image: {
  12794. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12795. extra: 860 / 690,
  12796. bottom: 0.03
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Normal",
  12803. height: math.unit(1.7, "meters"),
  12804. default: true
  12805. },
  12806. ]
  12807. ))
  12808. characterMakers.push(() => makeCharacter(
  12809. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12810. {
  12811. front: {
  12812. height: math.unit(6, "feet"),
  12813. weight: math.unit(150, "lb"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/quilly/front.svg",
  12817. extra: 890 / 776
  12818. }
  12819. },
  12820. },
  12821. [
  12822. {
  12823. name: "Gigamacro",
  12824. height: math.unit(404090, "miles"),
  12825. default: true
  12826. },
  12827. ]
  12828. ))
  12829. characterMakers.push(() => makeCharacter(
  12830. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12831. {
  12832. front: {
  12833. height: math.unit(7 + 8 / 12, "feet"),
  12834. weight: math.unit(350, "lb"),
  12835. name: "Front",
  12836. image: {
  12837. source: "./media/characters/tempest/front.svg",
  12838. extra: 1175 / 1086,
  12839. bottom: 0.02
  12840. }
  12841. },
  12842. },
  12843. [
  12844. {
  12845. name: "Normal",
  12846. height: math.unit(7 + 8 / 12, "feet"),
  12847. default: true
  12848. },
  12849. ]
  12850. ))
  12851. characterMakers.push(() => makeCharacter(
  12852. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12853. {
  12854. side: {
  12855. height: math.unit(4 + 5 / 12, "feet"),
  12856. weight: math.unit(80, "lb"),
  12857. name: "Side",
  12858. image: {
  12859. source: "./media/characters/rodger/side.svg",
  12860. extra: 1235 / 1118
  12861. }
  12862. },
  12863. },
  12864. [
  12865. {
  12866. name: "Micro",
  12867. height: math.unit(1, "inch")
  12868. },
  12869. {
  12870. name: "Normal",
  12871. height: math.unit(4 + 5 / 12, "feet"),
  12872. default: true
  12873. },
  12874. {
  12875. name: "Macro",
  12876. height: math.unit(120, "feet")
  12877. },
  12878. ]
  12879. ))
  12880. characterMakers.push(() => makeCharacter(
  12881. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12882. {
  12883. front: {
  12884. height: math.unit(6, "feet"),
  12885. weight: math.unit(150, "lb"),
  12886. name: "Front",
  12887. image: {
  12888. source: "./media/characters/danyel/front.svg",
  12889. extra: 1185 / 1123,
  12890. bottom: 0.05
  12891. }
  12892. },
  12893. },
  12894. [
  12895. {
  12896. name: "Shrunken",
  12897. height: math.unit(0.5, "mm")
  12898. },
  12899. {
  12900. name: "Micro",
  12901. height: math.unit(1, "mm"),
  12902. default: true
  12903. },
  12904. {
  12905. name: "Upsized",
  12906. height: math.unit(5 + 5 / 12, "feet")
  12907. },
  12908. ]
  12909. ))
  12910. characterMakers.push(() => makeCharacter(
  12911. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12912. {
  12913. front: {
  12914. height: math.unit(5 + 6 / 12, "feet"),
  12915. weight: math.unit(200, "lb"),
  12916. name: "Front",
  12917. image: {
  12918. source: "./media/characters/vivian-bijoux/front.svg",
  12919. extra: 1,
  12920. bottom: 0.072
  12921. }
  12922. },
  12923. },
  12924. [
  12925. {
  12926. name: "Normal",
  12927. height: math.unit(5 + 6 / 12, "feet"),
  12928. default: true
  12929. },
  12930. {
  12931. name: "Bad Dream",
  12932. height: math.unit(500, "feet")
  12933. },
  12934. {
  12935. name: "Nightmare",
  12936. height: math.unit(500, "miles")
  12937. },
  12938. ]
  12939. ))
  12940. characterMakers.push(() => makeCharacter(
  12941. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12942. {
  12943. front: {
  12944. height: math.unit(6 + 1 / 12, "feet"),
  12945. weight: math.unit(260, "lb"),
  12946. name: "Front",
  12947. image: {
  12948. source: "./media/characters/zeta/front.svg",
  12949. extra: 1968 / 1889,
  12950. bottom: 0.06
  12951. }
  12952. },
  12953. back: {
  12954. height: math.unit(6 + 1 / 12, "feet"),
  12955. weight: math.unit(260, "lb"),
  12956. name: "Back",
  12957. image: {
  12958. source: "./media/characters/zeta/back.svg",
  12959. extra: 1944 / 1858,
  12960. bottom: 0.03
  12961. }
  12962. },
  12963. hand: {
  12964. height: math.unit(1.112, "feet"),
  12965. name: "Hand",
  12966. image: {
  12967. source: "./media/characters/zeta/hand.svg"
  12968. }
  12969. },
  12970. foot: {
  12971. height: math.unit(1.48, "feet"),
  12972. name: "Foot",
  12973. image: {
  12974. source: "./media/characters/zeta/foot.svg"
  12975. }
  12976. },
  12977. },
  12978. [
  12979. {
  12980. name: "Micro",
  12981. height: math.unit(6, "inches")
  12982. },
  12983. {
  12984. name: "Normal",
  12985. height: math.unit(6 + 1 / 12, "feet"),
  12986. default: true
  12987. },
  12988. {
  12989. name: "Macro",
  12990. height: math.unit(20, "feet")
  12991. },
  12992. ]
  12993. ))
  12994. characterMakers.push(() => makeCharacter(
  12995. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12996. {
  12997. front: {
  12998. height: math.unit(6, "feet"),
  12999. weight: math.unit(150, "lb"),
  13000. name: "Front",
  13001. image: {
  13002. source: "./media/characters/jamie-larsen/front.svg",
  13003. extra: 962 / 933,
  13004. bottom: 0.02
  13005. }
  13006. },
  13007. back: {
  13008. height: math.unit(6, "feet"),
  13009. weight: math.unit(150, "lb"),
  13010. name: "Back",
  13011. image: {
  13012. source: "./media/characters/jamie-larsen/back.svg",
  13013. extra: 997 / 946
  13014. }
  13015. },
  13016. },
  13017. [
  13018. {
  13019. name: "Macro",
  13020. height: math.unit(28 + 7 / 12, "feet"),
  13021. default: true
  13022. },
  13023. {
  13024. name: "Macro+",
  13025. height: math.unit(180, "feet")
  13026. },
  13027. {
  13028. name: "Megamacro",
  13029. height: math.unit(10, "miles")
  13030. },
  13031. {
  13032. name: "Gigamacro",
  13033. height: math.unit(200000, "miles")
  13034. },
  13035. ]
  13036. ))
  13037. characterMakers.push(() => makeCharacter(
  13038. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13039. {
  13040. front: {
  13041. height: math.unit(6, "feet"),
  13042. weight: math.unit(120, "lb"),
  13043. name: "Front",
  13044. image: {
  13045. source: "./media/characters/vance/front.svg",
  13046. extra: 1980 / 1890,
  13047. bottom: 0.09
  13048. }
  13049. },
  13050. back: {
  13051. height: math.unit(6, "feet"),
  13052. weight: math.unit(120, "lb"),
  13053. name: "Back",
  13054. image: {
  13055. source: "./media/characters/vance/back.svg",
  13056. extra: 2081 / 1994,
  13057. bottom: 0.014
  13058. }
  13059. },
  13060. hand: {
  13061. height: math.unit(0.88, "feet"),
  13062. name: "Hand",
  13063. image: {
  13064. source: "./media/characters/vance/hand.svg"
  13065. }
  13066. },
  13067. foot: {
  13068. height: math.unit(0.64, "feet"),
  13069. name: "Foot",
  13070. image: {
  13071. source: "./media/characters/vance/foot.svg"
  13072. }
  13073. },
  13074. },
  13075. [
  13076. {
  13077. name: "Small",
  13078. height: math.unit(90, "feet"),
  13079. default: true
  13080. },
  13081. {
  13082. name: "Macro",
  13083. height: math.unit(100, "meters")
  13084. },
  13085. {
  13086. name: "Megamacro",
  13087. height: math.unit(15, "miles")
  13088. },
  13089. ]
  13090. ))
  13091. characterMakers.push(() => makeCharacter(
  13092. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13093. {
  13094. front: {
  13095. height: math.unit(6, "feet"),
  13096. weight: math.unit(180, "lb"),
  13097. name: "Front",
  13098. image: {
  13099. source: "./media/characters/xochitl/front.svg",
  13100. extra: 2297 / 2261,
  13101. bottom: 0.065
  13102. }
  13103. },
  13104. back: {
  13105. height: math.unit(6, "feet"),
  13106. weight: math.unit(180, "lb"),
  13107. name: "Back",
  13108. image: {
  13109. source: "./media/characters/xochitl/back.svg",
  13110. extra: 2386 / 2354,
  13111. bottom: 0.01
  13112. }
  13113. },
  13114. foot: {
  13115. height: math.unit(6 / 5 * 1.15, "feet"),
  13116. weight: math.unit(150, "lb"),
  13117. name: "Foot",
  13118. image: {
  13119. source: "./media/characters/xochitl/foot.svg"
  13120. }
  13121. },
  13122. },
  13123. [
  13124. {
  13125. name: "Macro",
  13126. height: math.unit(80, "feet")
  13127. },
  13128. {
  13129. name: "Macro+",
  13130. height: math.unit(400, "feet"),
  13131. default: true
  13132. },
  13133. {
  13134. name: "Gigamacro",
  13135. height: math.unit(80000, "miles")
  13136. },
  13137. {
  13138. name: "Gigamacro+",
  13139. height: math.unit(400000, "miles")
  13140. },
  13141. {
  13142. name: "Teramacro",
  13143. height: math.unit(300, "AU")
  13144. },
  13145. ]
  13146. ))
  13147. characterMakers.push(() => makeCharacter(
  13148. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13149. {
  13150. front: {
  13151. height: math.unit(6, "feet"),
  13152. weight: math.unit(150, "lb"),
  13153. name: "Front",
  13154. image: {
  13155. source: "./media/characters/vincent/front.svg",
  13156. extra: 1130 / 1080,
  13157. bottom: 0.055
  13158. }
  13159. },
  13160. beak: {
  13161. height: math.unit(6 * 0.1, "feet"),
  13162. name: "Beak",
  13163. image: {
  13164. source: "./media/characters/vincent/beak.svg"
  13165. }
  13166. },
  13167. hand: {
  13168. height: math.unit(6 * 0.85, "feet"),
  13169. weight: math.unit(150, "lb"),
  13170. name: "Hand",
  13171. image: {
  13172. source: "./media/characters/vincent/hand.svg"
  13173. }
  13174. },
  13175. foot: {
  13176. height: math.unit(6 * 0.19, "feet"),
  13177. weight: math.unit(150, "lb"),
  13178. name: "Foot",
  13179. image: {
  13180. source: "./media/characters/vincent/foot.svg"
  13181. }
  13182. },
  13183. },
  13184. [
  13185. {
  13186. name: "Base",
  13187. height: math.unit(6 + 5 / 12, "feet"),
  13188. default: true
  13189. },
  13190. {
  13191. name: "Macro",
  13192. height: math.unit(300, "feet")
  13193. },
  13194. {
  13195. name: "Megamacro",
  13196. height: math.unit(2, "miles")
  13197. },
  13198. {
  13199. name: "Gigamacro",
  13200. height: math.unit(1000, "miles")
  13201. },
  13202. ]
  13203. ))
  13204. characterMakers.push(() => makeCharacter(
  13205. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13206. {
  13207. front: {
  13208. height: math.unit(6 + 2 / 12, "feet"),
  13209. weight: math.unit(265, "lb"),
  13210. name: "Front",
  13211. image: {
  13212. source: "./media/characters/jay/front.svg",
  13213. extra: 1510 / 1430,
  13214. bottom: 0.042
  13215. }
  13216. },
  13217. back: {
  13218. height: math.unit(6 + 2 / 12, "feet"),
  13219. weight: math.unit(265, "lb"),
  13220. name: "Back",
  13221. image: {
  13222. source: "./media/characters/jay/back.svg",
  13223. extra: 1510 / 1430,
  13224. bottom: 0.025
  13225. }
  13226. },
  13227. clothed: {
  13228. height: math.unit(6 + 2 / 12, "feet"),
  13229. weight: math.unit(265, "lb"),
  13230. name: "Front (Clothed)",
  13231. image: {
  13232. source: "./media/characters/jay/clothed.svg",
  13233. extra: 744 / 699,
  13234. bottom: 0.043
  13235. }
  13236. },
  13237. head: {
  13238. height: math.unit(1.772, "feet"),
  13239. name: "Head",
  13240. image: {
  13241. source: "./media/characters/jay/head.svg"
  13242. }
  13243. },
  13244. sizeRay: {
  13245. height: math.unit(1.331, "feet"),
  13246. name: "Size Ray",
  13247. image: {
  13248. source: "./media/characters/jay/size-ray.svg"
  13249. }
  13250. },
  13251. },
  13252. [
  13253. {
  13254. name: "Micro",
  13255. height: math.unit(1, "inch")
  13256. },
  13257. {
  13258. name: "Normal",
  13259. height: math.unit(6 + 2 / 12, "feet"),
  13260. default: true
  13261. },
  13262. {
  13263. name: "Macro",
  13264. height: math.unit(1, "mile")
  13265. },
  13266. {
  13267. name: "Megamacro",
  13268. height: math.unit(100, "miles")
  13269. },
  13270. ]
  13271. ))
  13272. characterMakers.push(() => makeCharacter(
  13273. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13274. {
  13275. front: {
  13276. height: math.unit(2, "meters"),
  13277. weight: math.unit(500, "kg"),
  13278. name: "Front",
  13279. image: {
  13280. source: "./media/characters/coatl/front.svg",
  13281. extra: 3948 / 3500,
  13282. bottom: 0.082
  13283. }
  13284. },
  13285. },
  13286. [
  13287. {
  13288. name: "Normal",
  13289. height: math.unit(4, "meters")
  13290. },
  13291. {
  13292. name: "Macro",
  13293. height: math.unit(100, "meters"),
  13294. default: true
  13295. },
  13296. {
  13297. name: "Macro+",
  13298. height: math.unit(300, "meters")
  13299. },
  13300. {
  13301. name: "Megamacro",
  13302. height: math.unit(3, "gigameters")
  13303. },
  13304. {
  13305. name: "Megamacro+",
  13306. height: math.unit(300, "terameters")
  13307. },
  13308. {
  13309. name: "Megamacro++",
  13310. height: math.unit(3, "lightyears")
  13311. },
  13312. ]
  13313. ))
  13314. characterMakers.push(() => makeCharacter(
  13315. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13316. {
  13317. front: {
  13318. height: math.unit(6, "feet"),
  13319. weight: math.unit(50, "kg"),
  13320. name: "front",
  13321. image: {
  13322. source: "./media/characters/shiroryu/front.svg",
  13323. extra: 1990 / 1935
  13324. }
  13325. },
  13326. },
  13327. [
  13328. {
  13329. name: "Mortal Mingling",
  13330. height: math.unit(3, "meters")
  13331. },
  13332. {
  13333. name: "Kaiju-ish",
  13334. height: math.unit(250, "meters")
  13335. },
  13336. {
  13337. name: "Somewhat Godly",
  13338. height: math.unit(400, "km"),
  13339. default: true
  13340. },
  13341. {
  13342. name: "Planetary",
  13343. height: math.unit(300, "megameters")
  13344. },
  13345. {
  13346. name: "Galaxy-dwarfing",
  13347. height: math.unit(450, "kiloparsecs")
  13348. },
  13349. {
  13350. name: "Universe Eater",
  13351. height: math.unit(150, "gigaparsecs")
  13352. },
  13353. {
  13354. name: "Almost Immeasurable",
  13355. height: math.unit(1.3e266, "yottaparsecs")
  13356. },
  13357. ]
  13358. ))
  13359. characterMakers.push(() => makeCharacter(
  13360. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13361. {
  13362. front: {
  13363. height: math.unit(6, "feet"),
  13364. weight: math.unit(150, "lb"),
  13365. name: "Front",
  13366. image: {
  13367. source: "./media/characters/umeko/front.svg",
  13368. extra: 1,
  13369. bottom: 0.019
  13370. }
  13371. },
  13372. frontArmored: {
  13373. height: math.unit(6, "feet"),
  13374. weight: math.unit(150, "lb"),
  13375. name: "Front (Armored)",
  13376. image: {
  13377. source: "./media/characters/umeko/front-armored.svg",
  13378. extra: 1,
  13379. bottom: 0.021
  13380. }
  13381. },
  13382. },
  13383. [
  13384. {
  13385. name: "Macro",
  13386. height: math.unit(220, "feet"),
  13387. default: true
  13388. },
  13389. {
  13390. name: "Guardian Dragon",
  13391. height: math.unit(50, "miles")
  13392. },
  13393. {
  13394. name: "Cosmic",
  13395. height: math.unit(800000, "miles")
  13396. },
  13397. ]
  13398. ))
  13399. characterMakers.push(() => makeCharacter(
  13400. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13401. {
  13402. front: {
  13403. height: math.unit(6, "feet"),
  13404. weight: math.unit(150, "lb"),
  13405. name: "Front",
  13406. image: {
  13407. source: "./media/characters/cassidy/front.svg",
  13408. extra: 1,
  13409. bottom: 0.043
  13410. }
  13411. },
  13412. },
  13413. [
  13414. {
  13415. name: "Canon Height",
  13416. height: math.unit(120, "feet"),
  13417. default: true
  13418. },
  13419. {
  13420. name: "Macro+",
  13421. height: math.unit(400, "feet")
  13422. },
  13423. {
  13424. name: "Macro++",
  13425. height: math.unit(4000, "feet")
  13426. },
  13427. {
  13428. name: "Megamacro",
  13429. height: math.unit(3, "miles")
  13430. },
  13431. ]
  13432. ))
  13433. characterMakers.push(() => makeCharacter(
  13434. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13435. {
  13436. front: {
  13437. height: math.unit(6, "feet"),
  13438. weight: math.unit(150, "lb"),
  13439. name: "Front",
  13440. image: {
  13441. source: "./media/characters/isaac/front.svg",
  13442. extra: 896 / 815,
  13443. bottom: 0.11
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Human Size",
  13450. height: math.unit(8, "feet"),
  13451. default: true
  13452. },
  13453. {
  13454. name: "Macro",
  13455. height: math.unit(400, "feet")
  13456. },
  13457. {
  13458. name: "Megamacro",
  13459. height: math.unit(50, "miles")
  13460. },
  13461. {
  13462. name: "Canon Height",
  13463. height: math.unit(200, "AU")
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(6, "feet"),
  13472. weight: math.unit(72, "kg"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/sleekit/front.svg",
  13476. extra: 4693 / 4487,
  13477. bottom: 0.012
  13478. }
  13479. },
  13480. },
  13481. [
  13482. {
  13483. name: "Minimum Height",
  13484. height: math.unit(10, "meters")
  13485. },
  13486. {
  13487. name: "Smaller",
  13488. height: math.unit(25, "meters")
  13489. },
  13490. {
  13491. name: "Larger",
  13492. height: math.unit(38, "meters"),
  13493. default: true
  13494. },
  13495. {
  13496. name: "Maximum height",
  13497. height: math.unit(100, "meters")
  13498. },
  13499. ]
  13500. ))
  13501. characterMakers.push(() => makeCharacter(
  13502. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13503. {
  13504. front: {
  13505. height: math.unit(6, "feet"),
  13506. weight: math.unit(150, "lb"),
  13507. name: "Front",
  13508. image: {
  13509. source: "./media/characters/nillia/front.svg",
  13510. extra: 2195 / 2037,
  13511. bottom: 0.005
  13512. }
  13513. },
  13514. back: {
  13515. height: math.unit(6, "feet"),
  13516. weight: math.unit(150, "lb"),
  13517. name: "Back",
  13518. image: {
  13519. source: "./media/characters/nillia/back.svg",
  13520. extra: 2195 / 2037,
  13521. bottom: 0.005
  13522. }
  13523. },
  13524. },
  13525. [
  13526. {
  13527. name: "Canon Height",
  13528. height: math.unit(489, "feet"),
  13529. default: true
  13530. }
  13531. ]
  13532. ))
  13533. characterMakers.push(() => makeCharacter(
  13534. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13535. {
  13536. front: {
  13537. height: math.unit(6, "feet"),
  13538. weight: math.unit(150, "lb"),
  13539. name: "Front",
  13540. image: {
  13541. source: "./media/characters/mesmyriza/front.svg",
  13542. extra: 2067 / 1784,
  13543. bottom: 0.035
  13544. }
  13545. },
  13546. foot: {
  13547. height: math.unit(6 / (250 / 35), "feet"),
  13548. name: "Foot",
  13549. image: {
  13550. source: "./media/characters/mesmyriza/foot.svg"
  13551. }
  13552. },
  13553. },
  13554. [
  13555. {
  13556. name: "Macro",
  13557. height: math.unit(457, "meters"),
  13558. default: true
  13559. },
  13560. {
  13561. name: "Megamacro",
  13562. height: math.unit(8, "megameters")
  13563. },
  13564. ]
  13565. ))
  13566. characterMakers.push(() => makeCharacter(
  13567. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13568. {
  13569. front: {
  13570. height: math.unit(6, "feet"),
  13571. weight: math.unit(250, "lb"),
  13572. name: "Front",
  13573. image: {
  13574. source: "./media/characters/saudade/front.svg",
  13575. extra: 1172 / 1139,
  13576. bottom: 0.035
  13577. }
  13578. },
  13579. },
  13580. [
  13581. {
  13582. name: "Micro",
  13583. height: math.unit(3, "inches")
  13584. },
  13585. {
  13586. name: "Normal",
  13587. height: math.unit(6, "feet"),
  13588. default: true
  13589. },
  13590. {
  13591. name: "Macro",
  13592. height: math.unit(50, "feet")
  13593. },
  13594. {
  13595. name: "Megamacro",
  13596. height: math.unit(2800, "feet")
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13602. {
  13603. front: {
  13604. height: math.unit(5 + 4 / 12, "feet"),
  13605. weight: math.unit(100, "lb"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/keireer/front.svg",
  13609. extra: 716 / 666,
  13610. bottom: 0.05
  13611. }
  13612. },
  13613. },
  13614. [
  13615. {
  13616. name: "Normal",
  13617. height: math.unit(5 + 4 / 12, "feet"),
  13618. default: true
  13619. },
  13620. ]
  13621. ))
  13622. characterMakers.push(() => makeCharacter(
  13623. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13624. {
  13625. front: {
  13626. height: math.unit(6, "feet"),
  13627. weight: math.unit(90, "kg"),
  13628. name: "Front",
  13629. image: {
  13630. source: "./media/characters/mirja/front.svg",
  13631. extra: 1789 / 1683,
  13632. bottom: 0.05
  13633. }
  13634. },
  13635. frontDressed: {
  13636. height: math.unit(6, "feet"),
  13637. weight: math.unit(90, "lb"),
  13638. name: "Front (Dressed)",
  13639. image: {
  13640. source: "./media/characters/mirja/front-dressed.svg",
  13641. extra: 1789 / 1683,
  13642. bottom: 0.05
  13643. }
  13644. },
  13645. back: {
  13646. height: math.unit(6, "feet"),
  13647. weight: math.unit(90, "lb"),
  13648. name: "Back",
  13649. image: {
  13650. source: "./media/characters/mirja/back.svg",
  13651. extra: 953 / 917,
  13652. bottom: 0.017
  13653. }
  13654. },
  13655. },
  13656. [
  13657. {
  13658. name: "\"Incognito\"",
  13659. height: math.unit(3, "meters")
  13660. },
  13661. {
  13662. name: "Strolling Size",
  13663. height: math.unit(15, "km")
  13664. },
  13665. {
  13666. name: "Larger Strolling Size",
  13667. height: math.unit(400, "km")
  13668. },
  13669. {
  13670. name: "Preferred Size",
  13671. height: math.unit(5000, "km")
  13672. },
  13673. {
  13674. name: "True Size",
  13675. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13676. default: true
  13677. },
  13678. ]
  13679. ))
  13680. characterMakers.push(() => makeCharacter(
  13681. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13682. {
  13683. front: {
  13684. height: math.unit(15, "feet"),
  13685. weight: math.unit(880, "kg"),
  13686. name: "Front",
  13687. image: {
  13688. source: "./media/characters/nightraver/front.svg",
  13689. extra: 2444 / 2160,
  13690. bottom: 0.027
  13691. }
  13692. },
  13693. back: {
  13694. height: math.unit(15, "feet"),
  13695. weight: math.unit(880, "kg"),
  13696. name: "Back",
  13697. image: {
  13698. source: "./media/characters/nightraver/back.svg",
  13699. extra: 2309 / 2180,
  13700. bottom: 0.005
  13701. }
  13702. },
  13703. sole: {
  13704. height: math.unit(2.878, "feet"),
  13705. name: "Sole",
  13706. image: {
  13707. source: "./media/characters/nightraver/sole.svg"
  13708. }
  13709. },
  13710. foot: {
  13711. height: math.unit(2.285, "feet"),
  13712. name: "Foot",
  13713. image: {
  13714. source: "./media/characters/nightraver/foot.svg"
  13715. }
  13716. },
  13717. maw: {
  13718. height: math.unit(2.67, "feet"),
  13719. name: "Maw",
  13720. image: {
  13721. source: "./media/characters/nightraver/maw.svg"
  13722. }
  13723. },
  13724. },
  13725. [
  13726. {
  13727. name: "Micro",
  13728. height: math.unit(1, "cm")
  13729. },
  13730. {
  13731. name: "Normal",
  13732. height: math.unit(15, "feet"),
  13733. default: true
  13734. },
  13735. {
  13736. name: "Macro",
  13737. height: math.unit(300, "feet")
  13738. },
  13739. {
  13740. name: "Megamacro",
  13741. height: math.unit(300, "miles")
  13742. },
  13743. {
  13744. name: "Gigamacro",
  13745. height: math.unit(10000, "miles")
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13751. {
  13752. side: {
  13753. height: math.unit(2, "inches"),
  13754. weight: math.unit(5, "grams"),
  13755. name: "Side",
  13756. image: {
  13757. source: "./media/characters/arc/side.svg"
  13758. }
  13759. },
  13760. },
  13761. [
  13762. {
  13763. name: "Micro",
  13764. height: math.unit(2, "inches"),
  13765. default: true
  13766. },
  13767. ]
  13768. ))
  13769. characterMakers.push(() => makeCharacter(
  13770. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13771. {
  13772. front: {
  13773. height: math.unit(1.1938, "meters"),
  13774. weight: math.unit(54, "kg"),
  13775. name: "Front",
  13776. image: {
  13777. source: "./media/characters/nebula-shahar/front.svg",
  13778. extra: 1642 / 1436,
  13779. bottom: 0.06
  13780. }
  13781. },
  13782. },
  13783. [
  13784. {
  13785. name: "Megamicro",
  13786. height: math.unit(0.3, "mm")
  13787. },
  13788. {
  13789. name: "Micro",
  13790. height: math.unit(3, "cm")
  13791. },
  13792. {
  13793. name: "Normal",
  13794. height: math.unit(138, "cm"),
  13795. default: true
  13796. },
  13797. {
  13798. name: "Macro",
  13799. height: math.unit(30, "m")
  13800. },
  13801. ]
  13802. ))
  13803. characterMakers.push(() => makeCharacter(
  13804. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13805. {
  13806. front: {
  13807. height: math.unit(5.24, "feet"),
  13808. weight: math.unit(150, "lb"),
  13809. name: "Front",
  13810. image: {
  13811. source: "./media/characters/shayla/front.svg",
  13812. extra: 1512 / 1414,
  13813. bottom: 0.01
  13814. }
  13815. },
  13816. back: {
  13817. height: math.unit(5.24, "feet"),
  13818. weight: math.unit(150, "lb"),
  13819. name: "Back",
  13820. image: {
  13821. source: "./media/characters/shayla/back.svg",
  13822. extra: 1512 / 1414
  13823. }
  13824. },
  13825. hand: {
  13826. height: math.unit(0.7781496062992126, "feet"),
  13827. name: "Hand",
  13828. image: {
  13829. source: "./media/characters/shayla/hand.svg"
  13830. }
  13831. },
  13832. foot: {
  13833. height: math.unit(1.4206036745406823, "feet"),
  13834. name: "Foot",
  13835. image: {
  13836. source: "./media/characters/shayla/foot.svg"
  13837. }
  13838. },
  13839. },
  13840. [
  13841. {
  13842. name: "Micro",
  13843. height: math.unit(0.32, "feet")
  13844. },
  13845. {
  13846. name: "Normal",
  13847. height: math.unit(5.24, "feet"),
  13848. default: true
  13849. },
  13850. {
  13851. name: "Macro",
  13852. height: math.unit(492.12, "feet")
  13853. },
  13854. {
  13855. name: "Megamacro",
  13856. height: math.unit(186.41, "miles")
  13857. },
  13858. ]
  13859. ))
  13860. characterMakers.push(() => makeCharacter(
  13861. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13862. {
  13863. front: {
  13864. height: math.unit(2.2, "m"),
  13865. weight: math.unit(120, "kg"),
  13866. name: "Front",
  13867. image: {
  13868. source: "./media/characters/pia-jr/front.svg",
  13869. extra: 1000 / 970,
  13870. bottom: 0.035
  13871. }
  13872. },
  13873. hand: {
  13874. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13875. name: "Hand",
  13876. image: {
  13877. source: "./media/characters/pia-jr/hand.svg"
  13878. }
  13879. },
  13880. paw: {
  13881. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13882. name: "Paw",
  13883. image: {
  13884. source: "./media/characters/pia-jr/paw.svg"
  13885. }
  13886. },
  13887. },
  13888. [
  13889. {
  13890. name: "Micro",
  13891. height: math.unit(1.2, "cm")
  13892. },
  13893. {
  13894. name: "Normal",
  13895. height: math.unit(2.2, "m"),
  13896. default: true
  13897. },
  13898. {
  13899. name: "Macro",
  13900. height: math.unit(180, "m")
  13901. },
  13902. {
  13903. name: "Megamacro",
  13904. height: math.unit(420, "km")
  13905. },
  13906. ]
  13907. ))
  13908. characterMakers.push(() => makeCharacter(
  13909. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13910. {
  13911. front: {
  13912. height: math.unit(2, "m"),
  13913. weight: math.unit(115, "kg"),
  13914. name: "Front",
  13915. image: {
  13916. source: "./media/characters/pia-sr/front.svg",
  13917. extra: 760 / 730,
  13918. bottom: 0.015
  13919. }
  13920. },
  13921. back: {
  13922. height: math.unit(2, "m"),
  13923. weight: math.unit(115, "kg"),
  13924. name: "Back",
  13925. image: {
  13926. source: "./media/characters/pia-sr/back.svg",
  13927. extra: 760 / 730,
  13928. bottom: 0.01
  13929. }
  13930. },
  13931. hand: {
  13932. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13933. name: "Hand",
  13934. image: {
  13935. source: "./media/characters/pia-sr/hand.svg"
  13936. }
  13937. },
  13938. foot: {
  13939. height: math.unit(1.83, "feet"),
  13940. name: "Foot",
  13941. image: {
  13942. source: "./media/characters/pia-sr/foot.svg"
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Micro",
  13949. height: math.unit(88, "mm")
  13950. },
  13951. {
  13952. name: "Normal",
  13953. height: math.unit(2, "m"),
  13954. default: true
  13955. },
  13956. {
  13957. name: "Macro",
  13958. height: math.unit(200, "m")
  13959. },
  13960. {
  13961. name: "Megamacro",
  13962. height: math.unit(420, "km")
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13968. {
  13969. front: {
  13970. height: math.unit(8 + 2 / 12, "feet"),
  13971. weight: math.unit(300, "lb"),
  13972. name: "Front",
  13973. image: {
  13974. source: "./media/characters/kibibyte/front.svg",
  13975. extra: 2221 / 2098,
  13976. bottom: 0.04
  13977. }
  13978. },
  13979. },
  13980. [
  13981. {
  13982. name: "Normal",
  13983. height: math.unit(8 + 2 / 12, "feet"),
  13984. default: true
  13985. },
  13986. {
  13987. name: "Socialable Macro",
  13988. height: math.unit(50, "feet")
  13989. },
  13990. {
  13991. name: "Macro",
  13992. height: math.unit(300, "feet")
  13993. },
  13994. {
  13995. name: "Megamacro",
  13996. height: math.unit(500, "miles")
  13997. },
  13998. ]
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14002. {
  14003. front: {
  14004. height: math.unit(6, "feet"),
  14005. weight: math.unit(150, "lb"),
  14006. name: "Front",
  14007. image: {
  14008. source: "./media/characters/felix/front.svg",
  14009. extra: 762 / 722,
  14010. bottom: 0.02
  14011. }
  14012. },
  14013. frontClothed: {
  14014. height: math.unit(6, "feet"),
  14015. weight: math.unit(150, "lb"),
  14016. name: "Front (Clothed)",
  14017. image: {
  14018. source: "./media/characters/felix/front-clothed.svg",
  14019. extra: 762 / 722,
  14020. bottom: 0.02
  14021. }
  14022. },
  14023. },
  14024. [
  14025. {
  14026. name: "Normal",
  14027. height: math.unit(6 + 8 / 12, "feet"),
  14028. default: true
  14029. },
  14030. {
  14031. name: "Macro",
  14032. height: math.unit(2600, "feet")
  14033. },
  14034. {
  14035. name: "Megamacro",
  14036. height: math.unit(450, "miles")
  14037. },
  14038. ]
  14039. ))
  14040. characterMakers.push(() => makeCharacter(
  14041. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14042. {
  14043. front: {
  14044. height: math.unit(6 + 1 / 12, "feet"),
  14045. weight: math.unit(250, "lb"),
  14046. name: "Front",
  14047. image: {
  14048. source: "./media/characters/tobo/front.svg",
  14049. extra: 608 / 586,
  14050. bottom: 0.023
  14051. }
  14052. },
  14053. back: {
  14054. height: math.unit(6 + 1 / 12, "feet"),
  14055. weight: math.unit(250, "lb"),
  14056. name: "Back",
  14057. image: {
  14058. source: "./media/characters/tobo/back.svg",
  14059. extra: 608 / 586
  14060. }
  14061. },
  14062. },
  14063. [
  14064. {
  14065. name: "Nano",
  14066. height: math.unit(2, "nm")
  14067. },
  14068. {
  14069. name: "Megamicro",
  14070. height: math.unit(0.1, "mm")
  14071. },
  14072. {
  14073. name: "Micro",
  14074. height: math.unit(1, "inch"),
  14075. default: true
  14076. },
  14077. {
  14078. name: "Human-sized",
  14079. height: math.unit(6 + 1 / 12, "feet")
  14080. },
  14081. {
  14082. name: "Macro",
  14083. height: math.unit(250, "feet")
  14084. },
  14085. {
  14086. name: "Megamacro",
  14087. height: math.unit(75, "miles")
  14088. },
  14089. {
  14090. name: "Texas-sized",
  14091. height: math.unit(750, "miles")
  14092. },
  14093. {
  14094. name: "Teramacro",
  14095. height: math.unit(50000, "miles")
  14096. },
  14097. ]
  14098. ))
  14099. characterMakers.push(() => makeCharacter(
  14100. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14101. {
  14102. front: {
  14103. height: math.unit(6, "feet"),
  14104. weight: math.unit(269, "lb"),
  14105. name: "Front",
  14106. image: {
  14107. source: "./media/characters/danny-kapowsky/front.svg",
  14108. extra: 766 / 736,
  14109. bottom: 0.044
  14110. }
  14111. },
  14112. back: {
  14113. height: math.unit(6, "feet"),
  14114. weight: math.unit(269, "lb"),
  14115. name: "Back",
  14116. image: {
  14117. source: "./media/characters/danny-kapowsky/back.svg",
  14118. extra: 797 / 760,
  14119. bottom: 0.025
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Macro",
  14126. height: math.unit(150, "feet"),
  14127. default: true
  14128. },
  14129. {
  14130. name: "Macro+",
  14131. height: math.unit(200, "feet")
  14132. },
  14133. {
  14134. name: "Macro++",
  14135. height: math.unit(300, "feet")
  14136. },
  14137. {
  14138. name: "Macro+++",
  14139. height: math.unit(400, "feet")
  14140. },
  14141. ]
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14145. {
  14146. side: {
  14147. height: math.unit(6, "feet"),
  14148. weight: math.unit(170, "lb"),
  14149. name: "Side",
  14150. image: {
  14151. source: "./media/characters/finn/side.svg",
  14152. extra: 1953 / 1807,
  14153. bottom: 0.057
  14154. }
  14155. },
  14156. },
  14157. [
  14158. {
  14159. name: "Megamacro",
  14160. height: math.unit(14445, "feet"),
  14161. default: true
  14162. },
  14163. ]
  14164. ))
  14165. characterMakers.push(() => makeCharacter(
  14166. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14167. {
  14168. front: {
  14169. height: math.unit(5 + 6 / 12, "feet"),
  14170. weight: math.unit(125, "lb"),
  14171. name: "Front",
  14172. image: {
  14173. source: "./media/characters/roy/front.svg",
  14174. extra: 1,
  14175. bottom: 0.11
  14176. }
  14177. },
  14178. },
  14179. [
  14180. {
  14181. name: "Micro",
  14182. height: math.unit(3, "inches"),
  14183. default: true
  14184. },
  14185. {
  14186. name: "Normal",
  14187. height: math.unit(5 + 6 / 12, "feet")
  14188. },
  14189. {
  14190. name: "Lesser Macro",
  14191. height: math.unit(60, "feet")
  14192. },
  14193. {
  14194. name: "Greater Macro",
  14195. height: math.unit(120, "feet")
  14196. },
  14197. ]
  14198. ))
  14199. characterMakers.push(() => makeCharacter(
  14200. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14201. {
  14202. front: {
  14203. height: math.unit(6, "feet"),
  14204. weight: math.unit(100, "lb"),
  14205. name: "Front",
  14206. image: {
  14207. source: "./media/characters/aevsivs/front.svg",
  14208. extra: 1,
  14209. bottom: 0.03
  14210. }
  14211. },
  14212. back: {
  14213. height: math.unit(6, "feet"),
  14214. weight: math.unit(100, "lb"),
  14215. name: "Back",
  14216. image: {
  14217. source: "./media/characters/aevsivs/back.svg"
  14218. }
  14219. },
  14220. },
  14221. [
  14222. {
  14223. name: "Micro",
  14224. height: math.unit(2, "inches"),
  14225. default: true
  14226. },
  14227. {
  14228. name: "Normal",
  14229. height: math.unit(5, "feet")
  14230. },
  14231. ]
  14232. ))
  14233. characterMakers.push(() => makeCharacter(
  14234. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14235. {
  14236. front: {
  14237. height: math.unit(5 + 7 / 12, "feet"),
  14238. weight: math.unit(159, "lb"),
  14239. name: "Front",
  14240. image: {
  14241. source: "./media/characters/hildegard/front.svg",
  14242. extra: 289 / 269,
  14243. bottom: 7.63 / 297.8
  14244. }
  14245. },
  14246. back: {
  14247. height: math.unit(5 + 7 / 12, "feet"),
  14248. weight: math.unit(159, "lb"),
  14249. name: "Back",
  14250. image: {
  14251. source: "./media/characters/hildegard/back.svg",
  14252. extra: 280 / 260,
  14253. bottom: 2.3 / 282
  14254. }
  14255. },
  14256. },
  14257. [
  14258. {
  14259. name: "Normal",
  14260. height: math.unit(5 + 7 / 12, "feet"),
  14261. default: true
  14262. },
  14263. ]
  14264. ))
  14265. characterMakers.push(() => makeCharacter(
  14266. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14267. {
  14268. bernard: {
  14269. height: math.unit(2 + 7 / 12, "feet"),
  14270. weight: math.unit(66, "lb"),
  14271. name: "Bernard",
  14272. rename: true,
  14273. image: {
  14274. source: "./media/characters/bernard-wilder/bernard.svg",
  14275. extra: 192 / 128,
  14276. bottom: 0.05
  14277. }
  14278. },
  14279. wilder: {
  14280. height: math.unit(5 + 8 / 12, "feet"),
  14281. weight: math.unit(143, "lb"),
  14282. name: "Wilder",
  14283. rename: true,
  14284. image: {
  14285. source: "./media/characters/bernard-wilder/wilder.svg",
  14286. extra: 361 / 312,
  14287. bottom: 0.02
  14288. }
  14289. },
  14290. },
  14291. [
  14292. {
  14293. name: "Normal",
  14294. height: math.unit(2 + 7 / 12, "feet"),
  14295. default: true
  14296. },
  14297. ]
  14298. ))
  14299. characterMakers.push(() => makeCharacter(
  14300. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14301. {
  14302. anthro: {
  14303. height: math.unit(6 + 1 / 12, "feet"),
  14304. weight: math.unit(155, "lb"),
  14305. name: "Anthro",
  14306. image: {
  14307. source: "./media/characters/hearth/anthro.svg",
  14308. extra: 260 / 250,
  14309. bottom: 0.02
  14310. }
  14311. },
  14312. feral: {
  14313. height: math.unit(3.78, "feet"),
  14314. weight: math.unit(35, "kg"),
  14315. name: "Feral",
  14316. image: {
  14317. source: "./media/characters/hearth/feral.svg",
  14318. extra: 153 / 135,
  14319. bottom: 0.03
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "Normal",
  14326. height: math.unit(6 + 1 / 12, "feet"),
  14327. default: true
  14328. },
  14329. ]
  14330. ))
  14331. characterMakers.push(() => makeCharacter(
  14332. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14333. {
  14334. front: {
  14335. height: math.unit(6, "feet"),
  14336. weight: math.unit(182, "lb"),
  14337. name: "Front",
  14338. image: {
  14339. source: "./media/characters/ingrid/front.svg",
  14340. extra: 294 / 268,
  14341. bottom: 0.027
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Normal",
  14348. height: math.unit(6, "feet"),
  14349. default: true
  14350. },
  14351. ]
  14352. ))
  14353. characterMakers.push(() => makeCharacter(
  14354. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14355. {
  14356. eevee: {
  14357. height: math.unit(2 + 10 / 12, "feet"),
  14358. weight: math.unit(86, "lb"),
  14359. name: "Malgam",
  14360. image: {
  14361. source: "./media/characters/malgam/eevee.svg",
  14362. extra: 218 / 180,
  14363. bottom: 0.2
  14364. }
  14365. },
  14366. sylveon: {
  14367. height: math.unit(4, "feet"),
  14368. weight: math.unit(101, "lb"),
  14369. name: "Future Malgam",
  14370. rename: true,
  14371. image: {
  14372. source: "./media/characters/malgam/sylveon.svg",
  14373. extra: 371 / 325,
  14374. bottom: 0.015
  14375. }
  14376. },
  14377. gigantamax: {
  14378. height: math.unit(50, "feet"),
  14379. name: "Gigantamax Malgam",
  14380. rename: true,
  14381. image: {
  14382. source: "./media/characters/malgam/gigantamax.svg"
  14383. }
  14384. },
  14385. },
  14386. [
  14387. {
  14388. name: "Normal",
  14389. height: math.unit(2 + 10 / 12, "feet"),
  14390. default: true
  14391. },
  14392. ]
  14393. ))
  14394. characterMakers.push(() => makeCharacter(
  14395. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14396. {
  14397. front: {
  14398. height: math.unit(5 + 11 / 12, "feet"),
  14399. weight: math.unit(188, "lb"),
  14400. name: "Front",
  14401. image: {
  14402. source: "./media/characters/fleur/front.svg",
  14403. extra: 309 / 283,
  14404. bottom: 0.007
  14405. }
  14406. },
  14407. },
  14408. [
  14409. {
  14410. name: "Normal",
  14411. height: math.unit(5 + 11 / 12, "feet"),
  14412. default: true
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14418. {
  14419. front: {
  14420. height: math.unit(5 + 4 / 12, "feet"),
  14421. weight: math.unit(122, "lb"),
  14422. name: "Front",
  14423. image: {
  14424. source: "./media/characters/jude/front.svg",
  14425. extra: 288 / 273,
  14426. bottom: 0.03
  14427. }
  14428. },
  14429. },
  14430. [
  14431. {
  14432. name: "Normal",
  14433. height: math.unit(5 + 4 / 12, "feet"),
  14434. default: true
  14435. },
  14436. ]
  14437. ))
  14438. characterMakers.push(() => makeCharacter(
  14439. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14440. {
  14441. front: {
  14442. height: math.unit(5 + 11 / 12, "feet"),
  14443. weight: math.unit(190, "lb"),
  14444. name: "Front",
  14445. image: {
  14446. source: "./media/characters/seara/front.svg",
  14447. extra: 1,
  14448. bottom: 0.05
  14449. }
  14450. },
  14451. },
  14452. [
  14453. {
  14454. name: "Normal",
  14455. height: math.unit(5 + 11 / 12, "feet"),
  14456. default: true
  14457. },
  14458. ]
  14459. ))
  14460. characterMakers.push(() => makeCharacter(
  14461. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14462. {
  14463. front: {
  14464. height: math.unit(16 + 5 / 12, "feet"),
  14465. weight: math.unit(524, "lb"),
  14466. name: "Front",
  14467. image: {
  14468. source: "./media/characters/caspian/front.svg",
  14469. extra: 1,
  14470. bottom: 0.04
  14471. }
  14472. },
  14473. },
  14474. [
  14475. {
  14476. name: "Normal",
  14477. height: math.unit(16 + 5 / 12, "feet"),
  14478. default: true
  14479. },
  14480. ]
  14481. ))
  14482. characterMakers.push(() => makeCharacter(
  14483. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14484. {
  14485. front: {
  14486. height: math.unit(5 + 7 / 12, "feet"),
  14487. weight: math.unit(170, "lb"),
  14488. name: "Front",
  14489. image: {
  14490. source: "./media/characters/mika/front.svg",
  14491. extra: 1,
  14492. bottom: 0.016
  14493. }
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Normal",
  14499. height: math.unit(5 + 7 / 12, "feet"),
  14500. default: true
  14501. },
  14502. ]
  14503. ))
  14504. characterMakers.push(() => makeCharacter(
  14505. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14506. {
  14507. front: {
  14508. height: math.unit(6 + 2 / 12, "feet"),
  14509. weight: math.unit(268, "lb"),
  14510. name: "Front",
  14511. image: {
  14512. source: "./media/characters/sol/front.svg",
  14513. extra: 247 / 231,
  14514. bottom: 0.05
  14515. }
  14516. },
  14517. },
  14518. [
  14519. {
  14520. name: "Normal",
  14521. height: math.unit(6 + 2 / 12, "feet"),
  14522. default: true
  14523. },
  14524. ]
  14525. ))
  14526. characterMakers.push(() => makeCharacter(
  14527. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14528. {
  14529. buizel: {
  14530. height: math.unit(2 + 5 / 12, "feet"),
  14531. weight: math.unit(87, "lb"),
  14532. name: "Buizel",
  14533. image: {
  14534. source: "./media/characters/umiko/buizel.svg",
  14535. extra: 172 / 157,
  14536. bottom: 0.01
  14537. }
  14538. },
  14539. floatzel: {
  14540. height: math.unit(5 + 9 / 12, "feet"),
  14541. weight: math.unit(250, "lb"),
  14542. name: "Floatzel",
  14543. image: {
  14544. source: "./media/characters/umiko/floatzel.svg",
  14545. extra: 262 / 248
  14546. }
  14547. },
  14548. },
  14549. [
  14550. {
  14551. name: "Normal",
  14552. height: math.unit(2 + 5 / 12, "feet"),
  14553. default: true
  14554. },
  14555. ]
  14556. ))
  14557. characterMakers.push(() => makeCharacter(
  14558. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14559. {
  14560. front: {
  14561. height: math.unit(6 + 2 / 12, "feet"),
  14562. weight: math.unit(146, "lb"),
  14563. name: "Front",
  14564. image: {
  14565. source: "./media/characters/iliac/front.svg",
  14566. extra: 389 / 365,
  14567. bottom: 0.035
  14568. }
  14569. },
  14570. },
  14571. [
  14572. {
  14573. name: "Normal",
  14574. height: math.unit(6 + 2 / 12, "feet"),
  14575. default: true
  14576. },
  14577. ]
  14578. ))
  14579. characterMakers.push(() => makeCharacter(
  14580. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14581. {
  14582. front: {
  14583. height: math.unit(6, "feet"),
  14584. weight: math.unit(170, "lb"),
  14585. name: "Front",
  14586. image: {
  14587. source: "./media/characters/topaz/front.svg",
  14588. extra: 317 / 303,
  14589. bottom: 0.055
  14590. }
  14591. },
  14592. },
  14593. [
  14594. {
  14595. name: "Normal",
  14596. height: math.unit(6, "feet"),
  14597. default: true
  14598. },
  14599. ]
  14600. ))
  14601. characterMakers.push(() => makeCharacter(
  14602. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14603. {
  14604. front: {
  14605. height: math.unit(5 + 11 / 12, "feet"),
  14606. weight: math.unit(144, "lb"),
  14607. name: "Front",
  14608. image: {
  14609. source: "./media/characters/gabriel/front.svg",
  14610. extra: 285 / 262,
  14611. bottom: 0.004
  14612. }
  14613. },
  14614. },
  14615. [
  14616. {
  14617. name: "Normal",
  14618. height: math.unit(5 + 11 / 12, "feet"),
  14619. default: true
  14620. },
  14621. ]
  14622. ))
  14623. characterMakers.push(() => makeCharacter(
  14624. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14625. {
  14626. side: {
  14627. height: math.unit(6 + 5 / 12, "feet"),
  14628. weight: math.unit(300, "lb"),
  14629. name: "Side",
  14630. image: {
  14631. source: "./media/characters/tempest-suicune/side.svg",
  14632. extra: 195 / 154,
  14633. bottom: 0.04
  14634. }
  14635. },
  14636. },
  14637. [
  14638. {
  14639. name: "Normal",
  14640. height: math.unit(6 + 5 / 12, "feet"),
  14641. default: true
  14642. },
  14643. ]
  14644. ))
  14645. characterMakers.push(() => makeCharacter(
  14646. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14647. {
  14648. front: {
  14649. height: math.unit(7 + 2 / 12, "feet"),
  14650. weight: math.unit(322, "lb"),
  14651. name: "Front",
  14652. image: {
  14653. source: "./media/characters/vulcan/front.svg",
  14654. extra: 154 / 147,
  14655. bottom: 0.04
  14656. }
  14657. },
  14658. },
  14659. [
  14660. {
  14661. name: "Normal",
  14662. height: math.unit(7 + 2 / 12, "feet"),
  14663. default: true
  14664. },
  14665. ]
  14666. ))
  14667. characterMakers.push(() => makeCharacter(
  14668. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14669. {
  14670. front: {
  14671. height: math.unit(5 + 10 / 12, "feet"),
  14672. weight: math.unit(264, "lb"),
  14673. name: "Front",
  14674. image: {
  14675. source: "./media/characters/gault/front.svg",
  14676. extra: 161 / 140,
  14677. bottom: 0.028
  14678. }
  14679. },
  14680. },
  14681. [
  14682. {
  14683. name: "Normal",
  14684. height: math.unit(5 + 10 / 12, "feet"),
  14685. default: true
  14686. },
  14687. ]
  14688. ))
  14689. characterMakers.push(() => makeCharacter(
  14690. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14691. {
  14692. front: {
  14693. height: math.unit(6, "feet"),
  14694. weight: math.unit(150, "lb"),
  14695. name: "Front",
  14696. image: {
  14697. source: "./media/characters/shard/front.svg",
  14698. extra: 273 / 238,
  14699. bottom: 0.02
  14700. }
  14701. },
  14702. },
  14703. [
  14704. {
  14705. name: "Normal",
  14706. height: math.unit(3 + 6 / 12, "feet"),
  14707. default: true
  14708. },
  14709. ]
  14710. ))
  14711. characterMakers.push(() => makeCharacter(
  14712. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14713. {
  14714. front: {
  14715. height: math.unit(5 + 11 / 12, "feet"),
  14716. weight: math.unit(146, "lb"),
  14717. name: "Front",
  14718. image: {
  14719. source: "./media/characters/ashe/front.svg",
  14720. extra: 400 / 373,
  14721. bottom: 0.01
  14722. }
  14723. },
  14724. },
  14725. [
  14726. {
  14727. name: "Normal",
  14728. height: math.unit(5 + 11 / 12, "feet"),
  14729. default: true
  14730. },
  14731. ]
  14732. ))
  14733. characterMakers.push(() => makeCharacter(
  14734. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14735. {
  14736. front: {
  14737. height: math.unit(5 + 5 / 12, "feet"),
  14738. weight: math.unit(135, "lb"),
  14739. name: "Front",
  14740. image: {
  14741. source: "./media/characters/beatrix/front.svg",
  14742. extra: 392 / 379,
  14743. bottom: 0.01
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Normal",
  14750. height: math.unit(6, "feet"),
  14751. default: true
  14752. },
  14753. ]
  14754. ))
  14755. characterMakers.push(() => makeCharacter(
  14756. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14757. {
  14758. front: {
  14759. height: math.unit(6, "feet"),
  14760. weight: math.unit(150, "lb"),
  14761. name: "Front",
  14762. image: {
  14763. source: "./media/characters/ignatius/front.svg",
  14764. extra: 245 / 222,
  14765. bottom: 0.01
  14766. }
  14767. },
  14768. },
  14769. [
  14770. {
  14771. name: "Normal",
  14772. height: math.unit(5 + 5 / 12, "feet"),
  14773. default: true
  14774. },
  14775. ]
  14776. ))
  14777. characterMakers.push(() => makeCharacter(
  14778. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14779. {
  14780. front: {
  14781. height: math.unit(6 + 2 / 12, "feet"),
  14782. weight: math.unit(138, "lb"),
  14783. name: "Front",
  14784. image: {
  14785. source: "./media/characters/mei-li/front.svg",
  14786. extra: 237 / 229,
  14787. bottom: 0.03
  14788. }
  14789. },
  14790. },
  14791. [
  14792. {
  14793. name: "Normal",
  14794. height: math.unit(6 + 2 / 12, "feet"),
  14795. default: true
  14796. },
  14797. ]
  14798. ))
  14799. characterMakers.push(() => makeCharacter(
  14800. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14801. {
  14802. front: {
  14803. height: math.unit(2 + 4 / 12, "feet"),
  14804. weight: math.unit(62, "lb"),
  14805. name: "Front",
  14806. image: {
  14807. source: "./media/characters/puru/front.svg",
  14808. extra: 206 / 149,
  14809. bottom: 0.06
  14810. }
  14811. },
  14812. },
  14813. [
  14814. {
  14815. name: "Normal",
  14816. height: math.unit(2 + 4 / 12, "feet"),
  14817. default: true
  14818. },
  14819. ]
  14820. ))
  14821. characterMakers.push(() => makeCharacter(
  14822. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14823. {
  14824. taur: {
  14825. height: math.unit(11, "feet"),
  14826. weight: math.unit(500, "lb"),
  14827. name: "Taur",
  14828. image: {
  14829. source: "./media/characters/kee/taur.svg",
  14830. extra: 1,
  14831. bottom: 0.04
  14832. }
  14833. },
  14834. },
  14835. [
  14836. {
  14837. name: "Normal",
  14838. height: math.unit(11, "feet"),
  14839. default: true
  14840. },
  14841. ]
  14842. ))
  14843. characterMakers.push(() => makeCharacter(
  14844. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14845. {
  14846. anthro: {
  14847. height: math.unit(7, "feet"),
  14848. weight: math.unit(190, "lb"),
  14849. name: "Anthro",
  14850. image: {
  14851. source: "./media/characters/cobalt-dracha/anthro.svg",
  14852. extra: 231 / 225,
  14853. bottom: 0.04
  14854. }
  14855. },
  14856. feral: {
  14857. height: math.unit(9 + 7 / 12, "feet"),
  14858. weight: math.unit(294, "lb"),
  14859. name: "Feral",
  14860. image: {
  14861. source: "./media/characters/cobalt-dracha/feral.svg",
  14862. extra: 692 / 633,
  14863. bottom: 0.05
  14864. }
  14865. },
  14866. },
  14867. [
  14868. {
  14869. name: "Normal",
  14870. height: math.unit(7, "feet"),
  14871. default: true
  14872. },
  14873. ]
  14874. ))
  14875. characterMakers.push(() => makeCharacter(
  14876. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14877. {
  14878. fallen: {
  14879. height: math.unit(11 + 8 / 12, "feet"),
  14880. weight: math.unit(485, "lb"),
  14881. name: "Java (Fallen)",
  14882. rename: true,
  14883. image: {
  14884. source: "./media/characters/java/fallen.svg",
  14885. extra: 226 / 208,
  14886. bottom: 0.005
  14887. }
  14888. },
  14889. godkin: {
  14890. height: math.unit(10 + 6 / 12, "feet"),
  14891. weight: math.unit(328, "lb"),
  14892. name: "Java (Godkin)",
  14893. rename: true,
  14894. image: {
  14895. source: "./media/characters/java/godkin.svg",
  14896. extra: 270 / 262,
  14897. bottom: 0.02
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Normal",
  14904. height: math.unit(11 + 8 / 12, "feet"),
  14905. default: true
  14906. },
  14907. ]
  14908. ))
  14909. characterMakers.push(() => makeCharacter(
  14910. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14911. {
  14912. front: {
  14913. height: math.unit(7 + 8 / 12, "feet"),
  14914. weight: math.unit(320, "lb"),
  14915. name: "Front",
  14916. image: {
  14917. source: "./media/characters/skoll/front.svg",
  14918. extra: 232 / 220,
  14919. bottom: 0.02
  14920. }
  14921. },
  14922. },
  14923. [
  14924. {
  14925. name: "Normal",
  14926. height: math.unit(7 + 8 / 12, "feet"),
  14927. default: true
  14928. },
  14929. ]
  14930. ))
  14931. characterMakers.push(() => makeCharacter(
  14932. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14933. {
  14934. front: {
  14935. height: math.unit(5 + 9 / 12, "feet"),
  14936. weight: math.unit(170, "lb"),
  14937. name: "Front",
  14938. image: {
  14939. source: "./media/characters/purna/front.svg",
  14940. extra: 239 / 229,
  14941. bottom: 0.01
  14942. }
  14943. },
  14944. },
  14945. [
  14946. {
  14947. name: "Normal",
  14948. height: math.unit(5 + 9 / 12, "feet"),
  14949. default: true
  14950. },
  14951. ]
  14952. ))
  14953. characterMakers.push(() => makeCharacter(
  14954. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14955. {
  14956. front: {
  14957. height: math.unit(5 + 9 / 12, "feet"),
  14958. weight: math.unit(142, "lb"),
  14959. name: "Front",
  14960. image: {
  14961. source: "./media/characters/kuva/front.svg",
  14962. extra: 281 / 271,
  14963. bottom: 0.006
  14964. }
  14965. },
  14966. },
  14967. [
  14968. {
  14969. name: "Normal",
  14970. height: math.unit(5 + 9 / 12, "feet"),
  14971. default: true
  14972. },
  14973. ]
  14974. ))
  14975. characterMakers.push(() => makeCharacter(
  14976. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14977. {
  14978. anthro: {
  14979. height: math.unit(9 + 2 / 12, "feet"),
  14980. weight: math.unit(270, "lb"),
  14981. name: "Anthro",
  14982. image: {
  14983. source: "./media/characters/embra/anthro.svg",
  14984. extra: 200 / 187,
  14985. bottom: 0.02
  14986. }
  14987. },
  14988. feral: {
  14989. height: math.unit(18 + 8 / 12, "feet"),
  14990. weight: math.unit(576, "lb"),
  14991. name: "Feral",
  14992. image: {
  14993. source: "./media/characters/embra/feral.svg",
  14994. extra: 152 / 137,
  14995. bottom: 0.037
  14996. }
  14997. },
  14998. },
  14999. [
  15000. {
  15001. name: "Normal",
  15002. height: math.unit(9 + 2 / 12, "feet"),
  15003. default: true
  15004. },
  15005. ]
  15006. ))
  15007. characterMakers.push(() => makeCharacter(
  15008. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15009. {
  15010. anthro: {
  15011. height: math.unit(10 + 9 / 12, "feet"),
  15012. weight: math.unit(224, "lb"),
  15013. name: "Anthro",
  15014. image: {
  15015. source: "./media/characters/grottos/anthro.svg",
  15016. extra: 350 / 332,
  15017. bottom: 0.045
  15018. }
  15019. },
  15020. feral: {
  15021. height: math.unit(20 + 7 / 12, "feet"),
  15022. weight: math.unit(629, "lb"),
  15023. name: "Feral",
  15024. image: {
  15025. source: "./media/characters/grottos/feral.svg",
  15026. extra: 207 / 190,
  15027. bottom: 0.05
  15028. }
  15029. },
  15030. },
  15031. [
  15032. {
  15033. name: "Normal",
  15034. height: math.unit(10 + 9 / 12, "feet"),
  15035. default: true
  15036. },
  15037. ]
  15038. ))
  15039. characterMakers.push(() => makeCharacter(
  15040. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15041. {
  15042. anthro: {
  15043. height: math.unit(9 + 6 / 12, "feet"),
  15044. weight: math.unit(298, "lb"),
  15045. name: "Anthro",
  15046. image: {
  15047. source: "./media/characters/frifna/anthro.svg",
  15048. extra: 282 / 269,
  15049. bottom: 0.015
  15050. }
  15051. },
  15052. feral: {
  15053. height: math.unit(16 + 2 / 12, "feet"),
  15054. weight: math.unit(624, "lb"),
  15055. name: "Feral",
  15056. image: {
  15057. source: "./media/characters/frifna/feral.svg"
  15058. }
  15059. },
  15060. },
  15061. [
  15062. {
  15063. name: "Normal",
  15064. height: math.unit(9 + 6 / 12, "feet"),
  15065. default: true
  15066. },
  15067. ]
  15068. ))
  15069. characterMakers.push(() => makeCharacter(
  15070. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15071. {
  15072. front: {
  15073. height: math.unit(6 + 2 / 12, "feet"),
  15074. weight: math.unit(168, "lb"),
  15075. name: "Front",
  15076. image: {
  15077. source: "./media/characters/elise/front.svg",
  15078. extra: 276 / 271
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(6 + 2 / 12, "feet"),
  15086. default: true
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(5 + 10 / 12, "feet"),
  15095. weight: math.unit(210, "lb"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/glade/front.svg",
  15099. extra: 258 / 247,
  15100. bottom: 0.008
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Normal",
  15107. height: math.unit(5 + 10 / 12, "feet"),
  15108. default: true
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15114. {
  15115. front: {
  15116. height: math.unit(5 + 10 / 12, "feet"),
  15117. weight: math.unit(129, "lb"),
  15118. name: "Front",
  15119. image: {
  15120. source: "./media/characters/rina/front.svg",
  15121. extra: 266 / 255,
  15122. bottom: 0.005
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(5 + 10 / 12, "feet"),
  15130. default: true
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15136. {
  15137. front: {
  15138. height: math.unit(6 + 1 / 12, "feet"),
  15139. weight: math.unit(192, "lb"),
  15140. name: "Front",
  15141. image: {
  15142. source: "./media/characters/veronica/front.svg",
  15143. extra: 319 / 309,
  15144. bottom: 0.005
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Normal",
  15151. height: math.unit(6 + 1 / 12, "feet"),
  15152. default: true
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15158. {
  15159. front: {
  15160. height: math.unit(9 + 3 / 12, "feet"),
  15161. weight: math.unit(1100, "lb"),
  15162. name: "Front",
  15163. image: {
  15164. source: "./media/characters/braxton/front.svg",
  15165. extra: 1057 / 984,
  15166. bottom: 0.05
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(9 + 3 / 12, "feet")
  15174. },
  15175. {
  15176. name: "Giant",
  15177. height: math.unit(300, "feet"),
  15178. default: true
  15179. },
  15180. {
  15181. name: "Macro",
  15182. height: math.unit(700, "feet")
  15183. },
  15184. {
  15185. name: "Megamacro",
  15186. height: math.unit(6000, "feet")
  15187. },
  15188. ]
  15189. ))
  15190. characterMakers.push(() => makeCharacter(
  15191. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15192. {
  15193. front: {
  15194. height: math.unit(6 + 7 / 12, "feet"),
  15195. weight: math.unit(150, "lb"),
  15196. name: "Front",
  15197. image: {
  15198. source: "./media/characters/blue-feyonics/front.svg",
  15199. extra: 1403 / 1306,
  15200. bottom: 0.047
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Normal",
  15207. height: math.unit(6 + 7 / 12, "feet"),
  15208. default: true
  15209. },
  15210. ]
  15211. ))
  15212. characterMakers.push(() => makeCharacter(
  15213. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15214. {
  15215. front: {
  15216. height: math.unit(1.8, "meters"),
  15217. weight: math.unit(60, "kg"),
  15218. name: "Front",
  15219. image: {
  15220. source: "./media/characters/maxwell/front.svg",
  15221. extra: 2060 / 1873
  15222. }
  15223. },
  15224. },
  15225. [
  15226. {
  15227. name: "Micro",
  15228. height: math.unit(1, "mm")
  15229. },
  15230. {
  15231. name: "Normal",
  15232. height: math.unit(1.8, "meter"),
  15233. default: true
  15234. },
  15235. {
  15236. name: "Macro",
  15237. height: math.unit(30, "meters")
  15238. },
  15239. {
  15240. name: "Megamacro",
  15241. height: math.unit(10, "km")
  15242. },
  15243. ]
  15244. ))
  15245. characterMakers.push(() => makeCharacter(
  15246. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15247. {
  15248. front: {
  15249. height: math.unit(6, "feet"),
  15250. weight: math.unit(150, "lb"),
  15251. name: "Front",
  15252. image: {
  15253. source: "./media/characters/jack/front.svg",
  15254. extra: 1754 / 1640,
  15255. bottom: 0.01
  15256. }
  15257. },
  15258. },
  15259. [
  15260. {
  15261. name: "Normal",
  15262. height: math.unit(80000, "feet"),
  15263. default: true
  15264. },
  15265. {
  15266. name: "Max size",
  15267. height: math.unit(10, "lightyears")
  15268. },
  15269. ]
  15270. ))
  15271. characterMakers.push(() => makeCharacter(
  15272. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15273. {
  15274. upright: {
  15275. height: math.unit(7, "feet"),
  15276. weight: math.unit(170, "lb"),
  15277. name: "Upright",
  15278. image: {
  15279. source: "./media/characters/cafat/upright.svg",
  15280. bottom: 0.01
  15281. }
  15282. },
  15283. uprightFull: {
  15284. height: math.unit(7, "feet"),
  15285. weight: math.unit(170, "lb"),
  15286. name: "Upright (Full)",
  15287. image: {
  15288. source: "./media/characters/cafat/upright-full.svg",
  15289. bottom: 0.01
  15290. }
  15291. },
  15292. side: {
  15293. height: math.unit(5, "feet"),
  15294. weight: math.unit(150, "lb"),
  15295. name: "Side",
  15296. image: {
  15297. source: "./media/characters/cafat/side.svg"
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Small",
  15304. height: math.unit(7, "feet"),
  15305. default: true
  15306. },
  15307. {
  15308. name: "Large",
  15309. height: math.unit(15.5, "feet")
  15310. },
  15311. ]
  15312. ))
  15313. characterMakers.push(() => makeCharacter(
  15314. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15315. {
  15316. front: {
  15317. height: math.unit(6, "feet"),
  15318. weight: math.unit(150, "lb"),
  15319. name: "Front",
  15320. image: {
  15321. source: "./media/characters/verin-raharra/front.svg",
  15322. extra: 5019 / 4835,
  15323. bottom: 0.023
  15324. }
  15325. },
  15326. },
  15327. [
  15328. {
  15329. name: "Normal",
  15330. height: math.unit(7 + 5 / 12, "feet"),
  15331. default: true
  15332. },
  15333. {
  15334. name: "Upsized",
  15335. height: math.unit(20, "feet")
  15336. },
  15337. ]
  15338. ))
  15339. characterMakers.push(() => makeCharacter(
  15340. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15341. {
  15342. front: {
  15343. height: math.unit(7, "feet"),
  15344. weight: math.unit(230, "lb"),
  15345. name: "Front",
  15346. image: {
  15347. source: "./media/characters/nakata/front.svg",
  15348. extra: 1.005,
  15349. bottom: 0.01
  15350. }
  15351. },
  15352. },
  15353. [
  15354. {
  15355. name: "Normal",
  15356. height: math.unit(7, "feet"),
  15357. default: true
  15358. },
  15359. {
  15360. name: "Big",
  15361. height: math.unit(14, "feet")
  15362. },
  15363. {
  15364. name: "Macro",
  15365. height: math.unit(400, "feet")
  15366. },
  15367. ]
  15368. ))
  15369. characterMakers.push(() => makeCharacter(
  15370. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15371. {
  15372. front: {
  15373. height: math.unit(4.91, "feet"),
  15374. weight: math.unit(100, "lb"),
  15375. name: "Front",
  15376. image: {
  15377. source: "./media/characters/lily/front.svg",
  15378. extra: 1585 / 1415,
  15379. bottom: 0.02
  15380. }
  15381. },
  15382. },
  15383. [
  15384. {
  15385. name: "Normal",
  15386. height: math.unit(4.91, "feet"),
  15387. default: true
  15388. },
  15389. ]
  15390. ))
  15391. characterMakers.push(() => makeCharacter(
  15392. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15393. {
  15394. laying: {
  15395. height: math.unit(4 + 4 / 12, "feet"),
  15396. weight: math.unit(600, "lb"),
  15397. name: "Laying",
  15398. image: {
  15399. source: "./media/characters/sheila/laying.svg",
  15400. extra: 1333 / 1265,
  15401. bottom: 0.16
  15402. }
  15403. },
  15404. },
  15405. [
  15406. {
  15407. name: "Normal",
  15408. height: math.unit(4 + 4 / 12, "feet"),
  15409. default: true
  15410. },
  15411. ]
  15412. ))
  15413. characterMakers.push(() => makeCharacter(
  15414. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15415. {
  15416. front: {
  15417. height: math.unit(6, "feet"),
  15418. weight: math.unit(190, "lb"),
  15419. name: "Front",
  15420. image: {
  15421. source: "./media/characters/sax/front.svg",
  15422. extra: 1187 / 973,
  15423. bottom: 0.042
  15424. }
  15425. },
  15426. },
  15427. [
  15428. {
  15429. name: "Micro",
  15430. height: math.unit(4, "inches"),
  15431. default: true
  15432. },
  15433. ]
  15434. ))
  15435. characterMakers.push(() => makeCharacter(
  15436. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15437. {
  15438. front: {
  15439. height: math.unit(6, "feet"),
  15440. weight: math.unit(150, "lb"),
  15441. name: "Front",
  15442. image: {
  15443. source: "./media/characters/pandora/front.svg",
  15444. extra: 2720 / 2556,
  15445. bottom: 0.015
  15446. }
  15447. },
  15448. back: {
  15449. height: math.unit(6, "feet"),
  15450. weight: math.unit(150, "lb"),
  15451. name: "Back",
  15452. image: {
  15453. source: "./media/characters/pandora/back.svg",
  15454. extra: 2720 / 2556,
  15455. bottom: 0.01
  15456. }
  15457. },
  15458. beans: {
  15459. height: math.unit(6 / 8, "feet"),
  15460. name: "Beans",
  15461. image: {
  15462. source: "./media/characters/pandora/beans.svg"
  15463. }
  15464. },
  15465. skirt: {
  15466. height: math.unit(6, "feet"),
  15467. weight: math.unit(150, "lb"),
  15468. name: "Skirt",
  15469. image: {
  15470. source: "./media/characters/pandora/skirt.svg",
  15471. extra: 1622 / 1525,
  15472. bottom: 0.015
  15473. }
  15474. },
  15475. hoodie: {
  15476. height: math.unit(6, "feet"),
  15477. weight: math.unit(150, "lb"),
  15478. name: "Hoodie",
  15479. image: {
  15480. source: "./media/characters/pandora/hoodie.svg",
  15481. extra: 1622 / 1525,
  15482. bottom: 0.015
  15483. }
  15484. },
  15485. casual: {
  15486. height: math.unit(6, "feet"),
  15487. weight: math.unit(150, "lb"),
  15488. name: "Casual",
  15489. image: {
  15490. source: "./media/characters/pandora/casual.svg",
  15491. extra: 1622 / 1525,
  15492. bottom: 0.015
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Normal",
  15499. height: math.unit(6, "feet")
  15500. },
  15501. {
  15502. name: "Big Steppy",
  15503. height: math.unit(1, "km"),
  15504. default: true
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15510. {
  15511. side: {
  15512. height: math.unit(10, "feet"),
  15513. weight: math.unit(800, "kg"),
  15514. name: "Side",
  15515. image: {
  15516. source: "./media/characters/venio-darcony/side.svg",
  15517. extra: 1373 / 1003,
  15518. bottom: 0.037
  15519. }
  15520. },
  15521. front: {
  15522. height: math.unit(19, "feet"),
  15523. weight: math.unit(800, "kg"),
  15524. name: "Front",
  15525. image: {
  15526. source: "./media/characters/venio-darcony/front.svg"
  15527. }
  15528. },
  15529. back: {
  15530. height: math.unit(19, "feet"),
  15531. weight: math.unit(800, "kg"),
  15532. name: "Back",
  15533. image: {
  15534. source: "./media/characters/venio-darcony/back.svg"
  15535. }
  15536. },
  15537. sideNsfw: {
  15538. height: math.unit(10, "feet"),
  15539. weight: math.unit(800, "kg"),
  15540. name: "Side (NSFW)",
  15541. image: {
  15542. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15543. extra: 1373 / 1003,
  15544. bottom: 0.037
  15545. }
  15546. },
  15547. frontNsfw: {
  15548. height: math.unit(19, "feet"),
  15549. weight: math.unit(800, "kg"),
  15550. name: "Front (NSFW)",
  15551. image: {
  15552. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15553. }
  15554. },
  15555. backNsfw: {
  15556. height: math.unit(19, "feet"),
  15557. weight: math.unit(800, "kg"),
  15558. name: "Back (NSFW)",
  15559. image: {
  15560. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15561. }
  15562. },
  15563. sideArmored: {
  15564. height: math.unit(10, "feet"),
  15565. weight: math.unit(800, "kg"),
  15566. name: "Side (Armored)",
  15567. image: {
  15568. source: "./media/characters/venio-darcony/side-armored.svg",
  15569. extra: 1373 / 1003,
  15570. bottom: 0.037
  15571. }
  15572. },
  15573. frontArmored: {
  15574. height: math.unit(19, "feet"),
  15575. weight: math.unit(900, "kg"),
  15576. name: "Front (Armored)",
  15577. image: {
  15578. source: "./media/characters/venio-darcony/front-armored.svg"
  15579. }
  15580. },
  15581. backArmored: {
  15582. height: math.unit(19, "feet"),
  15583. weight: math.unit(900, "kg"),
  15584. name: "Back (Armored)",
  15585. image: {
  15586. source: "./media/characters/venio-darcony/back-armored.svg"
  15587. }
  15588. },
  15589. sword: {
  15590. height: math.unit(10, "feet"),
  15591. weight: math.unit(50, "lb"),
  15592. name: "Sword",
  15593. image: {
  15594. source: "./media/characters/venio-darcony/sword.svg"
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(10, "feet")
  15602. },
  15603. {
  15604. name: "Macro",
  15605. height: math.unit(130, "feet"),
  15606. default: true
  15607. },
  15608. {
  15609. name: "Macro+",
  15610. height: math.unit(240, "feet")
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(6, "feet"),
  15619. weight: math.unit(150, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/veski/front.svg",
  15623. extra: 1299 / 1225,
  15624. bottom: 0.04
  15625. }
  15626. },
  15627. back: {
  15628. height: math.unit(6, "feet"),
  15629. weight: math.unit(150, "lb"),
  15630. name: "Back",
  15631. image: {
  15632. source: "./media/characters/veski/back.svg",
  15633. extra: 1299 / 1225,
  15634. bottom: 0.008
  15635. }
  15636. },
  15637. maw: {
  15638. height: math.unit(1.5 * 1.21, "feet"),
  15639. name: "Maw",
  15640. image: {
  15641. source: "./media/characters/veski/maw.svg"
  15642. }
  15643. },
  15644. },
  15645. [
  15646. {
  15647. name: "Macro",
  15648. height: math.unit(2, "km"),
  15649. default: true
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(5 + 7 / 12, "feet"),
  15658. name: "Front",
  15659. image: {
  15660. source: "./media/characters/isabelle/front.svg",
  15661. extra: 2130 / 1976,
  15662. bottom: 0.05
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Supermicro",
  15669. height: math.unit(10, "micrometers")
  15670. },
  15671. {
  15672. name: "Micro",
  15673. height: math.unit(1, "inch")
  15674. },
  15675. {
  15676. name: "Tiny",
  15677. height: math.unit(5, "inches")
  15678. },
  15679. {
  15680. name: "Standard",
  15681. height: math.unit(5 + 7 / 12, "inches")
  15682. },
  15683. {
  15684. name: "Macro",
  15685. height: math.unit(80, "meters"),
  15686. default: true
  15687. },
  15688. {
  15689. name: "Megamacro",
  15690. height: math.unit(250, "meters")
  15691. },
  15692. {
  15693. name: "Gigamacro",
  15694. height: math.unit(5, "km")
  15695. },
  15696. {
  15697. name: "Cosmic",
  15698. height: math.unit(2.5e6, "miles")
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15704. {
  15705. front: {
  15706. height: math.unit(6, "feet"),
  15707. weight: math.unit(150, "lb"),
  15708. name: "Front",
  15709. image: {
  15710. source: "./media/characters/hanzo/front.svg",
  15711. extra: 374 / 344,
  15712. bottom: 0.02
  15713. }
  15714. },
  15715. },
  15716. [
  15717. {
  15718. name: "Normal",
  15719. height: math.unit(8, "feet"),
  15720. default: true
  15721. },
  15722. ]
  15723. ))
  15724. characterMakers.push(() => makeCharacter(
  15725. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15726. {
  15727. front: {
  15728. height: math.unit(7, "feet"),
  15729. weight: math.unit(130, "lb"),
  15730. name: "Front",
  15731. image: {
  15732. source: "./media/characters/anna/front.svg",
  15733. extra: 169 / 145,
  15734. bottom: 0.06
  15735. }
  15736. },
  15737. full: {
  15738. height: math.unit(4.96, "feet"),
  15739. weight: math.unit(220, "lb"),
  15740. name: "Full",
  15741. image: {
  15742. source: "./media/characters/anna/full.svg",
  15743. extra: 138 / 114,
  15744. bottom: 0.15
  15745. }
  15746. },
  15747. tongue: {
  15748. height: math.unit(2.53, "feet"),
  15749. name: "Tongue",
  15750. image: {
  15751. source: "./media/characters/anna/tongue.svg"
  15752. }
  15753. },
  15754. },
  15755. [
  15756. {
  15757. name: "Normal",
  15758. height: math.unit(7, "feet"),
  15759. default: true
  15760. },
  15761. ]
  15762. ))
  15763. characterMakers.push(() => makeCharacter(
  15764. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15765. {
  15766. front: {
  15767. height: math.unit(7, "feet"),
  15768. weight: math.unit(150, "lb"),
  15769. name: "Front",
  15770. image: {
  15771. source: "./media/characters/ian-corvid/front.svg",
  15772. extra: 150 / 142,
  15773. bottom: 0.02
  15774. }
  15775. },
  15776. back: {
  15777. height: math.unit(7, "feet"),
  15778. weight: math.unit(150, "lb"),
  15779. name: "Back",
  15780. image: {
  15781. source: "./media/characters/ian-corvid/back.svg",
  15782. extra: 150 / 143,
  15783. bottom: 0.01
  15784. }
  15785. },
  15786. stomping: {
  15787. height: math.unit(7, "feet"),
  15788. weight: math.unit(150, "lb"),
  15789. name: "Stomping",
  15790. image: {
  15791. source: "./media/characters/ian-corvid/stomping.svg",
  15792. extra: 76 / 72
  15793. }
  15794. },
  15795. sitting: {
  15796. height: math.unit(7 / 1.8, "feet"),
  15797. weight: math.unit(150, "lb"),
  15798. name: "Sitting",
  15799. image: {
  15800. source: "./media/characters/ian-corvid/sitting.svg",
  15801. extra: 1400 / 1269,
  15802. bottom: 0.15
  15803. }
  15804. },
  15805. },
  15806. [
  15807. {
  15808. name: "Tiny Microw",
  15809. height: math.unit(1, "inch")
  15810. },
  15811. {
  15812. name: "Microw",
  15813. height: math.unit(6, "inches")
  15814. },
  15815. {
  15816. name: "Crow",
  15817. height: math.unit(7 + 1 / 12, "feet"),
  15818. default: true
  15819. },
  15820. {
  15821. name: "Macrow",
  15822. height: math.unit(176, "feet")
  15823. },
  15824. ]
  15825. ))
  15826. characterMakers.push(() => makeCharacter(
  15827. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15828. {
  15829. front: {
  15830. height: math.unit(5 + 7 / 12, "feet"),
  15831. weight: math.unit(147, "lb"),
  15832. name: "Front",
  15833. image: {
  15834. source: "./media/characters/natalie-kellon/front.svg",
  15835. extra: 1214 / 1141,
  15836. bottom: 0.02
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Micro",
  15843. height: math.unit(1 / 16, "inch")
  15844. },
  15845. {
  15846. name: "Tiny",
  15847. height: math.unit(4, "inches")
  15848. },
  15849. {
  15850. name: "Normal",
  15851. height: math.unit(5 + 7 / 12, "feet"),
  15852. default: true
  15853. },
  15854. {
  15855. name: "Amazon",
  15856. height: math.unit(12, "feet")
  15857. },
  15858. {
  15859. name: "Giantess",
  15860. height: math.unit(160, "meters")
  15861. },
  15862. {
  15863. name: "Titaness",
  15864. height: math.unit(800, "meters")
  15865. },
  15866. ]
  15867. ))
  15868. characterMakers.push(() => makeCharacter(
  15869. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15870. {
  15871. front: {
  15872. height: math.unit(6, "feet"),
  15873. weight: math.unit(150, "lb"),
  15874. name: "Front",
  15875. image: {
  15876. source: "./media/characters/alluria/front.svg",
  15877. extra: 806 / 738,
  15878. bottom: 0.01
  15879. }
  15880. },
  15881. side: {
  15882. height: math.unit(6, "feet"),
  15883. weight: math.unit(150, "lb"),
  15884. name: "Side",
  15885. image: {
  15886. source: "./media/characters/alluria/side.svg",
  15887. extra: 800 / 750,
  15888. }
  15889. },
  15890. back: {
  15891. height: math.unit(6, "feet"),
  15892. weight: math.unit(150, "lb"),
  15893. name: "Back",
  15894. image: {
  15895. source: "./media/characters/alluria/back.svg",
  15896. extra: 806 / 738,
  15897. }
  15898. },
  15899. frontMaid: {
  15900. height: math.unit(6, "feet"),
  15901. weight: math.unit(150, "lb"),
  15902. name: "Front (Maid)",
  15903. image: {
  15904. source: "./media/characters/alluria/front-maid.svg",
  15905. extra: 806 / 738,
  15906. bottom: 0.01
  15907. }
  15908. },
  15909. sideMaid: {
  15910. height: math.unit(6, "feet"),
  15911. weight: math.unit(150, "lb"),
  15912. name: "Side (Maid)",
  15913. image: {
  15914. source: "./media/characters/alluria/side-maid.svg",
  15915. extra: 800 / 750,
  15916. bottom: 0.005
  15917. }
  15918. },
  15919. backMaid: {
  15920. height: math.unit(6, "feet"),
  15921. weight: math.unit(150, "lb"),
  15922. name: "Back (Maid)",
  15923. image: {
  15924. source: "./media/characters/alluria/back-maid.svg",
  15925. extra: 806 / 738,
  15926. }
  15927. },
  15928. },
  15929. [
  15930. {
  15931. name: "Micro",
  15932. height: math.unit(6, "inches"),
  15933. default: true
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15939. {
  15940. front: {
  15941. height: math.unit(6, "feet"),
  15942. weight: math.unit(150, "lb"),
  15943. name: "Front",
  15944. image: {
  15945. source: "./media/characters/kyle/front.svg",
  15946. extra: 1069 / 962,
  15947. bottom: 77.228 / 1727.45
  15948. }
  15949. },
  15950. },
  15951. [
  15952. {
  15953. name: "Macro",
  15954. height: math.unit(150, "feet"),
  15955. default: true
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15961. {
  15962. front: {
  15963. height: math.unit(6, "feet"),
  15964. weight: math.unit(300, "lb"),
  15965. name: "Front",
  15966. image: {
  15967. source: "./media/characters/duncan/front.svg",
  15968. extra: 1650 / 1482,
  15969. bottom: 0.05
  15970. }
  15971. },
  15972. },
  15973. [
  15974. {
  15975. name: "Macro",
  15976. height: math.unit(100, "feet"),
  15977. default: true
  15978. },
  15979. ]
  15980. ))
  15981. characterMakers.push(() => makeCharacter(
  15982. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15983. {
  15984. front: {
  15985. height: math.unit(5 + 4 / 12, "feet"),
  15986. weight: math.unit(220, "lb"),
  15987. name: "Front",
  15988. image: {
  15989. source: "./media/characters/memory/front.svg",
  15990. extra: 3641 / 3545,
  15991. bottom: 0.03
  15992. }
  15993. },
  15994. back: {
  15995. height: math.unit(5 + 4 / 12, "feet"),
  15996. weight: math.unit(220, "lb"),
  15997. name: "Back",
  15998. image: {
  15999. source: "./media/characters/memory/back.svg",
  16000. extra: 3641 / 3545,
  16001. bottom: 0.025
  16002. }
  16003. },
  16004. frontSkirt: {
  16005. height: math.unit(5 + 4 / 12, "feet"),
  16006. weight: math.unit(220, "lb"),
  16007. name: "Front (Skirt)",
  16008. image: {
  16009. source: "./media/characters/memory/front-skirt.svg",
  16010. extra: 3641 / 3545,
  16011. bottom: 0.03
  16012. }
  16013. },
  16014. frontDress: {
  16015. height: math.unit(5 + 4 / 12, "feet"),
  16016. weight: math.unit(220, "lb"),
  16017. name: "Front (Dress)",
  16018. image: {
  16019. source: "./media/characters/memory/front-dress.svg",
  16020. extra: 3641 / 3545,
  16021. bottom: 0.03
  16022. }
  16023. },
  16024. },
  16025. [
  16026. {
  16027. name: "Micro",
  16028. height: math.unit(6, "inches"),
  16029. default: true
  16030. },
  16031. {
  16032. name: "Normal",
  16033. height: math.unit(5 + 4 / 12, "feet")
  16034. },
  16035. ]
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16039. {
  16040. front: {
  16041. height: math.unit(4 + 11 / 12, "feet"),
  16042. weight: math.unit(100, "lb"),
  16043. name: "Front",
  16044. image: {
  16045. source: "./media/characters/luno/front.svg",
  16046. extra: 1535 / 1487,
  16047. bottom: 0.03
  16048. }
  16049. },
  16050. },
  16051. [
  16052. {
  16053. name: "Micro",
  16054. height: math.unit(3, "inches")
  16055. },
  16056. {
  16057. name: "Normal",
  16058. height: math.unit(4 + 11 / 12, "feet"),
  16059. default: true
  16060. },
  16061. {
  16062. name: "Macro",
  16063. height: math.unit(300, "feet")
  16064. },
  16065. {
  16066. name: "Megamacro",
  16067. height: math.unit(700, "miles")
  16068. },
  16069. ]
  16070. ))
  16071. characterMakers.push(() => makeCharacter(
  16072. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16073. {
  16074. front: {
  16075. height: math.unit(6 + 2 / 12, "feet"),
  16076. weight: math.unit(170, "lb"),
  16077. name: "Front",
  16078. image: {
  16079. source: "./media/characters/jamesy/front.svg",
  16080. extra: 440 / 382,
  16081. bottom: 0.005
  16082. }
  16083. },
  16084. },
  16085. [
  16086. {
  16087. name: "Micro",
  16088. height: math.unit(3, "inches")
  16089. },
  16090. {
  16091. name: "Normal",
  16092. height: math.unit(6 + 2 / 12, "feet"),
  16093. default: true
  16094. },
  16095. {
  16096. name: "Macro",
  16097. height: math.unit(300, "feet")
  16098. },
  16099. {
  16100. name: "Megamacro",
  16101. height: math.unit(700, "miles")
  16102. },
  16103. ]
  16104. ))
  16105. characterMakers.push(() => makeCharacter(
  16106. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16107. {
  16108. front: {
  16109. height: math.unit(6, "feet"),
  16110. weight: math.unit(160, "lb"),
  16111. name: "Front",
  16112. image: {
  16113. source: "./media/characters/mark/front.svg",
  16114. extra: 3300 / 3100,
  16115. bottom: 136.42 / 3440.47
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Macro",
  16122. height: math.unit(120, "meters")
  16123. },
  16124. {
  16125. name: "Bigger Macro",
  16126. height: math.unit(350, "meters")
  16127. },
  16128. {
  16129. name: "Megamacro",
  16130. height: math.unit(8, "km"),
  16131. default: true
  16132. },
  16133. {
  16134. name: "Continental",
  16135. height: math.unit(4550, "km")
  16136. },
  16137. {
  16138. name: "Planetary",
  16139. height: math.unit(65000, "km")
  16140. },
  16141. ]
  16142. ))
  16143. characterMakers.push(() => makeCharacter(
  16144. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16145. {
  16146. front: {
  16147. height: math.unit(6, "feet"),
  16148. weight: math.unit(400, "lb"),
  16149. name: "Front",
  16150. image: {
  16151. source: "./media/characters/mac/front.svg",
  16152. extra: 1048 / 987.7,
  16153. bottom: 60 / 1107.6,
  16154. }
  16155. },
  16156. },
  16157. [
  16158. {
  16159. name: "Macro",
  16160. height: math.unit(500, "feet"),
  16161. default: true
  16162. },
  16163. ]
  16164. ))
  16165. characterMakers.push(() => makeCharacter(
  16166. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16167. {
  16168. front: {
  16169. height: math.unit(5 + 2 / 12, "feet"),
  16170. weight: math.unit(190, "lb"),
  16171. name: "Front",
  16172. image: {
  16173. source: "./media/characters/bari/front.svg",
  16174. extra: 3156 / 2880,
  16175. bottom: 0.03
  16176. }
  16177. },
  16178. back: {
  16179. height: math.unit(5 + 2 / 12, "feet"),
  16180. weight: math.unit(190, "lb"),
  16181. name: "Back",
  16182. image: {
  16183. source: "./media/characters/bari/back.svg",
  16184. extra: 3260 / 2834,
  16185. bottom: 0.025
  16186. }
  16187. },
  16188. frontPlush: {
  16189. height: math.unit(5 + 2 / 12, "feet"),
  16190. weight: math.unit(190, "lb"),
  16191. name: "Front (Plush)",
  16192. image: {
  16193. source: "./media/characters/bari/front-plush.svg",
  16194. extra: 1112 / 1061,
  16195. bottom: 0.002
  16196. }
  16197. },
  16198. },
  16199. [
  16200. {
  16201. name: "Micro",
  16202. height: math.unit(3, "inches")
  16203. },
  16204. {
  16205. name: "Normal",
  16206. height: math.unit(5 + 2 / 12, "feet"),
  16207. default: true
  16208. },
  16209. {
  16210. name: "Macro",
  16211. height: math.unit(20, "feet")
  16212. },
  16213. ]
  16214. ))
  16215. characterMakers.push(() => makeCharacter(
  16216. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16217. {
  16218. front: {
  16219. height: math.unit(6 + 1 / 12, "feet"),
  16220. weight: math.unit(275, "lb"),
  16221. name: "Front",
  16222. image: {
  16223. source: "./media/characters/hunter-misha-raven/front.svg"
  16224. }
  16225. },
  16226. },
  16227. [
  16228. {
  16229. name: "Mortal",
  16230. height: math.unit(6 + 1 / 12, "feet")
  16231. },
  16232. {
  16233. name: "Divine",
  16234. height: math.unit(1.12134e34, "parsecs"),
  16235. default: true
  16236. },
  16237. ]
  16238. ))
  16239. characterMakers.push(() => makeCharacter(
  16240. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16241. {
  16242. front: {
  16243. height: math.unit(6 + 3 / 12, "feet"),
  16244. weight: math.unit(220, "lb"),
  16245. name: "Front",
  16246. image: {
  16247. source: "./media/characters/max-calore/front.svg",
  16248. extra: 1700 / 1648,
  16249. bottom: 0.01
  16250. }
  16251. },
  16252. back: {
  16253. height: math.unit(6 + 3 / 12, "feet"),
  16254. weight: math.unit(220, "lb"),
  16255. name: "Back",
  16256. image: {
  16257. source: "./media/characters/max-calore/back.svg",
  16258. extra: 1700 / 1648,
  16259. bottom: 0.01
  16260. }
  16261. },
  16262. },
  16263. [
  16264. {
  16265. name: "Normal",
  16266. height: math.unit(6 + 3 / 12, "feet"),
  16267. default: true
  16268. },
  16269. ]
  16270. ))
  16271. characterMakers.push(() => makeCharacter(
  16272. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16273. {
  16274. side: {
  16275. height: math.unit(2 + 8 / 12, "feet"),
  16276. weight: math.unit(99, "lb"),
  16277. name: "Side",
  16278. image: {
  16279. source: "./media/characters/aspen/side.svg",
  16280. extra: 152 / 138,
  16281. bottom: 0.032
  16282. }
  16283. },
  16284. },
  16285. [
  16286. {
  16287. name: "Normal",
  16288. height: math.unit(2 + 8 / 12, "feet"),
  16289. default: true
  16290. },
  16291. ]
  16292. ))
  16293. characterMakers.push(() => makeCharacter(
  16294. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16295. {
  16296. side: {
  16297. height: math.unit(3 + 2 / 12, "feet"),
  16298. weight: math.unit(224, "lb"),
  16299. name: "Side",
  16300. image: {
  16301. source: "./media/characters/sheila-feral-wolf/side.svg",
  16302. extra: 179 / 166,
  16303. bottom: 0.03
  16304. }
  16305. },
  16306. },
  16307. [
  16308. {
  16309. name: "Normal",
  16310. height: math.unit(3 + 2 / 12, "feet"),
  16311. default: true
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16317. {
  16318. side: {
  16319. height: math.unit(1 + 9 / 12, "feet"),
  16320. weight: math.unit(38, "lb"),
  16321. name: "Side",
  16322. image: {
  16323. source: "./media/characters/michelle/side.svg",
  16324. extra: 147 / 136.7,
  16325. bottom: 0.03
  16326. }
  16327. },
  16328. },
  16329. [
  16330. {
  16331. name: "Normal",
  16332. height: math.unit(1 + 9 / 12, "feet"),
  16333. default: true
  16334. },
  16335. ]
  16336. ))
  16337. characterMakers.push(() => makeCharacter(
  16338. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16339. {
  16340. front: {
  16341. height: math.unit(1 + 1 / 12, "feet"),
  16342. weight: math.unit(18, "lb"),
  16343. name: "Front",
  16344. image: {
  16345. source: "./media/characters/nino/front.svg"
  16346. }
  16347. },
  16348. },
  16349. [
  16350. {
  16351. name: "Normal",
  16352. height: math.unit(1 + 1 / 12, "feet"),
  16353. default: true
  16354. },
  16355. ]
  16356. ))
  16357. characterMakers.push(() => makeCharacter(
  16358. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16359. {
  16360. front: {
  16361. height: math.unit(1, "feet"),
  16362. weight: math.unit(16, "lb"),
  16363. name: "Front",
  16364. image: {
  16365. source: "./media/characters/viola/front.svg"
  16366. }
  16367. },
  16368. },
  16369. [
  16370. {
  16371. name: "Normal",
  16372. height: math.unit(1, "feet"),
  16373. default: true
  16374. },
  16375. ]
  16376. ))
  16377. characterMakers.push(() => makeCharacter(
  16378. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16379. {
  16380. front: {
  16381. height: math.unit(6 + 5 / 12, "feet"),
  16382. weight: math.unit(580, "lb"),
  16383. name: "Front",
  16384. image: {
  16385. source: "./media/characters/atlas/front.svg",
  16386. extra: 298.5 / 290,
  16387. bottom: 0.015
  16388. }
  16389. },
  16390. },
  16391. [
  16392. {
  16393. name: "Normal",
  16394. height: math.unit(6 + 5 / 12, "feet"),
  16395. default: true
  16396. },
  16397. ]
  16398. ))
  16399. characterMakers.push(() => makeCharacter(
  16400. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16401. {
  16402. side: {
  16403. height: math.unit(1 + 10 / 12, "feet"),
  16404. weight: math.unit(25, "lb"),
  16405. name: "Side",
  16406. image: {
  16407. source: "./media/characters/davy/side.svg",
  16408. extra: 200 / 170,
  16409. bottom: 0.01
  16410. }
  16411. },
  16412. },
  16413. [
  16414. {
  16415. name: "Normal",
  16416. height: math.unit(1 + 10 / 12, "feet"),
  16417. default: true
  16418. },
  16419. ]
  16420. ))
  16421. characterMakers.push(() => makeCharacter(
  16422. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16423. {
  16424. side: {
  16425. height: math.unit(4 + 8 / 12, "feet"),
  16426. weight: math.unit(166, "lb"),
  16427. name: "Side",
  16428. image: {
  16429. source: "./media/characters/fiona/side.svg",
  16430. extra: 232 / 220,
  16431. bottom: 0.03
  16432. }
  16433. },
  16434. },
  16435. [
  16436. {
  16437. name: "Normal",
  16438. height: math.unit(4 + 8 / 12, "feet"),
  16439. default: true
  16440. },
  16441. ]
  16442. ))
  16443. characterMakers.push(() => makeCharacter(
  16444. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16445. {
  16446. front: {
  16447. height: math.unit(2, "feet"),
  16448. weight: math.unit(62, "lb"),
  16449. name: "Front",
  16450. image: {
  16451. source: "./media/characters/lyla/front.svg",
  16452. bottom: 0.1
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Normal",
  16459. height: math.unit(2, "feet"),
  16460. default: true
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16466. {
  16467. side: {
  16468. height: math.unit(1.8, "feet"),
  16469. weight: math.unit(44, "lb"),
  16470. name: "Side",
  16471. image: {
  16472. source: "./media/characters/perseus/side.svg",
  16473. bottom: 0.21
  16474. }
  16475. },
  16476. },
  16477. [
  16478. {
  16479. name: "Normal",
  16480. height: math.unit(1.8, "feet"),
  16481. default: true
  16482. },
  16483. ]
  16484. ))
  16485. characterMakers.push(() => makeCharacter(
  16486. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16487. {
  16488. side: {
  16489. height: math.unit(4 + 2 / 12, "feet"),
  16490. weight: math.unit(20, "lb"),
  16491. name: "Side",
  16492. image: {
  16493. source: "./media/characters/remus/side.svg"
  16494. }
  16495. },
  16496. },
  16497. [
  16498. {
  16499. name: "Normal",
  16500. height: math.unit(4 + 2 / 12, "feet"),
  16501. default: true
  16502. },
  16503. ]
  16504. ))
  16505. characterMakers.push(() => makeCharacter(
  16506. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16507. {
  16508. front: {
  16509. height: math.unit(4 + 11 / 12, "feet"),
  16510. weight: math.unit(114, "lb"),
  16511. name: "Front",
  16512. image: {
  16513. source: "./media/characters/raf/front.svg",
  16514. bottom: 20.5 / 1863
  16515. }
  16516. },
  16517. side: {
  16518. height: math.unit(4 + 11 / 12, "feet"),
  16519. weight: math.unit(114, "lb"),
  16520. name: "Side",
  16521. image: {
  16522. source: "./media/characters/raf/side.svg",
  16523. bottom: 22 / 1822
  16524. }
  16525. },
  16526. },
  16527. [
  16528. {
  16529. name: "Micro",
  16530. height: math.unit(2, "inches")
  16531. },
  16532. {
  16533. name: "Normal",
  16534. height: math.unit(4 + 11 / 12, "feet"),
  16535. default: true
  16536. },
  16537. {
  16538. name: "Macro",
  16539. height: math.unit(70, "feet")
  16540. },
  16541. ]
  16542. ))
  16543. characterMakers.push(() => makeCharacter(
  16544. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16545. {
  16546. front: {
  16547. height: math.unit(1.5, "meters"),
  16548. weight: math.unit(68, "kg"),
  16549. name: "Front",
  16550. image: {
  16551. source: "./media/characters/liam-einarr/front.svg",
  16552. extra: 2822 / 2666
  16553. }
  16554. },
  16555. back: {
  16556. height: math.unit(1.5, "meters"),
  16557. weight: math.unit(68, "kg"),
  16558. name: "Back",
  16559. image: {
  16560. source: "./media/characters/liam-einarr/back.svg",
  16561. extra: 2822 / 2666,
  16562. bottom: 0.015
  16563. }
  16564. },
  16565. },
  16566. [
  16567. {
  16568. name: "Normal",
  16569. height: math.unit(1.5, "meters"),
  16570. default: true
  16571. },
  16572. {
  16573. name: "Macro",
  16574. height: math.unit(150, "meters")
  16575. },
  16576. {
  16577. name: "Megamacro",
  16578. height: math.unit(35, "km")
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16584. {
  16585. front: {
  16586. height: math.unit(6, "feet"),
  16587. weight: math.unit(75, "kg"),
  16588. name: "Front",
  16589. image: {
  16590. source: "./media/characters/linda/front.svg",
  16591. extra: 930 / 874,
  16592. bottom: 0.004
  16593. }
  16594. },
  16595. },
  16596. [
  16597. {
  16598. name: "Normal",
  16599. height: math.unit(6, "feet"),
  16600. default: true
  16601. },
  16602. ]
  16603. ))
  16604. characterMakers.push(() => makeCharacter(
  16605. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16606. {
  16607. front: {
  16608. height: math.unit(6 + 8 / 12, "feet"),
  16609. weight: math.unit(220, "lb"),
  16610. name: "Front",
  16611. image: {
  16612. source: "./media/characters/caylex/front.svg",
  16613. extra: 821 / 772,
  16614. bottom: 0.07
  16615. }
  16616. },
  16617. back: {
  16618. height: math.unit(6 + 8 / 12, "feet"),
  16619. weight: math.unit(220, "lb"),
  16620. name: "Back",
  16621. image: {
  16622. source: "./media/characters/caylex/back.svg",
  16623. extra: 821 / 772,
  16624. bottom: 0.022
  16625. }
  16626. },
  16627. hand: {
  16628. height: math.unit(1.25, "feet"),
  16629. name: "Hand",
  16630. image: {
  16631. source: "./media/characters/caylex/hand.svg"
  16632. }
  16633. },
  16634. foot: {
  16635. height: math.unit(1.6, "feet"),
  16636. name: "Foot",
  16637. image: {
  16638. source: "./media/characters/caylex/foot.svg"
  16639. }
  16640. },
  16641. armored: {
  16642. height: math.unit(6 + 8 / 12, "feet"),
  16643. weight: math.unit(250, "lb"),
  16644. name: "Armored",
  16645. image: {
  16646. source: "./media/characters/caylex/armored.svg",
  16647. extra: 1420 / 1310,
  16648. bottom: 0.045
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Normal",
  16655. height: math.unit(6 + 8 / 12, "feet"),
  16656. default: true
  16657. },
  16658. {
  16659. name: "Normal+",
  16660. height: math.unit(12, "feet")
  16661. },
  16662. ]
  16663. ))
  16664. characterMakers.push(() => makeCharacter(
  16665. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16666. {
  16667. front: {
  16668. height: math.unit(7 + 6 / 12, "feet"),
  16669. weight: math.unit(288, "lb"),
  16670. name: "Front",
  16671. image: {
  16672. source: "./media/characters/alana/front.svg",
  16673. extra: 679 / 653,
  16674. bottom: 22.5 / 701
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Normal",
  16681. height: math.unit(7 + 6 / 12, "feet")
  16682. },
  16683. {
  16684. name: "Large",
  16685. height: math.unit(50, "feet")
  16686. },
  16687. {
  16688. name: "Macro",
  16689. height: math.unit(100, "feet"),
  16690. default: true
  16691. },
  16692. {
  16693. name: "Macro+",
  16694. height: math.unit(200, "feet")
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16700. {
  16701. front: {
  16702. height: math.unit(6 + 1 / 12, "feet"),
  16703. weight: math.unit(210, "lb"),
  16704. name: "Front",
  16705. image: {
  16706. source: "./media/characters/hasani/front.svg",
  16707. extra: 244 / 232,
  16708. bottom: 0.01
  16709. }
  16710. },
  16711. back: {
  16712. height: math.unit(6 + 1 / 12, "feet"),
  16713. weight: math.unit(210, "lb"),
  16714. name: "Back",
  16715. image: {
  16716. source: "./media/characters/hasani/back.svg",
  16717. extra: 244 / 232,
  16718. bottom: 0.01
  16719. }
  16720. },
  16721. },
  16722. [
  16723. {
  16724. name: "Normal",
  16725. height: math.unit(6 + 1 / 12, "feet")
  16726. },
  16727. {
  16728. name: "Macro",
  16729. height: math.unit(175, "feet"),
  16730. default: true
  16731. },
  16732. ]
  16733. ))
  16734. characterMakers.push(() => makeCharacter(
  16735. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16736. {
  16737. front: {
  16738. height: math.unit(1.82, "meters"),
  16739. weight: math.unit(140, "lb"),
  16740. name: "Front",
  16741. image: {
  16742. source: "./media/characters/nita/front.svg",
  16743. extra: 2473 / 2363,
  16744. bottom: 0.01
  16745. }
  16746. },
  16747. },
  16748. [
  16749. {
  16750. name: "Normal",
  16751. height: math.unit(1.82, "m")
  16752. },
  16753. {
  16754. name: "Macro",
  16755. height: math.unit(300, "m")
  16756. },
  16757. {
  16758. name: "Mistake Canon",
  16759. height: math.unit(0.5, "miles"),
  16760. default: true
  16761. },
  16762. {
  16763. name: "Big Mistake",
  16764. height: math.unit(13, "miles")
  16765. },
  16766. {
  16767. name: "Playing God",
  16768. height: math.unit(2450, "miles")
  16769. },
  16770. ]
  16771. ))
  16772. characterMakers.push(() => makeCharacter(
  16773. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16774. {
  16775. front: {
  16776. height: math.unit(4, "feet"),
  16777. weight: math.unit(120, "lb"),
  16778. name: "Front",
  16779. image: {
  16780. source: "./media/characters/shiriko/front.svg",
  16781. extra: 195 / 188
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Normal",
  16788. height: math.unit(4, "feet"),
  16789. default: true
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16795. {
  16796. front: {
  16797. height: math.unit(6, "feet"),
  16798. name: "front",
  16799. image: {
  16800. source: "./media/characters/deja/front.svg",
  16801. extra: 926 / 840,
  16802. bottom: 0.07
  16803. }
  16804. },
  16805. },
  16806. [
  16807. {
  16808. name: "Planck Length",
  16809. height: math.unit(1.6e-35, "meters")
  16810. },
  16811. {
  16812. name: "Normal",
  16813. height: math.unit(30.48, "meters"),
  16814. default: true
  16815. },
  16816. {
  16817. name: "Universal",
  16818. height: math.unit(8.8e26, "meters")
  16819. },
  16820. ]
  16821. ))
  16822. characterMakers.push(() => makeCharacter(
  16823. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16824. {
  16825. side: {
  16826. height: math.unit(8, "feet"),
  16827. weight: math.unit(6300, "lb"),
  16828. name: "Side",
  16829. image: {
  16830. source: "./media/characters/anima/side.svg",
  16831. bottom: 0.035
  16832. }
  16833. },
  16834. },
  16835. [
  16836. {
  16837. name: "Normal",
  16838. height: math.unit(8, "feet"),
  16839. default: true
  16840. },
  16841. ]
  16842. ))
  16843. characterMakers.push(() => makeCharacter(
  16844. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16845. {
  16846. front: {
  16847. height: math.unit(8, "feet"),
  16848. weight: math.unit(350, "lb"),
  16849. name: "Front",
  16850. image: {
  16851. source: "./media/characters/bianca/front.svg",
  16852. extra: 234 / 225,
  16853. bottom: 0.03
  16854. }
  16855. },
  16856. },
  16857. [
  16858. {
  16859. name: "Normal",
  16860. height: math.unit(8, "feet"),
  16861. default: true
  16862. },
  16863. ]
  16864. ))
  16865. characterMakers.push(() => makeCharacter(
  16866. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16867. {
  16868. front: {
  16869. height: math.unit(6, "feet"),
  16870. weight: math.unit(150, "lb"),
  16871. name: "Front",
  16872. image: {
  16873. source: "./media/characters/adinia/front.svg",
  16874. extra: 1845 / 1672,
  16875. bottom: 0.02
  16876. }
  16877. },
  16878. back: {
  16879. height: math.unit(6, "feet"),
  16880. weight: math.unit(150, "lb"),
  16881. name: "Back",
  16882. image: {
  16883. source: "./media/characters/adinia/back.svg",
  16884. extra: 1845 / 1672,
  16885. bottom: 0.002
  16886. }
  16887. },
  16888. },
  16889. [
  16890. {
  16891. name: "Normal",
  16892. height: math.unit(11 + 5 / 12, "feet"),
  16893. default: true
  16894. },
  16895. ]
  16896. ))
  16897. characterMakers.push(() => makeCharacter(
  16898. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16899. {
  16900. front: {
  16901. height: math.unit(3, "meters"),
  16902. weight: math.unit(200, "kg"),
  16903. name: "Front",
  16904. image: {
  16905. source: "./media/characters/lykasa/front.svg",
  16906. extra: 1076 / 976,
  16907. bottom: 0.06
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(3, "meters")
  16915. },
  16916. {
  16917. name: "Kaiju",
  16918. height: math.unit(120, "meters"),
  16919. default: true
  16920. },
  16921. {
  16922. name: "Mega Kaiju",
  16923. height: math.unit(240, "km")
  16924. },
  16925. {
  16926. name: "Giga Kaiju",
  16927. height: math.unit(400, "megameters")
  16928. },
  16929. {
  16930. name: "Tera Kaiju",
  16931. height: math.unit(800, "gigameters")
  16932. },
  16933. {
  16934. name: "Kaiju Dragon Goddess",
  16935. height: math.unit(26, "zettaparsecs")
  16936. },
  16937. ]
  16938. ))
  16939. characterMakers.push(() => makeCharacter(
  16940. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16941. {
  16942. side: {
  16943. height: math.unit(283 / 124 * 6, "feet"),
  16944. weight: math.unit(35000, "lb"),
  16945. name: "Side",
  16946. image: {
  16947. source: "./media/characters/malfaren/side.svg",
  16948. extra: 2500 / 1010,
  16949. bottom: 0.01
  16950. }
  16951. },
  16952. front: {
  16953. height: math.unit(22.36, "feet"),
  16954. weight: math.unit(35000, "lb"),
  16955. name: "Front",
  16956. image: {
  16957. source: "./media/characters/malfaren/front.svg",
  16958. extra: 1631 / 1476,
  16959. bottom: 0.01
  16960. }
  16961. },
  16962. maw: {
  16963. height: math.unit(6.9, "feet"),
  16964. name: "Maw",
  16965. image: {
  16966. source: "./media/characters/malfaren/maw.svg"
  16967. }
  16968. },
  16969. },
  16970. [
  16971. {
  16972. name: "Big",
  16973. height: math.unit(283 / 162 * 6, "feet"),
  16974. },
  16975. {
  16976. name: "Bigger",
  16977. height: math.unit(283 / 124 * 6, "feet")
  16978. },
  16979. {
  16980. name: "Massive",
  16981. height: math.unit(283 / 92 * 6, "feet"),
  16982. default: true
  16983. },
  16984. {
  16985. name: "👀💦",
  16986. height: math.unit(283 / 73 * 6, "feet"),
  16987. },
  16988. ]
  16989. ))
  16990. characterMakers.push(() => makeCharacter(
  16991. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16992. {
  16993. front: {
  16994. height: math.unit(1.7, "m"),
  16995. weight: math.unit(70, "kg"),
  16996. name: "Front",
  16997. image: {
  16998. source: "./media/characters/kernel/front.svg",
  16999. extra: 222 / 210,
  17000. bottom: 0.007
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Nano",
  17007. height: math.unit(17, "micrometers")
  17008. },
  17009. {
  17010. name: "Micro",
  17011. height: math.unit(1.7, "mm")
  17012. },
  17013. {
  17014. name: "Small",
  17015. height: math.unit(1.7, "cm")
  17016. },
  17017. {
  17018. name: "Normal",
  17019. height: math.unit(1.7, "m"),
  17020. default: true
  17021. },
  17022. ]
  17023. ))
  17024. characterMakers.push(() => makeCharacter(
  17025. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17026. {
  17027. front: {
  17028. height: math.unit(1.75, "meters"),
  17029. weight: math.unit(65, "kg"),
  17030. name: "Front",
  17031. image: {
  17032. source: "./media/characters/jayne-folest/front.svg",
  17033. extra: 2115 / 2007,
  17034. bottom: 0.02
  17035. }
  17036. },
  17037. back: {
  17038. height: math.unit(1.75, "meters"),
  17039. weight: math.unit(65, "kg"),
  17040. name: "Back",
  17041. image: {
  17042. source: "./media/characters/jayne-folest/back.svg",
  17043. extra: 2115 / 2007,
  17044. bottom: 0.005
  17045. }
  17046. },
  17047. frontClothed: {
  17048. height: math.unit(1.75, "meters"),
  17049. weight: math.unit(65, "kg"),
  17050. name: "Front (Clothed)",
  17051. image: {
  17052. source: "./media/characters/jayne-folest/front-clothed.svg",
  17053. extra: 2115 / 2007,
  17054. bottom: 0.035
  17055. }
  17056. },
  17057. hand: {
  17058. height: math.unit(1 / 1.260, "feet"),
  17059. name: "Hand",
  17060. image: {
  17061. source: "./media/characters/jayne-folest/hand.svg"
  17062. }
  17063. },
  17064. foot: {
  17065. height: math.unit(1 / 0.918, "feet"),
  17066. name: "Foot",
  17067. image: {
  17068. source: "./media/characters/jayne-folest/foot.svg"
  17069. }
  17070. },
  17071. },
  17072. [
  17073. {
  17074. name: "Micro",
  17075. height: math.unit(4, "cm")
  17076. },
  17077. {
  17078. name: "Normal",
  17079. height: math.unit(1.75, "meters")
  17080. },
  17081. {
  17082. name: "Macro",
  17083. height: math.unit(47.5, "meters"),
  17084. default: true
  17085. },
  17086. ]
  17087. ))
  17088. characterMakers.push(() => makeCharacter(
  17089. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17090. {
  17091. front: {
  17092. height: math.unit(180, "cm"),
  17093. weight: math.unit(70, "kg"),
  17094. name: "Front",
  17095. image: {
  17096. source: "./media/characters/algier/front.svg",
  17097. extra: 596 / 572,
  17098. bottom: 0.04
  17099. }
  17100. },
  17101. back: {
  17102. height: math.unit(180, "cm"),
  17103. weight: math.unit(70, "kg"),
  17104. name: "Back",
  17105. image: {
  17106. source: "./media/characters/algier/back.svg",
  17107. extra: 596 / 572,
  17108. bottom: 0.025
  17109. }
  17110. },
  17111. frontdressed: {
  17112. height: math.unit(180, "cm"),
  17113. weight: math.unit(150, "kg"),
  17114. name: "Front-dressed",
  17115. image: {
  17116. source: "./media/characters/algier/front-dressed.svg",
  17117. extra: 596 / 572,
  17118. bottom: 0.038
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Micro",
  17125. height: math.unit(5, "cm")
  17126. },
  17127. {
  17128. name: "Normal",
  17129. height: math.unit(180, "cm"),
  17130. default: true
  17131. },
  17132. {
  17133. name: "Macro",
  17134. height: math.unit(64, "m")
  17135. },
  17136. ]
  17137. ))
  17138. characterMakers.push(() => makeCharacter(
  17139. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17140. {
  17141. upright: {
  17142. height: math.unit(7, "feet"),
  17143. weight: math.unit(300, "lb"),
  17144. name: "Upright",
  17145. image: {
  17146. source: "./media/characters/pretzel/upright.svg",
  17147. extra: 534 / 522,
  17148. bottom: 0.065
  17149. }
  17150. },
  17151. sprawling: {
  17152. height: math.unit(3.75, "feet"),
  17153. weight: math.unit(300, "lb"),
  17154. name: "Sprawling",
  17155. image: {
  17156. source: "./media/characters/pretzel/sprawling.svg",
  17157. extra: 314 / 281,
  17158. bottom: 0.1
  17159. }
  17160. },
  17161. tongue: {
  17162. height: math.unit(2, "feet"),
  17163. name: "Tongue",
  17164. image: {
  17165. source: "./media/characters/pretzel/tongue.svg"
  17166. }
  17167. },
  17168. },
  17169. [
  17170. {
  17171. name: "Normal",
  17172. height: math.unit(7, "feet"),
  17173. default: true
  17174. },
  17175. {
  17176. name: "Oversized",
  17177. height: math.unit(15, "feet")
  17178. },
  17179. {
  17180. name: "Huge",
  17181. height: math.unit(30, "feet")
  17182. },
  17183. {
  17184. name: "Macro",
  17185. height: math.unit(250, "feet")
  17186. },
  17187. ]
  17188. ))
  17189. characterMakers.push(() => makeCharacter(
  17190. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17191. {
  17192. sideFront: {
  17193. height: math.unit(5 + 2 / 12, "feet"),
  17194. weight: math.unit(120, "lb"),
  17195. name: "Front Side",
  17196. image: {
  17197. source: "./media/characters/roxi/side-front.svg",
  17198. extra: 2924 / 2717,
  17199. bottom: 0.08
  17200. }
  17201. },
  17202. sideBack: {
  17203. height: math.unit(5 + 2 / 12, "feet"),
  17204. weight: math.unit(120, "lb"),
  17205. name: "Back Side",
  17206. image: {
  17207. source: "./media/characters/roxi/side-back.svg",
  17208. extra: 2904 / 2693,
  17209. bottom: 0.06
  17210. }
  17211. },
  17212. front: {
  17213. height: math.unit(5 + 2 / 12, "feet"),
  17214. weight: math.unit(120, "lb"),
  17215. name: "Front",
  17216. image: {
  17217. source: "./media/characters/roxi/front.svg",
  17218. extra: 2028 / 1907,
  17219. bottom: 0.01
  17220. }
  17221. },
  17222. frontAlt: {
  17223. height: math.unit(5 + 2 / 12, "feet"),
  17224. weight: math.unit(120, "lb"),
  17225. name: "Front (Alt)",
  17226. image: {
  17227. source: "./media/characters/roxi/front-alt.svg",
  17228. extra: 1828 / 1798,
  17229. bottom: 0.01
  17230. }
  17231. },
  17232. sitting: {
  17233. height: math.unit(2.8, "feet"),
  17234. weight: math.unit(120, "lb"),
  17235. name: "Sitting",
  17236. image: {
  17237. source: "./media/characters/roxi/sitting.svg",
  17238. extra: 2660 / 2462,
  17239. bottom: 0.1
  17240. }
  17241. },
  17242. },
  17243. [
  17244. {
  17245. name: "Normal",
  17246. height: math.unit(5 + 2 / 12, "feet"),
  17247. default: true
  17248. },
  17249. ]
  17250. ))
  17251. characterMakers.push(() => makeCharacter(
  17252. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17253. {
  17254. side: {
  17255. height: math.unit(55, "feet"),
  17256. weight: math.unit(153, "tons"),
  17257. name: "Side",
  17258. image: {
  17259. source: "./media/characters/shadow/side.svg",
  17260. extra: 701 / 628,
  17261. bottom: 0.02
  17262. }
  17263. },
  17264. flying: {
  17265. height: math.unit(145, "feet"),
  17266. weight: math.unit(153, "tons"),
  17267. name: "Flying",
  17268. image: {
  17269. source: "./media/characters/shadow/flying.svg"
  17270. }
  17271. },
  17272. },
  17273. [
  17274. {
  17275. name: "Normal",
  17276. height: math.unit(55, "feet"),
  17277. default: true
  17278. },
  17279. ]
  17280. ))
  17281. characterMakers.push(() => makeCharacter(
  17282. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17283. {
  17284. front: {
  17285. height: math.unit(6, "feet"),
  17286. weight: math.unit(200, "lb"),
  17287. name: "Front",
  17288. image: {
  17289. source: "./media/characters/marcie/front.svg",
  17290. extra: 960 / 876,
  17291. bottom: 58 / 1017.87
  17292. }
  17293. },
  17294. },
  17295. [
  17296. {
  17297. name: "Macro",
  17298. height: math.unit(1, "mile"),
  17299. default: true
  17300. },
  17301. ]
  17302. ))
  17303. characterMakers.push(() => makeCharacter(
  17304. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17305. {
  17306. front: {
  17307. height: math.unit(7, "feet"),
  17308. weight: math.unit(200, "lb"),
  17309. name: "Front",
  17310. image: {
  17311. source: "./media/characters/kachina/front.svg",
  17312. extra: 1290.68 / 1119,
  17313. bottom: 36.5 / 1327.18
  17314. }
  17315. },
  17316. },
  17317. [
  17318. {
  17319. name: "Normal",
  17320. height: math.unit(7, "feet"),
  17321. default: true
  17322. },
  17323. ]
  17324. ))
  17325. characterMakers.push(() => makeCharacter(
  17326. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17327. {
  17328. looking: {
  17329. height: math.unit(2, "meters"),
  17330. weight: math.unit(300, "kg"),
  17331. name: "Looking",
  17332. image: {
  17333. source: "./media/characters/kash/looking.svg",
  17334. extra: 474 / 344,
  17335. bottom: 0.03
  17336. }
  17337. },
  17338. side: {
  17339. height: math.unit(2, "meters"),
  17340. weight: math.unit(300, "kg"),
  17341. name: "Side",
  17342. image: {
  17343. source: "./media/characters/kash/side.svg",
  17344. extra: 302 / 251,
  17345. bottom: 0.03
  17346. }
  17347. },
  17348. front: {
  17349. height: math.unit(2, "meters"),
  17350. weight: math.unit(300, "kg"),
  17351. name: "Front",
  17352. image: {
  17353. source: "./media/characters/kash/front.svg",
  17354. extra: 495 / 360,
  17355. bottom: 0.015
  17356. }
  17357. },
  17358. },
  17359. [
  17360. {
  17361. name: "Normal",
  17362. height: math.unit(2, "meters"),
  17363. default: true
  17364. },
  17365. {
  17366. name: "Big",
  17367. height: math.unit(3, "meters")
  17368. },
  17369. {
  17370. name: "Large",
  17371. height: math.unit(5, "meters")
  17372. },
  17373. ]
  17374. ))
  17375. characterMakers.push(() => makeCharacter(
  17376. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17377. {
  17378. feeding: {
  17379. height: math.unit(6.7, "feet"),
  17380. weight: math.unit(350, "lb"),
  17381. name: "Feeding",
  17382. image: {
  17383. source: "./media/characters/lalim/feeding.svg",
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Normal",
  17390. height: math.unit(6.7, "feet"),
  17391. default: true
  17392. },
  17393. ]
  17394. ))
  17395. characterMakers.push(() => makeCharacter(
  17396. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17397. {
  17398. front: {
  17399. height: math.unit(9.5, "feet"),
  17400. weight: math.unit(600, "lb"),
  17401. name: "Front",
  17402. image: {
  17403. source: "./media/characters/de'vout/front.svg",
  17404. extra: 1443 / 1328,
  17405. bottom: 0.025
  17406. }
  17407. },
  17408. back: {
  17409. height: math.unit(9.5, "feet"),
  17410. weight: math.unit(600, "lb"),
  17411. name: "Back",
  17412. image: {
  17413. source: "./media/characters/de'vout/back.svg",
  17414. extra: 1443 / 1328
  17415. }
  17416. },
  17417. frontDressed: {
  17418. height: math.unit(9.5, "feet"),
  17419. weight: math.unit(600, "lb"),
  17420. name: "Front (Dressed",
  17421. image: {
  17422. source: "./media/characters/de'vout/front-dressed.svg",
  17423. extra: 1443 / 1328,
  17424. bottom: 0.025
  17425. }
  17426. },
  17427. backDressed: {
  17428. height: math.unit(9.5, "feet"),
  17429. weight: math.unit(600, "lb"),
  17430. name: "Back (Dressed",
  17431. image: {
  17432. source: "./media/characters/de'vout/back-dressed.svg",
  17433. extra: 1443 / 1328
  17434. }
  17435. },
  17436. },
  17437. [
  17438. {
  17439. name: "Normal",
  17440. height: math.unit(9.5, "feet"),
  17441. default: true
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17447. {
  17448. front: {
  17449. height: math.unit(8, "feet"),
  17450. weight: math.unit(225, "lb"),
  17451. name: "Front",
  17452. image: {
  17453. source: "./media/characters/talana/front.svg",
  17454. extra: 1410 / 1300,
  17455. bottom: 0.015
  17456. }
  17457. },
  17458. frontDressed: {
  17459. height: math.unit(8, "feet"),
  17460. weight: math.unit(225, "lb"),
  17461. name: "Front (Dressed",
  17462. image: {
  17463. source: "./media/characters/talana/front-dressed.svg",
  17464. extra: 1410 / 1300,
  17465. bottom: 0.015
  17466. }
  17467. },
  17468. },
  17469. [
  17470. {
  17471. name: "Normal",
  17472. height: math.unit(8, "feet"),
  17473. default: true
  17474. },
  17475. ]
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17479. {
  17480. side: {
  17481. height: math.unit(7.2, "feet"),
  17482. weight: math.unit(150, "lb"),
  17483. name: "Side",
  17484. image: {
  17485. source: "./media/characters/xeauvok/side.svg",
  17486. extra: 1975 / 1523,
  17487. bottom: 0.07
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Normal",
  17494. height: math.unit(7.2, "feet"),
  17495. default: true
  17496. },
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17501. {
  17502. side: {
  17503. height: math.unit(10, "feet"),
  17504. weight: math.unit(900, "kg"),
  17505. name: "Side",
  17506. image: {
  17507. source: "./media/characters/zara/side.svg",
  17508. extra: 504 / 498
  17509. }
  17510. },
  17511. },
  17512. [
  17513. {
  17514. name: "Normal",
  17515. height: math.unit(10, "feet"),
  17516. default: true
  17517. },
  17518. ]
  17519. ))
  17520. characterMakers.push(() => makeCharacter(
  17521. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17522. {
  17523. side: {
  17524. height: math.unit(6, "feet"),
  17525. weight: math.unit(150, "lb"),
  17526. name: "Side",
  17527. image: {
  17528. source: "./media/characters/richard-dragon/side.svg",
  17529. extra: 845 / 340,
  17530. bottom: 0.017
  17531. }
  17532. },
  17533. maw: {
  17534. height: math.unit(2.97, "feet"),
  17535. name: "Maw",
  17536. image: {
  17537. source: "./media/characters/richard-dragon/maw.svg"
  17538. }
  17539. },
  17540. },
  17541. [
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17546. {
  17547. front: {
  17548. height: math.unit(4, "feet"),
  17549. weight: math.unit(100, "lb"),
  17550. name: "Front",
  17551. image: {
  17552. source: "./media/characters/richard-smeargle/front.svg",
  17553. extra: 2952 / 2820,
  17554. bottom: 0.028
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(4, "feet"),
  17562. default: true
  17563. },
  17564. {
  17565. name: "Dynamax",
  17566. height: math.unit(20, "meters")
  17567. },
  17568. ]
  17569. ))
  17570. characterMakers.push(() => makeCharacter(
  17571. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17572. {
  17573. front: {
  17574. height: math.unit(6, "feet"),
  17575. weight: math.unit(110, "lb"),
  17576. name: "Front",
  17577. image: {
  17578. source: "./media/characters/klay/front.svg",
  17579. extra: 962 / 883,
  17580. bottom: 0.04
  17581. }
  17582. },
  17583. back: {
  17584. height: math.unit(6, "feet"),
  17585. weight: math.unit(110, "lb"),
  17586. name: "Back",
  17587. image: {
  17588. source: "./media/characters/klay/back.svg",
  17589. extra: 962 / 883
  17590. }
  17591. },
  17592. beans: {
  17593. height: math.unit(1.15, "feet"),
  17594. name: "Beans",
  17595. image: {
  17596. source: "./media/characters/klay/beans.svg"
  17597. }
  17598. },
  17599. },
  17600. [
  17601. {
  17602. name: "Micro",
  17603. height: math.unit(6, "inches")
  17604. },
  17605. {
  17606. name: "Mini",
  17607. height: math.unit(3, "feet")
  17608. },
  17609. {
  17610. name: "Normal",
  17611. height: math.unit(6, "feet"),
  17612. default: true
  17613. },
  17614. {
  17615. name: "Big",
  17616. height: math.unit(25, "feet")
  17617. },
  17618. {
  17619. name: "Macro",
  17620. height: math.unit(100, "feet")
  17621. },
  17622. {
  17623. name: "Megamacro",
  17624. height: math.unit(400, "feet")
  17625. },
  17626. ]
  17627. ))
  17628. characterMakers.push(() => makeCharacter(
  17629. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17630. {
  17631. front: {
  17632. height: math.unit(6, "feet"),
  17633. weight: math.unit(160, "lb"),
  17634. name: "Front",
  17635. image: {
  17636. source: "./media/characters/marcus/front.svg",
  17637. extra: 734 / 676,
  17638. bottom: 0.03
  17639. }
  17640. },
  17641. },
  17642. [
  17643. {
  17644. name: "Little",
  17645. height: math.unit(6, "feet")
  17646. },
  17647. {
  17648. name: "Normal",
  17649. height: math.unit(110, "feet"),
  17650. default: true
  17651. },
  17652. {
  17653. name: "Macro",
  17654. height: math.unit(250, "feet")
  17655. },
  17656. {
  17657. name: "Megamacro",
  17658. height: math.unit(1000, "feet")
  17659. },
  17660. ]
  17661. ))
  17662. characterMakers.push(() => makeCharacter(
  17663. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17664. {
  17665. front: {
  17666. height: math.unit(7, "feet"),
  17667. weight: math.unit(275, "lb"),
  17668. name: "Front",
  17669. image: {
  17670. source: "./media/characters/claude-delroute/front.svg",
  17671. extra: 230 / 214,
  17672. bottom: 0.007
  17673. }
  17674. },
  17675. side: {
  17676. height: math.unit(7, "feet"),
  17677. weight: math.unit(275, "lb"),
  17678. name: "Side",
  17679. image: {
  17680. source: "./media/characters/claude-delroute/side.svg",
  17681. extra: 222 / 214,
  17682. bottom: 0.01
  17683. }
  17684. },
  17685. back: {
  17686. height: math.unit(7, "feet"),
  17687. weight: math.unit(275, "lb"),
  17688. name: "Back",
  17689. image: {
  17690. source: "./media/characters/claude-delroute/back.svg",
  17691. extra: 230 / 214,
  17692. bottom: 0.015
  17693. }
  17694. },
  17695. maw: {
  17696. height: math.unit(0.6407, "meters"),
  17697. name: "Maw",
  17698. image: {
  17699. source: "./media/characters/claude-delroute/maw.svg"
  17700. }
  17701. },
  17702. },
  17703. [
  17704. {
  17705. name: "Normal",
  17706. height: math.unit(7, "feet"),
  17707. default: true
  17708. },
  17709. {
  17710. name: "Lorge",
  17711. height: math.unit(20, "feet")
  17712. },
  17713. ]
  17714. ))
  17715. characterMakers.push(() => makeCharacter(
  17716. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17717. {
  17718. front: {
  17719. height: math.unit(8 + 4 / 12, "feet"),
  17720. weight: math.unit(600, "lb"),
  17721. name: "Front",
  17722. image: {
  17723. source: "./media/characters/dragonien/front.svg",
  17724. extra: 100 / 94,
  17725. bottom: 3.3 / 103.3445
  17726. }
  17727. },
  17728. back: {
  17729. height: math.unit(8 + 4 / 12, "feet"),
  17730. weight: math.unit(600, "lb"),
  17731. name: "Back",
  17732. image: {
  17733. source: "./media/characters/dragonien/back.svg",
  17734. extra: 776 / 746,
  17735. bottom: 6.4 / 782.0616
  17736. }
  17737. },
  17738. foot: {
  17739. height: math.unit(1.54, "feet"),
  17740. name: "Foot",
  17741. image: {
  17742. source: "./media/characters/dragonien/foot.svg",
  17743. }
  17744. },
  17745. },
  17746. [
  17747. {
  17748. name: "Normal",
  17749. height: math.unit(8 + 4 / 12, "feet"),
  17750. default: true
  17751. },
  17752. {
  17753. name: "Macro",
  17754. height: math.unit(200, "feet")
  17755. },
  17756. {
  17757. name: "Megamacro",
  17758. height: math.unit(1, "mile")
  17759. },
  17760. {
  17761. name: "Gigamacro",
  17762. height: math.unit(1000, "miles")
  17763. },
  17764. ]
  17765. ))
  17766. characterMakers.push(() => makeCharacter(
  17767. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17768. {
  17769. front: {
  17770. height: math.unit(5 + 2 / 12, "feet"),
  17771. weight: math.unit(110, "lb"),
  17772. name: "Front",
  17773. image: {
  17774. source: "./media/characters/desta/front.svg",
  17775. extra: 767 / 726,
  17776. bottom: 11.7 / 779
  17777. }
  17778. },
  17779. back: {
  17780. height: math.unit(5 + 2 / 12, "feet"),
  17781. weight: math.unit(110, "lb"),
  17782. name: "Back",
  17783. image: {
  17784. source: "./media/characters/desta/back.svg",
  17785. extra: 777 / 728,
  17786. bottom: 6 / 784
  17787. }
  17788. },
  17789. frontAlt: {
  17790. height: math.unit(5 + 2 / 12, "feet"),
  17791. weight: math.unit(110, "lb"),
  17792. name: "Front",
  17793. image: {
  17794. source: "./media/characters/desta/front-alt.svg",
  17795. extra: 1482 / 1417
  17796. }
  17797. },
  17798. side: {
  17799. height: math.unit(5 + 2 / 12, "feet"),
  17800. weight: math.unit(110, "lb"),
  17801. name: "Side",
  17802. image: {
  17803. source: "./media/characters/desta/side.svg",
  17804. extra: 2579 / 2491,
  17805. bottom: 0.053
  17806. }
  17807. },
  17808. },
  17809. [
  17810. {
  17811. name: "Micro",
  17812. height: math.unit(6, "inches")
  17813. },
  17814. {
  17815. name: "Normal",
  17816. height: math.unit(5 + 2 / 12, "feet"),
  17817. default: true
  17818. },
  17819. {
  17820. name: "Macro",
  17821. height: math.unit(62, "feet")
  17822. },
  17823. {
  17824. name: "Megamacro",
  17825. height: math.unit(1800, "feet")
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17831. {
  17832. front: {
  17833. height: math.unit(10, "feet"),
  17834. weight: math.unit(700, "lb"),
  17835. name: "Front",
  17836. image: {
  17837. source: "./media/characters/storm-alystar/front.svg",
  17838. extra: 2112 / 1898,
  17839. bottom: 0.034
  17840. }
  17841. },
  17842. },
  17843. [
  17844. {
  17845. name: "Micro",
  17846. height: math.unit(3.5, "inches")
  17847. },
  17848. {
  17849. name: "Normal",
  17850. height: math.unit(10, "feet"),
  17851. default: true
  17852. },
  17853. {
  17854. name: "Macro",
  17855. height: math.unit(400, "feet")
  17856. },
  17857. {
  17858. name: "Deific",
  17859. height: math.unit(60, "miles")
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17865. {
  17866. front: {
  17867. height: math.unit(2.35, "meters"),
  17868. weight: math.unit(119, "kg"),
  17869. name: "Front",
  17870. image: {
  17871. source: "./media/characters/ilia/front.svg",
  17872. extra: 1285 / 1255,
  17873. bottom: 0.06
  17874. }
  17875. },
  17876. },
  17877. [
  17878. {
  17879. name: "Normal",
  17880. height: math.unit(2.35, "meters")
  17881. },
  17882. {
  17883. name: "Macro",
  17884. height: math.unit(140, "meters"),
  17885. default: true
  17886. },
  17887. {
  17888. name: "Megamacro",
  17889. height: math.unit(100, "miles")
  17890. },
  17891. ]
  17892. ))
  17893. characterMakers.push(() => makeCharacter(
  17894. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17895. {
  17896. front: {
  17897. height: math.unit(6 + 5 / 12, "feet"),
  17898. weight: math.unit(190, "lb"),
  17899. name: "Front",
  17900. image: {
  17901. source: "./media/characters/kingdead/front.svg",
  17902. extra: 1228 / 1177
  17903. }
  17904. },
  17905. },
  17906. [
  17907. {
  17908. name: "Micro",
  17909. height: math.unit(7, "inches")
  17910. },
  17911. {
  17912. name: "Normal",
  17913. height: math.unit(6 + 5 / 12, "feet")
  17914. },
  17915. {
  17916. name: "Macro",
  17917. height: math.unit(150, "feet"),
  17918. default: true
  17919. },
  17920. {
  17921. name: "Megamacro",
  17922. height: math.unit(200, "miles")
  17923. },
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17928. {
  17929. front: {
  17930. height: math.unit(8, "feet"),
  17931. weight: math.unit(600, "lb"),
  17932. name: "Front",
  17933. image: {
  17934. source: "./media/characters/kyrehx/front.svg",
  17935. extra: 1195 / 1095,
  17936. bottom: 0.034
  17937. }
  17938. },
  17939. },
  17940. [
  17941. {
  17942. name: "Micro",
  17943. height: math.unit(2, "inches")
  17944. },
  17945. {
  17946. name: "Normal",
  17947. height: math.unit(8, "feet"),
  17948. default: true
  17949. },
  17950. {
  17951. name: "Macro",
  17952. height: math.unit(255, "feet")
  17953. },
  17954. ]
  17955. ))
  17956. characterMakers.push(() => makeCharacter(
  17957. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17958. {
  17959. front: {
  17960. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17961. weight: math.unit(184, "lb"),
  17962. name: "Front",
  17963. image: {
  17964. source: "./media/characters/xang/front.svg",
  17965. extra: 845 / 755
  17966. }
  17967. },
  17968. },
  17969. [
  17970. {
  17971. name: "Normal",
  17972. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17973. default: true
  17974. },
  17975. {
  17976. name: "Macro",
  17977. height: math.unit(0.935 * 146, "feet")
  17978. },
  17979. {
  17980. name: "Megamacro",
  17981. height: math.unit(0.935 * 3, "miles")
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17987. {
  17988. frontDressed: {
  17989. height: math.unit(5 + 7 / 12, "feet"),
  17990. weight: math.unit(140, "lb"),
  17991. name: "Front (Dressed)",
  17992. image: {
  17993. source: "./media/characters/doc-weardno/front-dressed.svg",
  17994. extra: 263 / 234
  17995. }
  17996. },
  17997. backDressed: {
  17998. height: math.unit(5 + 7 / 12, "feet"),
  17999. weight: math.unit(140, "lb"),
  18000. name: "Back (Dressed)",
  18001. image: {
  18002. source: "./media/characters/doc-weardno/back-dressed.svg",
  18003. extra: 266 / 238
  18004. }
  18005. },
  18006. front: {
  18007. height: math.unit(5 + 7 / 12, "feet"),
  18008. weight: math.unit(140, "lb"),
  18009. name: "Front",
  18010. image: {
  18011. source: "./media/characters/doc-weardno/front.svg",
  18012. extra: 254 / 233
  18013. }
  18014. },
  18015. },
  18016. [
  18017. {
  18018. name: "Micro",
  18019. height: math.unit(3, "inches")
  18020. },
  18021. {
  18022. name: "Normal",
  18023. height: math.unit(5 + 7 / 12, "feet"),
  18024. default: true
  18025. },
  18026. {
  18027. name: "Macro",
  18028. height: math.unit(25, "feet")
  18029. },
  18030. {
  18031. name: "Megamacro",
  18032. height: math.unit(2, "miles")
  18033. },
  18034. ]
  18035. ))
  18036. characterMakers.push(() => makeCharacter(
  18037. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18038. {
  18039. front: {
  18040. height: math.unit(6 + 2 / 12, "feet"),
  18041. weight: math.unit(153, "lb"),
  18042. name: "Front",
  18043. image: {
  18044. source: "./media/characters/seth-whilst/front.svg",
  18045. bottom: 0.07
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Micro",
  18052. height: math.unit(5, "inches")
  18053. },
  18054. {
  18055. name: "Normal",
  18056. height: math.unit(6 + 2 / 12, "feet"),
  18057. default: true
  18058. },
  18059. ]
  18060. ))
  18061. characterMakers.push(() => makeCharacter(
  18062. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18063. {
  18064. front: {
  18065. height: math.unit(3, "inches"),
  18066. weight: math.unit(8, "grams"),
  18067. name: "Front",
  18068. image: {
  18069. source: "./media/characters/pocket-jabari/front.svg",
  18070. extra: 1024 / 974,
  18071. bottom: 0.039
  18072. }
  18073. },
  18074. },
  18075. [
  18076. {
  18077. name: "Minimicro",
  18078. height: math.unit(8, "mm")
  18079. },
  18080. {
  18081. name: "Micro",
  18082. height: math.unit(3, "inches"),
  18083. default: true
  18084. },
  18085. {
  18086. name: "Normal",
  18087. height: math.unit(3, "feet")
  18088. },
  18089. ]
  18090. ))
  18091. characterMakers.push(() => makeCharacter(
  18092. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18093. {
  18094. front: {
  18095. height: math.unit(15, "feet"),
  18096. weight: math.unit(3280, "lb"),
  18097. name: "Front",
  18098. image: {
  18099. source: "./media/characters/sapphy/front.svg",
  18100. extra: 671 / 577,
  18101. bottom: 0.085
  18102. }
  18103. },
  18104. back: {
  18105. height: math.unit(15, "feet"),
  18106. weight: math.unit(3280, "lb"),
  18107. name: "Back",
  18108. image: {
  18109. source: "./media/characters/sapphy/back.svg",
  18110. extra: 631 / 607,
  18111. bottom: 0.045
  18112. }
  18113. },
  18114. },
  18115. [
  18116. {
  18117. name: "Normal",
  18118. height: math.unit(15, "feet")
  18119. },
  18120. {
  18121. name: "Casual Macro",
  18122. height: math.unit(120, "feet")
  18123. },
  18124. {
  18125. name: "Macro",
  18126. height: math.unit(2150, "feet"),
  18127. default: true
  18128. },
  18129. {
  18130. name: "Megamacro",
  18131. height: math.unit(8, "miles")
  18132. },
  18133. {
  18134. name: "Galaxy Mom",
  18135. height: math.unit(6, "megalightyears")
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18141. {
  18142. front: {
  18143. height: math.unit(6, "feet"),
  18144. weight: math.unit(170, "lb"),
  18145. name: "Front",
  18146. image: {
  18147. source: "./media/characters/kiro/front.svg",
  18148. extra: 1064 / 1012,
  18149. bottom: 0.052
  18150. }
  18151. },
  18152. },
  18153. [
  18154. {
  18155. name: "Micro",
  18156. height: math.unit(6, "inches")
  18157. },
  18158. {
  18159. name: "Normal",
  18160. height: math.unit(6, "feet"),
  18161. default: true
  18162. },
  18163. {
  18164. name: "Macro",
  18165. height: math.unit(72, "feet")
  18166. },
  18167. ]
  18168. ))
  18169. characterMakers.push(() => makeCharacter(
  18170. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18171. {
  18172. front: {
  18173. height: math.unit(5 + 9 / 12, "feet"),
  18174. weight: math.unit(175, "lb"),
  18175. name: "Front",
  18176. image: {
  18177. source: "./media/characters/irishfox/front.svg",
  18178. extra: 1912 / 1680,
  18179. bottom: 0.02
  18180. }
  18181. },
  18182. },
  18183. [
  18184. {
  18185. name: "Nano",
  18186. height: math.unit(1, "mm")
  18187. },
  18188. {
  18189. name: "Micro",
  18190. height: math.unit(2, "inches")
  18191. },
  18192. {
  18193. name: "Normal",
  18194. height: math.unit(5 + 9 / 12, "feet"),
  18195. default: true
  18196. },
  18197. {
  18198. name: "Macro",
  18199. height: math.unit(45, "feet")
  18200. },
  18201. ]
  18202. ))
  18203. characterMakers.push(() => makeCharacter(
  18204. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18205. {
  18206. front: {
  18207. height: math.unit(6 + 1 / 12, "feet"),
  18208. weight: math.unit(150, "lb"),
  18209. name: "Front",
  18210. image: {
  18211. source: "./media/characters/aronai-sieyes/front.svg",
  18212. extra: 1556 / 1480,
  18213. bottom: 0.015
  18214. }
  18215. },
  18216. side: {
  18217. height: math.unit(6 + 1 / 12, "feet"),
  18218. weight: math.unit(150, "lb"),
  18219. name: "Side",
  18220. image: {
  18221. source: "./media/characters/aronai-sieyes/side.svg",
  18222. extra: 1433 / 1390,
  18223. bottom: 0.0393
  18224. }
  18225. },
  18226. back: {
  18227. height: math.unit(6 + 1 / 12, "feet"),
  18228. weight: math.unit(150, "lb"),
  18229. name: "Back",
  18230. image: {
  18231. source: "./media/characters/aronai-sieyes/back.svg",
  18232. extra: 1544 / 1494,
  18233. bottom: 0.02
  18234. }
  18235. },
  18236. frontClothed: {
  18237. height: math.unit(6 + 1 / 12, "feet"),
  18238. weight: math.unit(150, "lb"),
  18239. name: "Front (Clothed)",
  18240. image: {
  18241. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18242. extra: 1582 / 1527
  18243. }
  18244. },
  18245. feral: {
  18246. height: math.unit(18, "feet"),
  18247. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18248. name: "Feral",
  18249. image: {
  18250. source: "./media/characters/aronai-sieyes/feral.svg",
  18251. extra: 1530 / 1240,
  18252. bottom: 0.035
  18253. }
  18254. },
  18255. },
  18256. [
  18257. {
  18258. name: "Micro",
  18259. height: math.unit(2, "inches")
  18260. },
  18261. {
  18262. name: "Normal",
  18263. height: math.unit(6 + 1 / 12, "feet"),
  18264. default: true
  18265. }
  18266. ]
  18267. ))
  18268. characterMakers.push(() => makeCharacter(
  18269. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18270. {
  18271. front: {
  18272. height: math.unit(12, "feet"),
  18273. weight: math.unit(410, "kg"),
  18274. name: "Front",
  18275. image: {
  18276. source: "./media/characters/xuna/front.svg",
  18277. extra: 2184 / 1980
  18278. }
  18279. },
  18280. side: {
  18281. height: math.unit(12, "feet"),
  18282. weight: math.unit(410, "kg"),
  18283. name: "Side",
  18284. image: {
  18285. source: "./media/characters/xuna/side.svg",
  18286. extra: 2184 / 1980
  18287. }
  18288. },
  18289. back: {
  18290. height: math.unit(12, "feet"),
  18291. weight: math.unit(410, "kg"),
  18292. name: "Back",
  18293. image: {
  18294. source: "./media/characters/xuna/back.svg",
  18295. extra: 2184 / 1980
  18296. }
  18297. },
  18298. },
  18299. [
  18300. {
  18301. name: "Nano glow",
  18302. height: math.unit(10, "nm")
  18303. },
  18304. {
  18305. name: "Micro floof",
  18306. height: math.unit(0.3, "m")
  18307. },
  18308. {
  18309. name: "Huggable softy boi",
  18310. height: math.unit(3.6576, "m"),
  18311. default: true
  18312. },
  18313. {
  18314. name: "Admirable floof",
  18315. height: math.unit(80, "meters")
  18316. },
  18317. {
  18318. name: "Gentle macro",
  18319. height: math.unit(300, "meters")
  18320. },
  18321. {
  18322. name: "Very careful floof",
  18323. height: math.unit(3200, "meters")
  18324. },
  18325. {
  18326. name: "The mega floof",
  18327. height: math.unit(36000, "meters")
  18328. },
  18329. {
  18330. name: "Giga-fur-Wicker",
  18331. height: math.unit(4800000, "meters")
  18332. },
  18333. {
  18334. name: "Licky world",
  18335. height: math.unit(20000000, "meters")
  18336. },
  18337. {
  18338. name: "Floofy cyan sun",
  18339. height: math.unit(1500000000, "meters")
  18340. },
  18341. {
  18342. name: "Milky Wicker",
  18343. height: math.unit(1000000000000000000000, "meters")
  18344. },
  18345. {
  18346. name: "The observing Wicker",
  18347. height: math.unit(999999999999999999999999999, "meters")
  18348. },
  18349. ]
  18350. ))
  18351. characterMakers.push(() => makeCharacter(
  18352. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18353. {
  18354. front: {
  18355. height: math.unit(5 + 9 / 12, "feet"),
  18356. weight: math.unit(150, "lb"),
  18357. name: "Front",
  18358. image: {
  18359. source: "./media/characters/arokha-sieyes/front.svg",
  18360. extra: 1425 / 1284,
  18361. bottom: 0.05
  18362. }
  18363. },
  18364. },
  18365. [
  18366. {
  18367. name: "Normal",
  18368. height: math.unit(5 + 9 / 12, "feet")
  18369. },
  18370. {
  18371. name: "Macro",
  18372. height: math.unit(30, "meters"),
  18373. default: true
  18374. },
  18375. ]
  18376. ))
  18377. characterMakers.push(() => makeCharacter(
  18378. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18379. {
  18380. front: {
  18381. height: math.unit(6, "feet"),
  18382. weight: math.unit(180, "lb"),
  18383. name: "Front",
  18384. image: {
  18385. source: "./media/characters/arokh-sieyes/front.svg",
  18386. extra: 1830 / 1769,
  18387. bottom: 0.01
  18388. }
  18389. },
  18390. },
  18391. [
  18392. {
  18393. name: "Normal",
  18394. height: math.unit(6, "feet")
  18395. },
  18396. {
  18397. name: "Macro",
  18398. height: math.unit(30, "meters"),
  18399. default: true
  18400. },
  18401. ]
  18402. ))
  18403. characterMakers.push(() => makeCharacter(
  18404. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18405. {
  18406. side: {
  18407. height: math.unit(13 + 1 / 12, "feet"),
  18408. weight: math.unit(8.5, "tonnes"),
  18409. name: "Side",
  18410. image: {
  18411. source: "./media/characters/goldeneye/side.svg",
  18412. extra: 1182 / 778,
  18413. bottom: 0.067
  18414. }
  18415. },
  18416. paw: {
  18417. height: math.unit(3.4, "feet"),
  18418. name: "Paw",
  18419. image: {
  18420. source: "./media/characters/goldeneye/paw.svg"
  18421. }
  18422. },
  18423. },
  18424. [
  18425. {
  18426. name: "Normal",
  18427. height: math.unit(13 + 1 / 12, "feet"),
  18428. default: true
  18429. },
  18430. ]
  18431. ))
  18432. characterMakers.push(() => makeCharacter(
  18433. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18434. {
  18435. front: {
  18436. height: math.unit(6 + 1 / 12, "feet"),
  18437. weight: math.unit(210, "lb"),
  18438. name: "Front",
  18439. image: {
  18440. source: "./media/characters/leonardo-lycheborne/front.svg",
  18441. extra: 390 / 365,
  18442. bottom: 0.032
  18443. }
  18444. },
  18445. side: {
  18446. height: math.unit(6 + 1 / 12, "feet"),
  18447. weight: math.unit(210, "lb"),
  18448. name: "Side",
  18449. image: {
  18450. source: "./media/characters/leonardo-lycheborne/side.svg",
  18451. extra: 390 / 365,
  18452. bottom: 0.005
  18453. }
  18454. },
  18455. back: {
  18456. height: math.unit(6 + 1 / 12, "feet"),
  18457. weight: math.unit(210, "lb"),
  18458. name: "Back",
  18459. image: {
  18460. source: "./media/characters/leonardo-lycheborne/back.svg",
  18461. extra: 392 / 366,
  18462. bottom: 0.01
  18463. }
  18464. },
  18465. hand: {
  18466. height: math.unit(1.08, "feet"),
  18467. name: "Hand",
  18468. image: {
  18469. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18470. }
  18471. },
  18472. foot: {
  18473. height: math.unit(1.32, "feet"),
  18474. name: "Foot",
  18475. image: {
  18476. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18477. }
  18478. },
  18479. were: {
  18480. height: math.unit(20, "feet"),
  18481. weight: math.unit(7800, "lb"),
  18482. name: "Were",
  18483. image: {
  18484. source: "./media/characters/leonardo-lycheborne/were.svg",
  18485. extra: 308 / 294,
  18486. bottom: 0.048
  18487. }
  18488. },
  18489. feral: {
  18490. height: math.unit(7.5, "feet"),
  18491. weight: math.unit(600, "lb"),
  18492. name: "Feral",
  18493. image: {
  18494. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18495. extra: 210 / 186,
  18496. bottom: 0.108
  18497. }
  18498. },
  18499. taur: {
  18500. height: math.unit(11, "feet"),
  18501. weight: math.unit(3300, "lb"),
  18502. name: "Taur",
  18503. image: {
  18504. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18505. extra: 320 / 303,
  18506. bottom: 0.025
  18507. }
  18508. },
  18509. barghest: {
  18510. height: math.unit(11, "feet"),
  18511. weight: math.unit(1300, "lb"),
  18512. name: "Barghest",
  18513. image: {
  18514. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18515. extra: 323 / 302,
  18516. bottom: 0.027
  18517. }
  18518. },
  18519. dick: {
  18520. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18521. name: "Dick",
  18522. image: {
  18523. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18524. }
  18525. },
  18526. dickWere: {
  18527. height: math.unit((20) / 3.8, "feet"),
  18528. name: "Dick (Were)",
  18529. image: {
  18530. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(6 + 1 / 12, "feet"),
  18538. default: true
  18539. },
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18544. {
  18545. front: {
  18546. height: math.unit(10, "feet"),
  18547. weight: math.unit(350, "lb"),
  18548. name: "Front",
  18549. image: {
  18550. source: "./media/characters/jet/front.svg",
  18551. extra: 2050 / 1980,
  18552. bottom: 0.013
  18553. }
  18554. },
  18555. back: {
  18556. height: math.unit(10, "feet"),
  18557. weight: math.unit(350, "lb"),
  18558. name: "Back",
  18559. image: {
  18560. source: "./media/characters/jet/back.svg",
  18561. extra: 2050 / 1980,
  18562. bottom: 0.013
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Micro",
  18569. height: math.unit(6, "inches")
  18570. },
  18571. {
  18572. name: "Normal",
  18573. height: math.unit(10, "feet"),
  18574. default: true
  18575. },
  18576. {
  18577. name: "Macro",
  18578. height: math.unit(100, "feet")
  18579. },
  18580. ]
  18581. ))
  18582. characterMakers.push(() => makeCharacter(
  18583. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18584. {
  18585. front: {
  18586. height: math.unit(15, "feet"),
  18587. weight: math.unit(2800, "lb"),
  18588. name: "Front",
  18589. image: {
  18590. source: "./media/characters/tanarath/front.svg",
  18591. extra: 2392 / 2220,
  18592. bottom: 0.03
  18593. }
  18594. },
  18595. back: {
  18596. height: math.unit(15, "feet"),
  18597. weight: math.unit(2800, "lb"),
  18598. name: "Back",
  18599. image: {
  18600. source: "./media/characters/tanarath/back.svg",
  18601. extra: 2392 / 2220,
  18602. bottom: 0.03
  18603. }
  18604. },
  18605. },
  18606. [
  18607. {
  18608. name: "Normal",
  18609. height: math.unit(15, "feet"),
  18610. default: true
  18611. },
  18612. ]
  18613. ))
  18614. characterMakers.push(() => makeCharacter(
  18615. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18616. {
  18617. front: {
  18618. height: math.unit(7 + 1 / 12, "feet"),
  18619. weight: math.unit(175, "lb"),
  18620. name: "Front",
  18621. image: {
  18622. source: "./media/characters/patty-cattybatty/front.svg",
  18623. extra: 908 / 874,
  18624. bottom: 0.025
  18625. }
  18626. },
  18627. },
  18628. [
  18629. {
  18630. name: "Micro",
  18631. height: math.unit(1, "inch")
  18632. },
  18633. {
  18634. name: "Normal",
  18635. height: math.unit(7 + 1 / 12, "feet")
  18636. },
  18637. {
  18638. name: "Mini Macro",
  18639. height: math.unit(155, "feet")
  18640. },
  18641. {
  18642. name: "Macro",
  18643. height: math.unit(1077, "feet")
  18644. },
  18645. {
  18646. name: "Mega Macro",
  18647. height: math.unit(47650, "feet"),
  18648. default: true
  18649. },
  18650. {
  18651. name: "Giga Macro",
  18652. height: math.unit(440, "miles")
  18653. },
  18654. {
  18655. name: "Tera Macro",
  18656. height: math.unit(8700, "miles")
  18657. },
  18658. {
  18659. name: "Planetary Macro",
  18660. height: math.unit(32700, "miles")
  18661. },
  18662. {
  18663. name: "Solar Macro",
  18664. height: math.unit(550000, "miles")
  18665. },
  18666. {
  18667. name: "Celestial Macro",
  18668. height: math.unit(2.5, "AU")
  18669. },
  18670. ]
  18671. ))
  18672. characterMakers.push(() => makeCharacter(
  18673. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18674. {
  18675. front: {
  18676. height: math.unit(4 + 5 / 12, "feet"),
  18677. weight: math.unit(90, "lb"),
  18678. name: "Front",
  18679. image: {
  18680. source: "./media/characters/cappu/front.svg",
  18681. extra: 1247 / 1152,
  18682. bottom: 0.012
  18683. }
  18684. },
  18685. },
  18686. [
  18687. {
  18688. name: "Normal",
  18689. height: math.unit(4 + 5 / 12, "feet"),
  18690. default: true
  18691. },
  18692. ]
  18693. ))
  18694. characterMakers.push(() => makeCharacter(
  18695. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18696. {
  18697. frontDressed: {
  18698. height: math.unit(70, "cm"),
  18699. weight: math.unit(6, "kg"),
  18700. name: "Front (Dressed)",
  18701. image: {
  18702. source: "./media/characters/sebi/front-dressed.svg",
  18703. extra: 713.5 / 686.5,
  18704. bottom: 0.003
  18705. }
  18706. },
  18707. front: {
  18708. height: math.unit(70, "cm"),
  18709. weight: math.unit(5, "kg"),
  18710. name: "Front",
  18711. image: {
  18712. source: "./media/characters/sebi/front.svg",
  18713. extra: 713.5 / 686.5,
  18714. bottom: 0.003
  18715. }
  18716. }
  18717. },
  18718. [
  18719. {
  18720. name: "Normal",
  18721. height: math.unit(70, "cm"),
  18722. default: true
  18723. },
  18724. {
  18725. name: "Macro",
  18726. height: math.unit(8, "meters")
  18727. },
  18728. ]
  18729. ))
  18730. characterMakers.push(() => makeCharacter(
  18731. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18732. {
  18733. front: {
  18734. height: math.unit(6, "feet"),
  18735. weight: math.unit(150, "lb"),
  18736. name: "Front",
  18737. image: {
  18738. source: "./media/characters/typhek/front.svg",
  18739. extra: 1948 / 1929,
  18740. bottom: 0.025
  18741. }
  18742. },
  18743. side: {
  18744. height: math.unit(6, "feet"),
  18745. weight: math.unit(150, "lb"),
  18746. name: "Side",
  18747. image: {
  18748. source: "./media/characters/typhek/side.svg",
  18749. extra: 2034 / 2010,
  18750. bottom: 0.003
  18751. }
  18752. },
  18753. back: {
  18754. height: math.unit(6, "feet"),
  18755. weight: math.unit(150, "lb"),
  18756. name: "Back",
  18757. image: {
  18758. source: "./media/characters/typhek/back.svg",
  18759. extra: 2005 / 1978,
  18760. bottom: 0.004
  18761. }
  18762. },
  18763. palm: {
  18764. height: math.unit(1.2, "feet"),
  18765. name: "Palm",
  18766. image: {
  18767. source: "./media/characters/typhek/palm.svg"
  18768. }
  18769. },
  18770. fist: {
  18771. height: math.unit(1.1, "feet"),
  18772. name: "Fist",
  18773. image: {
  18774. source: "./media/characters/typhek/fist.svg"
  18775. }
  18776. },
  18777. foot: {
  18778. height: math.unit(1.57, "feet"),
  18779. name: "Foot",
  18780. image: {
  18781. source: "./media/characters/typhek/foot.svg"
  18782. }
  18783. },
  18784. sole: {
  18785. height: math.unit(2.05, "feet"),
  18786. name: "Sole",
  18787. image: {
  18788. source: "./media/characters/typhek/sole.svg"
  18789. }
  18790. },
  18791. },
  18792. [
  18793. {
  18794. name: "Macro",
  18795. height: math.unit(40, "stories"),
  18796. default: true
  18797. },
  18798. {
  18799. name: "Megamacro",
  18800. height: math.unit(1, "mile")
  18801. },
  18802. {
  18803. name: "Gigamacro",
  18804. height: math.unit(4000, "solarradii")
  18805. },
  18806. {
  18807. name: "Universal",
  18808. height: math.unit(1.1, "universes")
  18809. }
  18810. ]
  18811. ))
  18812. characterMakers.push(() => makeCharacter(
  18813. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18814. {
  18815. side: {
  18816. height: math.unit(5 + 7 / 12, "feet"),
  18817. weight: math.unit(150, "lb"),
  18818. name: "Side",
  18819. image: {
  18820. source: "./media/characters/kassy/side.svg",
  18821. extra: 1280 / 1225,
  18822. bottom: 0.002
  18823. }
  18824. },
  18825. front: {
  18826. height: math.unit(5 + 7 / 12, "feet"),
  18827. weight: math.unit(150, "lb"),
  18828. name: "Front",
  18829. image: {
  18830. source: "./media/characters/kassy/front.svg",
  18831. extra: 1280 / 1225,
  18832. bottom: 0.025
  18833. }
  18834. },
  18835. back: {
  18836. height: math.unit(5 + 7 / 12, "feet"),
  18837. weight: math.unit(150, "lb"),
  18838. name: "Back",
  18839. image: {
  18840. source: "./media/characters/kassy/back.svg",
  18841. extra: 1280 / 1225,
  18842. bottom: 0.002
  18843. }
  18844. },
  18845. foot: {
  18846. height: math.unit(1.266, "feet"),
  18847. name: "Foot",
  18848. image: {
  18849. source: "./media/characters/kassy/foot.svg"
  18850. }
  18851. },
  18852. },
  18853. [
  18854. {
  18855. name: "Normal",
  18856. height: math.unit(5 + 7 / 12, "feet")
  18857. },
  18858. {
  18859. name: "Macro",
  18860. height: math.unit(137, "feet"),
  18861. default: true
  18862. },
  18863. {
  18864. name: "Megamacro",
  18865. height: math.unit(1, "mile")
  18866. },
  18867. ]
  18868. ))
  18869. characterMakers.push(() => makeCharacter(
  18870. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18871. {
  18872. front: {
  18873. height: math.unit(6 + 1 / 12, "feet"),
  18874. weight: math.unit(200, "lb"),
  18875. name: "Front",
  18876. image: {
  18877. source: "./media/characters/neil/front.svg",
  18878. extra: 1326 / 1250,
  18879. bottom: 0.023
  18880. }
  18881. },
  18882. },
  18883. [
  18884. {
  18885. name: "Normal",
  18886. height: math.unit(6 + 1 / 12, "feet"),
  18887. default: true
  18888. },
  18889. {
  18890. name: "Macro",
  18891. height: math.unit(200, "feet")
  18892. },
  18893. ]
  18894. ))
  18895. characterMakers.push(() => makeCharacter(
  18896. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18897. {
  18898. front: {
  18899. height: math.unit(5 + 9 / 12, "feet"),
  18900. weight: math.unit(190, "lb"),
  18901. name: "Front",
  18902. image: {
  18903. source: "./media/characters/atticus/front.svg",
  18904. extra: 2934 / 2785,
  18905. bottom: 0.025
  18906. }
  18907. },
  18908. },
  18909. [
  18910. {
  18911. name: "Normal",
  18912. height: math.unit(5 + 9 / 12, "feet"),
  18913. default: true
  18914. },
  18915. {
  18916. name: "Macro",
  18917. height: math.unit(180, "feet")
  18918. },
  18919. ]
  18920. ))
  18921. characterMakers.push(() => makeCharacter(
  18922. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18923. {
  18924. side: {
  18925. height: math.unit(9, "feet"),
  18926. weight: math.unit(650, "lb"),
  18927. name: "Side",
  18928. image: {
  18929. source: "./media/characters/milo/side.svg",
  18930. extra: 2644 / 2310,
  18931. bottom: 0.032
  18932. }
  18933. },
  18934. },
  18935. [
  18936. {
  18937. name: "Normal",
  18938. height: math.unit(9, "feet"),
  18939. default: true
  18940. },
  18941. {
  18942. name: "Macro",
  18943. height: math.unit(300, "feet")
  18944. },
  18945. ]
  18946. ))
  18947. characterMakers.push(() => makeCharacter(
  18948. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18949. {
  18950. side: {
  18951. height: math.unit(8, "meters"),
  18952. weight: math.unit(90000, "kg"),
  18953. name: "Side",
  18954. image: {
  18955. source: "./media/characters/ijzer/side.svg",
  18956. extra: 2756 / 1600,
  18957. bottom: 0.01
  18958. }
  18959. },
  18960. },
  18961. [
  18962. {
  18963. name: "Small",
  18964. height: math.unit(3, "meters")
  18965. },
  18966. {
  18967. name: "Normal",
  18968. height: math.unit(8, "meters"),
  18969. default: true
  18970. },
  18971. {
  18972. name: "Normal+",
  18973. height: math.unit(10, "meters")
  18974. },
  18975. {
  18976. name: "Bigger",
  18977. height: math.unit(24, "meters")
  18978. },
  18979. {
  18980. name: "Huge",
  18981. height: math.unit(80, "meters")
  18982. },
  18983. ]
  18984. ))
  18985. characterMakers.push(() => makeCharacter(
  18986. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18987. {
  18988. front: {
  18989. height: math.unit(6 + 2 / 12, "feet"),
  18990. weight: math.unit(153, "lb"),
  18991. name: "Front",
  18992. image: {
  18993. source: "./media/characters/luca-cervicum/front.svg",
  18994. extra: 370 / 327,
  18995. bottom: 0.015
  18996. }
  18997. },
  18998. back: {
  18999. height: math.unit(6 + 2 / 12, "feet"),
  19000. weight: math.unit(153, "lb"),
  19001. name: "Back",
  19002. image: {
  19003. source: "./media/characters/luca-cervicum/back.svg",
  19004. extra: 367 / 333,
  19005. bottom: 0.005
  19006. }
  19007. },
  19008. frontGear: {
  19009. height: math.unit(6 + 2 / 12, "feet"),
  19010. weight: math.unit(173, "lb"),
  19011. name: "Front (Gear)",
  19012. image: {
  19013. source: "./media/characters/luca-cervicum/front-gear.svg",
  19014. extra: 377 / 333,
  19015. bottom: 0.006
  19016. }
  19017. },
  19018. },
  19019. [
  19020. {
  19021. name: "Normal",
  19022. height: math.unit(6 + 2 / 12, "feet"),
  19023. default: true
  19024. },
  19025. ]
  19026. ))
  19027. characterMakers.push(() => makeCharacter(
  19028. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19029. {
  19030. front: {
  19031. height: math.unit(6 + 1 / 12, "feet"),
  19032. weight: math.unit(304, "lb"),
  19033. name: "Front",
  19034. image: {
  19035. source: "./media/characters/oliver/front.svg",
  19036. extra: 157 / 143,
  19037. bottom: 0.08
  19038. }
  19039. },
  19040. },
  19041. [
  19042. {
  19043. name: "Normal",
  19044. height: math.unit(6 + 1 / 12, "feet"),
  19045. default: true
  19046. },
  19047. ]
  19048. ))
  19049. characterMakers.push(() => makeCharacter(
  19050. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19051. {
  19052. front: {
  19053. height: math.unit(5 + 7 / 12, "feet"),
  19054. weight: math.unit(140, "lb"),
  19055. name: "Front",
  19056. image: {
  19057. source: "./media/characters/shane/front.svg",
  19058. extra: 304 / 289,
  19059. bottom: 0.005
  19060. }
  19061. },
  19062. },
  19063. [
  19064. {
  19065. name: "Normal",
  19066. height: math.unit(5 + 7 / 12, "feet"),
  19067. default: true
  19068. },
  19069. ]
  19070. ))
  19071. characterMakers.push(() => makeCharacter(
  19072. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19073. {
  19074. front: {
  19075. height: math.unit(5 + 9 / 12, "feet"),
  19076. weight: math.unit(178, "lb"),
  19077. name: "Front",
  19078. image: {
  19079. source: "./media/characters/shin/front.svg",
  19080. extra: 159 / 151,
  19081. bottom: 0.015
  19082. }
  19083. },
  19084. },
  19085. [
  19086. {
  19087. name: "Normal",
  19088. height: math.unit(5 + 9 / 12, "feet"),
  19089. default: true
  19090. },
  19091. ]
  19092. ))
  19093. characterMakers.push(() => makeCharacter(
  19094. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19095. {
  19096. front: {
  19097. height: math.unit(5 + 10 / 12, "feet"),
  19098. weight: math.unit(168, "lb"),
  19099. name: "Front",
  19100. image: {
  19101. source: "./media/characters/xerxes/front.svg",
  19102. extra: 282 / 260,
  19103. bottom: 0.045
  19104. }
  19105. },
  19106. },
  19107. [
  19108. {
  19109. name: "Normal",
  19110. height: math.unit(5 + 10 / 12, "feet"),
  19111. default: true
  19112. },
  19113. ]
  19114. ))
  19115. characterMakers.push(() => makeCharacter(
  19116. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19117. {
  19118. front: {
  19119. height: math.unit(6 + 7 / 12, "feet"),
  19120. weight: math.unit(208, "lb"),
  19121. name: "Front",
  19122. image: {
  19123. source: "./media/characters/chaska/front.svg",
  19124. extra: 332 / 319,
  19125. bottom: 0.015
  19126. }
  19127. },
  19128. },
  19129. [
  19130. {
  19131. name: "Normal",
  19132. height: math.unit(6 + 7 / 12, "feet"),
  19133. default: true
  19134. },
  19135. ]
  19136. ))
  19137. characterMakers.push(() => makeCharacter(
  19138. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19139. {
  19140. front: {
  19141. height: math.unit(5 + 8 / 12, "feet"),
  19142. weight: math.unit(208, "lb"),
  19143. name: "Front",
  19144. image: {
  19145. source: "./media/characters/enuk/front.svg",
  19146. extra: 437 / 406,
  19147. bottom: 0.02
  19148. }
  19149. },
  19150. },
  19151. [
  19152. {
  19153. name: "Normal",
  19154. height: math.unit(5 + 8 / 12, "feet"),
  19155. default: true
  19156. },
  19157. ]
  19158. ))
  19159. characterMakers.push(() => makeCharacter(
  19160. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19161. {
  19162. front: {
  19163. height: math.unit(5 + 10 / 12, "feet"),
  19164. weight: math.unit(252, "lb"),
  19165. name: "Front",
  19166. image: {
  19167. source: "./media/characters/bruun/front.svg",
  19168. extra: 197 / 187,
  19169. bottom: 0.012
  19170. }
  19171. },
  19172. },
  19173. [
  19174. {
  19175. name: "Normal",
  19176. height: math.unit(5 + 10 / 12, "feet"),
  19177. default: true
  19178. },
  19179. ]
  19180. ))
  19181. characterMakers.push(() => makeCharacter(
  19182. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19183. {
  19184. front: {
  19185. height: math.unit(6 + 10 / 12, "feet"),
  19186. weight: math.unit(255, "lb"),
  19187. name: "Front",
  19188. image: {
  19189. source: "./media/characters/alexeev/front.svg",
  19190. extra: 213 / 200,
  19191. bottom: 0.05
  19192. }
  19193. },
  19194. },
  19195. [
  19196. {
  19197. name: "Normal",
  19198. height: math.unit(6 + 10 / 12, "feet"),
  19199. default: true
  19200. },
  19201. ]
  19202. ))
  19203. characterMakers.push(() => makeCharacter(
  19204. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19205. {
  19206. front: {
  19207. height: math.unit(2 + 8 / 12, "feet"),
  19208. weight: math.unit(22, "lb"),
  19209. name: "Front",
  19210. image: {
  19211. source: "./media/characters/evelyn/front.svg",
  19212. extra: 208 / 180
  19213. }
  19214. },
  19215. },
  19216. [
  19217. {
  19218. name: "Normal",
  19219. height: math.unit(2 + 8 / 12, "feet"),
  19220. default: true
  19221. },
  19222. ]
  19223. ))
  19224. characterMakers.push(() => makeCharacter(
  19225. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19226. {
  19227. front: {
  19228. height: math.unit(5 + 9 / 12, "feet"),
  19229. weight: math.unit(139, "lb"),
  19230. name: "Front",
  19231. image: {
  19232. source: "./media/characters/inca/front.svg",
  19233. extra: 294 / 291,
  19234. bottom: 0.03
  19235. }
  19236. },
  19237. },
  19238. [
  19239. {
  19240. name: "Normal",
  19241. height: math.unit(5 + 9 / 12, "feet"),
  19242. default: true
  19243. },
  19244. ]
  19245. ))
  19246. characterMakers.push(() => makeCharacter(
  19247. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19248. {
  19249. front: {
  19250. height: math.unit(5 + 1 / 12, "feet"),
  19251. weight: math.unit(84, "lb"),
  19252. name: "Front",
  19253. image: {
  19254. source: "./media/characters/magdalene/front.svg",
  19255. extra: 293 / 273
  19256. }
  19257. },
  19258. },
  19259. [
  19260. {
  19261. name: "Normal",
  19262. height: math.unit(5 + 1 / 12, "feet"),
  19263. default: true
  19264. },
  19265. ]
  19266. ))
  19267. characterMakers.push(() => makeCharacter(
  19268. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19269. {
  19270. front: {
  19271. height: math.unit(6 + 3 / 12, "feet"),
  19272. weight: math.unit(185, "lb"),
  19273. name: "Front",
  19274. image: {
  19275. source: "./media/characters/mera/front.svg",
  19276. extra: 291 / 277,
  19277. bottom: 0.03
  19278. }
  19279. },
  19280. },
  19281. [
  19282. {
  19283. name: "Normal",
  19284. height: math.unit(6 + 3 / 12, "feet"),
  19285. default: true
  19286. },
  19287. ]
  19288. ))
  19289. characterMakers.push(() => makeCharacter(
  19290. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19291. {
  19292. front: {
  19293. height: math.unit(6 + 7 / 12, "feet"),
  19294. weight: math.unit(160, "lb"),
  19295. name: "Front",
  19296. image: {
  19297. source: "./media/characters/ceres/front.svg",
  19298. extra: 1023 / 950,
  19299. bottom: 0.027
  19300. }
  19301. },
  19302. back: {
  19303. height: math.unit(6 + 7 / 12, "feet"),
  19304. weight: math.unit(160, "lb"),
  19305. name: "Back",
  19306. image: {
  19307. source: "./media/characters/ceres/back.svg",
  19308. extra: 1023 / 950
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(6 + 7 / 12, "feet"),
  19316. default: true
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19322. {
  19323. front: {
  19324. height: math.unit(5 + 10 / 12, "feet"),
  19325. weight: math.unit(150, "lb"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/kris/front.svg",
  19329. extra: 885 / 803,
  19330. bottom: 0.03
  19331. }
  19332. },
  19333. },
  19334. [
  19335. {
  19336. name: "Normal",
  19337. height: math.unit(5 + 10 / 12, "feet"),
  19338. default: true
  19339. },
  19340. ]
  19341. ))
  19342. characterMakers.push(() => makeCharacter(
  19343. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19344. {
  19345. front: {
  19346. height: math.unit(7, "feet"),
  19347. weight: math.unit(120, "kg"),
  19348. name: "Front",
  19349. image: {
  19350. source: "./media/characters/taluthus/front.svg",
  19351. extra: 903 / 833,
  19352. bottom: 0.015
  19353. }
  19354. },
  19355. },
  19356. [
  19357. {
  19358. name: "Normal",
  19359. height: math.unit(7, "feet"),
  19360. default: true
  19361. },
  19362. {
  19363. name: "Macro",
  19364. height: math.unit(300, "feet")
  19365. },
  19366. ]
  19367. ))
  19368. characterMakers.push(() => makeCharacter(
  19369. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19370. {
  19371. front: {
  19372. height: math.unit(5 + 9 / 12, "feet"),
  19373. weight: math.unit(145, "lb"),
  19374. name: "Front",
  19375. image: {
  19376. source: "./media/characters/dawn/front.svg",
  19377. extra: 2094 / 2016,
  19378. bottom: 0.025
  19379. }
  19380. },
  19381. back: {
  19382. height: math.unit(5 + 9 / 12, "feet"),
  19383. weight: math.unit(160, "lb"),
  19384. name: "Back",
  19385. image: {
  19386. source: "./media/characters/dawn/back.svg",
  19387. extra: 2112 / 2080,
  19388. bottom: 0.005
  19389. }
  19390. },
  19391. },
  19392. [
  19393. {
  19394. name: "Normal",
  19395. height: math.unit(6 + 7 / 12, "feet"),
  19396. default: true
  19397. },
  19398. ]
  19399. ))
  19400. characterMakers.push(() => makeCharacter(
  19401. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19402. {
  19403. anthro: {
  19404. height: math.unit(8 + 3 / 12, "feet"),
  19405. weight: math.unit(450, "lb"),
  19406. name: "Anthro",
  19407. image: {
  19408. source: "./media/characters/arador/anthro.svg",
  19409. extra: 1835 / 1718,
  19410. bottom: 0.025
  19411. }
  19412. },
  19413. feral: {
  19414. height: math.unit(4, "feet"),
  19415. weight: math.unit(200, "lb"),
  19416. name: "Feral",
  19417. image: {
  19418. source: "./media/characters/arador/feral.svg",
  19419. extra: 1683 / 1514,
  19420. bottom: 0.07
  19421. }
  19422. },
  19423. },
  19424. [
  19425. {
  19426. name: "Normal",
  19427. height: math.unit(8 + 3 / 12, "feet")
  19428. },
  19429. {
  19430. name: "Macro",
  19431. height: math.unit(82.5, "feet"),
  19432. default: true
  19433. },
  19434. ]
  19435. ))
  19436. characterMakers.push(() => makeCharacter(
  19437. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19438. {
  19439. front: {
  19440. height: math.unit(5 + 10 / 12, "feet"),
  19441. weight: math.unit(125, "lb"),
  19442. name: "Front",
  19443. image: {
  19444. source: "./media/characters/dharsi/front.svg",
  19445. extra: 716 / 630,
  19446. bottom: 0.035
  19447. }
  19448. },
  19449. },
  19450. [
  19451. {
  19452. name: "Nano",
  19453. height: math.unit(100, "nm")
  19454. },
  19455. {
  19456. name: "Micro",
  19457. height: math.unit(2, "inches")
  19458. },
  19459. {
  19460. name: "Normal",
  19461. height: math.unit(5 + 10 / 12, "feet"),
  19462. default: true
  19463. },
  19464. {
  19465. name: "Macro",
  19466. height: math.unit(1000, "feet")
  19467. },
  19468. {
  19469. name: "Megamacro",
  19470. height: math.unit(10, "miles")
  19471. },
  19472. {
  19473. name: "Gigamacro",
  19474. height: math.unit(3000, "miles")
  19475. },
  19476. {
  19477. name: "Teramacro",
  19478. height: math.unit(500000, "miles")
  19479. },
  19480. {
  19481. name: "Teramacro+",
  19482. height: math.unit(30, "galaxies")
  19483. },
  19484. ]
  19485. ))
  19486. characterMakers.push(() => makeCharacter(
  19487. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19488. {
  19489. front: {
  19490. height: math.unit(6, "feet"),
  19491. weight: math.unit(150, "lb"),
  19492. name: "Front",
  19493. image: {
  19494. source: "./media/characters/deathy/front.svg",
  19495. extra: 1552 / 1463,
  19496. bottom: 0.025
  19497. }
  19498. },
  19499. side: {
  19500. height: math.unit(6, "feet"),
  19501. weight: math.unit(150, "lb"),
  19502. name: "Side",
  19503. image: {
  19504. source: "./media/characters/deathy/side.svg",
  19505. extra: 1604 / 1455,
  19506. bottom: 0.025
  19507. }
  19508. },
  19509. back: {
  19510. height: math.unit(6, "feet"),
  19511. weight: math.unit(150, "lb"),
  19512. name: "Back",
  19513. image: {
  19514. source: "./media/characters/deathy/back.svg",
  19515. extra: 1580 / 1463,
  19516. bottom: 0.005
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Micro",
  19523. height: math.unit(5, "millimeters")
  19524. },
  19525. {
  19526. name: "Normal",
  19527. height: math.unit(6 + 5 / 12, "feet"),
  19528. default: true
  19529. },
  19530. ]
  19531. ))
  19532. characterMakers.push(() => makeCharacter(
  19533. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19534. {
  19535. front: {
  19536. height: math.unit(16, "feet"),
  19537. weight: math.unit(4000, "lb"),
  19538. name: "Front",
  19539. image: {
  19540. source: "./media/characters/juniper/front.svg",
  19541. bottom: 0.04
  19542. }
  19543. },
  19544. },
  19545. [
  19546. {
  19547. name: "Normal",
  19548. height: math.unit(16, "feet"),
  19549. default: true
  19550. },
  19551. ]
  19552. ))
  19553. characterMakers.push(() => makeCharacter(
  19554. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19555. {
  19556. front: {
  19557. height: math.unit(6, "feet"),
  19558. weight: math.unit(150, "lb"),
  19559. name: "Front",
  19560. image: {
  19561. source: "./media/characters/hipster/front.svg",
  19562. extra: 1312 / 1209,
  19563. bottom: 0.025
  19564. }
  19565. },
  19566. back: {
  19567. height: math.unit(6, "feet"),
  19568. weight: math.unit(150, "lb"),
  19569. name: "Back",
  19570. image: {
  19571. source: "./media/characters/hipster/back.svg",
  19572. extra: 1281 / 1196,
  19573. bottom: 0.01
  19574. }
  19575. },
  19576. },
  19577. [
  19578. {
  19579. name: "Micro",
  19580. height: math.unit(1, "mm")
  19581. },
  19582. {
  19583. name: "Normal",
  19584. height: math.unit(4, "inches"),
  19585. default: true
  19586. },
  19587. {
  19588. name: "Macro",
  19589. height: math.unit(500, "feet")
  19590. },
  19591. {
  19592. name: "Megamacro",
  19593. height: math.unit(1000, "miles")
  19594. },
  19595. ]
  19596. ))
  19597. characterMakers.push(() => makeCharacter(
  19598. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19599. {
  19600. front: {
  19601. height: math.unit(6, "feet"),
  19602. weight: math.unit(150, "lb"),
  19603. name: "Front",
  19604. image: {
  19605. source: "./media/characters/tendirmuldr/front.svg",
  19606. extra: 1878 / 1772,
  19607. bottom: 0.015
  19608. }
  19609. },
  19610. },
  19611. [
  19612. {
  19613. name: "Megamacro",
  19614. height: math.unit(1500, "miles"),
  19615. default: true
  19616. },
  19617. ]
  19618. ))
  19619. characterMakers.push(() => makeCharacter(
  19620. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19621. {
  19622. front: {
  19623. height: math.unit(14, "feet"),
  19624. weight: math.unit(12000, "lb"),
  19625. name: "Front",
  19626. image: {
  19627. source: "./media/characters/mort/front.svg",
  19628. extra: 365 / 318,
  19629. bottom: 0.01
  19630. }
  19631. },
  19632. side: {
  19633. height: math.unit(14, "feet"),
  19634. weight: math.unit(12000, "lb"),
  19635. name: "Side",
  19636. image: {
  19637. source: "./media/characters/mort/side.svg",
  19638. extra: 365 / 318,
  19639. bottom: 0.052
  19640. },
  19641. default: true
  19642. },
  19643. back: {
  19644. height: math.unit(14, "feet"),
  19645. weight: math.unit(12000, "lb"),
  19646. name: "Back",
  19647. image: {
  19648. source: "./media/characters/mort/back.svg",
  19649. extra: 371 / 332,
  19650. bottom: 0.18
  19651. }
  19652. },
  19653. },
  19654. [
  19655. {
  19656. name: "Normal",
  19657. height: math.unit(14, "feet"),
  19658. default: true
  19659. },
  19660. ]
  19661. ))
  19662. characterMakers.push(() => makeCharacter(
  19663. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19664. {
  19665. front: {
  19666. height: math.unit(8, "feet"),
  19667. weight: math.unit(1, "ton"),
  19668. name: "Front",
  19669. image: {
  19670. source: "./media/characters/lycoa/front.svg",
  19671. extra: 1875 / 1789,
  19672. bottom: 0.022
  19673. }
  19674. },
  19675. back: {
  19676. height: math.unit(8, "feet"),
  19677. weight: math.unit(1, "ton"),
  19678. name: "Back",
  19679. image: {
  19680. source: "./media/characters/lycoa/back.svg",
  19681. extra: 1835 / 1781,
  19682. bottom: 0.03
  19683. }
  19684. },
  19685. head: {
  19686. height: math.unit(2.1, "feet"),
  19687. name: "Head",
  19688. image: {
  19689. source: "./media/characters/lycoa/head.svg"
  19690. }
  19691. },
  19692. tailmaw: {
  19693. height: math.unit(1.9, "feet"),
  19694. name: "Tailmaw",
  19695. image: {
  19696. source: "./media/characters/lycoa/tailmaw.svg"
  19697. }
  19698. },
  19699. tentacles: {
  19700. height: math.unit(2.1, "feet"),
  19701. name: "Tentacles",
  19702. image: {
  19703. source: "./media/characters/lycoa/tentacles.svg"
  19704. }
  19705. },
  19706. dick: {
  19707. height: math.unit(1.73, "feet"),
  19708. name: "Dick",
  19709. image: {
  19710. source: "./media/characters/lycoa/dick.svg"
  19711. }
  19712. },
  19713. },
  19714. [
  19715. {
  19716. name: "Normal",
  19717. height: math.unit(8, "feet"),
  19718. default: true
  19719. },
  19720. {
  19721. name: "Macro",
  19722. height: math.unit(30, "feet")
  19723. },
  19724. ]
  19725. ))
  19726. characterMakers.push(() => makeCharacter(
  19727. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19728. {
  19729. front: {
  19730. height: math.unit(4 + 2 / 12, "feet"),
  19731. weight: math.unit(70, "lb"),
  19732. name: "Front",
  19733. image: {
  19734. source: "./media/characters/naldara/front.svg",
  19735. extra: 841 / 720,
  19736. bottom: 0.04
  19737. }
  19738. },
  19739. naga: {
  19740. height: math.unit(23, "feet"),
  19741. weight: math.unit(15000, "kg"),
  19742. name: "Naga",
  19743. image: {
  19744. source: "./media/characters/naldara/naga.svg",
  19745. extra: 3290 / 2959,
  19746. bottom: 124 / 3432
  19747. }
  19748. },
  19749. },
  19750. [
  19751. {
  19752. name: "Normal",
  19753. height: math.unit(4 + 2 / 12, "feet"),
  19754. default: true
  19755. },
  19756. ]
  19757. ))
  19758. characterMakers.push(() => makeCharacter(
  19759. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19760. {
  19761. front: {
  19762. height: math.unit(13 + 7 / 12, "feet"),
  19763. weight: math.unit(1500, "lb"),
  19764. name: "Front",
  19765. image: {
  19766. source: "./media/characters/briar/front.svg",
  19767. extra: 626 / 596,
  19768. bottom: 0.08
  19769. }
  19770. },
  19771. },
  19772. [
  19773. {
  19774. name: "Normal",
  19775. height: math.unit(13 + 7 / 12, "feet"),
  19776. default: true
  19777. },
  19778. ]
  19779. ))
  19780. characterMakers.push(() => makeCharacter(
  19781. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19782. {
  19783. side: {
  19784. height: math.unit(10, "feet"),
  19785. weight: math.unit(500, "lb"),
  19786. name: "Side",
  19787. image: {
  19788. source: "./media/characters/vanguard/side.svg",
  19789. extra: 502 / 425,
  19790. bottom: 0.087
  19791. }
  19792. },
  19793. },
  19794. [
  19795. {
  19796. name: "Normal",
  19797. height: math.unit(10, "feet"),
  19798. default: true
  19799. },
  19800. ]
  19801. ))
  19802. characterMakers.push(() => makeCharacter(
  19803. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19804. {
  19805. front: {
  19806. height: math.unit(7.5, "feet"),
  19807. weight: math.unit(2, "lb"),
  19808. name: "Front",
  19809. image: {
  19810. source: "./media/characters/artemis/front.svg",
  19811. extra: 1192 / 1075,
  19812. bottom: 0.07
  19813. }
  19814. },
  19815. frontNsfw: {
  19816. height: math.unit(7.5, "feet"),
  19817. weight: math.unit(2, "lb"),
  19818. name: "Front (NSFW)",
  19819. image: {
  19820. source: "./media/characters/artemis/front-nsfw.svg",
  19821. extra: 1192 / 1075,
  19822. bottom: 0.07
  19823. }
  19824. },
  19825. frontNsfwer: {
  19826. height: math.unit(7.5, "feet"),
  19827. weight: math.unit(2, "lb"),
  19828. name: "Front (NSFW-er)",
  19829. image: {
  19830. source: "./media/characters/artemis/front-nsfwer.svg",
  19831. extra: 1192 / 1075,
  19832. bottom: 0.07
  19833. }
  19834. },
  19835. side: {
  19836. height: math.unit(7.5, "feet"),
  19837. weight: math.unit(2, "lb"),
  19838. name: "Side",
  19839. image: {
  19840. source: "./media/characters/artemis/side.svg",
  19841. extra: 1192 / 1075,
  19842. bottom: 0.07
  19843. }
  19844. },
  19845. sideNsfw: {
  19846. height: math.unit(7.5, "feet"),
  19847. weight: math.unit(2, "lb"),
  19848. name: "Side (NSFW)",
  19849. image: {
  19850. source: "./media/characters/artemis/side-nsfw.svg",
  19851. extra: 1192 / 1075,
  19852. bottom: 0.07
  19853. }
  19854. },
  19855. sideNsfwer: {
  19856. height: math.unit(7.5, "feet"),
  19857. weight: math.unit(2, "lb"),
  19858. name: "Side (NSFW-er)",
  19859. image: {
  19860. source: "./media/characters/artemis/side-nsfwer.svg",
  19861. extra: 1192 / 1075,
  19862. bottom: 0.07
  19863. }
  19864. },
  19865. maw: {
  19866. height: math.unit(1.1, "feet"),
  19867. name: "Maw",
  19868. image: {
  19869. source: "./media/characters/artemis/maw.svg"
  19870. }
  19871. },
  19872. stomach: {
  19873. height: math.unit(0.95, "feet"),
  19874. name: "Stomach",
  19875. image: {
  19876. source: "./media/characters/artemis/stomach.svg"
  19877. }
  19878. },
  19879. dickCanine: {
  19880. height: math.unit(1, "feet"),
  19881. name: "Dick (Canine)",
  19882. image: {
  19883. source: "./media/characters/artemis/dick-canine.svg"
  19884. }
  19885. },
  19886. dickEquine: {
  19887. height: math.unit(0.85, "feet"),
  19888. name: "Dick (Equine)",
  19889. image: {
  19890. source: "./media/characters/artemis/dick-equine.svg"
  19891. }
  19892. },
  19893. dickExotic: {
  19894. height: math.unit(0.85, "feet"),
  19895. name: "Dick (Exotic)",
  19896. image: {
  19897. source: "./media/characters/artemis/dick-exotic.svg"
  19898. }
  19899. },
  19900. },
  19901. [
  19902. {
  19903. name: "Normal",
  19904. height: math.unit(7.5, "feet"),
  19905. default: true
  19906. },
  19907. {
  19908. name: "Enlarged",
  19909. height: math.unit(12, "feet")
  19910. },
  19911. ]
  19912. ))
  19913. characterMakers.push(() => makeCharacter(
  19914. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19915. {
  19916. front: {
  19917. height: math.unit(5 + 3 / 12, "feet"),
  19918. weight: math.unit(160, "lb"),
  19919. name: "Front",
  19920. image: {
  19921. source: "./media/characters/kira/front.svg",
  19922. extra: 906 / 786,
  19923. bottom: 0.01
  19924. }
  19925. },
  19926. back: {
  19927. height: math.unit(5 + 3 / 12, "feet"),
  19928. weight: math.unit(160, "lb"),
  19929. name: "Back",
  19930. image: {
  19931. source: "./media/characters/kira/back.svg",
  19932. extra: 882 / 757,
  19933. bottom: 0.005
  19934. }
  19935. },
  19936. frontDressed: {
  19937. height: math.unit(5 + 3 / 12, "feet"),
  19938. weight: math.unit(160, "lb"),
  19939. name: "Front (Dressed)",
  19940. image: {
  19941. source: "./media/characters/kira/front-dressed.svg",
  19942. extra: 906 / 786,
  19943. bottom: 0.01
  19944. }
  19945. },
  19946. beans: {
  19947. height: math.unit(0.92, "feet"),
  19948. name: "Beans",
  19949. image: {
  19950. source: "./media/characters/kira/beans.svg"
  19951. }
  19952. },
  19953. },
  19954. [
  19955. {
  19956. name: "Normal",
  19957. height: math.unit(5 + 3 / 12, "feet"),
  19958. default: true
  19959. },
  19960. ]
  19961. ))
  19962. characterMakers.push(() => makeCharacter(
  19963. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19964. {
  19965. front: {
  19966. height: math.unit(5 + 4 / 12, "feet"),
  19967. weight: math.unit(145, "lb"),
  19968. name: "Front",
  19969. image: {
  19970. source: "./media/characters/scramble/front.svg",
  19971. extra: 763 / 727,
  19972. bottom: 0.05
  19973. }
  19974. },
  19975. back: {
  19976. height: math.unit(5 + 4 / 12, "feet"),
  19977. weight: math.unit(145, "lb"),
  19978. name: "Back",
  19979. image: {
  19980. source: "./media/characters/scramble/back.svg",
  19981. extra: 826 / 737,
  19982. bottom: 0.002
  19983. }
  19984. },
  19985. },
  19986. [
  19987. {
  19988. name: "Normal",
  19989. height: math.unit(5 + 4 / 12, "feet"),
  19990. default: true
  19991. },
  19992. ]
  19993. ))
  19994. characterMakers.push(() => makeCharacter(
  19995. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19996. {
  19997. side: {
  19998. height: math.unit(6 + 2 / 12, "feet"),
  19999. weight: math.unit(190, "lb"),
  20000. name: "Side",
  20001. image: {
  20002. source: "./media/characters/biscuit/side.svg",
  20003. extra: 858 / 791,
  20004. bottom: 0.044
  20005. }
  20006. },
  20007. },
  20008. [
  20009. {
  20010. name: "Normal",
  20011. height: math.unit(6 + 2 / 12, "feet"),
  20012. default: true
  20013. },
  20014. ]
  20015. ))
  20016. characterMakers.push(() => makeCharacter(
  20017. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20018. {
  20019. front: {
  20020. height: math.unit(5 + 2 / 12, "feet"),
  20021. weight: math.unit(120, "lb"),
  20022. name: "Front",
  20023. image: {
  20024. source: "./media/characters/poffin/front.svg",
  20025. extra: 786 / 680,
  20026. bottom: 0.005
  20027. }
  20028. },
  20029. },
  20030. [
  20031. {
  20032. name: "Normal",
  20033. height: math.unit(5 + 2 / 12, "feet"),
  20034. default: true
  20035. },
  20036. ]
  20037. ))
  20038. characterMakers.push(() => makeCharacter(
  20039. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20040. {
  20041. front: {
  20042. height: math.unit(6 + 3 / 12, "feet"),
  20043. weight: math.unit(519, "lb"),
  20044. name: "Front",
  20045. image: {
  20046. source: "./media/characters/dhari/front.svg",
  20047. extra: 1048 / 946,
  20048. bottom: 0.015
  20049. }
  20050. },
  20051. back: {
  20052. height: math.unit(6 + 3 / 12, "feet"),
  20053. weight: math.unit(519, "lb"),
  20054. name: "Back",
  20055. image: {
  20056. source: "./media/characters/dhari/back.svg",
  20057. extra: 1048 / 931,
  20058. bottom: 0.005
  20059. }
  20060. },
  20061. frontDressed: {
  20062. height: math.unit(6 + 3 / 12, "feet"),
  20063. weight: math.unit(519, "lb"),
  20064. name: "Front (Dressed)",
  20065. image: {
  20066. source: "./media/characters/dhari/front-dressed.svg",
  20067. extra: 1713 / 1546,
  20068. bottom: 0.02
  20069. }
  20070. },
  20071. backDressed: {
  20072. height: math.unit(6 + 3 / 12, "feet"),
  20073. weight: math.unit(519, "lb"),
  20074. name: "Back (Dressed)",
  20075. image: {
  20076. source: "./media/characters/dhari/back-dressed.svg",
  20077. extra: 1699 / 1537,
  20078. bottom: 0.01
  20079. }
  20080. },
  20081. maw: {
  20082. height: math.unit(0.95, "feet"),
  20083. name: "Maw",
  20084. image: {
  20085. source: "./media/characters/dhari/maw.svg"
  20086. }
  20087. },
  20088. wereFront: {
  20089. height: math.unit(12 + 8 / 12, "feet"),
  20090. weight: math.unit(4000, "lb"),
  20091. name: "Front (Were)",
  20092. image: {
  20093. source: "./media/characters/dhari/were-front.svg",
  20094. extra: 1065 / 969,
  20095. bottom: 0.015
  20096. }
  20097. },
  20098. wereBack: {
  20099. height: math.unit(12 + 8 / 12, "feet"),
  20100. weight: math.unit(4000, "lb"),
  20101. name: "Back (Were)",
  20102. image: {
  20103. source: "./media/characters/dhari/were-back.svg",
  20104. extra: 1065 / 969,
  20105. bottom: 0.012
  20106. }
  20107. },
  20108. wereMaw: {
  20109. height: math.unit(0.625, "meters"),
  20110. name: "Maw (Were)",
  20111. image: {
  20112. source: "./media/characters/dhari/were-maw.svg"
  20113. }
  20114. },
  20115. },
  20116. [
  20117. {
  20118. name: "Normal",
  20119. height: math.unit(6 + 3 / 12, "feet"),
  20120. default: true
  20121. },
  20122. ]
  20123. ))
  20124. characterMakers.push(() => makeCharacter(
  20125. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20126. {
  20127. anthro: {
  20128. height: math.unit(5 + 7 / 12, "feet"),
  20129. weight: math.unit(175, "lb"),
  20130. name: "Anthro",
  20131. image: {
  20132. source: "./media/characters/rena-dyne/anthro.svg",
  20133. extra: 1849 / 1785,
  20134. bottom: 0.005
  20135. }
  20136. },
  20137. taur: {
  20138. height: math.unit(15 + 6 / 12, "feet"),
  20139. weight: math.unit(8000, "lb"),
  20140. name: "Taur",
  20141. image: {
  20142. source: "./media/characters/rena-dyne/taur.svg",
  20143. extra: 2315 / 2234,
  20144. bottom: 0.033
  20145. }
  20146. },
  20147. },
  20148. [
  20149. {
  20150. name: "Normal",
  20151. height: math.unit(5 + 7 / 12, "feet"),
  20152. default: true
  20153. },
  20154. ]
  20155. ))
  20156. characterMakers.push(() => makeCharacter(
  20157. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20158. {
  20159. front: {
  20160. height: math.unit(8, "feet"),
  20161. weight: math.unit(600, "lb"),
  20162. name: "Front",
  20163. image: {
  20164. source: "./media/characters/weremeep/front.svg",
  20165. extra: 967 / 862,
  20166. bottom: 0.01
  20167. }
  20168. },
  20169. },
  20170. [
  20171. {
  20172. name: "Normal",
  20173. height: math.unit(8, "feet"),
  20174. default: true
  20175. },
  20176. {
  20177. name: "Lorg",
  20178. height: math.unit(12, "feet")
  20179. },
  20180. {
  20181. name: "Oh Lawd She Comin'",
  20182. height: math.unit(20, "feet")
  20183. },
  20184. ]
  20185. ))
  20186. characterMakers.push(() => makeCharacter(
  20187. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20188. {
  20189. front: {
  20190. height: math.unit(4, "feet"),
  20191. weight: math.unit(90, "lb"),
  20192. name: "Front",
  20193. image: {
  20194. source: "./media/characters/reza/front.svg",
  20195. extra: 1183 / 1111,
  20196. bottom: 0.017
  20197. }
  20198. },
  20199. back: {
  20200. height: math.unit(4, "feet"),
  20201. weight: math.unit(90, "lb"),
  20202. name: "Back",
  20203. image: {
  20204. source: "./media/characters/reza/back.svg",
  20205. extra: 1183 / 1111,
  20206. bottom: 0.01
  20207. }
  20208. },
  20209. drake: {
  20210. height: math.unit(30, "feet"),
  20211. weight: math.unit(246960, "lb"),
  20212. name: "Drake",
  20213. image: {
  20214. source: "./media/characters/reza/drake.svg",
  20215. extra: 2350 / 2024,
  20216. bottom: 60.7 / 2403
  20217. }
  20218. },
  20219. },
  20220. [
  20221. {
  20222. name: "Normal",
  20223. height: math.unit(4, "feet"),
  20224. default: true
  20225. },
  20226. ]
  20227. ))
  20228. characterMakers.push(() => makeCharacter(
  20229. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20230. {
  20231. side: {
  20232. height: math.unit(15, "feet"),
  20233. weight: math.unit(14, "tons"),
  20234. name: "Side",
  20235. image: {
  20236. source: "./media/characters/athea/side.svg",
  20237. extra: 960 / 540,
  20238. bottom: 0.003
  20239. }
  20240. },
  20241. sitting: {
  20242. height: math.unit(6 * 2.85, "feet"),
  20243. weight: math.unit(14, "tons"),
  20244. name: "Sitting",
  20245. image: {
  20246. source: "./media/characters/athea/sitting.svg",
  20247. extra: 621 / 581,
  20248. bottom: 0.075
  20249. }
  20250. },
  20251. maw: {
  20252. height: math.unit(7.59498031496063, "feet"),
  20253. name: "Maw",
  20254. image: {
  20255. source: "./media/characters/athea/maw.svg"
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Lap Cat",
  20262. height: math.unit(2.5, "feet")
  20263. },
  20264. {
  20265. name: "Minimacro",
  20266. height: math.unit(15, "feet"),
  20267. default: true
  20268. },
  20269. {
  20270. name: "Macro",
  20271. height: math.unit(120, "feet")
  20272. },
  20273. {
  20274. name: "Macro+",
  20275. height: math.unit(640, "feet")
  20276. },
  20277. {
  20278. name: "Colossus",
  20279. height: math.unit(2.2, "miles")
  20280. },
  20281. ]
  20282. ))
  20283. characterMakers.push(() => makeCharacter(
  20284. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20285. {
  20286. front: {
  20287. height: math.unit(8 + 8 / 12, "feet"),
  20288. weight: math.unit(130, "kg"),
  20289. name: "Front",
  20290. image: {
  20291. source: "./media/characters/seroko/front.svg",
  20292. extra: 1385 / 1280,
  20293. bottom: 0.025
  20294. }
  20295. },
  20296. back: {
  20297. height: math.unit(8 + 8 / 12, "feet"),
  20298. weight: math.unit(130, "kg"),
  20299. name: "Back",
  20300. image: {
  20301. source: "./media/characters/seroko/back.svg",
  20302. extra: 1369 / 1238,
  20303. bottom: 0.018
  20304. }
  20305. },
  20306. frontDressed: {
  20307. height: math.unit(8 + 8 / 12, "feet"),
  20308. weight: math.unit(130, "kg"),
  20309. name: "Front (Dressed)",
  20310. image: {
  20311. source: "./media/characters/seroko/front-dressed.svg",
  20312. extra: 1366 / 1275,
  20313. bottom: 0.03
  20314. }
  20315. },
  20316. },
  20317. [
  20318. {
  20319. name: "Normal",
  20320. height: math.unit(8 + 8 / 12, "feet"),
  20321. default: true
  20322. },
  20323. ]
  20324. ))
  20325. characterMakers.push(() => makeCharacter(
  20326. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20327. {
  20328. front: {
  20329. height: math.unit(5.5, "feet"),
  20330. weight: math.unit(160, "lb"),
  20331. name: "Front",
  20332. image: {
  20333. source: "./media/characters/quatzi/front.svg",
  20334. extra: 2346 / 2242,
  20335. bottom: 0.015
  20336. }
  20337. },
  20338. },
  20339. [
  20340. {
  20341. name: "Normal",
  20342. height: math.unit(5.5, "feet"),
  20343. default: true
  20344. },
  20345. {
  20346. name: "Big",
  20347. height: math.unit(7.7, "feet")
  20348. },
  20349. ]
  20350. ))
  20351. characterMakers.push(() => makeCharacter(
  20352. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20353. {
  20354. front: {
  20355. height: math.unit(5 + 11 / 12, "feet"),
  20356. weight: math.unit(180, "lb"),
  20357. name: "Front",
  20358. image: {
  20359. source: "./media/characters/sen/front.svg",
  20360. extra: 1321 / 1254,
  20361. bottom: 0.015
  20362. }
  20363. },
  20364. side: {
  20365. height: math.unit(5 + 11 / 12, "feet"),
  20366. weight: math.unit(180, "lb"),
  20367. name: "Side",
  20368. image: {
  20369. source: "./media/characters/sen/side.svg",
  20370. extra: 1321 / 1254,
  20371. bottom: 0.007
  20372. }
  20373. },
  20374. back: {
  20375. height: math.unit(5 + 11 / 12, "feet"),
  20376. weight: math.unit(180, "lb"),
  20377. name: "Back",
  20378. image: {
  20379. source: "./media/characters/sen/back.svg",
  20380. extra: 1321 / 1254
  20381. }
  20382. },
  20383. },
  20384. [
  20385. {
  20386. name: "Normal",
  20387. height: math.unit(5 + 11 / 12, "feet"),
  20388. default: true
  20389. },
  20390. ]
  20391. ))
  20392. characterMakers.push(() => makeCharacter(
  20393. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20394. {
  20395. front: {
  20396. height: math.unit(166.6, "cm"),
  20397. weight: math.unit(66.6, "kg"),
  20398. name: "Front",
  20399. image: {
  20400. source: "./media/characters/fruity/front.svg",
  20401. extra: 1510 / 1386,
  20402. bottom: 0.04
  20403. }
  20404. },
  20405. back: {
  20406. height: math.unit(166.6, "cm"),
  20407. weight: math.unit(66.6, "lb"),
  20408. name: "Back",
  20409. image: {
  20410. source: "./media/characters/fruity/back.svg",
  20411. extra: 1563 / 1435,
  20412. bottom: 0.005
  20413. }
  20414. },
  20415. },
  20416. [
  20417. {
  20418. name: "Normal",
  20419. height: math.unit(166.6, "cm"),
  20420. default: true
  20421. },
  20422. {
  20423. name: "Demonic",
  20424. height: math.unit(166.6, "feet")
  20425. },
  20426. ]
  20427. ))
  20428. characterMakers.push(() => makeCharacter(
  20429. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20430. {
  20431. side: {
  20432. height: math.unit(10, "feet"),
  20433. weight: math.unit(500, "lb"),
  20434. name: "Side",
  20435. image: {
  20436. source: "./media/characters/zost/side.svg",
  20437. extra: 966 / 880,
  20438. bottom: 0.075
  20439. }
  20440. },
  20441. mawFront: {
  20442. height: math.unit(1.08, "meters"),
  20443. name: "Maw (Front)",
  20444. image: {
  20445. source: "./media/characters/zost/maw-front.svg"
  20446. }
  20447. },
  20448. mawSide: {
  20449. height: math.unit(2.66, "feet"),
  20450. name: "Maw (Side)",
  20451. image: {
  20452. source: "./media/characters/zost/maw-side.svg"
  20453. }
  20454. },
  20455. },
  20456. [
  20457. {
  20458. name: "Normal",
  20459. height: math.unit(10, "feet"),
  20460. default: true
  20461. },
  20462. ]
  20463. ))
  20464. characterMakers.push(() => makeCharacter(
  20465. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20466. {
  20467. front: {
  20468. height: math.unit(5 + 4 / 12, "feet"),
  20469. weight: math.unit(120, "lb"),
  20470. name: "Front",
  20471. image: {
  20472. source: "./media/characters/luci/front.svg",
  20473. extra: 1985 / 1884,
  20474. bottom: 0.04
  20475. }
  20476. },
  20477. back: {
  20478. height: math.unit(5 + 4 / 12, "feet"),
  20479. weight: math.unit(120, "lb"),
  20480. name: "Back",
  20481. image: {
  20482. source: "./media/characters/luci/back.svg",
  20483. extra: 1892 / 1791,
  20484. bottom: 0.002
  20485. }
  20486. },
  20487. },
  20488. [
  20489. {
  20490. name: "Normal",
  20491. height: math.unit(5 + 4 / 12, "feet"),
  20492. default: true
  20493. },
  20494. ]
  20495. ))
  20496. characterMakers.push(() => makeCharacter(
  20497. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20498. {
  20499. front: {
  20500. height: math.unit(1500, "feet"),
  20501. weight: math.unit(3.8e6, "tons"),
  20502. name: "Front",
  20503. image: {
  20504. source: "./media/characters/2th/front.svg",
  20505. extra: 3489 / 3350,
  20506. bottom: 0.1
  20507. }
  20508. },
  20509. foot: {
  20510. height: math.unit(461, "feet"),
  20511. name: "Foot",
  20512. image: {
  20513. source: "./media/characters/2th/foot.svg"
  20514. }
  20515. },
  20516. },
  20517. [
  20518. {
  20519. name: "\"Micro\"",
  20520. height: math.unit(15 + 7 / 12, "feet")
  20521. },
  20522. {
  20523. name: "Normal",
  20524. height: math.unit(1500, "feet"),
  20525. default: true
  20526. },
  20527. {
  20528. name: "Macro",
  20529. height: math.unit(5000, "feet")
  20530. },
  20531. {
  20532. name: "Megamacro",
  20533. height: math.unit(15, "miles")
  20534. },
  20535. {
  20536. name: "Gigamacro",
  20537. height: math.unit(4000, "miles")
  20538. },
  20539. {
  20540. name: "Galactic",
  20541. height: math.unit(50, "AU")
  20542. },
  20543. ]
  20544. ))
  20545. characterMakers.push(() => makeCharacter(
  20546. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20547. {
  20548. front: {
  20549. height: math.unit(5 + 6 / 12, "feet"),
  20550. weight: math.unit(220, "lb"),
  20551. name: "Front",
  20552. image: {
  20553. source: "./media/characters/amethyst/front.svg",
  20554. extra: 2078 / 2040,
  20555. bottom: 0.045
  20556. }
  20557. },
  20558. back: {
  20559. height: math.unit(5 + 6 / 12, "feet"),
  20560. weight: math.unit(220, "lb"),
  20561. name: "Back",
  20562. image: {
  20563. source: "./media/characters/amethyst/back.svg",
  20564. extra: 2021 / 1989,
  20565. bottom: 0.02
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Normal",
  20572. height: math.unit(5 + 6 / 12, "feet"),
  20573. default: true
  20574. },
  20575. ]
  20576. ))
  20577. characterMakers.push(() => makeCharacter(
  20578. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20579. {
  20580. front: {
  20581. height: math.unit(4 + 11 / 12, "feet"),
  20582. weight: math.unit(120, "lb"),
  20583. name: "Front",
  20584. image: {
  20585. source: "./media/characters/yumi-akiyama/front.svg",
  20586. extra: 1327 / 1235,
  20587. bottom: 0.02
  20588. }
  20589. },
  20590. back: {
  20591. height: math.unit(4 + 11 / 12, "feet"),
  20592. weight: math.unit(120, "lb"),
  20593. name: "Back",
  20594. image: {
  20595. source: "./media/characters/yumi-akiyama/back.svg",
  20596. extra: 1287 / 1245,
  20597. bottom: 0.002
  20598. }
  20599. },
  20600. },
  20601. [
  20602. {
  20603. name: "Galactic",
  20604. height: math.unit(50, "galaxies"),
  20605. default: true
  20606. },
  20607. {
  20608. name: "Universal",
  20609. height: math.unit(100, "universes")
  20610. },
  20611. ]
  20612. ))
  20613. characterMakers.push(() => makeCharacter(
  20614. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20615. {
  20616. front: {
  20617. height: math.unit(8, "feet"),
  20618. weight: math.unit(500, "lb"),
  20619. name: "Front",
  20620. image: {
  20621. source: "./media/characters/rifter-yrmori/front.svg",
  20622. extra: 1180 / 1125,
  20623. bottom: 0.02
  20624. }
  20625. },
  20626. back: {
  20627. height: math.unit(8, "feet"),
  20628. weight: math.unit(500, "lb"),
  20629. name: "Back",
  20630. image: {
  20631. source: "./media/characters/rifter-yrmori/back.svg",
  20632. extra: 1190 / 1145,
  20633. bottom: 0.001
  20634. }
  20635. },
  20636. wings: {
  20637. height: math.unit(7.75, "feet"),
  20638. weight: math.unit(500, "lb"),
  20639. name: "Wings",
  20640. image: {
  20641. source: "./media/characters/rifter-yrmori/wings.svg",
  20642. extra: 1357 / 1285
  20643. }
  20644. },
  20645. maw: {
  20646. height: math.unit(0.8, "feet"),
  20647. name: "Maw",
  20648. image: {
  20649. source: "./media/characters/rifter-yrmori/maw.svg"
  20650. }
  20651. },
  20652. mawfront: {
  20653. height: math.unit(1.45, "feet"),
  20654. name: "Maw (Front)",
  20655. image: {
  20656. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20657. }
  20658. },
  20659. },
  20660. [
  20661. {
  20662. name: "Normal",
  20663. height: math.unit(8, "feet"),
  20664. default: true
  20665. },
  20666. {
  20667. name: "Macro",
  20668. height: math.unit(42, "meters")
  20669. },
  20670. ]
  20671. ))
  20672. characterMakers.push(() => makeCharacter(
  20673. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20674. {
  20675. were: {
  20676. height: math.unit(25 + 6 / 12, "feet"),
  20677. weight: math.unit(10000, "lb"),
  20678. name: "Were",
  20679. image: {
  20680. source: "./media/characters/tahajin/were.svg",
  20681. extra: 801 / 770,
  20682. bottom: 0.042
  20683. }
  20684. },
  20685. aquatic: {
  20686. height: math.unit(6 + 4 / 12, "feet"),
  20687. weight: math.unit(160, "lb"),
  20688. name: "Aquatic",
  20689. image: {
  20690. source: "./media/characters/tahajin/aquatic.svg",
  20691. extra: 572 / 542,
  20692. bottom: 0.04
  20693. }
  20694. },
  20695. chow: {
  20696. height: math.unit(8 + 11 / 12, "feet"),
  20697. weight: math.unit(450, "lb"),
  20698. name: "Chow",
  20699. image: {
  20700. source: "./media/characters/tahajin/chow.svg",
  20701. extra: 660 / 640,
  20702. bottom: 0.015
  20703. }
  20704. },
  20705. demiNaga: {
  20706. height: math.unit(6 + 8 / 12, "feet"),
  20707. weight: math.unit(300, "lb"),
  20708. name: "Demi Naga",
  20709. image: {
  20710. source: "./media/characters/tahajin/demi-naga.svg",
  20711. extra: 643 / 615,
  20712. bottom: 0.1
  20713. }
  20714. },
  20715. data: {
  20716. height: math.unit(5, "inches"),
  20717. weight: math.unit(0.1, "lb"),
  20718. name: "Data",
  20719. image: {
  20720. source: "./media/characters/tahajin/data.svg"
  20721. }
  20722. },
  20723. fluu: {
  20724. height: math.unit(5 + 7 / 12, "feet"),
  20725. weight: math.unit(140, "lb"),
  20726. name: "Fluu",
  20727. image: {
  20728. source: "./media/characters/tahajin/fluu.svg",
  20729. extra: 628 / 592,
  20730. bottom: 0.02
  20731. }
  20732. },
  20733. starWarrior: {
  20734. height: math.unit(4 + 5 / 12, "feet"),
  20735. weight: math.unit(50, "lb"),
  20736. name: "Star Warrior",
  20737. image: {
  20738. source: "./media/characters/tahajin/star-warrior.svg"
  20739. }
  20740. },
  20741. },
  20742. [
  20743. {
  20744. name: "Normal",
  20745. height: math.unit(25 + 6 / 12, "feet"),
  20746. default: true
  20747. },
  20748. ]
  20749. ))
  20750. characterMakers.push(() => makeCharacter(
  20751. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20752. {
  20753. front: {
  20754. height: math.unit(8, "feet"),
  20755. weight: math.unit(350, "lb"),
  20756. name: "Front",
  20757. image: {
  20758. source: "./media/characters/gabira/front.svg",
  20759. extra: 608 / 580,
  20760. bottom: 0.03
  20761. }
  20762. },
  20763. back: {
  20764. height: math.unit(8, "feet"),
  20765. weight: math.unit(350, "lb"),
  20766. name: "Back",
  20767. image: {
  20768. source: "./media/characters/gabira/back.svg",
  20769. extra: 608 / 580,
  20770. bottom: 0.03
  20771. }
  20772. },
  20773. },
  20774. [
  20775. {
  20776. name: "Normal",
  20777. height: math.unit(8, "feet"),
  20778. default: true
  20779. },
  20780. ]
  20781. ))
  20782. characterMakers.push(() => makeCharacter(
  20783. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20784. {
  20785. front: {
  20786. height: math.unit(5 + 3 / 12, "feet"),
  20787. weight: math.unit(137, "lb"),
  20788. name: "Front",
  20789. image: {
  20790. source: "./media/characters/sasha-katraine/front.svg",
  20791. bottom: 0.045
  20792. }
  20793. },
  20794. },
  20795. [
  20796. {
  20797. name: "Micro",
  20798. height: math.unit(5, "inches")
  20799. },
  20800. {
  20801. name: "Normal",
  20802. height: math.unit(5 + 3 / 12, "feet"),
  20803. default: true
  20804. },
  20805. ]
  20806. ))
  20807. characterMakers.push(() => makeCharacter(
  20808. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20809. {
  20810. side: {
  20811. height: math.unit(4, "inches"),
  20812. weight: math.unit(200, "grams"),
  20813. name: "Side",
  20814. image: {
  20815. source: "./media/characters/der/side.svg",
  20816. extra: 719 / 400,
  20817. bottom: 30.6 / 749.9187
  20818. }
  20819. },
  20820. },
  20821. [
  20822. {
  20823. name: "Micro",
  20824. height: math.unit(4, "inches"),
  20825. default: true
  20826. },
  20827. ]
  20828. ))
  20829. characterMakers.push(() => makeCharacter(
  20830. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20831. {
  20832. side: {
  20833. height: math.unit(30, "meters"),
  20834. weight: math.unit(700, "tonnes"),
  20835. name: "Side",
  20836. image: {
  20837. source: "./media/characters/fixerdragon/side.svg",
  20838. extra: (1293.0514 - 116.03) / 1106.86,
  20839. bottom: 116.03 / 1293.0514
  20840. }
  20841. },
  20842. },
  20843. [
  20844. {
  20845. name: "Planck",
  20846. height: math.unit(1.6e-35, "meters")
  20847. },
  20848. {
  20849. name: "Micro",
  20850. height: math.unit(0.4, "meters")
  20851. },
  20852. {
  20853. name: "Normal",
  20854. height: math.unit(30, "meters"),
  20855. default: true
  20856. },
  20857. {
  20858. name: "Megamacro",
  20859. height: math.unit(1.2, "megameters")
  20860. },
  20861. {
  20862. name: "Teramacro",
  20863. height: math.unit(130, "terameters")
  20864. },
  20865. {
  20866. name: "Yottamacro",
  20867. height: math.unit(6200, "yottameters")
  20868. },
  20869. ]
  20870. ));
  20871. characterMakers.push(() => makeCharacter(
  20872. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20873. {
  20874. front: {
  20875. height: math.unit(8, "feet"),
  20876. weight: math.unit(250, "lb"),
  20877. name: "Front",
  20878. image: {
  20879. source: "./media/characters/kite/front.svg",
  20880. extra: 2796 / 2659,
  20881. bottom: 0.002
  20882. }
  20883. },
  20884. },
  20885. [
  20886. {
  20887. name: "Normal",
  20888. height: math.unit(8, "feet"),
  20889. default: true
  20890. },
  20891. {
  20892. name: "Macro",
  20893. height: math.unit(360, "feet")
  20894. },
  20895. {
  20896. name: "Megamacro",
  20897. height: math.unit(1500, "feet")
  20898. },
  20899. ]
  20900. ))
  20901. characterMakers.push(() => makeCharacter(
  20902. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20903. {
  20904. front: {
  20905. height: math.unit(5 + 10 / 12, "feet"),
  20906. weight: math.unit(150, "lb"),
  20907. name: "Front",
  20908. image: {
  20909. source: "./media/characters/poojawa-vynar/front.svg",
  20910. extra: (1506.1547 - 55) / 1356.6,
  20911. bottom: 55 / 1506.1547
  20912. }
  20913. },
  20914. frontTailless: {
  20915. height: math.unit(5 + 10 / 12, "feet"),
  20916. weight: math.unit(150, "lb"),
  20917. name: "Front (Tailless)",
  20918. image: {
  20919. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20920. extra: (1506.1547 - 55) / 1356.6,
  20921. bottom: 55 / 1506.1547
  20922. }
  20923. },
  20924. },
  20925. [
  20926. {
  20927. name: "Normal",
  20928. height: math.unit(5 + 10 / 12, "feet"),
  20929. default: true
  20930. },
  20931. ]
  20932. ))
  20933. characterMakers.push(() => makeCharacter(
  20934. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20935. {
  20936. front: {
  20937. height: math.unit(293, "meters"),
  20938. weight: math.unit(70400, "tons"),
  20939. name: "Front",
  20940. image: {
  20941. source: "./media/characters/violette/front.svg",
  20942. extra: 1227 / 1180,
  20943. bottom: 0.005
  20944. }
  20945. },
  20946. back: {
  20947. height: math.unit(293, "meters"),
  20948. weight: math.unit(70400, "tons"),
  20949. name: "Back",
  20950. image: {
  20951. source: "./media/characters/violette/back.svg",
  20952. extra: 1227 / 1180,
  20953. bottom: 0.005
  20954. }
  20955. },
  20956. },
  20957. [
  20958. {
  20959. name: "Macro",
  20960. height: math.unit(293, "meters"),
  20961. default: true
  20962. },
  20963. ]
  20964. ))
  20965. characterMakers.push(() => makeCharacter(
  20966. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20967. {
  20968. front: {
  20969. height: math.unit(1050, "feet"),
  20970. weight: math.unit(200000, "tons"),
  20971. name: "Front",
  20972. image: {
  20973. source: "./media/characters/alessandra/front.svg",
  20974. extra: 960 / 912,
  20975. bottom: 0.06
  20976. }
  20977. },
  20978. },
  20979. [
  20980. {
  20981. name: "Macro",
  20982. height: math.unit(1050, "feet")
  20983. },
  20984. {
  20985. name: "Macro+",
  20986. height: math.unit(900, "meters"),
  20987. default: true
  20988. },
  20989. ]
  20990. ))
  20991. characterMakers.push(() => makeCharacter(
  20992. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20993. {
  20994. front: {
  20995. height: math.unit(5, "feet"),
  20996. weight: math.unit(187, "lb"),
  20997. name: "Front",
  20998. image: {
  20999. source: "./media/characters/person/front.svg",
  21000. extra: 3087 / 2945,
  21001. bottom: 91 / 3181
  21002. }
  21003. },
  21004. },
  21005. [
  21006. {
  21007. name: "Micro",
  21008. height: math.unit(3, "inches")
  21009. },
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(5, "feet"),
  21013. default: true
  21014. },
  21015. {
  21016. name: "Macro",
  21017. height: math.unit(90, "feet")
  21018. },
  21019. {
  21020. name: "Max Size",
  21021. height: math.unit(280, "feet")
  21022. },
  21023. ]
  21024. ))
  21025. characterMakers.push(() => makeCharacter(
  21026. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21027. {
  21028. front: {
  21029. height: math.unit(4.5, "meters"),
  21030. weight: math.unit(3200, "lb"),
  21031. name: "Front",
  21032. image: {
  21033. source: "./media/characters/ty/front.svg",
  21034. extra: 1038 / 960,
  21035. bottom: 31.156 / 1068
  21036. }
  21037. },
  21038. back: {
  21039. height: math.unit(4.5, "meters"),
  21040. weight: math.unit(3200, "lb"),
  21041. name: "Back",
  21042. image: {
  21043. source: "./media/characters/ty/back.svg",
  21044. extra: 1044 / 966,
  21045. bottom: 7.48 / 1049
  21046. }
  21047. },
  21048. },
  21049. [
  21050. {
  21051. name: "Normal",
  21052. height: math.unit(4.5, "meters"),
  21053. default: true
  21054. },
  21055. ]
  21056. ))
  21057. characterMakers.push(() => makeCharacter(
  21058. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21059. {
  21060. front: {
  21061. height: math.unit(5 + 4 / 12, "feet"),
  21062. weight: math.unit(115, "lb"),
  21063. name: "Front",
  21064. image: {
  21065. source: "./media/characters/rocky/front.svg",
  21066. extra: 1012 / 975,
  21067. bottom: 54 / 1066
  21068. }
  21069. },
  21070. },
  21071. [
  21072. {
  21073. name: "Normal",
  21074. height: math.unit(5 + 4 / 12, "feet"),
  21075. default: true
  21076. },
  21077. ]
  21078. ))
  21079. characterMakers.push(() => makeCharacter(
  21080. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21081. {
  21082. upright: {
  21083. height: math.unit(6, "meters"),
  21084. weight: math.unit(4000, "kg"),
  21085. name: "Upright",
  21086. image: {
  21087. source: "./media/characters/ruin/upright.svg",
  21088. extra: 668 / 661,
  21089. bottom: 42 / 799.8396
  21090. }
  21091. },
  21092. },
  21093. [
  21094. {
  21095. name: "Normal",
  21096. height: math.unit(6, "meters"),
  21097. default: true
  21098. },
  21099. ]
  21100. ))
  21101. characterMakers.push(() => makeCharacter(
  21102. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21103. {
  21104. front: {
  21105. height: math.unit(5, "feet"),
  21106. weight: math.unit(106, "lb"),
  21107. name: "Front",
  21108. image: {
  21109. source: "./media/characters/robin/front.svg",
  21110. extra: 862 / 799,
  21111. bottom: 42.4 / 914.8856
  21112. }
  21113. },
  21114. },
  21115. [
  21116. {
  21117. name: "Normal",
  21118. height: math.unit(5, "feet"),
  21119. default: true
  21120. },
  21121. ]
  21122. ))
  21123. characterMakers.push(() => makeCharacter(
  21124. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21125. {
  21126. side: {
  21127. height: math.unit(3, "feet"),
  21128. weight: math.unit(225, "lb"),
  21129. name: "Side",
  21130. image: {
  21131. source: "./media/characters/saian/side.svg",
  21132. extra: 566 / 356,
  21133. bottom: 79.7 / 643
  21134. }
  21135. },
  21136. maw: {
  21137. height: math.unit(2.85, "feet"),
  21138. name: "Maw",
  21139. image: {
  21140. source: "./media/characters/saian/maw.svg"
  21141. }
  21142. },
  21143. },
  21144. [
  21145. {
  21146. name: "Normal",
  21147. height: math.unit(3, "feet"),
  21148. default: true
  21149. },
  21150. ]
  21151. ))
  21152. characterMakers.push(() => makeCharacter(
  21153. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21154. {
  21155. side: {
  21156. height: math.unit(8, "feet"),
  21157. weight: math.unit(300, "lb"),
  21158. name: "Side",
  21159. image: {
  21160. source: "./media/characters/equus-silvermane/side.svg",
  21161. extra: 2176 / 2050,
  21162. bottom: 65.7 / 2245
  21163. }
  21164. },
  21165. front: {
  21166. height: math.unit(8, "feet"),
  21167. weight: math.unit(300, "lb"),
  21168. name: "Front",
  21169. image: {
  21170. source: "./media/characters/equus-silvermane/front.svg",
  21171. extra: 4633 / 4400,
  21172. bottom: 71.3 / 4706.915
  21173. }
  21174. },
  21175. sideStepping: {
  21176. height: math.unit(8, "feet"),
  21177. weight: math.unit(300, "lb"),
  21178. name: "Side (Stepping)",
  21179. image: {
  21180. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21181. extra: 1968 / 1860,
  21182. bottom: 16.4 / 1989
  21183. }
  21184. },
  21185. },
  21186. [
  21187. {
  21188. name: "Normal",
  21189. height: math.unit(8, "feet")
  21190. },
  21191. {
  21192. name: "Minimacro",
  21193. height: math.unit(75, "feet"),
  21194. default: true
  21195. },
  21196. {
  21197. name: "Macro",
  21198. height: math.unit(150, "feet")
  21199. },
  21200. {
  21201. name: "Macro+",
  21202. height: math.unit(1000, "feet")
  21203. },
  21204. {
  21205. name: "Megamacro",
  21206. height: math.unit(1, "mile")
  21207. },
  21208. ]
  21209. ))
  21210. characterMakers.push(() => makeCharacter(
  21211. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21212. {
  21213. side: {
  21214. height: math.unit(20, "feet"),
  21215. weight: math.unit(30000, "kg"),
  21216. name: "Side",
  21217. image: {
  21218. source: "./media/characters/windar/side.svg",
  21219. extra: 1491 / 1248,
  21220. bottom: 82.56 / 1568
  21221. }
  21222. },
  21223. },
  21224. [
  21225. {
  21226. name: "Normal",
  21227. height: math.unit(20, "feet"),
  21228. default: true
  21229. },
  21230. ]
  21231. ))
  21232. characterMakers.push(() => makeCharacter(
  21233. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21234. {
  21235. side: {
  21236. height: math.unit(15.66, "feet"),
  21237. weight: math.unit(150, "lb"),
  21238. name: "Side",
  21239. image: {
  21240. source: "./media/characters/melody/side.svg",
  21241. extra: 1097 / 944,
  21242. bottom: 11.8 / 1109
  21243. }
  21244. },
  21245. sideOutfit: {
  21246. height: math.unit(15.66, "feet"),
  21247. weight: math.unit(150, "lb"),
  21248. name: "Side (Outfit)",
  21249. image: {
  21250. source: "./media/characters/melody/side-outfit.svg",
  21251. extra: 1097 / 944,
  21252. bottom: 11.8 / 1109
  21253. }
  21254. },
  21255. },
  21256. [
  21257. {
  21258. name: "Normal",
  21259. height: math.unit(15.66, "feet"),
  21260. default: true
  21261. },
  21262. ]
  21263. ))
  21264. characterMakers.push(() => makeCharacter(
  21265. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21266. {
  21267. front: {
  21268. height: math.unit(8, "feet"),
  21269. weight: math.unit(325, "lb"),
  21270. name: "Front",
  21271. image: {
  21272. source: "./media/characters/windera/front.svg",
  21273. extra: 3180 / 2845,
  21274. bottom: 178 / 3365
  21275. }
  21276. },
  21277. },
  21278. [
  21279. {
  21280. name: "Normal",
  21281. height: math.unit(8, "feet"),
  21282. default: true
  21283. },
  21284. ]
  21285. ))
  21286. characterMakers.push(() => makeCharacter(
  21287. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21288. {
  21289. front: {
  21290. height: math.unit(28.75, "feet"),
  21291. weight: math.unit(2000, "kg"),
  21292. name: "Front",
  21293. image: {
  21294. source: "./media/characters/sonear/front.svg",
  21295. extra: 1041.1 / 964.9,
  21296. bottom: 53.7 / 1096.6
  21297. }
  21298. },
  21299. },
  21300. [
  21301. {
  21302. name: "Normal",
  21303. height: math.unit(28.75, "feet"),
  21304. default: true
  21305. },
  21306. ]
  21307. ))
  21308. characterMakers.push(() => makeCharacter(
  21309. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21310. {
  21311. side: {
  21312. height: math.unit(25.5, "feet"),
  21313. weight: math.unit(23000, "kg"),
  21314. name: "Side",
  21315. image: {
  21316. source: "./media/characters/kanara/side.svg"
  21317. }
  21318. },
  21319. },
  21320. [
  21321. {
  21322. name: "Normal",
  21323. height: math.unit(25.5, "feet"),
  21324. default: true
  21325. },
  21326. ]
  21327. ))
  21328. characterMakers.push(() => makeCharacter(
  21329. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21330. {
  21331. side: {
  21332. height: math.unit(10, "feet"),
  21333. weight: math.unit(1000, "kg"),
  21334. name: "Side",
  21335. image: {
  21336. source: "./media/characters/ereus/side.svg",
  21337. extra: 1157 / 959,
  21338. bottom: 153 / 1312.5
  21339. }
  21340. },
  21341. },
  21342. [
  21343. {
  21344. name: "Normal",
  21345. height: math.unit(10, "feet"),
  21346. default: true
  21347. },
  21348. ]
  21349. ))
  21350. characterMakers.push(() => makeCharacter(
  21351. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21352. {
  21353. side: {
  21354. height: math.unit(4.5, "feet"),
  21355. weight: math.unit(500, "lb"),
  21356. name: "Side",
  21357. image: {
  21358. source: "./media/characters/e-ter/side.svg",
  21359. extra: 1550 / 1248,
  21360. bottom: 146 / 1694
  21361. }
  21362. },
  21363. },
  21364. [
  21365. {
  21366. name: "Normal",
  21367. height: math.unit(4.5, "feet"),
  21368. default: true
  21369. },
  21370. ]
  21371. ))
  21372. characterMakers.push(() => makeCharacter(
  21373. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21374. {
  21375. side: {
  21376. height: math.unit(9.7, "feet"),
  21377. weight: math.unit(4000, "kg"),
  21378. name: "Side",
  21379. image: {
  21380. source: "./media/characters/yamie/side.svg"
  21381. }
  21382. },
  21383. },
  21384. [
  21385. {
  21386. name: "Normal",
  21387. height: math.unit(9.7, "feet"),
  21388. default: true
  21389. },
  21390. ]
  21391. ))
  21392. characterMakers.push(() => makeCharacter(
  21393. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21394. {
  21395. front: {
  21396. height: math.unit(50, "feet"),
  21397. weight: math.unit(50000, "kg"),
  21398. name: "Front",
  21399. image: {
  21400. source: "./media/characters/anders/front.svg",
  21401. extra: 570 / 539,
  21402. bottom: 14.7 / 586.7
  21403. }
  21404. },
  21405. },
  21406. [
  21407. {
  21408. name: "Large",
  21409. height: math.unit(50, "feet")
  21410. },
  21411. {
  21412. name: "Macro",
  21413. height: math.unit(2000, "feet"),
  21414. default: true
  21415. },
  21416. {
  21417. name: "Megamacro",
  21418. height: math.unit(12, "miles")
  21419. },
  21420. ]
  21421. ))
  21422. characterMakers.push(() => makeCharacter(
  21423. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21424. {
  21425. front: {
  21426. height: math.unit(7 + 2 / 12, "feet"),
  21427. weight: math.unit(300, "lb"),
  21428. name: "Front",
  21429. image: {
  21430. source: "./media/characters/reban/front.svg",
  21431. extra: 516 / 487,
  21432. bottom: 42.82 / 558.356
  21433. }
  21434. },
  21435. dick: {
  21436. height: math.unit(7 / 5, "feet"),
  21437. name: "Dick",
  21438. image: {
  21439. source: "./media/characters/reban/dick.svg"
  21440. }
  21441. },
  21442. },
  21443. [
  21444. {
  21445. name: "Natural Height",
  21446. height: math.unit(7 + 2 / 12, "feet")
  21447. },
  21448. {
  21449. name: "Macro",
  21450. height: math.unit(500, "feet"),
  21451. default: true
  21452. },
  21453. {
  21454. name: "Canon Height",
  21455. height: math.unit(50, "AU")
  21456. },
  21457. ]
  21458. ))
  21459. characterMakers.push(() => makeCharacter(
  21460. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21461. {
  21462. front: {
  21463. height: math.unit(6, "feet"),
  21464. weight: math.unit(150, "lb"),
  21465. name: "Front",
  21466. image: {
  21467. source: "./media/characters/terrance-keayes/front.svg",
  21468. extra: 1.005,
  21469. bottom: 151 / 1615
  21470. }
  21471. },
  21472. side: {
  21473. height: math.unit(6, "feet"),
  21474. weight: math.unit(150, "lb"),
  21475. name: "Side",
  21476. image: {
  21477. source: "./media/characters/terrance-keayes/side.svg",
  21478. extra: 1.005,
  21479. bottom: 129.4 / 1544
  21480. }
  21481. },
  21482. back: {
  21483. height: math.unit(6, "feet"),
  21484. weight: math.unit(150, "lb"),
  21485. name: "Back",
  21486. image: {
  21487. source: "./media/characters/terrance-keayes/back.svg",
  21488. extra: 1.005,
  21489. bottom: 58.4 / 1557.3
  21490. }
  21491. },
  21492. dick: {
  21493. height: math.unit(6 * 0.208, "feet"),
  21494. name: "Dick",
  21495. image: {
  21496. source: "./media/characters/terrance-keayes/dick.svg"
  21497. }
  21498. },
  21499. },
  21500. [
  21501. {
  21502. name: "Canon Height",
  21503. height: math.unit(35, "miles"),
  21504. default: true
  21505. },
  21506. ]
  21507. ))
  21508. characterMakers.push(() => makeCharacter(
  21509. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21510. {
  21511. front: {
  21512. height: math.unit(6, "feet"),
  21513. weight: math.unit(150, "lb"),
  21514. name: "Front",
  21515. image: {
  21516. source: "./media/characters/ofelia/front.svg",
  21517. extra: 546 / 541,
  21518. bottom: 39 / 583
  21519. }
  21520. },
  21521. back: {
  21522. height: math.unit(6, "feet"),
  21523. weight: math.unit(150, "lb"),
  21524. name: "Back",
  21525. image: {
  21526. source: "./media/characters/ofelia/back.svg",
  21527. extra: 564 / 559.5,
  21528. bottom: 8.69 / 573.02
  21529. }
  21530. },
  21531. maw: {
  21532. height: math.unit(1, "feet"),
  21533. name: "Maw",
  21534. image: {
  21535. source: "./media/characters/ofelia/maw.svg"
  21536. }
  21537. },
  21538. foot: {
  21539. height: math.unit(1.949, "feet"),
  21540. name: "Foot",
  21541. image: {
  21542. source: "./media/characters/ofelia/foot.svg"
  21543. }
  21544. },
  21545. },
  21546. [
  21547. {
  21548. name: "Canon Height",
  21549. height: math.unit(2000, "miles"),
  21550. default: true
  21551. },
  21552. ]
  21553. ))
  21554. characterMakers.push(() => makeCharacter(
  21555. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21556. {
  21557. front: {
  21558. height: math.unit(6, "feet"),
  21559. weight: math.unit(150, "lb"),
  21560. name: "Front",
  21561. image: {
  21562. source: "./media/characters/samuel/front.svg",
  21563. extra: 265 / 258,
  21564. bottom: 2 / 266.1566
  21565. }
  21566. },
  21567. },
  21568. [
  21569. {
  21570. name: "Macro",
  21571. height: math.unit(100, "feet"),
  21572. default: true
  21573. },
  21574. {
  21575. name: "Full Size",
  21576. height: math.unit(1000, "miles")
  21577. },
  21578. ]
  21579. ))
  21580. characterMakers.push(() => makeCharacter(
  21581. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21582. {
  21583. front: {
  21584. height: math.unit(6, "feet"),
  21585. weight: math.unit(300, "lb"),
  21586. name: "Front",
  21587. image: {
  21588. source: "./media/characters/beishir-kiel/front.svg",
  21589. extra: 569 / 547,
  21590. bottom: 41.9 / 609
  21591. }
  21592. },
  21593. maw: {
  21594. height: math.unit(6 * 0.202, "feet"),
  21595. name: "Maw",
  21596. image: {
  21597. source: "./media/characters/beishir-kiel/maw.svg"
  21598. }
  21599. },
  21600. },
  21601. [
  21602. {
  21603. name: "Macro",
  21604. height: math.unit(300, "feet"),
  21605. default: true
  21606. },
  21607. ]
  21608. ))
  21609. characterMakers.push(() => makeCharacter(
  21610. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21611. {
  21612. front: {
  21613. height: math.unit(5 + 8 / 12, "feet"),
  21614. weight: math.unit(120, "lb"),
  21615. name: "Front",
  21616. image: {
  21617. source: "./media/characters/logan-grey/front.svg",
  21618. extra: 2539 / 2393,
  21619. bottom: 97.6 / 2636.37
  21620. }
  21621. },
  21622. frontAlt: {
  21623. height: math.unit(5 + 8 / 12, "feet"),
  21624. weight: math.unit(120, "lb"),
  21625. name: "Front (Alt)",
  21626. image: {
  21627. source: "./media/characters/logan-grey/front-alt.svg",
  21628. extra: 958 / 893,
  21629. bottom: 15 / 970.768
  21630. }
  21631. },
  21632. back: {
  21633. height: math.unit(5 + 8 / 12, "feet"),
  21634. weight: math.unit(120, "lb"),
  21635. name: "Back",
  21636. image: {
  21637. source: "./media/characters/logan-grey/back.svg",
  21638. extra: 958 / 893,
  21639. bottom: 2.1881 / 970.9788
  21640. }
  21641. },
  21642. dick: {
  21643. height: math.unit(1.437, "feet"),
  21644. name: "Dick",
  21645. image: {
  21646. source: "./media/characters/logan-grey/dick.svg"
  21647. }
  21648. },
  21649. },
  21650. [
  21651. {
  21652. name: "Normal",
  21653. height: math.unit(5 + 8 / 12, "feet")
  21654. },
  21655. {
  21656. name: "The 500 Foot Femboy",
  21657. height: math.unit(500, "feet"),
  21658. default: true
  21659. },
  21660. {
  21661. name: "Megmacro",
  21662. height: math.unit(20, "miles")
  21663. },
  21664. ]
  21665. ))
  21666. characterMakers.push(() => makeCharacter(
  21667. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21668. {
  21669. front: {
  21670. height: math.unit(8 + 2 / 12, "feet"),
  21671. weight: math.unit(275, "lb"),
  21672. name: "Front",
  21673. image: {
  21674. source: "./media/characters/draganta/front.svg",
  21675. extra: 1177 / 1135,
  21676. bottom: 33.46 / 1212.1
  21677. }
  21678. },
  21679. },
  21680. [
  21681. {
  21682. name: "Normal",
  21683. height: math.unit(8 + 6 / 12, "feet"),
  21684. default: true
  21685. },
  21686. {
  21687. name: "Macro",
  21688. height: math.unit(150, "feet")
  21689. },
  21690. {
  21691. name: "Megamacro",
  21692. height: math.unit(1000, "miles")
  21693. },
  21694. ]
  21695. ))
  21696. characterMakers.push(() => makeCharacter(
  21697. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21698. {
  21699. front: {
  21700. height: math.unit(1.72, "m"),
  21701. weight: math.unit(80, "lb"),
  21702. name: "Front",
  21703. image: {
  21704. source: "./media/characters/voski/front.svg",
  21705. extra: 2076.22 / 2022.4,
  21706. bottom: 102.7 / 2177.3866
  21707. }
  21708. },
  21709. frontNsfw: {
  21710. height: math.unit(1.72, "m"),
  21711. weight: math.unit(80, "lb"),
  21712. name: "Front (NSFW)",
  21713. image: {
  21714. source: "./media/characters/voski/front-nsfw.svg",
  21715. extra: 2076.22 / 2022.4,
  21716. bottom: 102.7 / 2177.3866
  21717. }
  21718. },
  21719. back: {
  21720. height: math.unit(1.72, "m"),
  21721. weight: math.unit(80, "lb"),
  21722. name: "Back",
  21723. image: {
  21724. source: "./media/characters/voski/back.svg",
  21725. extra: 2104 / 2051,
  21726. bottom: 10.45 / 2113.63
  21727. }
  21728. },
  21729. },
  21730. [
  21731. {
  21732. name: "Normal",
  21733. height: math.unit(1.72, "m")
  21734. },
  21735. {
  21736. name: "Macro",
  21737. height: math.unit(55, "m"),
  21738. default: true
  21739. },
  21740. {
  21741. name: "Macro+",
  21742. height: math.unit(300, "m")
  21743. },
  21744. {
  21745. name: "Macro++",
  21746. height: math.unit(700, "m")
  21747. },
  21748. {
  21749. name: "Macro+++",
  21750. height: math.unit(4500, "m")
  21751. },
  21752. {
  21753. name: "Macro++++",
  21754. height: math.unit(45, "km")
  21755. },
  21756. {
  21757. name: "Macro+++++",
  21758. height: math.unit(1220, "km")
  21759. },
  21760. ]
  21761. ))
  21762. characterMakers.push(() => makeCharacter(
  21763. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21764. {
  21765. front: {
  21766. height: math.unit(2.3, "m"),
  21767. weight: math.unit(304, "kg"),
  21768. name: "Front",
  21769. image: {
  21770. source: "./media/characters/icowom-lee/front.svg",
  21771. extra: 985 / 955,
  21772. bottom: 25.4 / 1012
  21773. }
  21774. },
  21775. fronttentacles: {
  21776. height: math.unit(2.3, "m"),
  21777. weight: math.unit(304, "kg"),
  21778. name: "Front-tentacles",
  21779. image: {
  21780. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21781. extra: 985 / 955,
  21782. bottom: 25.4 / 1012
  21783. }
  21784. },
  21785. back: {
  21786. height: math.unit(2.3, "m"),
  21787. weight: math.unit(304, "kg"),
  21788. name: "Back",
  21789. image: {
  21790. source: "./media/characters/icowom-lee/back.svg",
  21791. extra: 975 / 954,
  21792. bottom: 9.5 / 985
  21793. }
  21794. },
  21795. backtentacles: {
  21796. height: math.unit(2.3, "m"),
  21797. weight: math.unit(304, "kg"),
  21798. name: "Back-tentacles",
  21799. image: {
  21800. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21801. extra: 975 / 954,
  21802. bottom: 9.5 / 985
  21803. }
  21804. },
  21805. frontDressed: {
  21806. height: math.unit(2.3, "m"),
  21807. weight: math.unit(304, "kg"),
  21808. name: "Front (Dressed)",
  21809. image: {
  21810. source: "./media/characters/icowom-lee/front-dressed.svg",
  21811. extra: 3076 / 2933,
  21812. bottom: 51.4 / 3125.1889
  21813. }
  21814. },
  21815. rump: {
  21816. height: math.unit(0.776, "meters"),
  21817. name: "Rump",
  21818. image: {
  21819. source: "./media/characters/icowom-lee/rump.svg"
  21820. }
  21821. },
  21822. genitals: {
  21823. height: math.unit(0.78, "meters"),
  21824. name: "Genitals",
  21825. image: {
  21826. source: "./media/characters/icowom-lee/genitals.svg"
  21827. }
  21828. },
  21829. },
  21830. [
  21831. {
  21832. name: "Normal",
  21833. height: math.unit(2.3, "meters"),
  21834. default: true
  21835. },
  21836. {
  21837. name: "Macro",
  21838. height: math.unit(94, "meters"),
  21839. default: true
  21840. },
  21841. ]
  21842. ))
  21843. characterMakers.push(() => makeCharacter(
  21844. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21845. {
  21846. front: {
  21847. height: math.unit(22, "meters"),
  21848. weight: math.unit(21000, "kg"),
  21849. name: "Front",
  21850. image: {
  21851. source: "./media/characters/shock-diamond/front.svg",
  21852. extra: 2204 / 2053,
  21853. bottom: 65 / 2239.47
  21854. }
  21855. },
  21856. frontNude: {
  21857. height: math.unit(22, "meters"),
  21858. weight: math.unit(21000, "kg"),
  21859. name: "Front (Nude)",
  21860. image: {
  21861. source: "./media/characters/shock-diamond/front-nude.svg",
  21862. extra: 2514 / 2285,
  21863. bottom: 13 / 2527.56
  21864. }
  21865. },
  21866. },
  21867. [
  21868. {
  21869. name: "Normal",
  21870. height: math.unit(3, "meters")
  21871. },
  21872. {
  21873. name: "Macro",
  21874. height: math.unit(22, "meters"),
  21875. default: true
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21881. {
  21882. front: {
  21883. height: math.unit(5 + 4 / 12, "feet"),
  21884. weight: math.unit(120, "lb"),
  21885. name: "Front",
  21886. image: {
  21887. source: "./media/characters/rory/front.svg",
  21888. extra: 589 / 556,
  21889. bottom: 45.7 / 635.76
  21890. }
  21891. },
  21892. frontNude: {
  21893. height: math.unit(5 + 4 / 12, "feet"),
  21894. weight: math.unit(120, "lb"),
  21895. name: "Front (Nude)",
  21896. image: {
  21897. source: "./media/characters/rory/front-nude.svg",
  21898. extra: 589 / 556,
  21899. bottom: 45.7 / 635.76
  21900. }
  21901. },
  21902. side: {
  21903. height: math.unit(5 + 4 / 12, "feet"),
  21904. weight: math.unit(120, "lb"),
  21905. name: "Side",
  21906. image: {
  21907. source: "./media/characters/rory/side.svg",
  21908. extra: 597 / 564,
  21909. bottom: 55 / 653
  21910. }
  21911. },
  21912. back: {
  21913. height: math.unit(5 + 4 / 12, "feet"),
  21914. weight: math.unit(120, "lb"),
  21915. name: "Back",
  21916. image: {
  21917. source: "./media/characters/rory/back.svg",
  21918. extra: 620 / 585,
  21919. bottom: 8.86 / 630.43
  21920. }
  21921. },
  21922. dick: {
  21923. height: math.unit(0.86, "feet"),
  21924. name: "Dick",
  21925. image: {
  21926. source: "./media/characters/rory/dick.svg"
  21927. }
  21928. },
  21929. },
  21930. [
  21931. {
  21932. name: "Normal",
  21933. height: math.unit(5 + 4 / 12, "feet"),
  21934. default: true
  21935. },
  21936. {
  21937. name: "Macro",
  21938. height: math.unit(100, "feet")
  21939. },
  21940. {
  21941. name: "Macro+",
  21942. height: math.unit(140, "feet")
  21943. },
  21944. {
  21945. name: "Macro++",
  21946. height: math.unit(300, "feet")
  21947. },
  21948. ]
  21949. ))
  21950. characterMakers.push(() => makeCharacter(
  21951. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21952. {
  21953. front: {
  21954. height: math.unit(5 + 9 / 12, "feet"),
  21955. weight: math.unit(190, "lb"),
  21956. name: "Front",
  21957. image: {
  21958. source: "./media/characters/sprisk/front.svg",
  21959. extra: 1225 / 1180,
  21960. bottom: 42.7 / 1266.4
  21961. }
  21962. },
  21963. frontNsfw: {
  21964. height: math.unit(5 + 9 / 12, "feet"),
  21965. weight: math.unit(190, "lb"),
  21966. name: "Front (NSFW)",
  21967. image: {
  21968. source: "./media/characters/sprisk/front-nsfw.svg",
  21969. extra: 1225 / 1180,
  21970. bottom: 42.7 / 1266.4
  21971. }
  21972. },
  21973. back: {
  21974. height: math.unit(5 + 9 / 12, "feet"),
  21975. weight: math.unit(190, "lb"),
  21976. name: "Back",
  21977. image: {
  21978. source: "./media/characters/sprisk/back.svg",
  21979. extra: 1247 / 1200,
  21980. bottom: 5.6 / 1253.04
  21981. }
  21982. },
  21983. },
  21984. [
  21985. {
  21986. name: "Tiny",
  21987. height: math.unit(2, "inches")
  21988. },
  21989. {
  21990. name: "Normal",
  21991. height: math.unit(5 + 9 / 12, "feet"),
  21992. default: true
  21993. },
  21994. {
  21995. name: "Mini Macro",
  21996. height: math.unit(18, "feet")
  21997. },
  21998. {
  21999. name: "Macro",
  22000. height: math.unit(100, "feet")
  22001. },
  22002. {
  22003. name: "MACRO",
  22004. height: math.unit(50, "miles")
  22005. },
  22006. {
  22007. name: "M A C R O",
  22008. height: math.unit(300, "miles")
  22009. },
  22010. ]
  22011. ))
  22012. characterMakers.push(() => makeCharacter(
  22013. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22014. {
  22015. side: {
  22016. height: math.unit(15.6, "meters"),
  22017. weight: math.unit(700000, "kg"),
  22018. name: "Side",
  22019. image: {
  22020. source: "./media/characters/bunsen/side.svg",
  22021. extra: 1644 / 358
  22022. }
  22023. },
  22024. foot: {
  22025. height: math.unit(1.611 * 1644 / 358, "meter"),
  22026. name: "Foot",
  22027. image: {
  22028. source: "./media/characters/bunsen/foot.svg"
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Small",
  22035. height: math.unit(10, "feet")
  22036. },
  22037. {
  22038. name: "Normal",
  22039. height: math.unit(15.6, "meters"),
  22040. default: true
  22041. },
  22042. ]
  22043. ))
  22044. characterMakers.push(() => makeCharacter(
  22045. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22046. {
  22047. front: {
  22048. height: math.unit(4 + 11 / 12, "feet"),
  22049. weight: math.unit(140, "lb"),
  22050. name: "Front",
  22051. image: {
  22052. source: "./media/characters/sesh/front.svg",
  22053. extra: 3420 / 3231,
  22054. bottom: 72 / 3949.5
  22055. }
  22056. },
  22057. },
  22058. [
  22059. {
  22060. name: "Normal",
  22061. height: math.unit(4 + 11 / 12, "feet")
  22062. },
  22063. {
  22064. name: "Grown",
  22065. height: math.unit(15, "feet"),
  22066. default: true
  22067. },
  22068. {
  22069. name: "Macro",
  22070. height: math.unit(1500, "feet")
  22071. },
  22072. {
  22073. name: "Megamacro",
  22074. height: math.unit(30, "miles")
  22075. },
  22076. {
  22077. name: "Continental",
  22078. height: math.unit(3000, "miles")
  22079. },
  22080. {
  22081. name: "Gravity Mass",
  22082. height: math.unit(300000, "miles")
  22083. },
  22084. {
  22085. name: "Planet Buster",
  22086. height: math.unit(30000000, "miles")
  22087. },
  22088. {
  22089. name: "Big",
  22090. height: math.unit(3000000000, "miles")
  22091. },
  22092. ]
  22093. ))
  22094. characterMakers.push(() => makeCharacter(
  22095. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22096. {
  22097. front: {
  22098. height: math.unit(9, "feet"),
  22099. weight: math.unit(350, "lb"),
  22100. name: "Front",
  22101. image: {
  22102. source: "./media/characters/pepper/front.svg",
  22103. extra: 1448 / 1312,
  22104. bottom: 9.4 / 1457.88
  22105. }
  22106. },
  22107. back: {
  22108. height: math.unit(9, "feet"),
  22109. weight: math.unit(350, "lb"),
  22110. name: "Back",
  22111. image: {
  22112. source: "./media/characters/pepper/back.svg",
  22113. extra: 1423 / 1300,
  22114. bottom: 4.6 / 1429
  22115. }
  22116. },
  22117. maw: {
  22118. height: math.unit(0.932, "feet"),
  22119. name: "Maw",
  22120. image: {
  22121. source: "./media/characters/pepper/maw.svg"
  22122. }
  22123. },
  22124. },
  22125. [
  22126. {
  22127. name: "Normal",
  22128. height: math.unit(9, "feet"),
  22129. default: true
  22130. },
  22131. ]
  22132. ))
  22133. characterMakers.push(() => makeCharacter(
  22134. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22135. {
  22136. front: {
  22137. height: math.unit(6, "feet"),
  22138. weight: math.unit(150, "lb"),
  22139. name: "Front",
  22140. image: {
  22141. source: "./media/characters/maelstrom/front.svg",
  22142. extra: 2100 / 1883,
  22143. bottom: 94 / 2196.7
  22144. }
  22145. },
  22146. },
  22147. [
  22148. {
  22149. name: "Less Kaiju",
  22150. height: math.unit(200, "feet")
  22151. },
  22152. {
  22153. name: "Kaiju",
  22154. height: math.unit(400, "feet"),
  22155. default: true
  22156. },
  22157. {
  22158. name: "Kaiju-er",
  22159. height: math.unit(600, "feet")
  22160. },
  22161. ]
  22162. ))
  22163. characterMakers.push(() => makeCharacter(
  22164. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22165. {
  22166. front: {
  22167. height: math.unit(6 + 5 / 12, "feet"),
  22168. weight: math.unit(180, "lb"),
  22169. name: "Front",
  22170. image: {
  22171. source: "./media/characters/lexir/front.svg",
  22172. extra: 180 / 172,
  22173. bottom: 12 / 192
  22174. }
  22175. },
  22176. back: {
  22177. height: math.unit(6 + 5 / 12, "feet"),
  22178. weight: math.unit(180, "lb"),
  22179. name: "Back",
  22180. image: {
  22181. source: "./media/characters/lexir/back.svg",
  22182. extra: 183.84 / 175.5,
  22183. bottom: 3.1 / 187
  22184. }
  22185. },
  22186. },
  22187. [
  22188. {
  22189. name: "Very Smal",
  22190. height: math.unit(1, "nm")
  22191. },
  22192. {
  22193. name: "Normal",
  22194. height: math.unit(6 + 5 / 12, "feet"),
  22195. default: true
  22196. },
  22197. {
  22198. name: "Macro",
  22199. height: math.unit(1, "mile")
  22200. },
  22201. {
  22202. name: "Megamacro",
  22203. height: math.unit(50, "miles")
  22204. },
  22205. ]
  22206. ))
  22207. characterMakers.push(() => makeCharacter(
  22208. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22209. {
  22210. front: {
  22211. height: math.unit(1.5, "meters"),
  22212. weight: math.unit(100, "lb"),
  22213. name: "Front",
  22214. image: {
  22215. source: "./media/characters/maksio/front.svg",
  22216. extra: 1549 / 1531,
  22217. bottom: 123.7 / 1674.5429
  22218. }
  22219. },
  22220. back: {
  22221. height: math.unit(1.5, "meters"),
  22222. weight: math.unit(100, "lb"),
  22223. name: "Back",
  22224. image: {
  22225. source: "./media/characters/maksio/back.svg",
  22226. extra: 1541 / 1509,
  22227. bottom: 97 / 1639
  22228. }
  22229. },
  22230. hand: {
  22231. height: math.unit(0.621, "feet"),
  22232. name: "Hand",
  22233. image: {
  22234. source: "./media/characters/maksio/hand.svg"
  22235. }
  22236. },
  22237. foot: {
  22238. height: math.unit(1.611, "feet"),
  22239. name: "Foot",
  22240. image: {
  22241. source: "./media/characters/maksio/foot.svg"
  22242. }
  22243. },
  22244. },
  22245. [
  22246. {
  22247. name: "Shrunken",
  22248. height: math.unit(10, "cm")
  22249. },
  22250. {
  22251. name: "Normal",
  22252. height: math.unit(150, "cm"),
  22253. default: true
  22254. },
  22255. ]
  22256. ))
  22257. characterMakers.push(() => makeCharacter(
  22258. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22259. {
  22260. front: {
  22261. height: math.unit(100, "feet"),
  22262. name: "Front",
  22263. image: {
  22264. source: "./media/characters/erza-bear/front.svg",
  22265. extra: 2449 / 2390,
  22266. bottom: 46 / 2494
  22267. }
  22268. },
  22269. back: {
  22270. height: math.unit(100, "feet"),
  22271. name: "Back",
  22272. image: {
  22273. source: "./media/characters/erza-bear/back.svg",
  22274. extra: 2489 / 2430,
  22275. bottom: 85.4 / 2480
  22276. }
  22277. },
  22278. tail: {
  22279. height: math.unit(42, "feet"),
  22280. name: "Tail",
  22281. image: {
  22282. source: "./media/characters/erza-bear/tail.svg"
  22283. }
  22284. },
  22285. tongue: {
  22286. height: math.unit(8, "feet"),
  22287. name: "Tongue",
  22288. image: {
  22289. source: "./media/characters/erza-bear/tongue.svg"
  22290. }
  22291. },
  22292. dick: {
  22293. height: math.unit(10.5, "feet"),
  22294. name: "Dick",
  22295. image: {
  22296. source: "./media/characters/erza-bear/dick.svg"
  22297. }
  22298. },
  22299. dickVertical: {
  22300. height: math.unit(16.9, "feet"),
  22301. name: "Dick (Vertical)",
  22302. image: {
  22303. source: "./media/characters/erza-bear/dick-vertical.svg"
  22304. }
  22305. },
  22306. },
  22307. [
  22308. {
  22309. name: "Macro",
  22310. height: math.unit(100, "feet"),
  22311. default: true
  22312. },
  22313. ]
  22314. ))
  22315. characterMakers.push(() => makeCharacter(
  22316. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22317. {
  22318. front: {
  22319. height: math.unit(172, "cm"),
  22320. weight: math.unit(73, "kg"),
  22321. name: "Front",
  22322. image: {
  22323. source: "./media/characters/violet-flor/front.svg",
  22324. extra: 1530 / 1442,
  22325. bottom: 61.9 / 1588.8
  22326. }
  22327. },
  22328. back: {
  22329. height: math.unit(180, "cm"),
  22330. weight: math.unit(73, "kg"),
  22331. name: "Back",
  22332. image: {
  22333. source: "./media/characters/violet-flor/back.svg",
  22334. extra: 1692 / 1630,
  22335. bottom: 20 / 1712
  22336. }
  22337. },
  22338. },
  22339. [
  22340. {
  22341. name: "Normal",
  22342. height: math.unit(172, "cm"),
  22343. default: true
  22344. },
  22345. ]
  22346. ))
  22347. characterMakers.push(() => makeCharacter(
  22348. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22349. {
  22350. front: {
  22351. height: math.unit(6, "feet"),
  22352. weight: math.unit(220, "lb"),
  22353. name: "Front",
  22354. image: {
  22355. source: "./media/characters/lynn-rhea/front.svg",
  22356. extra: 310 / 273
  22357. }
  22358. },
  22359. back: {
  22360. height: math.unit(6, "feet"),
  22361. weight: math.unit(220, "lb"),
  22362. name: "Back",
  22363. image: {
  22364. source: "./media/characters/lynn-rhea/back.svg",
  22365. extra: 310 / 273
  22366. }
  22367. },
  22368. dicks: {
  22369. height: math.unit(0.9, "feet"),
  22370. name: "Dicks",
  22371. image: {
  22372. source: "./media/characters/lynn-rhea/dicks.svg"
  22373. }
  22374. },
  22375. slit: {
  22376. height: math.unit(0.4, "feet"),
  22377. name: "Slit",
  22378. image: {
  22379. source: "./media/characters/lynn-rhea/slit.svg"
  22380. }
  22381. },
  22382. },
  22383. [
  22384. {
  22385. name: "Micro",
  22386. height: math.unit(1, "inch")
  22387. },
  22388. {
  22389. name: "Macro",
  22390. height: math.unit(60, "feet"),
  22391. default: true
  22392. },
  22393. {
  22394. name: "Megamacro",
  22395. height: math.unit(2, "miles")
  22396. },
  22397. {
  22398. name: "Gigamacro",
  22399. height: math.unit(3, "earths")
  22400. },
  22401. {
  22402. name: "Galactic",
  22403. height: math.unit(0.8, "galaxies")
  22404. },
  22405. ]
  22406. ))
  22407. characterMakers.push(() => makeCharacter(
  22408. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22409. {
  22410. front: {
  22411. height: math.unit(1600, "feet"),
  22412. weight: math.unit(85758785169, "kg"),
  22413. name: "Front",
  22414. image: {
  22415. source: "./media/characters/valathos/front.svg",
  22416. extra: 1451 / 1339
  22417. }
  22418. },
  22419. },
  22420. [
  22421. {
  22422. name: "Macro",
  22423. height: math.unit(1600, "feet"),
  22424. default: true
  22425. },
  22426. ]
  22427. ))
  22428. characterMakers.push(() => makeCharacter(
  22429. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22430. {
  22431. front: {
  22432. height: math.unit(7 + 5 / 12, "feet"),
  22433. weight: math.unit(300, "lb"),
  22434. name: "Front",
  22435. image: {
  22436. source: "./media/characters/azula/front.svg",
  22437. extra: 3208 / 2880,
  22438. bottom: 80.2 / 3277
  22439. }
  22440. },
  22441. back: {
  22442. height: math.unit(7 + 5 / 12, "feet"),
  22443. weight: math.unit(300, "lb"),
  22444. name: "Back",
  22445. image: {
  22446. source: "./media/characters/azula/back.svg",
  22447. extra: 3169 / 2822,
  22448. bottom: 150.6 / 3321
  22449. }
  22450. },
  22451. },
  22452. [
  22453. {
  22454. name: "Normal",
  22455. height: math.unit(7 + 5 / 12, "feet"),
  22456. default: true
  22457. },
  22458. {
  22459. name: "Big",
  22460. height: math.unit(20, "feet")
  22461. },
  22462. ]
  22463. ))
  22464. characterMakers.push(() => makeCharacter(
  22465. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22466. {
  22467. front: {
  22468. height: math.unit(5 + 1 / 12, "feet"),
  22469. weight: math.unit(110, "lb"),
  22470. name: "Front",
  22471. image: {
  22472. source: "./media/characters/rupert/front.svg",
  22473. extra: 1549 / 1495,
  22474. bottom: 54.2 / 1604.4
  22475. }
  22476. },
  22477. },
  22478. [
  22479. {
  22480. name: "Normal",
  22481. height: math.unit(5 + 1 / 12, "feet"),
  22482. default: true
  22483. },
  22484. ]
  22485. ))
  22486. characterMakers.push(() => makeCharacter(
  22487. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22488. {
  22489. front: {
  22490. height: math.unit(8 + 4 / 12, "feet"),
  22491. weight: math.unit(350, "lb"),
  22492. name: "Front",
  22493. image: {
  22494. source: "./media/characters/sheera-castellar/front.svg",
  22495. extra: 1957 / 1894,
  22496. bottom: 26.97 / 1975.017
  22497. }
  22498. },
  22499. side: {
  22500. height: math.unit(8 + 4 / 12, "feet"),
  22501. weight: math.unit(350, "lb"),
  22502. name: "Side",
  22503. image: {
  22504. source: "./media/characters/sheera-castellar/side.svg",
  22505. extra: 1957 / 1894
  22506. }
  22507. },
  22508. back: {
  22509. height: math.unit(8 + 4 / 12, "feet"),
  22510. weight: math.unit(350, "lb"),
  22511. name: "Back",
  22512. image: {
  22513. source: "./media/characters/sheera-castellar/back.svg",
  22514. extra: 1957 / 1894
  22515. }
  22516. },
  22517. angled: {
  22518. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22519. weight: math.unit(350, "lb"),
  22520. name: "Angled",
  22521. image: {
  22522. source: "./media/characters/sheera-castellar/angled.svg",
  22523. extra: 1807 / 1707,
  22524. bottom: 68 / 1875
  22525. }
  22526. },
  22527. genitals: {
  22528. height: math.unit(2.2, "feet"),
  22529. name: "Genitals",
  22530. image: {
  22531. source: "./media/characters/sheera-castellar/genitals.svg"
  22532. }
  22533. },
  22534. },
  22535. [
  22536. {
  22537. name: "Normal",
  22538. height: math.unit(8 + 4 / 12, "feet")
  22539. },
  22540. {
  22541. name: "Macro",
  22542. height: math.unit(150, "feet"),
  22543. default: true
  22544. },
  22545. {
  22546. name: "Macro+",
  22547. height: math.unit(800, "feet")
  22548. },
  22549. ]
  22550. ))
  22551. characterMakers.push(() => makeCharacter(
  22552. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22553. {
  22554. front: {
  22555. height: math.unit(6, "feet"),
  22556. weight: math.unit(150, "lb"),
  22557. name: "Front",
  22558. image: {
  22559. source: "./media/characters/jaipur/front.svg",
  22560. extra: 3860 / 3731,
  22561. bottom: 287 / 4140
  22562. }
  22563. },
  22564. back: {
  22565. height: math.unit(6, "feet"),
  22566. weight: math.unit(150, "lb"),
  22567. name: "Back",
  22568. image: {
  22569. source: "./media/characters/jaipur/back.svg",
  22570. extra: 4060 / 3930,
  22571. bottom: 151 / 4200
  22572. }
  22573. },
  22574. },
  22575. [
  22576. {
  22577. name: "Normal",
  22578. height: math.unit(1.85, "meters"),
  22579. default: true
  22580. },
  22581. {
  22582. name: "Macro",
  22583. height: math.unit(150, "meters")
  22584. },
  22585. {
  22586. name: "Macro+",
  22587. height: math.unit(0.5, "miles")
  22588. },
  22589. {
  22590. name: "Macro++",
  22591. height: math.unit(2.5, "miles")
  22592. },
  22593. {
  22594. name: "Macro+++",
  22595. height: math.unit(12, "miles")
  22596. },
  22597. {
  22598. name: "Macro++++",
  22599. height: math.unit(120, "miles")
  22600. },
  22601. {
  22602. name: "Macro+++++",
  22603. height: math.unit(1200, "miles")
  22604. },
  22605. ]
  22606. ))
  22607. characterMakers.push(() => makeCharacter(
  22608. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22609. {
  22610. front: {
  22611. height: math.unit(6, "feet"),
  22612. weight: math.unit(150, "lb"),
  22613. name: "Front",
  22614. image: {
  22615. source: "./media/characters/sheila-wolf/front.svg",
  22616. extra: 1931 / 1808,
  22617. bottom: 29.5 / 1960
  22618. }
  22619. },
  22620. dick: {
  22621. height: math.unit(1.464, "feet"),
  22622. name: "Dick",
  22623. image: {
  22624. source: "./media/characters/sheila-wolf/dick.svg"
  22625. }
  22626. },
  22627. muzzle: {
  22628. height: math.unit(0.513, "feet"),
  22629. name: "Muzzle",
  22630. image: {
  22631. source: "./media/characters/sheila-wolf/muzzle.svg"
  22632. }
  22633. },
  22634. },
  22635. [
  22636. {
  22637. name: "Macro",
  22638. height: math.unit(70, "feet"),
  22639. default: true
  22640. },
  22641. ]
  22642. ))
  22643. characterMakers.push(() => makeCharacter(
  22644. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22645. {
  22646. front: {
  22647. height: math.unit(32, "meters"),
  22648. weight: math.unit(300000, "kg"),
  22649. name: "Front",
  22650. image: {
  22651. source: "./media/characters/almor/front.svg",
  22652. extra: 1408 / 1322,
  22653. bottom: 94.6 / 1506.5
  22654. }
  22655. },
  22656. },
  22657. [
  22658. {
  22659. name: "Macro",
  22660. height: math.unit(32, "meters"),
  22661. default: true
  22662. },
  22663. ]
  22664. ))
  22665. characterMakers.push(() => makeCharacter(
  22666. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22667. {
  22668. front: {
  22669. height: math.unit(7, "feet"),
  22670. weight: math.unit(200, "lb"),
  22671. name: "Front",
  22672. image: {
  22673. source: "./media/characters/silver/front.svg",
  22674. extra: 472.1 / 450.5,
  22675. bottom: 26.5 / 499.424
  22676. }
  22677. },
  22678. },
  22679. [
  22680. {
  22681. name: "Normal",
  22682. height: math.unit(7, "feet"),
  22683. default: true
  22684. },
  22685. {
  22686. name: "Macro",
  22687. height: math.unit(800, "feet")
  22688. },
  22689. {
  22690. name: "Megamacro",
  22691. height: math.unit(250, "miles")
  22692. },
  22693. ]
  22694. ))
  22695. characterMakers.push(() => makeCharacter(
  22696. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22697. {
  22698. front: {
  22699. height: math.unit(6, "feet"),
  22700. weight: math.unit(150, "lb"),
  22701. name: "Front",
  22702. image: {
  22703. source: "./media/characters/pliskin/front.svg",
  22704. extra: 1469 / 1359,
  22705. bottom: 70 / 1540
  22706. }
  22707. },
  22708. },
  22709. [
  22710. {
  22711. name: "Micro",
  22712. height: math.unit(3, "inches")
  22713. },
  22714. {
  22715. name: "Normal",
  22716. height: math.unit(5 + 11 / 12, "feet"),
  22717. default: true
  22718. },
  22719. {
  22720. name: "Macro",
  22721. height: math.unit(120, "feet")
  22722. },
  22723. ]
  22724. ))
  22725. characterMakers.push(() => makeCharacter(
  22726. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22727. {
  22728. front: {
  22729. height: math.unit(6, "feet"),
  22730. weight: math.unit(150, "lb"),
  22731. name: "Front",
  22732. image: {
  22733. source: "./media/characters/sammy/front.svg",
  22734. extra: 1193 / 1089,
  22735. bottom: 30.5 / 1226
  22736. }
  22737. },
  22738. },
  22739. [
  22740. {
  22741. name: "Macro",
  22742. height: math.unit(1700, "feet"),
  22743. default: true
  22744. },
  22745. {
  22746. name: "Examacro",
  22747. height: math.unit(2.5e9, "lightyears")
  22748. },
  22749. ]
  22750. ))
  22751. characterMakers.push(() => makeCharacter(
  22752. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22753. {
  22754. front: {
  22755. height: math.unit(21, "meters"),
  22756. weight: math.unit(12, "tonnes"),
  22757. name: "Front",
  22758. image: {
  22759. source: "./media/characters/kuru/front.svg",
  22760. extra: 4301 / 3785,
  22761. bottom: 371.3 / 4691
  22762. }
  22763. },
  22764. },
  22765. [
  22766. {
  22767. name: "Macro",
  22768. height: math.unit(21, "meters"),
  22769. default: true
  22770. },
  22771. ]
  22772. ))
  22773. characterMakers.push(() => makeCharacter(
  22774. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22775. {
  22776. front: {
  22777. height: math.unit(23, "meters"),
  22778. weight: math.unit(12.2, "tonnes"),
  22779. name: "Front",
  22780. image: {
  22781. source: "./media/characters/rakka/front.svg",
  22782. extra: 4670 / 4169,
  22783. bottom: 301 / 4968.7
  22784. }
  22785. },
  22786. },
  22787. [
  22788. {
  22789. name: "Macro",
  22790. height: math.unit(23, "meters"),
  22791. default: true
  22792. },
  22793. ]
  22794. ))
  22795. characterMakers.push(() => makeCharacter(
  22796. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22797. {
  22798. front: {
  22799. height: math.unit(6, "feet"),
  22800. weight: math.unit(150, "lb"),
  22801. name: "Front",
  22802. image: {
  22803. source: "./media/characters/rhys-feline/front.svg",
  22804. extra: 2488 / 2308,
  22805. bottom: 35.67 / 2519.19
  22806. }
  22807. },
  22808. },
  22809. [
  22810. {
  22811. name: "Really Small",
  22812. height: math.unit(1, "nm")
  22813. },
  22814. {
  22815. name: "Micro",
  22816. height: math.unit(4, "inches")
  22817. },
  22818. {
  22819. name: "Normal",
  22820. height: math.unit(4 + 10 / 12, "feet"),
  22821. default: true
  22822. },
  22823. {
  22824. name: "Macro",
  22825. height: math.unit(100, "feet")
  22826. },
  22827. {
  22828. name: "Megamacto",
  22829. height: math.unit(50, "miles")
  22830. },
  22831. ]
  22832. ))
  22833. characterMakers.push(() => makeCharacter(
  22834. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22835. {
  22836. side: {
  22837. height: math.unit(30, "feet"),
  22838. weight: math.unit(35000, "kg"),
  22839. name: "Side",
  22840. image: {
  22841. source: "./media/characters/alydar/side.svg",
  22842. extra: 234 / 222,
  22843. bottom: 6.5 / 241
  22844. }
  22845. },
  22846. front: {
  22847. height: math.unit(30, "feet"),
  22848. weight: math.unit(35000, "kg"),
  22849. name: "Front",
  22850. image: {
  22851. source: "./media/characters/alydar/front.svg",
  22852. extra: 223.37 / 210.2,
  22853. bottom: 22.3 / 246.76
  22854. }
  22855. },
  22856. top: {
  22857. height: math.unit(64.54, "feet"),
  22858. weight: math.unit(35000, "kg"),
  22859. name: "Top",
  22860. image: {
  22861. source: "./media/characters/alydar/top.svg"
  22862. }
  22863. },
  22864. anthro: {
  22865. height: math.unit(30, "feet"),
  22866. weight: math.unit(9000, "kg"),
  22867. name: "Anthro",
  22868. image: {
  22869. source: "./media/characters/alydar/anthro.svg",
  22870. extra: 432 / 421,
  22871. bottom: 7.18 / 440
  22872. }
  22873. },
  22874. maw: {
  22875. height: math.unit(11.693, "feet"),
  22876. name: "Maw",
  22877. image: {
  22878. source: "./media/characters/alydar/maw.svg"
  22879. }
  22880. },
  22881. head: {
  22882. height: math.unit(11.693, "feet"),
  22883. name: "Head",
  22884. image: {
  22885. source: "./media/characters/alydar/head.svg"
  22886. }
  22887. },
  22888. headAlt: {
  22889. height: math.unit(12.861, "feet"),
  22890. name: "Head (Alt)",
  22891. image: {
  22892. source: "./media/characters/alydar/head-alt.svg"
  22893. }
  22894. },
  22895. wing: {
  22896. height: math.unit(20.712, "feet"),
  22897. name: "Wing",
  22898. image: {
  22899. source: "./media/characters/alydar/wing.svg"
  22900. }
  22901. },
  22902. wingFeather: {
  22903. height: math.unit(9.662, "feet"),
  22904. name: "Wing Feather",
  22905. image: {
  22906. source: "./media/characters/alydar/wing-feather.svg"
  22907. }
  22908. },
  22909. countourFeather: {
  22910. height: math.unit(4.154, "feet"),
  22911. name: "Contour Feather",
  22912. image: {
  22913. source: "./media/characters/alydar/contour-feather.svg"
  22914. }
  22915. },
  22916. },
  22917. [
  22918. {
  22919. name: "Diplomatic",
  22920. height: math.unit(13, "feet"),
  22921. default: true
  22922. },
  22923. {
  22924. name: "Small",
  22925. height: math.unit(30, "feet")
  22926. },
  22927. {
  22928. name: "Normal",
  22929. height: math.unit(95, "feet"),
  22930. default: true
  22931. },
  22932. {
  22933. name: "Large",
  22934. height: math.unit(285, "feet")
  22935. },
  22936. {
  22937. name: "Incomprehensible",
  22938. height: math.unit(450, "megameters")
  22939. },
  22940. ]
  22941. ))
  22942. characterMakers.push(() => makeCharacter(
  22943. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22944. {
  22945. side: {
  22946. height: math.unit(11, "feet"),
  22947. weight: math.unit(1750, "kg"),
  22948. name: "Side",
  22949. image: {
  22950. source: "./media/characters/selicia/side.svg",
  22951. extra: 440 / 396,
  22952. bottom: 24.8 / 465.979
  22953. }
  22954. },
  22955. maw: {
  22956. height: math.unit(4.665, "feet"),
  22957. name: "Maw",
  22958. image: {
  22959. source: "./media/characters/selicia/maw.svg"
  22960. }
  22961. },
  22962. },
  22963. [
  22964. {
  22965. name: "Normal",
  22966. height: math.unit(11, "feet"),
  22967. default: true
  22968. },
  22969. ]
  22970. ))
  22971. characterMakers.push(() => makeCharacter(
  22972. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22973. {
  22974. side: {
  22975. height: math.unit(2 + 6 / 12, "feet"),
  22976. weight: math.unit(30, "lb"),
  22977. name: "Side",
  22978. image: {
  22979. source: "./media/characters/layla/side.svg",
  22980. extra: 244 / 188,
  22981. bottom: 18.2 / 262.1
  22982. }
  22983. },
  22984. back: {
  22985. height: math.unit(2 + 6 / 12, "feet"),
  22986. weight: math.unit(30, "lb"),
  22987. name: "Back",
  22988. image: {
  22989. source: "./media/characters/layla/back.svg",
  22990. extra: 308 / 241.5,
  22991. bottom: 8.9 / 316.8
  22992. }
  22993. },
  22994. cumming: {
  22995. height: math.unit(2 + 6 / 12, "feet"),
  22996. weight: math.unit(30, "lb"),
  22997. name: "Cumming",
  22998. image: {
  22999. source: "./media/characters/layla/cumming.svg",
  23000. extra: 342 / 279,
  23001. bottom: 595 / 938
  23002. }
  23003. },
  23004. dickFlaccid: {
  23005. height: math.unit(2.595, "feet"),
  23006. name: "Flaccid Genitals",
  23007. image: {
  23008. source: "./media/characters/layla/dick-flaccid.svg"
  23009. }
  23010. },
  23011. dickErect: {
  23012. height: math.unit(2.359, "feet"),
  23013. name: "Erect Genitals",
  23014. image: {
  23015. source: "./media/characters/layla/dick-erect.svg"
  23016. }
  23017. },
  23018. },
  23019. [
  23020. {
  23021. name: "Micro",
  23022. height: math.unit(1, "inch")
  23023. },
  23024. {
  23025. name: "Small",
  23026. height: math.unit(1, "foot")
  23027. },
  23028. {
  23029. name: "Normal",
  23030. height: math.unit(2 + 6 / 12, "feet"),
  23031. default: true
  23032. },
  23033. {
  23034. name: "Macro",
  23035. height: math.unit(200, "feet")
  23036. },
  23037. {
  23038. name: "Megamacro",
  23039. height: math.unit(1000, "miles")
  23040. },
  23041. {
  23042. name: "Planetary",
  23043. height: math.unit(8000, "miles")
  23044. },
  23045. {
  23046. name: "True Layla",
  23047. height: math.unit(200000 * 7, "multiverses")
  23048. },
  23049. ]
  23050. ))
  23051. characterMakers.push(() => makeCharacter(
  23052. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23053. {
  23054. back: {
  23055. height: math.unit(10.5, "feet"),
  23056. weight: math.unit(800, "lb"),
  23057. name: "Back",
  23058. image: {
  23059. source: "./media/characters/knox/back.svg",
  23060. extra: 1486 / 1089,
  23061. bottom: 107 / 1601.4
  23062. }
  23063. },
  23064. side: {
  23065. height: math.unit(10.5, "feet"),
  23066. weight: math.unit(800, "lb"),
  23067. name: "Side",
  23068. image: {
  23069. source: "./media/characters/knox/side.svg",
  23070. extra: 244 / 218,
  23071. bottom: 14 / 260
  23072. }
  23073. },
  23074. },
  23075. [
  23076. {
  23077. name: "Compact",
  23078. height: math.unit(10.5, "feet"),
  23079. default: true
  23080. },
  23081. {
  23082. name: "Dynamax",
  23083. height: math.unit(210, "feet")
  23084. },
  23085. {
  23086. name: "Full Macro",
  23087. height: math.unit(850, "feet")
  23088. },
  23089. ]
  23090. ))
  23091. characterMakers.push(() => makeCharacter(
  23092. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23093. {
  23094. front: {
  23095. height: math.unit(6, "feet"),
  23096. weight: math.unit(152, "lb"),
  23097. name: "Front",
  23098. image: {
  23099. source: "./media/characters/shin-pikachu/front.svg",
  23100. extra: 1574 / 1480,
  23101. bottom: 53.3 / 1626
  23102. }
  23103. },
  23104. hand: {
  23105. height: math.unit(1.055, "feet"),
  23106. name: "Hand",
  23107. image: {
  23108. source: "./media/characters/shin-pikachu/hand.svg"
  23109. }
  23110. },
  23111. foot: {
  23112. height: math.unit(1.1, "feet"),
  23113. name: "Foot",
  23114. image: {
  23115. source: "./media/characters/shin-pikachu/foot.svg"
  23116. }
  23117. },
  23118. collar: {
  23119. height: math.unit(0.386, "feet"),
  23120. name: "Collar",
  23121. image: {
  23122. source: "./media/characters/shin-pikachu/collar.svg"
  23123. }
  23124. },
  23125. },
  23126. [
  23127. {
  23128. name: "Smallest",
  23129. height: math.unit(0.5, "inches")
  23130. },
  23131. {
  23132. name: "Micro",
  23133. height: math.unit(6, "inches")
  23134. },
  23135. {
  23136. name: "Normal",
  23137. height: math.unit(6, "feet"),
  23138. default: true
  23139. },
  23140. {
  23141. name: "Macro",
  23142. height: math.unit(150, "feet")
  23143. },
  23144. ]
  23145. ))
  23146. characterMakers.push(() => makeCharacter(
  23147. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23148. {
  23149. front: {
  23150. height: math.unit(28, "feet"),
  23151. weight: math.unit(10500, "lb"),
  23152. name: "Front",
  23153. image: {
  23154. source: "./media/characters/kayda/front.svg",
  23155. extra: 1536 / 1428,
  23156. bottom: 68.7 / 1603
  23157. }
  23158. },
  23159. back: {
  23160. height: math.unit(28, "feet"),
  23161. weight: math.unit(10500, "lb"),
  23162. name: "Back",
  23163. image: {
  23164. source: "./media/characters/kayda/back.svg",
  23165. extra: 1557 / 1464,
  23166. bottom: 39.5 / 1597.49
  23167. }
  23168. },
  23169. dick: {
  23170. height: math.unit(3.858, "feet"),
  23171. name: "Dick",
  23172. image: {
  23173. source: "./media/characters/kayda/dick.svg"
  23174. }
  23175. },
  23176. },
  23177. [
  23178. {
  23179. name: "Macro",
  23180. height: math.unit(28, "feet"),
  23181. default: true
  23182. },
  23183. ]
  23184. ))
  23185. characterMakers.push(() => makeCharacter(
  23186. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23187. {
  23188. front: {
  23189. height: math.unit(10 + 11 / 12, "feet"),
  23190. weight: math.unit(1400, "lb"),
  23191. name: "Front",
  23192. image: {
  23193. source: "./media/characters/brian/front.svg",
  23194. extra: 737 / 692,
  23195. bottom: 55.4 / 785
  23196. }
  23197. },
  23198. },
  23199. [
  23200. {
  23201. name: "Normal",
  23202. height: math.unit(10 + 11 / 12, "feet"),
  23203. default: true
  23204. },
  23205. ]
  23206. ))
  23207. characterMakers.push(() => makeCharacter(
  23208. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23209. {
  23210. front: {
  23211. height: math.unit(5 + 8 / 12, "feet"),
  23212. weight: math.unit(140, "lb"),
  23213. name: "Front",
  23214. image: {
  23215. source: "./media/characters/khemri/front.svg",
  23216. extra: 4780 / 4059,
  23217. bottom: 80.1 / 4859.25
  23218. }
  23219. },
  23220. },
  23221. [
  23222. {
  23223. name: "Micro",
  23224. height: math.unit(6, "inches")
  23225. },
  23226. {
  23227. name: "Normal",
  23228. height: math.unit(5 + 8 / 12, "feet"),
  23229. default: true
  23230. },
  23231. ]
  23232. ))
  23233. characterMakers.push(() => makeCharacter(
  23234. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23235. {
  23236. front: {
  23237. height: math.unit(13, "feet"),
  23238. weight: math.unit(1700, "lb"),
  23239. name: "Front",
  23240. image: {
  23241. source: "./media/characters/felix-braveheart/front.svg",
  23242. extra: 1222 / 1157,
  23243. bottom: 53.2 / 1280
  23244. }
  23245. },
  23246. back: {
  23247. height: math.unit(13, "feet"),
  23248. weight: math.unit(1700, "lb"),
  23249. name: "Back",
  23250. image: {
  23251. source: "./media/characters/felix-braveheart/back.svg",
  23252. extra: 1277 / 1203,
  23253. bottom: 50.2 / 1327
  23254. }
  23255. },
  23256. feral: {
  23257. height: math.unit(6, "feet"),
  23258. weight: math.unit(400, "lb"),
  23259. name: "Feral",
  23260. image: {
  23261. source: "./media/characters/felix-braveheart/feral.svg",
  23262. extra: 682 / 625,
  23263. bottom: 6.9 / 688
  23264. }
  23265. },
  23266. },
  23267. [
  23268. {
  23269. name: "Normal",
  23270. height: math.unit(13, "feet"),
  23271. default: true
  23272. },
  23273. ]
  23274. ))
  23275. characterMakers.push(() => makeCharacter(
  23276. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23277. {
  23278. side: {
  23279. height: math.unit(5 + 11 / 12, "feet"),
  23280. weight: math.unit(1400, "lb"),
  23281. name: "Side",
  23282. image: {
  23283. source: "./media/characters/shadow-blade/side.svg",
  23284. extra: 1726 / 1267,
  23285. bottom: 58.4 / 1785
  23286. }
  23287. },
  23288. },
  23289. [
  23290. {
  23291. name: "Normal",
  23292. height: math.unit(5 + 11 / 12, "feet"),
  23293. default: true
  23294. },
  23295. ]
  23296. ))
  23297. characterMakers.push(() => makeCharacter(
  23298. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23299. {
  23300. front: {
  23301. height: math.unit(1 + 6 / 12, "feet"),
  23302. weight: math.unit(25, "lb"),
  23303. name: "Front",
  23304. image: {
  23305. source: "./media/characters/karla-halldor/front.svg",
  23306. extra: 1459 / 1383,
  23307. bottom: 12 / 1472
  23308. }
  23309. },
  23310. },
  23311. [
  23312. {
  23313. name: "Normal",
  23314. height: math.unit(1 + 6 / 12, "feet"),
  23315. default: true
  23316. },
  23317. ]
  23318. ))
  23319. characterMakers.push(() => makeCharacter(
  23320. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23321. {
  23322. front: {
  23323. height: math.unit(6 + 2 / 12, "feet"),
  23324. weight: math.unit(160, "lb"),
  23325. name: "Front",
  23326. image: {
  23327. source: "./media/characters/ariam/front.svg",
  23328. extra: 714 / 617,
  23329. bottom: 23.4 / 737,
  23330. }
  23331. },
  23332. squatting: {
  23333. height: math.unit(4.1, "feet"),
  23334. weight: math.unit(160, "lb"),
  23335. name: "Squatting",
  23336. image: {
  23337. source: "./media/characters/ariam/squatting.svg",
  23338. extra: 2617 / 2112,
  23339. bottom: 61.2 / 2681,
  23340. }
  23341. },
  23342. },
  23343. [
  23344. {
  23345. name: "Normal",
  23346. height: math.unit(6 + 2 / 12, "feet"),
  23347. default: true
  23348. },
  23349. {
  23350. name: "Normal+",
  23351. height: math.unit(4, "meters")
  23352. },
  23353. {
  23354. name: "Macro",
  23355. height: math.unit(50, "meters")
  23356. },
  23357. {
  23358. name: "Macro+",
  23359. height: math.unit(100, "meters")
  23360. },
  23361. {
  23362. name: "Megamacro",
  23363. height: math.unit(20, "km")
  23364. },
  23365. ]
  23366. ))
  23367. characterMakers.push(() => makeCharacter(
  23368. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23369. {
  23370. front: {
  23371. height: math.unit(1.67, "meters"),
  23372. weight: math.unit(140, "lb"),
  23373. name: "Front",
  23374. image: {
  23375. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23376. extra: 438 / 410,
  23377. bottom: 0.75 / 439
  23378. }
  23379. },
  23380. },
  23381. [
  23382. {
  23383. name: "Shrunken",
  23384. height: math.unit(7.6, "cm")
  23385. },
  23386. {
  23387. name: "Human Scale",
  23388. height: math.unit(1.67, "meters")
  23389. },
  23390. {
  23391. name: "Wolxi Scale",
  23392. height: math.unit(36.7, "meters"),
  23393. default: true
  23394. },
  23395. ]
  23396. ))
  23397. characterMakers.push(() => makeCharacter(
  23398. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23399. {
  23400. front: {
  23401. height: math.unit(1.73, "meters"),
  23402. weight: math.unit(240, "lb"),
  23403. name: "Front",
  23404. image: {
  23405. source: "./media/characters/izue-two-mothers/front.svg",
  23406. extra: 469 / 437,
  23407. bottom: 1.24 / 470.6
  23408. }
  23409. },
  23410. },
  23411. [
  23412. {
  23413. name: "Shrunken",
  23414. height: math.unit(7.86, "cm")
  23415. },
  23416. {
  23417. name: "Human Scale",
  23418. height: math.unit(1.73, "meters")
  23419. },
  23420. {
  23421. name: "Wolxi Scale",
  23422. height: math.unit(38, "meters"),
  23423. default: true
  23424. },
  23425. ]
  23426. ))
  23427. characterMakers.push(() => makeCharacter(
  23428. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23429. {
  23430. front: {
  23431. height: math.unit(1.55, "meters"),
  23432. weight: math.unit(120, "lb"),
  23433. name: "Front",
  23434. image: {
  23435. source: "./media/characters/teeku-love-shack/front.svg",
  23436. extra: 387 / 362,
  23437. bottom: 1.51 / 388
  23438. }
  23439. },
  23440. },
  23441. [
  23442. {
  23443. name: "Shrunken",
  23444. height: math.unit(7, "cm")
  23445. },
  23446. {
  23447. name: "Human Scale",
  23448. height: math.unit(1.55, "meters")
  23449. },
  23450. {
  23451. name: "Wolxi Scale",
  23452. height: math.unit(34.1, "meters"),
  23453. default: true
  23454. },
  23455. ]
  23456. ))
  23457. characterMakers.push(() => makeCharacter(
  23458. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23459. {
  23460. front: {
  23461. height: math.unit(1.83, "meters"),
  23462. weight: math.unit(135, "lb"),
  23463. name: "Front",
  23464. image: {
  23465. source: "./media/characters/dejma-the-red/front.svg",
  23466. extra: 480 / 458,
  23467. bottom: 1.8 / 482
  23468. }
  23469. },
  23470. },
  23471. [
  23472. {
  23473. name: "Shrunken",
  23474. height: math.unit(8.3, "cm")
  23475. },
  23476. {
  23477. name: "Human Scale",
  23478. height: math.unit(1.83, "meters")
  23479. },
  23480. {
  23481. name: "Wolxi Scale",
  23482. height: math.unit(40, "meters"),
  23483. default: true
  23484. },
  23485. ]
  23486. ))
  23487. characterMakers.push(() => makeCharacter(
  23488. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23489. {
  23490. front: {
  23491. height: math.unit(1.78, "meters"),
  23492. weight: math.unit(65, "kg"),
  23493. name: "Front",
  23494. image: {
  23495. source: "./media/characters/aki/front.svg",
  23496. extra: 452 / 415
  23497. }
  23498. },
  23499. frontNsfw: {
  23500. height: math.unit(1.78, "meters"),
  23501. weight: math.unit(65, "kg"),
  23502. name: "Front (NSFW)",
  23503. image: {
  23504. source: "./media/characters/aki/front-nsfw.svg",
  23505. extra: 452 / 415
  23506. }
  23507. },
  23508. back: {
  23509. height: math.unit(1.78, "meters"),
  23510. weight: math.unit(65, "kg"),
  23511. name: "Back",
  23512. image: {
  23513. source: "./media/characters/aki/back.svg",
  23514. extra: 452 / 415
  23515. }
  23516. },
  23517. rump: {
  23518. height: math.unit(2.05, "feet"),
  23519. name: "Rump",
  23520. image: {
  23521. source: "./media/characters/aki/rump.svg"
  23522. }
  23523. },
  23524. dick: {
  23525. height: math.unit(0.95, "feet"),
  23526. name: "Dick",
  23527. image: {
  23528. source: "./media/characters/aki/dick.svg"
  23529. }
  23530. },
  23531. },
  23532. [
  23533. {
  23534. name: "Micro",
  23535. height: math.unit(15, "cm")
  23536. },
  23537. {
  23538. name: "Normal",
  23539. height: math.unit(178, "cm"),
  23540. default: true
  23541. },
  23542. {
  23543. name: "Macro",
  23544. height: math.unit(214, "m")
  23545. },
  23546. {
  23547. name: "Macro+",
  23548. height: math.unit(534, "m")
  23549. },
  23550. ]
  23551. ))
  23552. characterMakers.push(() => makeCharacter(
  23553. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23554. {
  23555. front: {
  23556. height: math.unit(5 + 5 / 12, "feet"),
  23557. weight: math.unit(120, "lb"),
  23558. name: "Front",
  23559. image: {
  23560. source: "./media/characters/ari/front.svg",
  23561. extra: 714.5 / 682,
  23562. bottom: 8 / 722.5
  23563. }
  23564. },
  23565. },
  23566. [
  23567. {
  23568. name: "Normal",
  23569. height: math.unit(5 + 5 / 12, "feet")
  23570. },
  23571. {
  23572. name: "Macro",
  23573. height: math.unit(100, "feet"),
  23574. default: true
  23575. },
  23576. {
  23577. name: "Megamacro",
  23578. height: math.unit(100, "miles")
  23579. },
  23580. {
  23581. name: "Gigamacro",
  23582. height: math.unit(80000, "miles")
  23583. },
  23584. ]
  23585. ))
  23586. characterMakers.push(() => makeCharacter(
  23587. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23588. {
  23589. side: {
  23590. height: math.unit(9, "feet"),
  23591. weight: math.unit(400, "kg"),
  23592. name: "Side",
  23593. image: {
  23594. source: "./media/characters/bolt/side.svg",
  23595. extra: 1126 / 896,
  23596. bottom: 60 / 1187.3,
  23597. }
  23598. },
  23599. },
  23600. [
  23601. {
  23602. name: "Micro",
  23603. height: math.unit(5, "inches")
  23604. },
  23605. {
  23606. name: "Normal",
  23607. height: math.unit(9, "feet"),
  23608. default: true
  23609. },
  23610. {
  23611. name: "Macro",
  23612. height: math.unit(700, "feet")
  23613. },
  23614. {
  23615. name: "Max Size",
  23616. height: math.unit(1.52e22, "yottameters")
  23617. },
  23618. ]
  23619. ))
  23620. characterMakers.push(() => makeCharacter(
  23621. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23622. {
  23623. front: {
  23624. height: math.unit(4.53, "meters"),
  23625. weight: math.unit(3, "tons"),
  23626. name: "Front",
  23627. image: {
  23628. source: "./media/characters/draekon-sylviar/front.svg",
  23629. extra: 1228 / 1068,
  23630. bottom: 41 / 1270
  23631. }
  23632. },
  23633. tail: {
  23634. height: math.unit(1.772, "meter"),
  23635. name: "Tail",
  23636. image: {
  23637. source: "./media/characters/draekon-sylviar/tail.svg"
  23638. }
  23639. },
  23640. head: {
  23641. height: math.unit(1.331, "meter"),
  23642. name: "Head",
  23643. image: {
  23644. source: "./media/characters/draekon-sylviar/head.svg"
  23645. }
  23646. },
  23647. hand: {
  23648. height: math.unit(0.564, "meter"),
  23649. name: "Hand",
  23650. image: {
  23651. source: "./media/characters/draekon-sylviar/hand.svg"
  23652. }
  23653. },
  23654. foot: {
  23655. height: math.unit(0.621, "meter"),
  23656. name: "Foot",
  23657. image: {
  23658. source: "./media/characters/draekon-sylviar/foot.svg",
  23659. bottom: 32 / 324
  23660. }
  23661. },
  23662. dick: {
  23663. height: math.unit(61, "cm"),
  23664. name: "Dick",
  23665. image: {
  23666. source: "./media/characters/draekon-sylviar/dick.svg"
  23667. }
  23668. },
  23669. dickseparated: {
  23670. height: math.unit(61, "cm"),
  23671. name: "Dick-separated",
  23672. image: {
  23673. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Small",
  23680. height: math.unit(4.53 / 2, "meters"),
  23681. default: true
  23682. },
  23683. {
  23684. name: "Normal",
  23685. height: math.unit(4.53, "meters"),
  23686. default: true
  23687. },
  23688. {
  23689. name: "Large",
  23690. height: math.unit(4.53 * 2, "meters"),
  23691. },
  23692. ]
  23693. ))
  23694. characterMakers.push(() => makeCharacter(
  23695. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23696. {
  23697. front: {
  23698. height: math.unit(6 + 2 / 12, "feet"),
  23699. weight: math.unit(180, "lb"),
  23700. name: "Front",
  23701. image: {
  23702. source: "./media/characters/brawler/front.svg",
  23703. extra: 3301 / 3027,
  23704. bottom: 138 / 3439
  23705. }
  23706. },
  23707. },
  23708. [
  23709. {
  23710. name: "Normal",
  23711. height: math.unit(6 + 2 / 12, "feet"),
  23712. default: true
  23713. },
  23714. ]
  23715. ))
  23716. characterMakers.push(() => makeCharacter(
  23717. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23718. {
  23719. front: {
  23720. height: math.unit(11, "feet"),
  23721. weight: math.unit(1000, "lb"),
  23722. name: "Front",
  23723. image: {
  23724. source: "./media/characters/alex/front.svg",
  23725. bottom: 44.5 / 620
  23726. }
  23727. },
  23728. },
  23729. [
  23730. {
  23731. name: "Micro",
  23732. height: math.unit(5, "inches")
  23733. },
  23734. {
  23735. name: "Normal",
  23736. height: math.unit(11, "feet"),
  23737. default: true
  23738. },
  23739. {
  23740. name: "Macro",
  23741. height: math.unit(9.5e9, "feet")
  23742. },
  23743. {
  23744. name: "Max Size",
  23745. height: math.unit(1.4e283, "yottameters")
  23746. },
  23747. ]
  23748. ))
  23749. characterMakers.push(() => makeCharacter(
  23750. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23751. {
  23752. female: {
  23753. height: math.unit(29.9, "m"),
  23754. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23755. name: "Female",
  23756. image: {
  23757. source: "./media/characters/zenari/female.svg",
  23758. extra: 3281.6 / 3217,
  23759. bottom: 72.2 / 3353
  23760. }
  23761. },
  23762. male: {
  23763. height: math.unit(27.7, "m"),
  23764. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23765. name: "Male",
  23766. image: {
  23767. source: "./media/characters/zenari/male.svg",
  23768. extra: 3008 / 2991,
  23769. bottom: 54.6 / 3069
  23770. }
  23771. },
  23772. },
  23773. [
  23774. {
  23775. name: "Macro",
  23776. height: math.unit(29.7, "meters"),
  23777. default: true
  23778. },
  23779. ]
  23780. ))
  23781. characterMakers.push(() => makeCharacter(
  23782. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23783. {
  23784. female: {
  23785. height: math.unit(23.8, "m"),
  23786. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23787. name: "Female",
  23788. image: {
  23789. source: "./media/characters/mactarian/female.svg",
  23790. extra: 2662 / 2569,
  23791. bottom: 73 / 2736
  23792. }
  23793. },
  23794. male: {
  23795. height: math.unit(23.8, "m"),
  23796. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23797. name: "Male",
  23798. image: {
  23799. source: "./media/characters/mactarian/male.svg",
  23800. extra: 2673 / 2600,
  23801. bottom: 76 / 2750
  23802. }
  23803. },
  23804. },
  23805. [
  23806. {
  23807. name: "Macro",
  23808. height: math.unit(23.8, "meters"),
  23809. default: true
  23810. },
  23811. ]
  23812. ))
  23813. characterMakers.push(() => makeCharacter(
  23814. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23815. {
  23816. female: {
  23817. height: math.unit(19.3, "m"),
  23818. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23819. name: "Female",
  23820. image: {
  23821. source: "./media/characters/umok/female.svg",
  23822. extra: 2186 / 2078,
  23823. bottom: 87 / 2277
  23824. }
  23825. },
  23826. male: {
  23827. height: math.unit(19.5, "m"),
  23828. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23829. name: "Male",
  23830. image: {
  23831. source: "./media/characters/umok/male.svg",
  23832. extra: 2233 / 2140,
  23833. bottom: 24.4 / 2258
  23834. }
  23835. },
  23836. },
  23837. [
  23838. {
  23839. name: "Macro",
  23840. height: math.unit(19.3, "meters"),
  23841. default: true
  23842. },
  23843. ]
  23844. ))
  23845. characterMakers.push(() => makeCharacter(
  23846. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23847. {
  23848. female: {
  23849. height: math.unit(26.15, "m"),
  23850. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23851. name: "Female",
  23852. image: {
  23853. source: "./media/characters/joraxian/female.svg",
  23854. extra: 2912 / 2824,
  23855. bottom: 36 / 2956
  23856. }
  23857. },
  23858. male: {
  23859. height: math.unit(25.4, "m"),
  23860. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23861. name: "Male",
  23862. image: {
  23863. source: "./media/characters/joraxian/male.svg",
  23864. extra: 2877 / 2721,
  23865. bottom: 82 / 2967
  23866. }
  23867. },
  23868. },
  23869. [
  23870. {
  23871. name: "Macro",
  23872. height: math.unit(26.15, "meters"),
  23873. default: true
  23874. },
  23875. ]
  23876. ))
  23877. characterMakers.push(() => makeCharacter(
  23878. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23879. {
  23880. female: {
  23881. height: math.unit(21.6, "m"),
  23882. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23883. name: "Female",
  23884. image: {
  23885. source: "./media/characters/sthara/female.svg",
  23886. extra: 2516 / 2347,
  23887. bottom: 21.5 / 2537
  23888. }
  23889. },
  23890. male: {
  23891. height: math.unit(24, "m"),
  23892. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23893. name: "Male",
  23894. image: {
  23895. source: "./media/characters/sthara/male.svg",
  23896. extra: 2732 / 2607,
  23897. bottom: 23 / 2732
  23898. }
  23899. },
  23900. },
  23901. [
  23902. {
  23903. name: "Macro",
  23904. height: math.unit(21.6, "meters"),
  23905. default: true
  23906. },
  23907. ]
  23908. ))
  23909. characterMakers.push(() => makeCharacter(
  23910. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23911. {
  23912. front: {
  23913. height: math.unit(6 + 4 / 12, "feet"),
  23914. weight: math.unit(175, "lb"),
  23915. name: "Front",
  23916. image: {
  23917. source: "./media/characters/luka-bryzant/front.svg",
  23918. extra: 311 / 289,
  23919. bottom: 4 / 315
  23920. }
  23921. },
  23922. back: {
  23923. height: math.unit(6 + 4 / 12, "feet"),
  23924. weight: math.unit(175, "lb"),
  23925. name: "Back",
  23926. image: {
  23927. source: "./media/characters/luka-bryzant/back.svg",
  23928. extra: 311 / 289,
  23929. bottom: 3.8 / 313.7
  23930. }
  23931. },
  23932. },
  23933. [
  23934. {
  23935. name: "Micro",
  23936. height: math.unit(10, "inches")
  23937. },
  23938. {
  23939. name: "Normal",
  23940. height: math.unit(6 + 4 / 12, "feet"),
  23941. default: true
  23942. },
  23943. {
  23944. name: "Large",
  23945. height: math.unit(12, "feet")
  23946. },
  23947. ]
  23948. ))
  23949. characterMakers.push(() => makeCharacter(
  23950. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23951. {
  23952. front: {
  23953. height: math.unit(5 + 7 / 12, "feet"),
  23954. weight: math.unit(185, "lb"),
  23955. name: "Front",
  23956. image: {
  23957. source: "./media/characters/aman-aquila/front.svg",
  23958. extra: 1013 / 976,
  23959. bottom: 45.6 / 1057
  23960. }
  23961. },
  23962. side: {
  23963. height: math.unit(5 + 7 / 12, "feet"),
  23964. weight: math.unit(185, "lb"),
  23965. name: "Side",
  23966. image: {
  23967. source: "./media/characters/aman-aquila/side.svg",
  23968. extra: 1054 / 1011,
  23969. bottom: 15 / 1070
  23970. }
  23971. },
  23972. back: {
  23973. height: math.unit(5 + 7 / 12, "feet"),
  23974. weight: math.unit(185, "lb"),
  23975. name: "Back",
  23976. image: {
  23977. source: "./media/characters/aman-aquila/back.svg",
  23978. extra: 1026 / 970,
  23979. bottom: 12 / 1039
  23980. }
  23981. },
  23982. head: {
  23983. height: math.unit(1.211, "feet"),
  23984. name: "Head",
  23985. image: {
  23986. source: "./media/characters/aman-aquila/head.svg",
  23987. }
  23988. },
  23989. },
  23990. [
  23991. {
  23992. name: "Minimicro",
  23993. height: math.unit(0.057, "inches")
  23994. },
  23995. {
  23996. name: "Micro",
  23997. height: math.unit(7, "inches")
  23998. },
  23999. {
  24000. name: "Mini",
  24001. height: math.unit(3 + 7 / 12, "feet")
  24002. },
  24003. {
  24004. name: "Normal",
  24005. height: math.unit(5 + 7 / 12, "feet"),
  24006. default: true
  24007. },
  24008. {
  24009. name: "Macro",
  24010. height: math.unit(157 + 7 / 12, "feet")
  24011. },
  24012. {
  24013. name: "Megamacro",
  24014. height: math.unit(1557 + 7 / 12, "feet")
  24015. },
  24016. {
  24017. name: "Gigamacro",
  24018. height: math.unit(15557 + 7 / 12, "feet")
  24019. },
  24020. ]
  24021. ))
  24022. characterMakers.push(() => makeCharacter(
  24023. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24024. {
  24025. front: {
  24026. height: math.unit(3 + 2 / 12, "inches"),
  24027. weight: math.unit(0.3, "ounces"),
  24028. name: "Front",
  24029. image: {
  24030. source: "./media/characters/hiphae/front.svg",
  24031. extra: 1931 / 1683,
  24032. bottom: 24 / 1955
  24033. }
  24034. },
  24035. },
  24036. [
  24037. {
  24038. name: "Normal",
  24039. height: math.unit(3 + 1 / 2, "inches"),
  24040. default: true
  24041. },
  24042. ]
  24043. ))
  24044. characterMakers.push(() => makeCharacter(
  24045. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24046. {
  24047. front: {
  24048. height: math.unit(5 + 10 / 12, "feet"),
  24049. weight: math.unit(165, "lb"),
  24050. name: "Front",
  24051. image: {
  24052. source: "./media/characters/nicky/front.svg",
  24053. extra: 3144 / 2886,
  24054. bottom: 45.6 / 3192
  24055. }
  24056. },
  24057. back: {
  24058. height: math.unit(5 + 10 / 12, "feet"),
  24059. weight: math.unit(165, "lb"),
  24060. name: "Back",
  24061. image: {
  24062. source: "./media/characters/nicky/back.svg",
  24063. extra: 3055 / 2804,
  24064. bottom: 28.4 / 3087
  24065. }
  24066. },
  24067. frontclothed: {
  24068. height: math.unit(5 + 10 / 12, "feet"),
  24069. weight: math.unit(165, "lb"),
  24070. name: "Front-clothed",
  24071. image: {
  24072. source: "./media/characters/nicky/front-clothed.svg",
  24073. extra: 3184.9 / 2926.9,
  24074. bottom: 86.5 / 3239.9
  24075. }
  24076. },
  24077. foot: {
  24078. height: math.unit(1.16, "feet"),
  24079. name: "Foot",
  24080. image: {
  24081. source: "./media/characters/nicky/foot.svg"
  24082. }
  24083. },
  24084. feet: {
  24085. height: math.unit(1.34, "feet"),
  24086. name: "Feet",
  24087. image: {
  24088. source: "./media/characters/nicky/feet.svg"
  24089. }
  24090. },
  24091. maw: {
  24092. height: math.unit(0.9, "feet"),
  24093. name: "Maw",
  24094. image: {
  24095. source: "./media/characters/nicky/maw.svg"
  24096. }
  24097. },
  24098. },
  24099. [
  24100. {
  24101. name: "Normal",
  24102. height: math.unit(5 + 10 / 12, "feet"),
  24103. default: true
  24104. },
  24105. {
  24106. name: "Macro",
  24107. height: math.unit(60, "feet")
  24108. },
  24109. {
  24110. name: "Megamacro",
  24111. height: math.unit(1, "mile")
  24112. },
  24113. ]
  24114. ))
  24115. characterMakers.push(() => makeCharacter(
  24116. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24117. {
  24118. side: {
  24119. height: math.unit(10, "feet"),
  24120. weight: math.unit(600, "lb"),
  24121. name: "Side",
  24122. image: {
  24123. source: "./media/characters/blair/side.svg",
  24124. bottom: 16.6 / 475,
  24125. extra: 458 / 431
  24126. }
  24127. },
  24128. },
  24129. [
  24130. {
  24131. name: "Micro",
  24132. height: math.unit(8, "inches")
  24133. },
  24134. {
  24135. name: "Normal",
  24136. height: math.unit(10, "feet"),
  24137. default: true
  24138. },
  24139. {
  24140. name: "Macro",
  24141. height: math.unit(180, "feet")
  24142. },
  24143. ]
  24144. ))
  24145. characterMakers.push(() => makeCharacter(
  24146. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24147. {
  24148. front: {
  24149. height: math.unit(5 + 4 / 12, "feet"),
  24150. weight: math.unit(125, "lb"),
  24151. name: "Front",
  24152. image: {
  24153. source: "./media/characters/fisher/front.svg",
  24154. extra: 444 / 390,
  24155. bottom: 2 / 444.8
  24156. }
  24157. },
  24158. },
  24159. [
  24160. {
  24161. name: "Micro",
  24162. height: math.unit(4, "inches")
  24163. },
  24164. {
  24165. name: "Normal",
  24166. height: math.unit(5 + 4 / 12, "feet"),
  24167. default: true
  24168. },
  24169. {
  24170. name: "Macro",
  24171. height: math.unit(100, "feet")
  24172. },
  24173. ]
  24174. ))
  24175. characterMakers.push(() => makeCharacter(
  24176. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24177. {
  24178. front: {
  24179. height: math.unit(6.71, "feet"),
  24180. weight: math.unit(200, "lb"),
  24181. capacity: math.unit(1000000, "people"),
  24182. name: "Front",
  24183. image: {
  24184. source: "./media/characters/gliss/front.svg",
  24185. extra: 2347 / 2231,
  24186. bottom: 113 / 2462
  24187. }
  24188. },
  24189. hammerspaceSize: {
  24190. height: math.unit(6.71 * 717, "feet"),
  24191. weight: math.unit(200, "lb"),
  24192. capacity: math.unit(1000000, "people"),
  24193. name: "Hammerspace Size",
  24194. image: {
  24195. source: "./media/characters/gliss/front.svg",
  24196. extra: 2347 / 2231,
  24197. bottom: 113 / 2462
  24198. }
  24199. },
  24200. },
  24201. [
  24202. {
  24203. name: "Normal",
  24204. height: math.unit(6.71, "feet"),
  24205. default: true
  24206. },
  24207. ]
  24208. ))
  24209. characterMakers.push(() => makeCharacter(
  24210. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24211. {
  24212. side: {
  24213. height: math.unit(1.44, "m"),
  24214. weight: math.unit(80, "kg"),
  24215. name: "Side",
  24216. image: {
  24217. source: "./media/characters/dune-anderson/side.svg",
  24218. bottom: 49 / 1426
  24219. }
  24220. },
  24221. },
  24222. [
  24223. {
  24224. name: "Wolf-sized",
  24225. height: math.unit(1.44, "meters")
  24226. },
  24227. {
  24228. name: "Normal",
  24229. height: math.unit(5.05, "meters"),
  24230. default: true
  24231. },
  24232. {
  24233. name: "Big",
  24234. height: math.unit(14.4, "meters")
  24235. },
  24236. {
  24237. name: "Huge",
  24238. height: math.unit(144, "meters")
  24239. },
  24240. ]
  24241. ))
  24242. characterMakers.push(() => makeCharacter(
  24243. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24244. {
  24245. front: {
  24246. height: math.unit(7, "feet"),
  24247. weight: math.unit(425, "lb"),
  24248. name: "Front",
  24249. image: {
  24250. source: "./media/characters/hind/front.svg",
  24251. extra: 2091 / 1860,
  24252. bottom: 129 / 2220
  24253. }
  24254. },
  24255. back: {
  24256. height: math.unit(7, "feet"),
  24257. weight: math.unit(425, "lb"),
  24258. name: "Back",
  24259. image: {
  24260. source: "./media/characters/hind/back.svg",
  24261. extra: 2091 / 1860,
  24262. bottom: 24.6 / 2309
  24263. }
  24264. },
  24265. tail: {
  24266. height: math.unit(2.8, "feet"),
  24267. name: "Tail",
  24268. image: {
  24269. source: "./media/characters/hind/tail.svg"
  24270. }
  24271. },
  24272. head: {
  24273. height: math.unit(2.55, "feet"),
  24274. name: "Head",
  24275. image: {
  24276. source: "./media/characters/hind/head.svg"
  24277. }
  24278. },
  24279. },
  24280. [
  24281. {
  24282. name: "XS",
  24283. height: math.unit(0.7, "feet")
  24284. },
  24285. {
  24286. name: "Normal",
  24287. height: math.unit(7, "feet"),
  24288. default: true
  24289. },
  24290. {
  24291. name: "XL",
  24292. height: math.unit(70, "feet")
  24293. },
  24294. ]
  24295. ))
  24296. characterMakers.push(() => makeCharacter(
  24297. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24298. {
  24299. front: {
  24300. height: math.unit(6, "feet"),
  24301. weight: math.unit(150, "lb"),
  24302. name: "Front",
  24303. image: {
  24304. source: "./media/characters/dylan-skaven/front.svg",
  24305. extra: 2318 / 2063,
  24306. bottom: 93.4 / 2410
  24307. }
  24308. },
  24309. },
  24310. [
  24311. {
  24312. name: "Nano",
  24313. height: math.unit(1, "mm")
  24314. },
  24315. {
  24316. name: "Micro",
  24317. height: math.unit(1, "cm")
  24318. },
  24319. {
  24320. name: "Normal",
  24321. height: math.unit(2.1, "meters"),
  24322. default: true
  24323. },
  24324. ]
  24325. ))
  24326. characterMakers.push(() => makeCharacter(
  24327. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24328. {
  24329. front: {
  24330. height: math.unit(7 + 5 / 12, "feet"),
  24331. weight: math.unit(357, "lb"),
  24332. name: "Front",
  24333. image: {
  24334. source: "./media/characters/solex-draconov/front.svg",
  24335. extra: 1993 / 1865,
  24336. bottom: 117 / 2111
  24337. }
  24338. },
  24339. },
  24340. [
  24341. {
  24342. name: "Natural Height",
  24343. height: math.unit(7 + 5 / 12, "feet"),
  24344. default: true
  24345. },
  24346. {
  24347. name: "Macro",
  24348. height: math.unit(350, "feet")
  24349. },
  24350. {
  24351. name: "Macro+",
  24352. height: math.unit(1000, "feet")
  24353. },
  24354. {
  24355. name: "Megamacro",
  24356. height: math.unit(20, "km")
  24357. },
  24358. {
  24359. name: "Megamacro+",
  24360. height: math.unit(1000, "km")
  24361. },
  24362. {
  24363. name: "Gigamacro",
  24364. height: math.unit(2.5, "Gm")
  24365. },
  24366. {
  24367. name: "Teramacro",
  24368. height: math.unit(15, "Tm")
  24369. },
  24370. {
  24371. name: "Galactic",
  24372. height: math.unit(30, "Zm")
  24373. },
  24374. {
  24375. name: "Universal",
  24376. height: math.unit(21000, "Ym")
  24377. },
  24378. {
  24379. name: "Omniversal",
  24380. height: math.unit(9.861e50, "Ym")
  24381. },
  24382. {
  24383. name: "Existential",
  24384. height: math.unit(1e300, "meters")
  24385. },
  24386. ]
  24387. ))
  24388. characterMakers.push(() => makeCharacter(
  24389. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24390. {
  24391. side: {
  24392. height: math.unit(25, "feet"),
  24393. weight: math.unit(90000, "lb"),
  24394. name: "Side",
  24395. image: {
  24396. source: "./media/characters/mandarax/side.svg",
  24397. extra: 614 / 332,
  24398. bottom: 55 / 630
  24399. }
  24400. },
  24401. head: {
  24402. height: math.unit(11.4, "feet"),
  24403. name: "Head",
  24404. image: {
  24405. source: "./media/characters/mandarax/head.svg"
  24406. }
  24407. },
  24408. belly: {
  24409. height: math.unit(33, "feet"),
  24410. name: "Belly",
  24411. capacity: math.unit(500, "people"),
  24412. image: {
  24413. source: "./media/characters/mandarax/belly.svg"
  24414. }
  24415. },
  24416. dick: {
  24417. height: math.unit(8.46, "feet"),
  24418. name: "Dick",
  24419. image: {
  24420. source: "./media/characters/mandarax/dick.svg"
  24421. }
  24422. },
  24423. top: {
  24424. height: math.unit(28, "meters"),
  24425. name: "Top",
  24426. image: {
  24427. source: "./media/characters/mandarax/top.svg"
  24428. }
  24429. },
  24430. },
  24431. [
  24432. {
  24433. name: "Normal",
  24434. height: math.unit(25, "feet"),
  24435. default: true
  24436. },
  24437. ]
  24438. ))
  24439. characterMakers.push(() => makeCharacter(
  24440. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24441. {
  24442. front: {
  24443. height: math.unit(5, "feet"),
  24444. weight: math.unit(90, "lb"),
  24445. name: "Front",
  24446. image: {
  24447. source: "./media/characters/pixil/front.svg",
  24448. extra: 2000 / 1618,
  24449. bottom: 12.3 / 2011
  24450. }
  24451. },
  24452. },
  24453. [
  24454. {
  24455. name: "Normal",
  24456. height: math.unit(5, "feet"),
  24457. default: true
  24458. },
  24459. {
  24460. name: "Megamacro",
  24461. height: math.unit(10, "miles"),
  24462. },
  24463. ]
  24464. ))
  24465. characterMakers.push(() => makeCharacter(
  24466. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24467. {
  24468. front: {
  24469. height: math.unit(7 + 2 / 12, "feet"),
  24470. weight: math.unit(200, "lb"),
  24471. name: "Front",
  24472. image: {
  24473. source: "./media/characters/angel/front.svg",
  24474. extra: 1830 / 1737,
  24475. bottom: 22.6 / 1854,
  24476. }
  24477. },
  24478. },
  24479. [
  24480. {
  24481. name: "Normal",
  24482. height: math.unit(7 + 2 / 12, "feet"),
  24483. default: true
  24484. },
  24485. {
  24486. name: "Macro",
  24487. height: math.unit(1000, "feet")
  24488. },
  24489. {
  24490. name: "Megamacro",
  24491. height: math.unit(2, "miles")
  24492. },
  24493. {
  24494. name: "Gigamacro",
  24495. height: math.unit(20, "earths")
  24496. },
  24497. ]
  24498. ))
  24499. characterMakers.push(() => makeCharacter(
  24500. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24501. {
  24502. front: {
  24503. height: math.unit(5, "feet"),
  24504. weight: math.unit(180, "lb"),
  24505. name: "Front",
  24506. image: {
  24507. source: "./media/characters/mekana/front.svg",
  24508. extra: 1671 / 1605,
  24509. bottom: 3.5 / 1691
  24510. }
  24511. },
  24512. side: {
  24513. height: math.unit(5, "feet"),
  24514. weight: math.unit(180, "lb"),
  24515. name: "Side",
  24516. image: {
  24517. source: "./media/characters/mekana/side.svg",
  24518. extra: 1671 / 1605,
  24519. bottom: 3.5 / 1691
  24520. }
  24521. },
  24522. back: {
  24523. height: math.unit(5, "feet"),
  24524. weight: math.unit(180, "lb"),
  24525. name: "Back",
  24526. image: {
  24527. source: "./media/characters/mekana/back.svg",
  24528. extra: 1671 / 1605,
  24529. bottom: 3.5 / 1691
  24530. }
  24531. },
  24532. },
  24533. [
  24534. {
  24535. name: "Normal",
  24536. height: math.unit(5, "feet"),
  24537. default: true
  24538. },
  24539. ]
  24540. ))
  24541. characterMakers.push(() => makeCharacter(
  24542. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24543. {
  24544. front: {
  24545. height: math.unit(4 + 6 / 12, "feet"),
  24546. weight: math.unit(80, "lb"),
  24547. name: "Front",
  24548. image: {
  24549. source: "./media/characters/pixie/front.svg",
  24550. extra: 1924 / 1825,
  24551. bottom: 22.4 / 1946
  24552. }
  24553. },
  24554. },
  24555. [
  24556. {
  24557. name: "Normal",
  24558. height: math.unit(4 + 6 / 12, "feet"),
  24559. default: true
  24560. },
  24561. {
  24562. name: "Macro",
  24563. height: math.unit(40, "feet")
  24564. },
  24565. ]
  24566. ))
  24567. characterMakers.push(() => makeCharacter(
  24568. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24569. {
  24570. front: {
  24571. height: math.unit(2.1, "meters"),
  24572. weight: math.unit(200, "lb"),
  24573. name: "Front",
  24574. image: {
  24575. source: "./media/characters/the-lascivious/front.svg",
  24576. extra: 1 / 0.893,
  24577. bottom: 3.5 / 573.7
  24578. }
  24579. },
  24580. },
  24581. [
  24582. {
  24583. name: "Human Scale",
  24584. height: math.unit(2.1, "meters")
  24585. },
  24586. {
  24587. name: "Wolxi Scale",
  24588. height: math.unit(46.2, "m"),
  24589. default: true
  24590. },
  24591. {
  24592. name: "Boinker of Buildings",
  24593. height: math.unit(10, "km")
  24594. },
  24595. {
  24596. name: "Shagger of Skyscrapers",
  24597. height: math.unit(40, "km")
  24598. },
  24599. {
  24600. name: "Banger of Boroughs",
  24601. height: math.unit(4000, "km")
  24602. },
  24603. {
  24604. name: "Screwer of States",
  24605. height: math.unit(100000, "km")
  24606. },
  24607. {
  24608. name: "Pounder of Planets",
  24609. height: math.unit(2000000, "km")
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24615. {
  24616. front: {
  24617. height: math.unit(6, "feet"),
  24618. weight: math.unit(150, "lb"),
  24619. name: "Front",
  24620. image: {
  24621. source: "./media/characters/aj/front.svg",
  24622. extra: 2039 / 1562,
  24623. bottom: 40 / 2079
  24624. }
  24625. },
  24626. },
  24627. [
  24628. {
  24629. name: "Normal",
  24630. height: math.unit(11 + 6 / 12, "feet"),
  24631. default: true
  24632. },
  24633. {
  24634. name: "Megamacro",
  24635. height: math.unit(60, "megameters")
  24636. },
  24637. ]
  24638. ))
  24639. characterMakers.push(() => makeCharacter(
  24640. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24641. {
  24642. side: {
  24643. height: math.unit(31 + 8 / 12, "feet"),
  24644. weight: math.unit(75000, "kg"),
  24645. name: "Side",
  24646. image: {
  24647. source: "./media/characters/koros/side.svg",
  24648. extra: 1442 / 1297,
  24649. bottom: 122.7 / 1562
  24650. }
  24651. },
  24652. dicksKingsCrown: {
  24653. height: math.unit(6, "feet"),
  24654. name: "Dicks (King's Crown)",
  24655. image: {
  24656. source: "./media/characters/koros/dicks-kings-crown.svg"
  24657. }
  24658. },
  24659. dicksTailSet: {
  24660. height: math.unit(3, "feet"),
  24661. name: "Dicks (Tail Set)",
  24662. image: {
  24663. source: "./media/characters/koros/dicks-tail-set.svg"
  24664. }
  24665. },
  24666. dickCumming: {
  24667. height: math.unit(7.98, "feet"),
  24668. name: "Dick (Cumming)",
  24669. image: {
  24670. source: "./media/characters/koros/dick-cumming.svg"
  24671. }
  24672. },
  24673. dicksBack: {
  24674. height: math.unit(5.9, "feet"),
  24675. name: "Dicks (Back)",
  24676. image: {
  24677. source: "./media/characters/koros/dicks-back.svg"
  24678. }
  24679. },
  24680. dicksFront: {
  24681. height: math.unit(3.72, "feet"),
  24682. name: "Dicks (Front)",
  24683. image: {
  24684. source: "./media/characters/koros/dicks-front.svg"
  24685. }
  24686. },
  24687. dicksPeeking: {
  24688. height: math.unit(3.0, "feet"),
  24689. name: "Dicks (Peeking)",
  24690. image: {
  24691. source: "./media/characters/koros/dicks-peeking.svg"
  24692. }
  24693. },
  24694. eye: {
  24695. height: math.unit(1.7, "feet"),
  24696. name: "Eye",
  24697. image: {
  24698. source: "./media/characters/koros/eye.svg"
  24699. }
  24700. },
  24701. headFront: {
  24702. height: math.unit(11.69, "feet"),
  24703. name: "Head (Front)",
  24704. image: {
  24705. source: "./media/characters/koros/head-front.svg"
  24706. }
  24707. },
  24708. headSide: {
  24709. height: math.unit(14, "feet"),
  24710. name: "Head (Side)",
  24711. image: {
  24712. source: "./media/characters/koros/head-side.svg"
  24713. }
  24714. },
  24715. leg: {
  24716. height: math.unit(17, "feet"),
  24717. name: "Leg",
  24718. image: {
  24719. source: "./media/characters/koros/leg.svg"
  24720. }
  24721. },
  24722. mawSide: {
  24723. height: math.unit(12.8, "feet"),
  24724. name: "Maw (Side)",
  24725. image: {
  24726. source: "./media/characters/koros/maw-side.svg"
  24727. }
  24728. },
  24729. mawSpitting: {
  24730. height: math.unit(17, "feet"),
  24731. name: "Maw (Spitting)",
  24732. image: {
  24733. source: "./media/characters/koros/maw-spitting.svg"
  24734. }
  24735. },
  24736. slit: {
  24737. height: math.unit(2.8, "feet"),
  24738. name: "Slit",
  24739. image: {
  24740. source: "./media/characters/koros/slit.svg"
  24741. }
  24742. },
  24743. stomach: {
  24744. height: math.unit(6.8, "feet"),
  24745. capacity: math.unit(20, "people"),
  24746. name: "Stomach",
  24747. image: {
  24748. source: "./media/characters/koros/stomach.svg"
  24749. }
  24750. },
  24751. wingspanBottom: {
  24752. height: math.unit(114, "feet"),
  24753. name: "Wingspan (Bottom)",
  24754. image: {
  24755. source: "./media/characters/koros/wingspan-bottom.svg"
  24756. }
  24757. },
  24758. wingspanTop: {
  24759. height: math.unit(104, "feet"),
  24760. name: "Wingspan (Top)",
  24761. image: {
  24762. source: "./media/characters/koros/wingspan-top.svg"
  24763. }
  24764. },
  24765. },
  24766. [
  24767. {
  24768. name: "Normal",
  24769. height: math.unit(31 + 8 / 12, "feet"),
  24770. default: true
  24771. },
  24772. ]
  24773. ))
  24774. characterMakers.push(() => makeCharacter(
  24775. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24776. {
  24777. front: {
  24778. height: math.unit(18 + 5 / 12, "feet"),
  24779. weight: math.unit(3750, "kg"),
  24780. name: "Front",
  24781. image: {
  24782. source: "./media/characters/vexx/front.svg",
  24783. extra: 426 / 396,
  24784. bottom: 31.5 / 458
  24785. }
  24786. },
  24787. maw: {
  24788. height: math.unit(6, "feet"),
  24789. name: "Maw",
  24790. image: {
  24791. source: "./media/characters/vexx/maw.svg"
  24792. }
  24793. },
  24794. },
  24795. [
  24796. {
  24797. name: "Normal",
  24798. height: math.unit(18 + 5 / 12, "feet"),
  24799. default: true
  24800. },
  24801. ]
  24802. ))
  24803. characterMakers.push(() => makeCharacter(
  24804. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24805. {
  24806. front: {
  24807. height: math.unit(17 + 6 / 12, "feet"),
  24808. weight: math.unit(150, "lb"),
  24809. name: "Front",
  24810. image: {
  24811. source: "./media/characters/baadra/front.svg",
  24812. extra: 3137 / 2890,
  24813. bottom: 168.4 / 3305
  24814. }
  24815. },
  24816. back: {
  24817. height: math.unit(17 + 6 / 12, "feet"),
  24818. weight: math.unit(150, "lb"),
  24819. name: "Back",
  24820. image: {
  24821. source: "./media/characters/baadra/back.svg",
  24822. extra: 3142 / 2890,
  24823. bottom: 220 / 3371
  24824. }
  24825. },
  24826. head: {
  24827. height: math.unit(5.45, "feet"),
  24828. name: "Head",
  24829. image: {
  24830. source: "./media/characters/baadra/head.svg"
  24831. }
  24832. },
  24833. headAngry: {
  24834. height: math.unit(4.95, "feet"),
  24835. name: "Head (Angry)",
  24836. image: {
  24837. source: "./media/characters/baadra/head-angry.svg"
  24838. }
  24839. },
  24840. headOpen: {
  24841. height: math.unit(6, "feet"),
  24842. name: "Head (Open)",
  24843. image: {
  24844. source: "./media/characters/baadra/head-open.svg"
  24845. }
  24846. },
  24847. },
  24848. [
  24849. {
  24850. name: "Normal",
  24851. height: math.unit(17 + 6 / 12, "feet"),
  24852. default: true
  24853. },
  24854. ]
  24855. ))
  24856. characterMakers.push(() => makeCharacter(
  24857. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24858. {
  24859. front: {
  24860. height: math.unit(7 + 3 / 12, "feet"),
  24861. weight: math.unit(180, "lb"),
  24862. name: "Front",
  24863. image: {
  24864. source: "./media/characters/juri/front.svg",
  24865. extra: 1401 / 1237,
  24866. bottom: 18.5 / 1418
  24867. }
  24868. },
  24869. side: {
  24870. height: math.unit(7 + 3 / 12, "feet"),
  24871. weight: math.unit(180, "lb"),
  24872. name: "Side",
  24873. image: {
  24874. source: "./media/characters/juri/side.svg",
  24875. extra: 1424 / 1242,
  24876. bottom: 18.5 / 1447
  24877. }
  24878. },
  24879. sitting: {
  24880. height: math.unit(6, "feet"),
  24881. weight: math.unit(180, "lb"),
  24882. name: "Sitting",
  24883. image: {
  24884. source: "./media/characters/juri/sitting.svg",
  24885. extra: 1270 / 1143,
  24886. bottom: 100 / 1343
  24887. }
  24888. },
  24889. back: {
  24890. height: math.unit(7 + 3 / 12, "feet"),
  24891. weight: math.unit(180, "lb"),
  24892. name: "Back",
  24893. image: {
  24894. source: "./media/characters/juri/back.svg",
  24895. extra: 1377 / 1240,
  24896. bottom: 23.7 / 1405
  24897. }
  24898. },
  24899. maw: {
  24900. height: math.unit(2.8, "feet"),
  24901. name: "Maw",
  24902. image: {
  24903. source: "./media/characters/juri/maw.svg"
  24904. }
  24905. },
  24906. stomach: {
  24907. height: math.unit(0.89, "feet"),
  24908. capacity: math.unit(4, "liters"),
  24909. name: "Stomach",
  24910. image: {
  24911. source: "./media/characters/juri/stomach.svg"
  24912. }
  24913. },
  24914. },
  24915. [
  24916. {
  24917. name: "Normal",
  24918. height: math.unit(7 + 3 / 12, "feet"),
  24919. default: true
  24920. },
  24921. ]
  24922. ))
  24923. characterMakers.push(() => makeCharacter(
  24924. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24925. {
  24926. fox: {
  24927. height: math.unit(5 + 6 / 12, "feet"),
  24928. weight: math.unit(140, "lb"),
  24929. name: "Fox",
  24930. image: {
  24931. source: "./media/characters/maxene-sita/fox.svg",
  24932. extra: 146 / 138,
  24933. bottom: 2.1 / 148.19
  24934. }
  24935. },
  24936. foxLaying: {
  24937. height: math.unit(1.70, "feet"),
  24938. weight: math.unit(140, "lb"),
  24939. name: "Fox (Laying)",
  24940. image: {
  24941. source: "./media/characters/maxene-sita/fox-laying.svg",
  24942. extra: 910 / 572,
  24943. bottom: 71 / 981
  24944. }
  24945. },
  24946. kitsune: {
  24947. height: math.unit(10, "feet"),
  24948. weight: math.unit(800, "lb"),
  24949. name: "Kitsune",
  24950. image: {
  24951. source: "./media/characters/maxene-sita/kitsune.svg",
  24952. extra: 185 / 176,
  24953. bottom: 4.7 / 189.9
  24954. }
  24955. },
  24956. hellhound: {
  24957. height: math.unit(10, "feet"),
  24958. weight: math.unit(700, "lb"),
  24959. name: "Hellhound",
  24960. image: {
  24961. source: "./media/characters/maxene-sita/hellhound.svg",
  24962. extra: 1600 / 1545,
  24963. bottom: 81 / 1681
  24964. }
  24965. },
  24966. },
  24967. [
  24968. {
  24969. name: "Normal",
  24970. height: math.unit(5 + 6 / 12, "feet"),
  24971. default: true
  24972. },
  24973. ]
  24974. ))
  24975. characterMakers.push(() => makeCharacter(
  24976. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24977. {
  24978. front: {
  24979. height: math.unit(3 + 4 / 12, "feet"),
  24980. weight: math.unit(70, "lb"),
  24981. name: "Front",
  24982. image: {
  24983. source: "./media/characters/maia/front.svg",
  24984. extra: 227 / 219.5,
  24985. bottom: 40 / 267
  24986. }
  24987. },
  24988. back: {
  24989. height: math.unit(3 + 4 / 12, "feet"),
  24990. weight: math.unit(70, "lb"),
  24991. name: "Back",
  24992. image: {
  24993. source: "./media/characters/maia/back.svg",
  24994. extra: 237 / 225
  24995. }
  24996. },
  24997. },
  24998. [
  24999. {
  25000. name: "Normal",
  25001. height: math.unit(3 + 4 / 12, "feet"),
  25002. default: true
  25003. },
  25004. ]
  25005. ))
  25006. characterMakers.push(() => makeCharacter(
  25007. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25008. {
  25009. front: {
  25010. height: math.unit(5 + 10 / 12, "feet"),
  25011. weight: math.unit(197, "lb"),
  25012. name: "Front",
  25013. image: {
  25014. source: "./media/characters/jabaro/front.svg",
  25015. extra: 225 / 216,
  25016. bottom: 5.06 / 230
  25017. }
  25018. },
  25019. back: {
  25020. height: math.unit(5 + 10 / 12, "feet"),
  25021. weight: math.unit(197, "lb"),
  25022. name: "Back",
  25023. image: {
  25024. source: "./media/characters/jabaro/back.svg",
  25025. extra: 225 / 219,
  25026. bottom: 1.9 / 227
  25027. }
  25028. },
  25029. },
  25030. [
  25031. {
  25032. name: "Normal",
  25033. height: math.unit(5 + 10 / 12, "feet"),
  25034. default: true
  25035. },
  25036. ]
  25037. ))
  25038. characterMakers.push(() => makeCharacter(
  25039. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25040. {
  25041. front: {
  25042. height: math.unit(5 + 8 / 12, "feet"),
  25043. weight: math.unit(139, "lb"),
  25044. name: "Front",
  25045. image: {
  25046. source: "./media/characters/risa/front.svg",
  25047. extra: 270 / 260,
  25048. bottom: 11.2 / 282
  25049. }
  25050. },
  25051. back: {
  25052. height: math.unit(5 + 8 / 12, "feet"),
  25053. weight: math.unit(139, "lb"),
  25054. name: "Back",
  25055. image: {
  25056. source: "./media/characters/risa/back.svg",
  25057. extra: 264 / 255,
  25058. bottom: 4 / 268
  25059. }
  25060. },
  25061. },
  25062. [
  25063. {
  25064. name: "Normal",
  25065. height: math.unit(5 + 8 / 12, "feet"),
  25066. default: true
  25067. },
  25068. ]
  25069. ))
  25070. characterMakers.push(() => makeCharacter(
  25071. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25072. {
  25073. front: {
  25074. height: math.unit(2 + 11 / 12, "feet"),
  25075. weight: math.unit(30, "lb"),
  25076. name: "Front",
  25077. image: {
  25078. source: "./media/characters/weatley/front.svg",
  25079. bottom: 10.7 / 414,
  25080. extra: 403.5 / 362
  25081. }
  25082. },
  25083. back: {
  25084. height: math.unit(2 + 11 / 12, "feet"),
  25085. weight: math.unit(30, "lb"),
  25086. name: "Back",
  25087. image: {
  25088. source: "./media/characters/weatley/back.svg",
  25089. bottom: 10.7 / 414,
  25090. extra: 403.5 / 362
  25091. }
  25092. },
  25093. },
  25094. [
  25095. {
  25096. name: "Normal",
  25097. height: math.unit(2 + 11 / 12, "feet"),
  25098. default: true
  25099. },
  25100. ]
  25101. ))
  25102. characterMakers.push(() => makeCharacter(
  25103. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25104. {
  25105. front: {
  25106. height: math.unit(5 + 2 / 12, "feet"),
  25107. weight: math.unit(50, "kg"),
  25108. name: "Front",
  25109. image: {
  25110. source: "./media/characters/mercury-crescent/front.svg",
  25111. extra: 1088 / 1033,
  25112. bottom: 18.9 / 1109
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Normal",
  25119. height: math.unit(5 + 2 / 12, "feet"),
  25120. default: true
  25121. },
  25122. ]
  25123. ))
  25124. characterMakers.push(() => makeCharacter(
  25125. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25126. {
  25127. front: {
  25128. height: math.unit(2, "feet"),
  25129. weight: math.unit(15, "kg"),
  25130. name: "Front",
  25131. image: {
  25132. source: "./media/characters/diamond-jones/front.svg",
  25133. bottom: 16 / 568
  25134. }
  25135. },
  25136. },
  25137. [
  25138. {
  25139. name: "Normal",
  25140. height: math.unit(2, "feet"),
  25141. default: true
  25142. },
  25143. ]
  25144. ))
  25145. characterMakers.push(() => makeCharacter(
  25146. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25147. {
  25148. front: {
  25149. height: math.unit(3, "feet"),
  25150. weight: math.unit(30, "kg"),
  25151. name: "Front",
  25152. image: {
  25153. source: "./media/characters/sweet-bit/front.svg",
  25154. extra: 675 / 567,
  25155. bottom: 27.7 / 703
  25156. }
  25157. },
  25158. },
  25159. [
  25160. {
  25161. name: "Normal",
  25162. height: math.unit(3, "feet"),
  25163. default: true
  25164. },
  25165. ]
  25166. ))
  25167. characterMakers.push(() => makeCharacter(
  25168. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25169. {
  25170. side: {
  25171. height: math.unit(9.178, "feet"),
  25172. weight: math.unit(500, "lb"),
  25173. name: "Side",
  25174. image: {
  25175. source: "./media/characters/umbrazen/side.svg",
  25176. extra: 1730 / 1473,
  25177. bottom: 34.6 / 1765
  25178. }
  25179. },
  25180. },
  25181. [
  25182. {
  25183. name: "Normal",
  25184. height: math.unit(9.178, "feet"),
  25185. default: true
  25186. },
  25187. ]
  25188. ))
  25189. characterMakers.push(() => makeCharacter(
  25190. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25191. {
  25192. front: {
  25193. height: math.unit(10, "feet"),
  25194. weight: math.unit(750, "lb"),
  25195. name: "Front",
  25196. image: {
  25197. source: "./media/characters/arlist/front.svg",
  25198. extra: 961 / 778,
  25199. bottom: 6.2 / 986
  25200. }
  25201. },
  25202. },
  25203. [
  25204. {
  25205. name: "Normal",
  25206. height: math.unit(10, "feet"),
  25207. default: true
  25208. },
  25209. ]
  25210. ))
  25211. characterMakers.push(() => makeCharacter(
  25212. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25213. {
  25214. front: {
  25215. height: math.unit(5 + 1 / 12, "feet"),
  25216. weight: math.unit(110, "lb"),
  25217. name: "Front",
  25218. image: {
  25219. source: "./media/characters/aradel/front.svg",
  25220. extra: 324 / 303,
  25221. bottom: 3.6 / 329.4
  25222. }
  25223. },
  25224. },
  25225. [
  25226. {
  25227. name: "Normal",
  25228. height: math.unit(5 + 1 / 12, "feet"),
  25229. default: true
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(3 + 8 / 12, "feet"),
  25238. weight: math.unit(50, "lb"),
  25239. name: "Front",
  25240. image: {
  25241. source: "./media/characters/serryn/front.svg",
  25242. extra: 1792 / 1656,
  25243. bottom: 43.5 / 1840
  25244. }
  25245. },
  25246. },
  25247. [
  25248. {
  25249. name: "Normal",
  25250. height: math.unit(3 + 8 / 12, "feet"),
  25251. default: true
  25252. },
  25253. ]
  25254. ))
  25255. characterMakers.push(() => makeCharacter(
  25256. { name: "Xavier Thyme" },
  25257. {
  25258. front: {
  25259. height: math.unit(7 + 10 / 12, "feet"),
  25260. weight: math.unit(255, "lb"),
  25261. name: "Front",
  25262. image: {
  25263. source: "./media/characters/xavier-thyme/front.svg",
  25264. extra: 3733 / 3642,
  25265. bottom: 131 / 3869
  25266. }
  25267. },
  25268. frontRaven: {
  25269. height: math.unit(7 + 10 / 12, "feet"),
  25270. weight: math.unit(255, "lb"),
  25271. name: "Front (Raven)",
  25272. image: {
  25273. source: "./media/characters/xavier-thyme/front-raven.svg",
  25274. extra: 4385 / 3642,
  25275. bottom: 131 / 4517
  25276. }
  25277. },
  25278. },
  25279. [
  25280. {
  25281. name: "Normal",
  25282. height: math.unit(7 + 10 / 12, "feet"),
  25283. default: true
  25284. },
  25285. ]
  25286. ))
  25287. characterMakers.push(() => makeCharacter(
  25288. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25289. {
  25290. front: {
  25291. height: math.unit(1.6, "m"),
  25292. weight: math.unit(50, "kg"),
  25293. name: "Front",
  25294. image: {
  25295. source: "./media/characters/kiki/front.svg",
  25296. extra: 4682 / 3610,
  25297. bottom: 115 / 4777
  25298. }
  25299. },
  25300. },
  25301. [
  25302. {
  25303. name: "Normal",
  25304. height: math.unit(1.6, "meters"),
  25305. default: true
  25306. },
  25307. ]
  25308. ))
  25309. characterMakers.push(() => makeCharacter(
  25310. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25311. {
  25312. front: {
  25313. height: math.unit(50, "m"),
  25314. weight: math.unit(500, "tonnes"),
  25315. name: "Front",
  25316. image: {
  25317. source: "./media/characters/ryoko/front.svg",
  25318. extra: 4632 / 3926,
  25319. bottom: 193 / 4823
  25320. }
  25321. },
  25322. },
  25323. [
  25324. {
  25325. name: "Normal",
  25326. height: math.unit(50, "meters"),
  25327. default: true
  25328. },
  25329. ]
  25330. ))
  25331. characterMakers.push(() => makeCharacter(
  25332. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25333. {
  25334. front: {
  25335. height: math.unit(30, "m"),
  25336. weight: math.unit(22, "tonnes"),
  25337. name: "Front",
  25338. image: {
  25339. source: "./media/characters/elio/front.svg",
  25340. extra: 4582 / 3720,
  25341. bottom: 236 / 4828
  25342. }
  25343. },
  25344. },
  25345. [
  25346. {
  25347. name: "Normal",
  25348. height: math.unit(30, "meters"),
  25349. default: true
  25350. },
  25351. ]
  25352. ))
  25353. characterMakers.push(() => makeCharacter(
  25354. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25355. {
  25356. front: {
  25357. height: math.unit(6 + 3 / 12, "feet"),
  25358. weight: math.unit(120, "lb"),
  25359. name: "Front",
  25360. image: {
  25361. source: "./media/characters/azura/front.svg",
  25362. extra: 1149 / 1135,
  25363. bottom: 45 / 1194
  25364. }
  25365. },
  25366. frontClothed: {
  25367. height: math.unit(6 + 3 / 12, "feet"),
  25368. weight: math.unit(120, "lb"),
  25369. name: "Front (Clothed)",
  25370. image: {
  25371. source: "./media/characters/azura/front-clothed.svg",
  25372. extra: 1149 / 1135,
  25373. bottom: 45 / 1194
  25374. }
  25375. },
  25376. },
  25377. [
  25378. {
  25379. name: "Normal",
  25380. height: math.unit(6 + 3 / 12, "feet"),
  25381. default: true
  25382. },
  25383. {
  25384. name: "Macro",
  25385. height: math.unit(20 + 6 / 12, "feet")
  25386. },
  25387. {
  25388. name: "Megamacro",
  25389. height: math.unit(12, "miles")
  25390. },
  25391. {
  25392. name: "Gigamacro",
  25393. height: math.unit(10000, "miles")
  25394. },
  25395. {
  25396. name: "Teramacro",
  25397. height: math.unit(900000, "miles")
  25398. },
  25399. ]
  25400. ))
  25401. characterMakers.push(() => makeCharacter(
  25402. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25403. {
  25404. front: {
  25405. height: math.unit(12, "feet"),
  25406. weight: math.unit(1, "ton"),
  25407. capacity: math.unit(660000, "gallons"),
  25408. name: "Front",
  25409. image: {
  25410. source: "./media/characters/zeus/front.svg",
  25411. extra: 5005 / 4717,
  25412. bottom: 363 / 5388
  25413. }
  25414. },
  25415. },
  25416. [
  25417. {
  25418. name: "Normal",
  25419. height: math.unit(12, "feet")
  25420. },
  25421. {
  25422. name: "Preferred Size",
  25423. height: math.unit(0.5, "miles"),
  25424. default: true
  25425. },
  25426. {
  25427. name: "Giga Horse",
  25428. height: math.unit(300, "miles")
  25429. },
  25430. {
  25431. name: "Riding Planets",
  25432. height: math.unit(30, "megameters")
  25433. },
  25434. {
  25435. name: "Cosmic Giant",
  25436. height: math.unit(3, "zettameters")
  25437. },
  25438. {
  25439. name: "Breeding God",
  25440. height: math.unit(9.92e22, "yottameters")
  25441. },
  25442. ]
  25443. ))
  25444. characterMakers.push(() => makeCharacter(
  25445. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25446. {
  25447. side: {
  25448. height: math.unit(9, "feet"),
  25449. weight: math.unit(1500, "kg"),
  25450. name: "Side",
  25451. image: {
  25452. source: "./media/characters/fang/side.svg",
  25453. extra: 924 / 866,
  25454. bottom: 47.5 / 972.3
  25455. }
  25456. },
  25457. },
  25458. [
  25459. {
  25460. name: "Normal",
  25461. height: math.unit(9, "feet"),
  25462. default: true
  25463. },
  25464. {
  25465. name: "Macro",
  25466. height: math.unit(75 + 6 / 12, "feet")
  25467. },
  25468. {
  25469. name: "Teramacro",
  25470. height: math.unit(50000, "miles")
  25471. },
  25472. ]
  25473. ))
  25474. characterMakers.push(() => makeCharacter(
  25475. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25476. {
  25477. front: {
  25478. height: math.unit(10, "feet"),
  25479. weight: math.unit(2, "tons"),
  25480. name: "Front",
  25481. image: {
  25482. source: "./media/characters/rekhit/front.svg",
  25483. extra: 2796 / 2590,
  25484. bottom: 225 / 3022
  25485. }
  25486. },
  25487. },
  25488. [
  25489. {
  25490. name: "Normal",
  25491. height: math.unit(10, "feet"),
  25492. default: true
  25493. },
  25494. {
  25495. name: "Macro",
  25496. height: math.unit(500, "feet")
  25497. },
  25498. ]
  25499. ))
  25500. characterMakers.push(() => makeCharacter(
  25501. { name: "Dahlia Verrick" },
  25502. {
  25503. front: {
  25504. height: math.unit(7 + 6.451 / 12, "feet"),
  25505. weight: math.unit(310, "lb"),
  25506. name: "Front",
  25507. image: {
  25508. source: "./media/characters/dahlia-verrick/front.svg",
  25509. extra: 1488 / 1365,
  25510. bottom: 6.2 / 1495
  25511. }
  25512. },
  25513. back: {
  25514. height: math.unit(7 + 6.451 / 12, "feet"),
  25515. weight: math.unit(310, "lb"),
  25516. name: "Back",
  25517. image: {
  25518. source: "./media/characters/dahlia-verrick/back.svg",
  25519. extra: 1472 / 1351,
  25520. bottom: 5.28 / 1477
  25521. }
  25522. },
  25523. frontBusiness: {
  25524. height: math.unit(7 + 6.451 / 12, "feet"),
  25525. weight: math.unit(200, "lb"),
  25526. name: "Front (Business)",
  25527. image: {
  25528. source: "./media/characters/dahlia-verrick/front-business.svg",
  25529. extra: 1478 / 1381,
  25530. bottom: 5.5 / 1484
  25531. }
  25532. },
  25533. frontCasual: {
  25534. height: math.unit(7 + 6.451 / 12, "feet"),
  25535. weight: math.unit(200, "lb"),
  25536. name: "Front (Casual)",
  25537. image: {
  25538. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25539. extra: 1478 / 1381,
  25540. bottom: 5.5 / 1484
  25541. }
  25542. },
  25543. },
  25544. [
  25545. {
  25546. name: "Travel-Sized",
  25547. height: math.unit(7.45, "inches")
  25548. },
  25549. {
  25550. name: "Normal",
  25551. height: math.unit(7 + 6.451 / 12, "feet"),
  25552. default: true
  25553. },
  25554. {
  25555. name: "Hitting the Town",
  25556. height: math.unit(37 + 8 / 12, "feet")
  25557. },
  25558. {
  25559. name: "Stomp in the Suburbs",
  25560. height: math.unit(964 + 9.728 / 12, "feet")
  25561. },
  25562. {
  25563. name: "Sit on the City",
  25564. height: math.unit(61747 + 10.592 / 12, "feet")
  25565. },
  25566. {
  25567. name: "Glomp the Globe",
  25568. height: math.unit(252919327 + 4.832 / 12, "feet")
  25569. },
  25570. ]
  25571. ))
  25572. characterMakers.push(() => makeCharacter(
  25573. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25574. {
  25575. front: {
  25576. height: math.unit(6 + 4 / 12, "feet"),
  25577. weight: math.unit(320, "lb"),
  25578. name: "Front",
  25579. image: {
  25580. source: "./media/characters/balina-mahigan/front.svg",
  25581. extra: 447 / 428,
  25582. bottom: 18 / 466
  25583. }
  25584. },
  25585. back: {
  25586. height: math.unit(6 + 4 / 12, "feet"),
  25587. weight: math.unit(320, "lb"),
  25588. name: "Back",
  25589. image: {
  25590. source: "./media/characters/balina-mahigan/back.svg",
  25591. extra: 445 / 428,
  25592. bottom: 4.07 / 448
  25593. }
  25594. },
  25595. arm: {
  25596. height: math.unit(1.88, "feet"),
  25597. name: "Arm",
  25598. image: {
  25599. source: "./media/characters/balina-mahigan/arm.svg"
  25600. }
  25601. },
  25602. backPort: {
  25603. height: math.unit(0.685, "feet"),
  25604. name: "Back Port",
  25605. image: {
  25606. source: "./media/characters/balina-mahigan/back-port.svg"
  25607. }
  25608. },
  25609. hoofpaw: {
  25610. height: math.unit(1.41, "feet"),
  25611. name: "Hoofpaw",
  25612. image: {
  25613. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25614. }
  25615. },
  25616. leftHandBack: {
  25617. height: math.unit(0.938, "feet"),
  25618. name: "Left Hand (Back)",
  25619. image: {
  25620. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25621. }
  25622. },
  25623. leftHandFront: {
  25624. height: math.unit(0.938, "feet"),
  25625. name: "Left Hand (Front)",
  25626. image: {
  25627. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25628. }
  25629. },
  25630. rightHandBack: {
  25631. height: math.unit(0.95, "feet"),
  25632. name: "Right Hand (Back)",
  25633. image: {
  25634. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25635. }
  25636. },
  25637. rightHandFront: {
  25638. height: math.unit(0.95, "feet"),
  25639. name: "Right Hand (Front)",
  25640. image: {
  25641. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25642. }
  25643. },
  25644. },
  25645. [
  25646. {
  25647. name: "Normal",
  25648. height: math.unit(6 + 4 / 12, "feet"),
  25649. default: true
  25650. },
  25651. ]
  25652. ))
  25653. characterMakers.push(() => makeCharacter(
  25654. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25655. {
  25656. front: {
  25657. height: math.unit(6, "feet"),
  25658. weight: math.unit(320, "lb"),
  25659. name: "Front",
  25660. image: {
  25661. source: "./media/characters/balina-mejeri/front.svg",
  25662. extra: 517 / 488,
  25663. bottom: 44.2 / 561
  25664. }
  25665. },
  25666. },
  25667. [
  25668. {
  25669. name: "Normal",
  25670. height: math.unit(6 + 4 / 12, "feet")
  25671. },
  25672. {
  25673. name: "Business",
  25674. height: math.unit(155, "feet"),
  25675. default: true
  25676. },
  25677. ]
  25678. ))
  25679. characterMakers.push(() => makeCharacter(
  25680. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25681. {
  25682. kneeling: {
  25683. height: math.unit(6 + 4 / 12, "feet"),
  25684. weight: math.unit(300 * 20, "lb"),
  25685. name: "Kneeling",
  25686. image: {
  25687. source: "./media/characters/balbarian/kneeling.svg",
  25688. extra: 922 / 862,
  25689. bottom: 42.4 / 965
  25690. }
  25691. },
  25692. },
  25693. [
  25694. {
  25695. name: "Normal",
  25696. height: math.unit(6 + 4 / 12, "feet")
  25697. },
  25698. {
  25699. name: "Treasured",
  25700. height: math.unit(18 + 9 / 12, "feet"),
  25701. default: true
  25702. },
  25703. {
  25704. name: "Macro",
  25705. height: math.unit(900, "feet")
  25706. },
  25707. ]
  25708. ))
  25709. characterMakers.push(() => makeCharacter(
  25710. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25711. {
  25712. front: {
  25713. height: math.unit(6 + 4 / 12, "feet"),
  25714. weight: math.unit(325, "lb"),
  25715. name: "Front",
  25716. image: {
  25717. source: "./media/characters/balina-amarini/front.svg",
  25718. extra: 415 / 403,
  25719. bottom: 19 / 433.4
  25720. }
  25721. },
  25722. back: {
  25723. height: math.unit(6 + 4 / 12, "feet"),
  25724. weight: math.unit(325, "lb"),
  25725. name: "Back",
  25726. image: {
  25727. source: "./media/characters/balina-amarini/back.svg",
  25728. extra: 415 / 403,
  25729. bottom: 13.5 / 432
  25730. }
  25731. },
  25732. overdrive: {
  25733. height: math.unit(6 + 4 / 12, "feet"),
  25734. weight: math.unit(400, "lb"),
  25735. name: "Overdrive",
  25736. image: {
  25737. source: "./media/characters/balina-amarini/overdrive.svg",
  25738. extra: 269 / 259,
  25739. bottom: 12 / 282
  25740. }
  25741. },
  25742. },
  25743. [
  25744. {
  25745. name: "Boom",
  25746. height: math.unit(9 + 10 / 12, "feet"),
  25747. default: true
  25748. },
  25749. {
  25750. name: "Macro",
  25751. height: math.unit(280, "feet")
  25752. },
  25753. ]
  25754. ))
  25755. characterMakers.push(() => makeCharacter(
  25756. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25757. {
  25758. goddess: {
  25759. height: math.unit(600, "feet"),
  25760. weight: math.unit(2000000, "tons"),
  25761. name: "Goddess",
  25762. image: {
  25763. source: "./media/characters/lady-kubwa/goddess.svg",
  25764. extra: 1240.5 / 1223,
  25765. bottom: 22 / 1263
  25766. }
  25767. },
  25768. goddesser: {
  25769. height: math.unit(900, "feet"),
  25770. weight: math.unit(20000000, "lb"),
  25771. name: "Goddess-er",
  25772. image: {
  25773. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25774. extra: 899 / 888,
  25775. bottom: 12.6 / 912
  25776. }
  25777. },
  25778. },
  25779. [
  25780. {
  25781. name: "Macro",
  25782. height: math.unit(600, "feet"),
  25783. default: true
  25784. },
  25785. {
  25786. name: "Megamacro",
  25787. height: math.unit(250, "miles")
  25788. },
  25789. ]
  25790. ))
  25791. characterMakers.push(() => makeCharacter(
  25792. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25793. {
  25794. front: {
  25795. height: math.unit(7 + 7 / 12, "feet"),
  25796. weight: math.unit(250, "lb"),
  25797. name: "Front",
  25798. image: {
  25799. source: "./media/characters/tala-grovehorn/front.svg",
  25800. extra: 2636 / 2525,
  25801. bottom: 147 / 2781
  25802. }
  25803. },
  25804. back: {
  25805. height: math.unit(7 + 7 / 12, "feet"),
  25806. weight: math.unit(250, "lb"),
  25807. name: "Back",
  25808. image: {
  25809. source: "./media/characters/tala-grovehorn/back.svg",
  25810. extra: 2635 / 2539,
  25811. bottom: 100 / 2732.8
  25812. }
  25813. },
  25814. mouth: {
  25815. height: math.unit(1.15, "feet"),
  25816. name: "Mouth",
  25817. image: {
  25818. source: "./media/characters/tala-grovehorn/mouth.svg"
  25819. }
  25820. },
  25821. dick: {
  25822. height: math.unit(2.36, "feet"),
  25823. name: "Dick",
  25824. image: {
  25825. source: "./media/characters/tala-grovehorn/dick.svg"
  25826. }
  25827. },
  25828. slit: {
  25829. height: math.unit(0.61, "feet"),
  25830. name: "Slit",
  25831. image: {
  25832. source: "./media/characters/tala-grovehorn/slit.svg"
  25833. }
  25834. },
  25835. },
  25836. [
  25837. ]
  25838. ))
  25839. characterMakers.push(() => makeCharacter(
  25840. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25841. {
  25842. front: {
  25843. height: math.unit(7 + 7 / 12, "feet"),
  25844. weight: math.unit(225, "lb"),
  25845. name: "Front",
  25846. image: {
  25847. source: "./media/characters/epona/front.svg",
  25848. extra: 2445 / 2290,
  25849. bottom: 251 / 2696
  25850. }
  25851. },
  25852. back: {
  25853. height: math.unit(7 + 7 / 12, "feet"),
  25854. weight: math.unit(225, "lb"),
  25855. name: "Back",
  25856. image: {
  25857. source: "./media/characters/epona/back.svg",
  25858. extra: 2546 / 2408,
  25859. bottom: 44 / 2589
  25860. }
  25861. },
  25862. genitals: {
  25863. height: math.unit(1.5, "feet"),
  25864. name: "Genitals",
  25865. image: {
  25866. source: "./media/characters/epona/genitals.svg"
  25867. }
  25868. },
  25869. },
  25870. [
  25871. {
  25872. name: "Normal",
  25873. height: math.unit(7 + 7 / 12, "feet"),
  25874. default: true
  25875. },
  25876. ]
  25877. ))
  25878. characterMakers.push(() => makeCharacter(
  25879. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25880. {
  25881. front: {
  25882. height: math.unit(7, "feet"),
  25883. weight: math.unit(518, "lb"),
  25884. name: "Front",
  25885. image: {
  25886. source: "./media/characters/avia-bloodbourn/front.svg",
  25887. extra: 1466 / 1350,
  25888. bottom: 65 / 1527
  25889. }
  25890. },
  25891. },
  25892. [
  25893. ]
  25894. ))
  25895. characterMakers.push(() => makeCharacter(
  25896. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25897. {
  25898. front: {
  25899. height: math.unit(9.35, "feet"),
  25900. weight: math.unit(600, "lb"),
  25901. name: "Front",
  25902. image: {
  25903. source: "./media/characters/amera/front.svg",
  25904. extra: 891 / 818,
  25905. bottom: 30 / 922.7
  25906. }
  25907. },
  25908. back: {
  25909. height: math.unit(9.35, "feet"),
  25910. weight: math.unit(600, "lb"),
  25911. name: "Back",
  25912. image: {
  25913. source: "./media/characters/amera/back.svg",
  25914. extra: 876 / 824,
  25915. bottom: 6.8 / 884
  25916. }
  25917. },
  25918. dick: {
  25919. height: math.unit(2.14, "feet"),
  25920. name: "Dick",
  25921. image: {
  25922. source: "./media/characters/amera/dick.svg"
  25923. }
  25924. },
  25925. },
  25926. [
  25927. {
  25928. name: "Normal",
  25929. height: math.unit(9.35, "feet"),
  25930. default: true
  25931. },
  25932. ]
  25933. ))
  25934. characterMakers.push(() => makeCharacter(
  25935. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25936. {
  25937. kneeling: {
  25938. height: math.unit(3 + 4 / 12, "feet"),
  25939. weight: math.unit(90, "lb"),
  25940. name: "Kneeling",
  25941. image: {
  25942. source: "./media/characters/rosewen/kneeling.svg",
  25943. extra: 1835 / 1571,
  25944. bottom: 27.7 / 1862
  25945. }
  25946. },
  25947. },
  25948. [
  25949. {
  25950. name: "Normal",
  25951. height: math.unit(3 + 4 / 12, "feet"),
  25952. default: true
  25953. },
  25954. ]
  25955. ))
  25956. characterMakers.push(() => makeCharacter(
  25957. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25958. {
  25959. front: {
  25960. height: math.unit(5 + 10 / 12, "feet"),
  25961. weight: math.unit(200, "lb"),
  25962. name: "Front",
  25963. image: {
  25964. source: "./media/characters/sabah/front.svg",
  25965. extra: 849 / 763,
  25966. bottom: 33.9 / 881
  25967. }
  25968. },
  25969. },
  25970. [
  25971. {
  25972. name: "Normal",
  25973. height: math.unit(5 + 10 / 12, "feet"),
  25974. default: true
  25975. },
  25976. ]
  25977. ))
  25978. characterMakers.push(() => makeCharacter(
  25979. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25980. {
  25981. front: {
  25982. height: math.unit(3 + 5 / 12, "feet"),
  25983. weight: math.unit(40, "kg"),
  25984. name: "Front",
  25985. image: {
  25986. source: "./media/characters/purple-flame/front.svg",
  25987. extra: 1577 / 1412,
  25988. bottom: 97 / 1694
  25989. }
  25990. },
  25991. frontDressed: {
  25992. height: math.unit(3 + 5 / 12, "feet"),
  25993. weight: math.unit(40, "kg"),
  25994. name: "Front (Dressed)",
  25995. image: {
  25996. source: "./media/characters/purple-flame/front-dressed.svg",
  25997. extra: 1577 / 1412,
  25998. bottom: 97 / 1694
  25999. }
  26000. },
  26001. headphones: {
  26002. height: math.unit(0.85, "feet"),
  26003. name: "Headphones",
  26004. image: {
  26005. source: "./media/characters/purple-flame/headphones.svg"
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Really Small",
  26012. height: math.unit(5, "cm")
  26013. },
  26014. {
  26015. name: "Micro",
  26016. height: math.unit(1 + 5 / 12, "feet")
  26017. },
  26018. {
  26019. name: "Normal",
  26020. height: math.unit(3 + 5 / 12, "feet"),
  26021. default: true
  26022. },
  26023. {
  26024. name: "Minimacro",
  26025. height: math.unit(125, "feet")
  26026. },
  26027. {
  26028. name: "Macro",
  26029. height: math.unit(0.5, "miles")
  26030. },
  26031. {
  26032. name: "Megamacro",
  26033. height: math.unit(50, "miles")
  26034. },
  26035. {
  26036. name: "Gigantic",
  26037. height: math.unit(750, "miles")
  26038. },
  26039. {
  26040. name: "Planetary",
  26041. height: math.unit(15000, "miles")
  26042. },
  26043. ]
  26044. ))
  26045. characterMakers.push(() => makeCharacter(
  26046. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26047. {
  26048. front: {
  26049. height: math.unit(14, "feet"),
  26050. weight: math.unit(959, "lb"),
  26051. name: "Front",
  26052. image: {
  26053. source: "./media/characters/arsenal/front.svg",
  26054. extra: 2357 / 2157,
  26055. bottom: 93 / 2458
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Normal",
  26062. height: math.unit(14, "feet"),
  26063. default: true
  26064. },
  26065. ]
  26066. ))
  26067. characterMakers.push(() => makeCharacter(
  26068. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26069. {
  26070. front: {
  26071. height: math.unit(6, "feet"),
  26072. weight: math.unit(150, "lb"),
  26073. name: "Front",
  26074. image: {
  26075. source: "./media/characters/adira/front.svg",
  26076. extra: 1078 / 1029,
  26077. bottom: 87 / 1166
  26078. }
  26079. },
  26080. },
  26081. [
  26082. {
  26083. name: "Micro",
  26084. height: math.unit(4, "inches"),
  26085. default: true
  26086. },
  26087. {
  26088. name: "Macro",
  26089. height: math.unit(50, "feet")
  26090. },
  26091. ]
  26092. ))
  26093. characterMakers.push(() => makeCharacter(
  26094. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26095. {
  26096. front: {
  26097. height: math.unit(16, "feet"),
  26098. weight: math.unit(1000, "lb"),
  26099. name: "Front",
  26100. image: {
  26101. source: "./media/characters/grim/front.svg",
  26102. extra: 622 / 614,
  26103. bottom: 18.1 / 642
  26104. }
  26105. },
  26106. back: {
  26107. height: math.unit(16, "feet"),
  26108. weight: math.unit(1000, "lb"),
  26109. name: "Back",
  26110. image: {
  26111. source: "./media/characters/grim/back.svg",
  26112. extra: 610.6 / 602,
  26113. bottom: 40.8 / 652
  26114. }
  26115. },
  26116. hunched: {
  26117. height: math.unit(9.75, "feet"),
  26118. weight: math.unit(1000, "lb"),
  26119. name: "Hunched",
  26120. image: {
  26121. source: "./media/characters/grim/hunched.svg",
  26122. extra: 304 / 297,
  26123. bottom: 35.4 / 394
  26124. }
  26125. },
  26126. },
  26127. [
  26128. {
  26129. name: "Normal",
  26130. height: math.unit(16, "feet"),
  26131. default: true
  26132. },
  26133. ]
  26134. ))
  26135. characterMakers.push(() => makeCharacter(
  26136. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26137. {
  26138. front: {
  26139. height: math.unit(2.3, "meters"),
  26140. weight: math.unit(300, "lb"),
  26141. name: "Front",
  26142. image: {
  26143. source: "./media/characters/sinja/front-sfw.svg",
  26144. extra: 1393 / 1294,
  26145. bottom: 70 / 1463
  26146. }
  26147. },
  26148. frontNsfw: {
  26149. height: math.unit(2.3, "meters"),
  26150. weight: math.unit(300, "lb"),
  26151. name: "Front (NSFW)",
  26152. image: {
  26153. source: "./media/characters/sinja/front-nsfw.svg",
  26154. extra: 1393 / 1294,
  26155. bottom: 70 / 1463
  26156. }
  26157. },
  26158. back: {
  26159. height: math.unit(2.3, "meters"),
  26160. weight: math.unit(300, "lb"),
  26161. name: "Back",
  26162. image: {
  26163. source: "./media/characters/sinja/back.svg",
  26164. extra: 1393 / 1294,
  26165. bottom: 70 / 1463
  26166. }
  26167. },
  26168. head: {
  26169. height: math.unit(1.771, "feet"),
  26170. name: "Head",
  26171. image: {
  26172. source: "./media/characters/sinja/head.svg"
  26173. }
  26174. },
  26175. slit: {
  26176. height: math.unit(0.8, "feet"),
  26177. name: "Slit",
  26178. image: {
  26179. source: "./media/characters/sinja/slit.svg"
  26180. }
  26181. },
  26182. },
  26183. [
  26184. {
  26185. name: "Normal",
  26186. height: math.unit(2.3, "meters")
  26187. },
  26188. {
  26189. name: "Macro",
  26190. height: math.unit(91, "meters"),
  26191. default: true
  26192. },
  26193. {
  26194. name: "Megamacro",
  26195. height: math.unit(91440, "meters")
  26196. },
  26197. {
  26198. name: "Gigamacro",
  26199. height: math.unit(60960000, "meters")
  26200. },
  26201. {
  26202. name: "Teramacro",
  26203. height: math.unit(9144000000, "meters")
  26204. },
  26205. ]
  26206. ))
  26207. characterMakers.push(() => makeCharacter(
  26208. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26209. {
  26210. front: {
  26211. height: math.unit(1.7, "meters"),
  26212. weight: math.unit(130, "lb"),
  26213. name: "Front",
  26214. image: {
  26215. source: "./media/characters/kyu/front.svg",
  26216. extra: 415 / 395,
  26217. bottom: 5 / 420
  26218. }
  26219. },
  26220. head: {
  26221. height: math.unit(1.75, "feet"),
  26222. name: "Head",
  26223. image: {
  26224. source: "./media/characters/kyu/head.svg"
  26225. }
  26226. },
  26227. foot: {
  26228. height: math.unit(0.81, "feet"),
  26229. name: "Foot",
  26230. image: {
  26231. source: "./media/characters/kyu/foot.svg"
  26232. }
  26233. },
  26234. },
  26235. [
  26236. {
  26237. name: "Normal",
  26238. height: math.unit(1.7, "meters")
  26239. },
  26240. {
  26241. name: "Macro",
  26242. height: math.unit(131, "feet"),
  26243. default: true
  26244. },
  26245. {
  26246. name: "Megamacro",
  26247. height: math.unit(91440, "meters")
  26248. },
  26249. {
  26250. name: "Gigamacro",
  26251. height: math.unit(60960000, "meters")
  26252. },
  26253. {
  26254. name: "Teramacro",
  26255. height: math.unit(9144000000, "meters")
  26256. },
  26257. ]
  26258. ))
  26259. characterMakers.push(() => makeCharacter(
  26260. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26261. {
  26262. front: {
  26263. height: math.unit(7 + 1 / 12, "feet"),
  26264. weight: math.unit(250, "lb"),
  26265. name: "Front",
  26266. image: {
  26267. source: "./media/characters/joey/front.svg",
  26268. extra: 1791 / 1537,
  26269. bottom: 28 / 1816
  26270. }
  26271. },
  26272. },
  26273. [
  26274. {
  26275. name: "Micro",
  26276. height: math.unit(3, "inches")
  26277. },
  26278. {
  26279. name: "Normal",
  26280. height: math.unit(7 + 1 / 12, "feet"),
  26281. default: true
  26282. },
  26283. ]
  26284. ))
  26285. characterMakers.push(() => makeCharacter(
  26286. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26287. {
  26288. front: {
  26289. height: math.unit(165, "cm"),
  26290. weight: math.unit(140, "lb"),
  26291. name: "Front",
  26292. image: {
  26293. source: "./media/characters/sam-evans/front.svg",
  26294. extra: 3417 / 3230,
  26295. bottom: 41.3 / 3417
  26296. }
  26297. },
  26298. frontSixTails: {
  26299. height: math.unit(165, "cm"),
  26300. weight: math.unit(140, "lb"),
  26301. name: "Front-six-tails",
  26302. image: {
  26303. source: "./media/characters/sam-evans/front-six-tails.svg",
  26304. extra: 3417 / 3230,
  26305. bottom: 41.3 / 3417
  26306. }
  26307. },
  26308. back: {
  26309. height: math.unit(165, "cm"),
  26310. weight: math.unit(140, "lb"),
  26311. name: "Back",
  26312. image: {
  26313. source: "./media/characters/sam-evans/back.svg",
  26314. extra: 3227 / 3032,
  26315. bottom: 6.8 / 3234
  26316. }
  26317. },
  26318. face: {
  26319. height: math.unit(0.68, "feet"),
  26320. name: "Face",
  26321. image: {
  26322. source: "./media/characters/sam-evans/face.svg"
  26323. }
  26324. },
  26325. },
  26326. [
  26327. {
  26328. name: "Normal",
  26329. height: math.unit(165, "cm"),
  26330. default: true
  26331. },
  26332. {
  26333. name: "Macro",
  26334. height: math.unit(100, "meters")
  26335. },
  26336. {
  26337. name: "Macro+",
  26338. height: math.unit(800, "meters")
  26339. },
  26340. {
  26341. name: "Macro++",
  26342. height: math.unit(3, "km")
  26343. },
  26344. {
  26345. name: "Macro+++",
  26346. height: math.unit(30, "km")
  26347. },
  26348. ]
  26349. ))
  26350. characterMakers.push(() => makeCharacter(
  26351. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26352. {
  26353. front: {
  26354. height: math.unit(10, "feet"),
  26355. weight: math.unit(750, "lb"),
  26356. name: "Front",
  26357. image: {
  26358. source: "./media/characters/juliet-a/front.svg",
  26359. extra: 1766 / 1720,
  26360. bottom: 43 / 1809
  26361. }
  26362. },
  26363. back: {
  26364. height: math.unit(10, "feet"),
  26365. weight: math.unit(750, "lb"),
  26366. name: "Back",
  26367. image: {
  26368. source: "./media/characters/juliet-a/back.svg",
  26369. extra: 1781 / 1734,
  26370. bottom: 35 / 1810,
  26371. }
  26372. },
  26373. },
  26374. [
  26375. {
  26376. name: "Normal",
  26377. height: math.unit(10, "feet"),
  26378. default: true
  26379. },
  26380. {
  26381. name: "Dragon Form",
  26382. height: math.unit(250, "feet")
  26383. },
  26384. {
  26385. name: "Macro",
  26386. height: math.unit(1000, "feet")
  26387. },
  26388. {
  26389. name: "Megamacro",
  26390. height: math.unit(10000, "feet")
  26391. }
  26392. ]
  26393. ))
  26394. characterMakers.push(() => makeCharacter(
  26395. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26396. {
  26397. regular: {
  26398. height: math.unit(7 + 3 / 12, "feet"),
  26399. weight: math.unit(260, "lb"),
  26400. name: "Regular",
  26401. image: {
  26402. source: "./media/characters/wild/regular.svg",
  26403. extra: 97.45 / 92,
  26404. bottom: 6.8 / 104.3
  26405. }
  26406. },
  26407. biggums: {
  26408. height: math.unit(8 + 6 / 12, "feet"),
  26409. weight: math.unit(425, "lb"),
  26410. name: "Biggums",
  26411. image: {
  26412. source: "./media/characters/wild/biggums.svg",
  26413. extra: 97.45 / 92,
  26414. bottom: 7.5 / 132.34
  26415. }
  26416. },
  26417. mawRegular: {
  26418. height: math.unit(1.24, "feet"),
  26419. name: "Maw (Regular)",
  26420. image: {
  26421. source: "./media/characters/wild/maw.svg"
  26422. }
  26423. },
  26424. mawBiggums: {
  26425. height: math.unit(1.47, "feet"),
  26426. name: "Maw (Biggums)",
  26427. image: {
  26428. source: "./media/characters/wild/maw.svg"
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Normal",
  26435. height: math.unit(7 + 3 / 12, "feet"),
  26436. default: true
  26437. },
  26438. ]
  26439. ))
  26440. characterMakers.push(() => makeCharacter(
  26441. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26442. {
  26443. front: {
  26444. height: math.unit(2.5, "meters"),
  26445. weight: math.unit(200, "kg"),
  26446. name: "Front",
  26447. image: {
  26448. source: "./media/characters/vidar/front.svg",
  26449. extra: 2994 / 2795,
  26450. bottom: 56 / 3061
  26451. }
  26452. },
  26453. back: {
  26454. height: math.unit(2.5, "meters"),
  26455. weight: math.unit(200, "kg"),
  26456. name: "Back",
  26457. image: {
  26458. source: "./media/characters/vidar/back.svg",
  26459. extra: 3131 / 2928,
  26460. bottom: 13.5 / 3141.5
  26461. }
  26462. },
  26463. feral: {
  26464. height: math.unit(2.5, "meters"),
  26465. weight: math.unit(2000, "kg"),
  26466. name: "Feral",
  26467. image: {
  26468. source: "./media/characters/vidar/feral.svg",
  26469. extra: 2790 / 1765,
  26470. bottom: 6 / 2796
  26471. }
  26472. },
  26473. },
  26474. [
  26475. {
  26476. name: "Normal",
  26477. height: math.unit(2.5, "meters"),
  26478. default: true
  26479. },
  26480. {
  26481. name: "Macro",
  26482. height: math.unit(100, "meters")
  26483. },
  26484. ]
  26485. ))
  26486. characterMakers.push(() => makeCharacter(
  26487. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26488. {
  26489. front: {
  26490. height: math.unit(5 + 9 / 12, "feet"),
  26491. weight: math.unit(120, "lb"),
  26492. name: "Front",
  26493. image: {
  26494. source: "./media/characters/ash/front.svg",
  26495. extra: 2189 / 1961,
  26496. bottom: 5.2 / 2194
  26497. }
  26498. },
  26499. },
  26500. [
  26501. {
  26502. name: "Normal",
  26503. height: math.unit(5 + 9 / 12, "feet"),
  26504. default: true
  26505. },
  26506. ]
  26507. ))
  26508. characterMakers.push(() => makeCharacter(
  26509. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26510. {
  26511. front: {
  26512. height: math.unit(9, "feet"),
  26513. weight: math.unit(10000, "lb"),
  26514. name: "Front",
  26515. image: {
  26516. source: "./media/characters/gygabite/front.svg",
  26517. bottom: 31.7 / 537.8,
  26518. extra: 505 / 370
  26519. }
  26520. },
  26521. },
  26522. [
  26523. {
  26524. name: "Normal",
  26525. height: math.unit(9, "feet"),
  26526. default: true
  26527. },
  26528. ]
  26529. ))
  26530. characterMakers.push(() => makeCharacter(
  26531. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26532. {
  26533. front: {
  26534. height: math.unit(12, "feet"),
  26535. weight: math.unit(35000, "lb"),
  26536. name: "Front",
  26537. image: {
  26538. source: "./media/characters/p0tat0/front.svg",
  26539. extra: 1065 / 921,
  26540. bottom: 55.7 / 1121.25
  26541. }
  26542. },
  26543. },
  26544. [
  26545. {
  26546. name: "Normal",
  26547. height: math.unit(12, "feet"),
  26548. default: true
  26549. },
  26550. ]
  26551. ))
  26552. characterMakers.push(() => makeCharacter(
  26553. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26554. {
  26555. side: {
  26556. height: math.unit(6.5, "feet"),
  26557. weight: math.unit(800, "lb"),
  26558. name: "Side",
  26559. image: {
  26560. source: "./media/characters/dusk/side.svg",
  26561. extra: 615 / 373,
  26562. bottom: 53 / 664
  26563. }
  26564. },
  26565. sitting: {
  26566. height: math.unit(7, "feet"),
  26567. weight: math.unit(800, "lb"),
  26568. name: "Sitting",
  26569. image: {
  26570. source: "./media/characters/dusk/sitting.svg",
  26571. extra: 753 / 425,
  26572. bottom: 33 / 774
  26573. }
  26574. },
  26575. head: {
  26576. height: math.unit(6.1, "feet"),
  26577. name: "Head",
  26578. image: {
  26579. source: "./media/characters/dusk/head.svg"
  26580. }
  26581. },
  26582. },
  26583. [
  26584. {
  26585. name: "Normal",
  26586. height: math.unit(7, "feet"),
  26587. default: true
  26588. },
  26589. ]
  26590. ))
  26591. characterMakers.push(() => makeCharacter(
  26592. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26593. {
  26594. front: {
  26595. height: math.unit(15, "feet"),
  26596. weight: math.unit(7000, "lb"),
  26597. name: "Front",
  26598. image: {
  26599. source: "./media/characters/jay-direwolf/front.svg",
  26600. extra: 1810 / 1732,
  26601. bottom: 66 / 1892
  26602. }
  26603. },
  26604. },
  26605. [
  26606. {
  26607. name: "Normal",
  26608. height: math.unit(15, "feet"),
  26609. default: true
  26610. },
  26611. ]
  26612. ))
  26613. characterMakers.push(() => makeCharacter(
  26614. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26615. {
  26616. front: {
  26617. height: math.unit(4 + 9 / 12, "feet"),
  26618. weight: math.unit(130, "lb"),
  26619. name: "Front",
  26620. image: {
  26621. source: "./media/characters/anchovie/front.svg",
  26622. extra: 382 / 350,
  26623. bottom: 25 / 409
  26624. }
  26625. },
  26626. back: {
  26627. height: math.unit(4 + 9 / 12, "feet"),
  26628. weight: math.unit(130, "lb"),
  26629. name: "Back",
  26630. image: {
  26631. source: "./media/characters/anchovie/back.svg",
  26632. extra: 385 / 352,
  26633. bottom: 16.6 / 402
  26634. }
  26635. },
  26636. frontDressed: {
  26637. height: math.unit(4 + 9 / 12, "feet"),
  26638. weight: math.unit(130, "lb"),
  26639. name: "Front (Dressed)",
  26640. image: {
  26641. source: "./media/characters/anchovie/front-dressed.svg",
  26642. extra: 382 / 350,
  26643. bottom: 25 / 409
  26644. }
  26645. },
  26646. backDressed: {
  26647. height: math.unit(4 + 9 / 12, "feet"),
  26648. weight: math.unit(130, "lb"),
  26649. name: "Back (Dressed)",
  26650. image: {
  26651. source: "./media/characters/anchovie/back-dressed.svg",
  26652. extra: 385 / 352,
  26653. bottom: 16.6 / 402
  26654. }
  26655. },
  26656. },
  26657. [
  26658. {
  26659. name: "Micro",
  26660. height: math.unit(6.4, "inches")
  26661. },
  26662. {
  26663. name: "Normal",
  26664. height: math.unit(4 + 9 / 12, "feet"),
  26665. default: true
  26666. },
  26667. ]
  26668. ))
  26669. characterMakers.push(() => makeCharacter(
  26670. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26671. {
  26672. front: {
  26673. height: math.unit(2, "meters"),
  26674. weight: math.unit(180, "lb"),
  26675. name: "Front",
  26676. image: {
  26677. source: "./media/characters/acidrenamon/front.svg",
  26678. extra: 987 / 890,
  26679. bottom: 22.8 / 1009
  26680. }
  26681. },
  26682. back: {
  26683. height: math.unit(2, "meters"),
  26684. weight: math.unit(180, "lb"),
  26685. name: "Back",
  26686. image: {
  26687. source: "./media/characters/acidrenamon/back.svg",
  26688. extra: 983 / 891,
  26689. bottom: 8.4 / 992
  26690. }
  26691. },
  26692. head: {
  26693. height: math.unit(1.92, "feet"),
  26694. name: "Head",
  26695. image: {
  26696. source: "./media/characters/acidrenamon/head.svg"
  26697. }
  26698. },
  26699. rump: {
  26700. height: math.unit(1.72, "feet"),
  26701. name: "Rump",
  26702. image: {
  26703. source: "./media/characters/acidrenamon/rump.svg"
  26704. }
  26705. },
  26706. tail: {
  26707. height: math.unit(4.2, "feet"),
  26708. name: "Tail",
  26709. image: {
  26710. source: "./media/characters/acidrenamon/tail.svg"
  26711. }
  26712. },
  26713. },
  26714. [
  26715. {
  26716. name: "Normal",
  26717. height: math.unit(2, "meters"),
  26718. default: true
  26719. },
  26720. {
  26721. name: "Minimacro",
  26722. height: math.unit(7, "meters")
  26723. },
  26724. {
  26725. name: "Macro",
  26726. height: math.unit(200, "meters")
  26727. },
  26728. {
  26729. name: "Gigamacro",
  26730. height: math.unit(0.2, "earths")
  26731. },
  26732. ]
  26733. ))
  26734. characterMakers.push(() => makeCharacter(
  26735. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26736. {
  26737. front: {
  26738. height: math.unit(6, "feet"),
  26739. weight: math.unit(150, "lb"),
  26740. name: "Front",
  26741. image: {
  26742. source: "./media/characters/kenzie-lee/front.svg",
  26743. extra: 1525 / 1465,
  26744. bottom: 45 / 1570
  26745. }
  26746. },
  26747. side: {
  26748. height: math.unit(6, "feet"),
  26749. weight: math.unit(150, "lb"),
  26750. name: "Side",
  26751. image: {
  26752. source: "./media/characters/kenzie-lee/side.svg",
  26753. extra: 5505 / 5383,
  26754. bottom: 60 / 5573
  26755. }
  26756. },
  26757. },
  26758. [
  26759. {
  26760. name: "Normal",
  26761. height: math.unit(152, "feet"),
  26762. default: true
  26763. },
  26764. {
  26765. name: "Megamacro",
  26766. height: math.unit(7, "miles")
  26767. },
  26768. {
  26769. name: "Gigamacro",
  26770. height: math.unit(8000, "miles")
  26771. },
  26772. ]
  26773. ))
  26774. characterMakers.push(() => makeCharacter(
  26775. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26776. {
  26777. side: {
  26778. height: math.unit(6, "feet"),
  26779. weight: math.unit(150, "lb"),
  26780. name: "Side",
  26781. image: {
  26782. source: "./media/characters/withers/side.svg",
  26783. extra: 1830 / 1728,
  26784. bottom: 96 / 1927
  26785. }
  26786. },
  26787. front: {
  26788. height: math.unit(6, "feet"),
  26789. weight: math.unit(150, "lb"),
  26790. name: "Front",
  26791. image: {
  26792. source: "./media/characters/withers/front.svg",
  26793. extra: 1514 / 1438,
  26794. bottom: 118 / 1632
  26795. }
  26796. },
  26797. },
  26798. [
  26799. {
  26800. name: "Macro",
  26801. height: math.unit(168, "feet"),
  26802. default: true
  26803. },
  26804. {
  26805. name: "Megamacro",
  26806. height: math.unit(15, "miles")
  26807. }
  26808. ]
  26809. ))
  26810. characterMakers.push(() => makeCharacter(
  26811. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26812. {
  26813. front: {
  26814. height: math.unit(6 + 7 / 12, "feet"),
  26815. weight: math.unit(250, "lb"),
  26816. name: "Front",
  26817. image: {
  26818. source: "./media/characters/nemoskii/front.svg",
  26819. extra: 2270 / 1734,
  26820. bottom: 86 / 2354
  26821. }
  26822. },
  26823. back: {
  26824. height: math.unit(6 + 7 / 12, "feet"),
  26825. weight: math.unit(250, "lb"),
  26826. name: "Back",
  26827. image: {
  26828. source: "./media/characters/nemoskii/back.svg",
  26829. extra: 1845 / 1788,
  26830. bottom: 10.5 / 1852
  26831. }
  26832. },
  26833. head: {
  26834. height: math.unit(1.31, "feet"),
  26835. name: "Head",
  26836. image: {
  26837. source: "./media/characters/nemoskii/head.svg"
  26838. }
  26839. },
  26840. },
  26841. [
  26842. {
  26843. name: "Normal",
  26844. height: math.unit(6 + 7 / 12, "feet"),
  26845. default: true
  26846. },
  26847. ]
  26848. ))
  26849. characterMakers.push(() => makeCharacter(
  26850. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26851. {
  26852. front: {
  26853. height: math.unit(1, "mile"),
  26854. weight: math.unit(265261.9, "lb"),
  26855. name: "Front",
  26856. image: {
  26857. source: "./media/characters/shui/front.svg",
  26858. extra: 1633 / 1564,
  26859. bottom: 91.5 / 1726
  26860. }
  26861. },
  26862. },
  26863. [
  26864. {
  26865. name: "Macro",
  26866. height: math.unit(1, "mile"),
  26867. default: true
  26868. },
  26869. ]
  26870. ))
  26871. characterMakers.push(() => makeCharacter(
  26872. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26873. {
  26874. front: {
  26875. height: math.unit(12 + 6 / 12, "feet"),
  26876. weight: math.unit(1342, "lb"),
  26877. name: "Front",
  26878. image: {
  26879. source: "./media/characters/arokh-takakura/front.svg",
  26880. extra: 1089 / 1043,
  26881. bottom: 77.4 / 1176.7
  26882. }
  26883. },
  26884. back: {
  26885. height: math.unit(12 + 6 / 12, "feet"),
  26886. weight: math.unit(1342, "lb"),
  26887. name: "Back",
  26888. image: {
  26889. source: "./media/characters/arokh-takakura/back.svg",
  26890. extra: 1046 / 1019,
  26891. bottom: 102 / 1150
  26892. }
  26893. },
  26894. },
  26895. [
  26896. {
  26897. name: "Big",
  26898. height: math.unit(12 + 6 / 12, "feet"),
  26899. default: true
  26900. },
  26901. ]
  26902. ))
  26903. characterMakers.push(() => makeCharacter(
  26904. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26905. {
  26906. front: {
  26907. height: math.unit(5 + 6 / 12, "feet"),
  26908. weight: math.unit(150, "lb"),
  26909. name: "Front",
  26910. image: {
  26911. source: "./media/characters/theo/front.svg",
  26912. extra: 1184 / 1131,
  26913. bottom: 7.4 / 1191
  26914. }
  26915. },
  26916. },
  26917. [
  26918. {
  26919. name: "Micro",
  26920. height: math.unit(5, "inches")
  26921. },
  26922. {
  26923. name: "Normal",
  26924. height: math.unit(5 + 6 / 12, "feet"),
  26925. default: true
  26926. },
  26927. ]
  26928. ))
  26929. characterMakers.push(() => makeCharacter(
  26930. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26931. {
  26932. front: {
  26933. height: math.unit(5 + 9 / 12, "feet"),
  26934. weight: math.unit(130, "lb"),
  26935. name: "Front",
  26936. image: {
  26937. source: "./media/characters/cecelia-swift/front.svg",
  26938. extra: 502 / 484,
  26939. bottom: 23 / 523
  26940. }
  26941. },
  26942. back: {
  26943. height: math.unit(5 + 9 / 12, "feet"),
  26944. weight: math.unit(130, "lb"),
  26945. name: "Back",
  26946. image: {
  26947. source: "./media/characters/cecelia-swift/back.svg",
  26948. extra: 499 / 485,
  26949. bottom: 12 / 511
  26950. }
  26951. },
  26952. head: {
  26953. height: math.unit(0.90, "feet"),
  26954. name: "Head",
  26955. image: {
  26956. source: "./media/characters/cecelia-swift/head.svg"
  26957. }
  26958. },
  26959. rump: {
  26960. height: math.unit(1.75, "feet"),
  26961. name: "Rump",
  26962. image: {
  26963. source: "./media/characters/cecelia-swift/rump.svg"
  26964. }
  26965. },
  26966. },
  26967. [
  26968. {
  26969. name: "Normal",
  26970. height: math.unit(5 + 9 / 12, "feet"),
  26971. default: true
  26972. },
  26973. {
  26974. name: "Big",
  26975. height: math.unit(50, "feet")
  26976. },
  26977. {
  26978. name: "Macro",
  26979. height: math.unit(100, "feet")
  26980. },
  26981. {
  26982. name: "Macro+",
  26983. height: math.unit(500, "feet")
  26984. },
  26985. {
  26986. name: "Macro++",
  26987. height: math.unit(1000, "feet")
  26988. },
  26989. ]
  26990. ))
  26991. characterMakers.push(() => makeCharacter(
  26992. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26993. {
  26994. front: {
  26995. height: math.unit(6, "feet"),
  26996. weight: math.unit(150, "lb"),
  26997. name: "Front",
  26998. image: {
  26999. source: "./media/characters/kaunan/front.svg",
  27000. extra: 2890 / 2523,
  27001. bottom: 49 / 2939
  27002. }
  27003. },
  27004. },
  27005. [
  27006. {
  27007. name: "Macro",
  27008. height: math.unit(150, "feet"),
  27009. default: true
  27010. },
  27011. ]
  27012. ))
  27013. characterMakers.push(() => makeCharacter(
  27014. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27015. {
  27016. front: {
  27017. height: math.unit(175, "cm"),
  27018. weight: math.unit(60, "kg"),
  27019. name: "Front",
  27020. image: {
  27021. source: "./media/characters/fei/front.svg",
  27022. extra: 2581 / 2400,
  27023. bottom: 82.2 / 2663
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Mortal",
  27030. height: math.unit(175, "cm")
  27031. },
  27032. {
  27033. name: "Normal",
  27034. height: math.unit(3500, "m"),
  27035. default: true
  27036. },
  27037. {
  27038. name: "Stroll",
  27039. height: math.unit(17.5, "km")
  27040. },
  27041. {
  27042. name: "Showoff",
  27043. height: math.unit(175, "km")
  27044. },
  27045. ]
  27046. ))
  27047. characterMakers.push(() => makeCharacter(
  27048. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27049. {
  27050. front: {
  27051. height: math.unit(7, "feet"),
  27052. weight: math.unit(1000, "kg"),
  27053. name: "Front",
  27054. image: {
  27055. source: "./media/characters/edrax/front.svg",
  27056. extra: 2838 / 2550,
  27057. bottom: 130 / 2968
  27058. }
  27059. },
  27060. },
  27061. [
  27062. {
  27063. name: "Small",
  27064. height: math.unit(7, "feet")
  27065. },
  27066. {
  27067. name: "Normal",
  27068. height: math.unit(1500, "meters")
  27069. },
  27070. {
  27071. name: "Mega",
  27072. height: math.unit(12000000, "km"),
  27073. default: true
  27074. },
  27075. {
  27076. name: "Megamacro",
  27077. height: math.unit(10600000, "lightyears")
  27078. },
  27079. {
  27080. name: "Hypermacro",
  27081. height: math.unit(256, "yottameters")
  27082. },
  27083. ]
  27084. ))
  27085. characterMakers.push(() => makeCharacter(
  27086. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27087. {
  27088. front: {
  27089. height: math.unit(10, "feet"),
  27090. weight: math.unit(750, "lb"),
  27091. name: "Front",
  27092. image: {
  27093. source: "./media/characters/clove/front.svg",
  27094. extra: 2031 / 1860,
  27095. bottom: 47.8 / 2080
  27096. }
  27097. },
  27098. back: {
  27099. height: math.unit(10, "feet"),
  27100. weight: math.unit(750, "lb"),
  27101. name: "Back",
  27102. image: {
  27103. source: "./media/characters/clove/back.svg",
  27104. extra: 2025 / 1859,
  27105. bottom: 46 / 2071
  27106. }
  27107. },
  27108. },
  27109. [
  27110. {
  27111. name: "Normal",
  27112. height: math.unit(10, "feet"),
  27113. default: true
  27114. },
  27115. ]
  27116. ))
  27117. characterMakers.push(() => makeCharacter(
  27118. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27119. {
  27120. front: {
  27121. height: math.unit(4, "feet"),
  27122. weight: math.unit(50, "lb"),
  27123. name: "Front",
  27124. image: {
  27125. source: "./media/characters/alex-rabbit/front.svg",
  27126. extra: 507 / 458,
  27127. bottom: 18.5 / 527
  27128. }
  27129. },
  27130. back: {
  27131. height: math.unit(4, "feet"),
  27132. weight: math.unit(50, "lb"),
  27133. name: "Back",
  27134. image: {
  27135. source: "./media/characters/alex-rabbit/back.svg",
  27136. extra: 502 / 460,
  27137. bottom: 18.9 / 521
  27138. }
  27139. },
  27140. },
  27141. [
  27142. {
  27143. name: "Normal",
  27144. height: math.unit(4, "feet"),
  27145. default: true
  27146. },
  27147. ]
  27148. ))
  27149. characterMakers.push(() => makeCharacter(
  27150. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27151. {
  27152. front: {
  27153. height: math.unit(1 + 3 / 12, "feet"),
  27154. weight: math.unit(80, "lb"),
  27155. name: "Front",
  27156. image: {
  27157. source: "./media/characters/zander-rose/front.svg",
  27158. extra: 916 / 797,
  27159. bottom: 17 / 933
  27160. }
  27161. },
  27162. back: {
  27163. height: math.unit(1 + 3 / 12, "feet"),
  27164. weight: math.unit(80, "lb"),
  27165. name: "Back",
  27166. image: {
  27167. source: "./media/characters/zander-rose/back.svg",
  27168. extra: 903 / 779,
  27169. bottom: 31 / 934
  27170. }
  27171. },
  27172. },
  27173. [
  27174. {
  27175. name: "Normal",
  27176. height: math.unit(1 + 3 / 12, "feet"),
  27177. default: true
  27178. },
  27179. ]
  27180. ))
  27181. characterMakers.push(() => makeCharacter(
  27182. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27183. {
  27184. anthro: {
  27185. height: math.unit(6, "feet"),
  27186. weight: math.unit(150, "lb"),
  27187. name: "Anthro",
  27188. image: {
  27189. source: "./media/characters/razz/anthro.svg",
  27190. extra: 1437 / 1343,
  27191. bottom: 48 / 1485
  27192. }
  27193. },
  27194. feral: {
  27195. height: math.unit(6, "feet"),
  27196. weight: math.unit(150, "lb"),
  27197. name: "Feral",
  27198. image: {
  27199. source: "./media/characters/razz/feral.svg",
  27200. extra: 2569 / 1385,
  27201. bottom: 95 / 2664
  27202. }
  27203. },
  27204. },
  27205. [
  27206. {
  27207. name: "Normal",
  27208. height: math.unit(6, "feet"),
  27209. default: true
  27210. },
  27211. ]
  27212. ))
  27213. characterMakers.push(() => makeCharacter(
  27214. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27215. {
  27216. front: {
  27217. height: math.unit(9 + 4 / 12, "feet"),
  27218. weight: math.unit(500, "lb"),
  27219. name: "Front",
  27220. image: {
  27221. source: "./media/characters/morrigan/front.svg",
  27222. extra: 2707 / 2579,
  27223. bottom: 156 / 2863
  27224. }
  27225. },
  27226. },
  27227. [
  27228. {
  27229. name: "Normal",
  27230. height: math.unit(9 + 4 / 12, "feet"),
  27231. default: true
  27232. },
  27233. ]
  27234. ))
  27235. characterMakers.push(() => makeCharacter(
  27236. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27237. {
  27238. front: {
  27239. height: math.unit(5, "stories"),
  27240. weight: math.unit(4000, "lb"),
  27241. name: "Front",
  27242. image: {
  27243. source: "./media/characters/jenene/front.svg",
  27244. extra: 1780 / 1710,
  27245. bottom: 57 / 1837
  27246. }
  27247. },
  27248. },
  27249. [
  27250. {
  27251. name: "Normal",
  27252. height: math.unit(5, "stories"),
  27253. default: true
  27254. },
  27255. ]
  27256. ))
  27257. characterMakers.push(() => makeCharacter(
  27258. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27259. {
  27260. front: {
  27261. height: math.unit(6, "feet"),
  27262. weight: math.unit(150, "lb"),
  27263. name: "Front",
  27264. image: {
  27265. source: "./media/characters/vix-archaser/front.svg",
  27266. extra: 2767 / 2562,
  27267. bottom: 36 / 2803
  27268. }
  27269. },
  27270. },
  27271. [
  27272. {
  27273. name: "Micro",
  27274. height: math.unit(1, "foot")
  27275. },
  27276. {
  27277. name: "Normal",
  27278. height: math.unit(6 + 5 / 12, "feet")
  27279. },
  27280. {
  27281. name: "Minimacro",
  27282. height: math.unit(500, "feet")
  27283. },
  27284. {
  27285. name: "Macro",
  27286. height: math.unit(4, "miles")
  27287. },
  27288. {
  27289. name: "Megamacro",
  27290. height: math.unit(250, "miles"),
  27291. default: true
  27292. },
  27293. {
  27294. name: "Gigamacro",
  27295. height: math.unit(1, "universe")
  27296. },
  27297. {
  27298. name: "Endgame",
  27299. height: math.unit(100, "multiverses")
  27300. }
  27301. ]
  27302. ))
  27303. characterMakers.push(() => makeCharacter(
  27304. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27305. {
  27306. taurSfw: {
  27307. height: math.unit(10, "meters"),
  27308. weight: math.unit(17500, "kg"),
  27309. name: "Taur",
  27310. image: {
  27311. source: "./media/characters/faey/taur-sfw.svg",
  27312. extra: 1200 / 968,
  27313. bottom: 41 / 1241
  27314. }
  27315. },
  27316. chestmaw: {
  27317. height: math.unit(2.01, "meters"),
  27318. name: "Chestmaw",
  27319. image: {
  27320. source: "./media/characters/faey/chestmaw.svg"
  27321. }
  27322. },
  27323. foot: {
  27324. height: math.unit(2.43, "meters"),
  27325. name: "Foot",
  27326. image: {
  27327. source: "./media/characters/faey/foot.svg"
  27328. }
  27329. },
  27330. jaws: {
  27331. height: math.unit(1.66, "meters"),
  27332. name: "Jaws",
  27333. image: {
  27334. source: "./media/characters/faey/jaws.svg"
  27335. }
  27336. },
  27337. tongues: {
  27338. height: math.unit(2.01, "meters"),
  27339. name: "Tongues",
  27340. image: {
  27341. source: "./media/characters/faey/tongues.svg"
  27342. }
  27343. },
  27344. },
  27345. [
  27346. {
  27347. name: "Small",
  27348. height: math.unit(10, "meters"),
  27349. default: true
  27350. },
  27351. {
  27352. name: "Big",
  27353. height: math.unit(500000, "km")
  27354. },
  27355. ]
  27356. ))
  27357. characterMakers.push(() => makeCharacter(
  27358. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27359. {
  27360. front: {
  27361. height: math.unit(7, "feet"),
  27362. weight: math.unit(275, "lb"),
  27363. name: "Front",
  27364. image: {
  27365. source: "./media/characters/roku/front.svg",
  27366. extra: 903 / 878,
  27367. bottom: 37 / 940
  27368. }
  27369. },
  27370. },
  27371. [
  27372. {
  27373. name: "Normal",
  27374. height: math.unit(7, "feet"),
  27375. default: true
  27376. },
  27377. {
  27378. name: "Macro",
  27379. height: math.unit(500, "feet")
  27380. },
  27381. {
  27382. name: "Megamacro",
  27383. height: math.unit(200, "miles")
  27384. },
  27385. ]
  27386. ))
  27387. characterMakers.push(() => makeCharacter(
  27388. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27389. {
  27390. front: {
  27391. height: math.unit(6 + 2 / 12, "feet"),
  27392. weight: math.unit(150, "lb"),
  27393. name: "Front",
  27394. image: {
  27395. source: "./media/characters/lira/front.svg",
  27396. extra: 1727 / 1605,
  27397. bottom: 26 / 1753
  27398. }
  27399. },
  27400. back: {
  27401. height: math.unit(6 + 2 / 12, "feet"),
  27402. weight: math.unit(150, "lb"),
  27403. name: "Back",
  27404. image: {
  27405. source: "./media/characters/lira/back.svg",
  27406. extra: 1713 / 159,
  27407. bottom: 20 / 1733
  27408. }
  27409. },
  27410. hand: {
  27411. height: math.unit(0.75, "feet"),
  27412. name: "Hand",
  27413. image: {
  27414. source: "./media/characters/lira/hand.svg"
  27415. }
  27416. },
  27417. maw: {
  27418. height: math.unit(0.65, "feet"),
  27419. name: "Maw",
  27420. image: {
  27421. source: "./media/characters/lira/maw.svg"
  27422. }
  27423. },
  27424. pawDigi: {
  27425. height: math.unit(1.6, "feet"),
  27426. name: "Paw Digi",
  27427. image: {
  27428. source: "./media/characters/lira/paw-digi.svg"
  27429. }
  27430. },
  27431. pawPlanti: {
  27432. height: math.unit(1.4, "feet"),
  27433. name: "Paw Planti",
  27434. image: {
  27435. source: "./media/characters/lira/paw-planti.svg"
  27436. }
  27437. },
  27438. },
  27439. [
  27440. {
  27441. name: "Normal",
  27442. height: math.unit(6 + 2 / 12, "feet"),
  27443. default: true
  27444. },
  27445. {
  27446. name: "Macro",
  27447. height: math.unit(100, "feet")
  27448. },
  27449. {
  27450. name: "Macro²",
  27451. height: math.unit(1600, "feet")
  27452. },
  27453. {
  27454. name: "Planetary",
  27455. height: math.unit(20, "earths")
  27456. },
  27457. ]
  27458. ))
  27459. characterMakers.push(() => makeCharacter(
  27460. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27461. {
  27462. front: {
  27463. height: math.unit(6, "feet"),
  27464. weight: math.unit(150, "lb"),
  27465. name: "Front",
  27466. image: {
  27467. source: "./media/characters/hadjet/front.svg",
  27468. extra: 1480 / 1346,
  27469. bottom: 26 / 1506
  27470. }
  27471. },
  27472. frontNsfw: {
  27473. height: math.unit(6, "feet"),
  27474. weight: math.unit(150, "lb"),
  27475. name: "Front (NSFW)",
  27476. image: {
  27477. source: "./media/characters/hadjet/front-nsfw.svg",
  27478. extra: 1440 / 1358,
  27479. bottom: 52 / 1492
  27480. }
  27481. },
  27482. },
  27483. [
  27484. {
  27485. name: "Macro",
  27486. height: math.unit(10, "stories"),
  27487. default: true
  27488. },
  27489. {
  27490. name: "Megamacro",
  27491. height: math.unit(1.5, "miles")
  27492. },
  27493. {
  27494. name: "Megamacro+",
  27495. height: math.unit(5, "miles")
  27496. },
  27497. ]
  27498. ))
  27499. characterMakers.push(() => makeCharacter(
  27500. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27501. {
  27502. side: {
  27503. height: math.unit(106, "feet"),
  27504. weight: math.unit(500, "tonnes"),
  27505. name: "Side",
  27506. image: {
  27507. source: "./media/characters/kodran/side.svg",
  27508. extra: 553 / 480,
  27509. bottom: 33 / 586
  27510. }
  27511. },
  27512. front: {
  27513. height: math.unit(132, "feet"),
  27514. weight: math.unit(500, "tonnes"),
  27515. name: "Front",
  27516. image: {
  27517. source: "./media/characters/kodran/front.svg",
  27518. extra: 667 / 643,
  27519. bottom: 42 / 709
  27520. }
  27521. },
  27522. flying: {
  27523. height: math.unit(350, "feet"),
  27524. weight: math.unit(500, "tonnes"),
  27525. name: "Flying",
  27526. image: {
  27527. source: "./media/characters/kodran/flying.svg"
  27528. }
  27529. },
  27530. foot: {
  27531. height: math.unit(33, "feet"),
  27532. name: "Foot",
  27533. image: {
  27534. source: "./media/characters/kodran/foot.svg"
  27535. }
  27536. },
  27537. footFront: {
  27538. height: math.unit(19, "feet"),
  27539. name: "Foot (Front)",
  27540. image: {
  27541. source: "./media/characters/kodran/foot-front.svg",
  27542. extra: 261 / 261,
  27543. bottom: 91 / 352
  27544. }
  27545. },
  27546. headFront: {
  27547. height: math.unit(53, "feet"),
  27548. name: "Head (Front)",
  27549. image: {
  27550. source: "./media/characters/kodran/head-front.svg"
  27551. }
  27552. },
  27553. headSide: {
  27554. height: math.unit(65, "feet"),
  27555. name: "Head (Side)",
  27556. image: {
  27557. source: "./media/characters/kodran/head-side.svg"
  27558. }
  27559. },
  27560. throat: {
  27561. height: math.unit(79, "feet"),
  27562. name: "Throat",
  27563. image: {
  27564. source: "./media/characters/kodran/throat.svg"
  27565. }
  27566. },
  27567. },
  27568. [
  27569. {
  27570. name: "Large",
  27571. height: math.unit(106, "feet"),
  27572. default: true
  27573. },
  27574. ]
  27575. ))
  27576. characterMakers.push(() => makeCharacter(
  27577. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27578. {
  27579. side: {
  27580. height: math.unit(11, "feet"),
  27581. weight: math.unit(150, "lb"),
  27582. name: "Side",
  27583. image: {
  27584. source: "./media/characters/pyxaron/side.svg",
  27585. extra: 305 / 195,
  27586. bottom: 17 / 322
  27587. }
  27588. },
  27589. },
  27590. [
  27591. {
  27592. name: "Normal",
  27593. height: math.unit(11, "feet"),
  27594. default: true
  27595. },
  27596. ]
  27597. ))
  27598. characterMakers.push(() => makeCharacter(
  27599. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27600. {
  27601. front: {
  27602. height: math.unit(6, "feet"),
  27603. weight: math.unit(150, "lb"),
  27604. name: "Front",
  27605. image: {
  27606. source: "./media/characters/meep/front.svg",
  27607. extra: 88 / 80,
  27608. bottom: 6 / 94
  27609. }
  27610. },
  27611. },
  27612. [
  27613. {
  27614. name: "Fun Sized",
  27615. height: math.unit(2, "inches"),
  27616. default: true
  27617. },
  27618. {
  27619. name: "Friend Sized",
  27620. height: math.unit(8, "inches")
  27621. },
  27622. ]
  27623. ))
  27624. characterMakers.push(() => makeCharacter(
  27625. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27626. {
  27627. front: {
  27628. height: math.unit(15, "feet"),
  27629. weight: math.unit(2500, "lb"),
  27630. name: "Front",
  27631. image: {
  27632. source: "./media/characters/holly-rabbit/front.svg",
  27633. extra: 1433 / 1233,
  27634. bottom: 125 / 1558
  27635. }
  27636. },
  27637. dick: {
  27638. height: math.unit(4.6, "feet"),
  27639. name: "Dick",
  27640. image: {
  27641. source: "./media/characters/holly-rabbit/dick.svg"
  27642. }
  27643. },
  27644. },
  27645. [
  27646. {
  27647. name: "Normal",
  27648. height: math.unit(15, "feet"),
  27649. default: true
  27650. },
  27651. {
  27652. name: "Macro",
  27653. height: math.unit(250, "feet")
  27654. },
  27655. {
  27656. name: "Macro+",
  27657. height: math.unit(2500, "feet")
  27658. },
  27659. ]
  27660. ))
  27661. characterMakers.push(() => makeCharacter(
  27662. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27663. {
  27664. front: {
  27665. height: math.unit(3.02, "meters"),
  27666. weight: math.unit(500, "kg"),
  27667. name: "Front",
  27668. image: {
  27669. source: "./media/characters/drena/front.svg",
  27670. extra: 282 / 243,
  27671. bottom: 8 / 290
  27672. }
  27673. },
  27674. side: {
  27675. height: math.unit(3.02, "meters"),
  27676. weight: math.unit(500, "kg"),
  27677. name: "Side",
  27678. image: {
  27679. source: "./media/characters/drena/side.svg",
  27680. extra: 280 / 245,
  27681. bottom: 10 / 290
  27682. }
  27683. },
  27684. back: {
  27685. height: math.unit(3.02, "meters"),
  27686. weight: math.unit(500, "kg"),
  27687. name: "Back",
  27688. image: {
  27689. source: "./media/characters/drena/back.svg",
  27690. extra: 278 / 243,
  27691. bottom: 2 / 280
  27692. }
  27693. },
  27694. foot: {
  27695. height: math.unit(0.75, "meters"),
  27696. name: "Foot",
  27697. image: {
  27698. source: "./media/characters/drena/foot.svg"
  27699. }
  27700. },
  27701. maw: {
  27702. height: math.unit(0.82, "meters"),
  27703. name: "Maw",
  27704. image: {
  27705. source: "./media/characters/drena/maw.svg"
  27706. }
  27707. },
  27708. rump: {
  27709. height: math.unit(0.93, "meters"),
  27710. name: "Rump",
  27711. image: {
  27712. source: "./media/characters/drena/rump.svg"
  27713. }
  27714. },
  27715. },
  27716. [
  27717. {
  27718. name: "Normal",
  27719. height: math.unit(3.02, "meters"),
  27720. default: true
  27721. },
  27722. ]
  27723. ))
  27724. characterMakers.push(() => makeCharacter(
  27725. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27726. {
  27727. front: {
  27728. height: math.unit(6 + 4 / 12, "feet"),
  27729. weight: math.unit(250, "lb"),
  27730. name: "Front",
  27731. image: {
  27732. source: "./media/characters/remmyzilla/front.svg",
  27733. extra: 4033 / 3588,
  27734. bottom: 123 / 4156
  27735. }
  27736. },
  27737. back: {
  27738. height: math.unit(6 + 4 / 12, "feet"),
  27739. weight: math.unit(250, "lb"),
  27740. name: "Back",
  27741. image: {
  27742. source: "./media/characters/remmyzilla/back.svg",
  27743. extra: 2687 / 2555,
  27744. bottom: 48 / 2735
  27745. }
  27746. },
  27747. frontFancy: {
  27748. height: math.unit(6 + 4 / 12, "feet"),
  27749. weight: math.unit(250, "lb"),
  27750. name: "Front (Fancy)",
  27751. image: {
  27752. source: "./media/characters/remmyzilla/front-fancy.svg",
  27753. extra: 4119 / 3419,
  27754. bottom: 237 / 4356
  27755. }
  27756. },
  27757. paw: {
  27758. height: math.unit(1.73, "feet"),
  27759. name: "Paw",
  27760. image: {
  27761. source: "./media/characters/remmyzilla/paw.svg"
  27762. }
  27763. },
  27764. maw: {
  27765. height: math.unit(1.73, "feet"),
  27766. name: "Maw",
  27767. image: {
  27768. source: "./media/characters/remmyzilla/maw.svg"
  27769. }
  27770. },
  27771. },
  27772. [
  27773. {
  27774. name: "Normal",
  27775. height: math.unit(6 + 4 / 12, "feet")
  27776. },
  27777. {
  27778. name: "Minimacro",
  27779. height: math.unit(12 + 8 / 12, "feet")
  27780. },
  27781. {
  27782. name: "Normal",
  27783. height: math.unit(640, "feet"),
  27784. default: true
  27785. },
  27786. {
  27787. name: "Megamacro",
  27788. height: math.unit(6400, "feet")
  27789. },
  27790. {
  27791. name: "Gigamacro",
  27792. height: math.unit(64000, "miles")
  27793. },
  27794. ]
  27795. ))
  27796. characterMakers.push(() => makeCharacter(
  27797. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27798. {
  27799. front: {
  27800. height: math.unit(2.5, "meters"),
  27801. weight: math.unit(300, "lb"),
  27802. name: "Front",
  27803. image: {
  27804. source: "./media/characters/lawrence/front.svg",
  27805. extra: 357 / 335,
  27806. bottom: 30 / 387
  27807. }
  27808. },
  27809. back: {
  27810. height: math.unit(2.5, "meters"),
  27811. weight: math.unit(300, "lb"),
  27812. name: "Back",
  27813. image: {
  27814. source: "./media/characters/lawrence/back.svg",
  27815. extra: 357 / 338,
  27816. bottom: 16 / 373
  27817. }
  27818. },
  27819. head: {
  27820. height: math.unit(0.9, "meter"),
  27821. name: "Head",
  27822. image: {
  27823. source: "./media/characters/lawrence/head.svg"
  27824. }
  27825. },
  27826. maw: {
  27827. height: math.unit(0.7, "meter"),
  27828. name: "Maw",
  27829. image: {
  27830. source: "./media/characters/lawrence/maw.svg"
  27831. }
  27832. },
  27833. footBottom: {
  27834. height: math.unit(0.5, "meter"),
  27835. name: "Foot (Bottom)",
  27836. image: {
  27837. source: "./media/characters/lawrence/foot-bottom.svg"
  27838. }
  27839. },
  27840. footTop: {
  27841. height: math.unit(0.5, "meter"),
  27842. name: "Foot (Top)",
  27843. image: {
  27844. source: "./media/characters/lawrence/foot-top.svg"
  27845. }
  27846. },
  27847. },
  27848. [
  27849. {
  27850. name: "Normal",
  27851. height: math.unit(2.5, "meters"),
  27852. default: true
  27853. },
  27854. {
  27855. name: "Macro",
  27856. height: math.unit(95, "meters")
  27857. },
  27858. {
  27859. name: "Megamacro",
  27860. height: math.unit(150, "km")
  27861. },
  27862. ]
  27863. ))
  27864. characterMakers.push(() => makeCharacter(
  27865. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27866. {
  27867. front: {
  27868. height: math.unit(4.2, "meters"),
  27869. name: "Front",
  27870. image: {
  27871. source: "./media/characters/sydney/front.svg",
  27872. extra: 1323 / 1277,
  27873. bottom: 111 / 1434
  27874. }
  27875. },
  27876. },
  27877. [
  27878. {
  27879. name: "Normal",
  27880. height: math.unit(4.2, "meters"),
  27881. default: true
  27882. },
  27883. ]
  27884. ))
  27885. characterMakers.push(() => makeCharacter(
  27886. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27887. {
  27888. back: {
  27889. height: math.unit(201, "feet"),
  27890. name: "Back",
  27891. image: {
  27892. source: "./media/characters/jessica/back.svg",
  27893. extra: 273 / 259,
  27894. bottom: 7 / 280
  27895. }
  27896. },
  27897. },
  27898. [
  27899. {
  27900. name: "Normal",
  27901. height: math.unit(201, "feet"),
  27902. default: true
  27903. },
  27904. {
  27905. name: "Megamacro",
  27906. height: math.unit(8, "miles")
  27907. },
  27908. ]
  27909. ))
  27910. characterMakers.push(() => makeCharacter(
  27911. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27912. {
  27913. side: {
  27914. height: math.unit(320, "cm"),
  27915. name: "Side",
  27916. image: {
  27917. source: "./media/characters/victoria/side.svg",
  27918. extra: 778 / 346,
  27919. bottom: 56 / 834
  27920. }
  27921. },
  27922. maw: {
  27923. height: math.unit(5.9, "feet"),
  27924. name: "Maw",
  27925. image: {
  27926. source: "./media/characters/victoria/maw.svg"
  27927. }
  27928. },
  27929. },
  27930. [
  27931. {
  27932. name: "Normal",
  27933. height: math.unit(320, "cm"),
  27934. default: true
  27935. },
  27936. ]
  27937. ))
  27938. characterMakers.push(() => makeCharacter(
  27939. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27940. {
  27941. front: {
  27942. height: math.unit(5 + 6 / 12, "feet"),
  27943. name: "Front",
  27944. image: {
  27945. source: "./media/characters/cat/front.svg",
  27946. extra: 1374 / 1257,
  27947. bottom: 59 / 1433
  27948. }
  27949. },
  27950. back: {
  27951. height: math.unit(5 + 6 / 12, "feet"),
  27952. name: "Back",
  27953. image: {
  27954. source: "./media/characters/cat/back.svg",
  27955. extra: 1337 / 1226,
  27956. bottom: 34 / 1371
  27957. }
  27958. },
  27959. taur: {
  27960. height: math.unit(7, "feet"),
  27961. name: "Taur",
  27962. image: {
  27963. source: "./media/characters/cat/taur.svg",
  27964. extra: 1345 / 1231,
  27965. bottom: 66 / 1411
  27966. }
  27967. },
  27968. lucario: {
  27969. height: math.unit(4, "feet"),
  27970. name: "Lucario",
  27971. image: {
  27972. source: "./media/characters/cat/lucario.svg",
  27973. extra: 1470 / 1318,
  27974. bottom: 65 / 1535
  27975. }
  27976. },
  27977. megaLucario: {
  27978. height: math.unit(4, "feet"),
  27979. name: "Mega Lucario",
  27980. image: {
  27981. source: "./media/characters/cat/mega-lucario.svg",
  27982. extra: 1515 / 1319,
  27983. bottom: 63 / 1578
  27984. }
  27985. },
  27986. nickit: {
  27987. height: math.unit(2, "feet"),
  27988. name: "Nickit",
  27989. image: {
  27990. source: "./media/characters/cat/nickit.svg",
  27991. extra: 1980 / 1585,
  27992. bottom: 102 / 2082
  27993. }
  27994. },
  27995. lopunnyFront: {
  27996. height: math.unit(5, "feet"),
  27997. name: "Lopunny (Front)",
  27998. image: {
  27999. source: "./media/characters/cat/lopunny-front.svg",
  28000. extra: 1782 / 1469,
  28001. bottom: 38 / 1820
  28002. }
  28003. },
  28004. lopunnyBack: {
  28005. height: math.unit(5, "feet"),
  28006. name: "Lopunny (Back)",
  28007. image: {
  28008. source: "./media/characters/cat/lopunny-back.svg",
  28009. extra: 1660 / 1490,
  28010. bottom: 25 / 1685
  28011. }
  28012. },
  28013. },
  28014. [
  28015. {
  28016. name: "Really small",
  28017. height: math.unit(1, "nm")
  28018. },
  28019. {
  28020. name: "Micro",
  28021. height: math.unit(5, "inches")
  28022. },
  28023. {
  28024. name: "Normal",
  28025. height: math.unit(5 + 6 / 12, "feet"),
  28026. default: true
  28027. },
  28028. {
  28029. name: "Macro",
  28030. height: math.unit(50, "feet")
  28031. },
  28032. {
  28033. name: "Macro+",
  28034. height: math.unit(150, "feet")
  28035. },
  28036. {
  28037. name: "Megamacro",
  28038. height: math.unit(100, "miles")
  28039. },
  28040. ]
  28041. ))
  28042. characterMakers.push(() => makeCharacter(
  28043. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28044. {
  28045. front: {
  28046. height: math.unit(63.4, "meters"),
  28047. weight: math.unit(3.28349e+6, "kilograms"),
  28048. name: "Front",
  28049. image: {
  28050. source: "./media/characters/kirina-violet/front.svg",
  28051. extra: 2812 / 2725,
  28052. bottom: 0 / 2812
  28053. }
  28054. },
  28055. back: {
  28056. height: math.unit(63.4, "meters"),
  28057. weight: math.unit(3.28349e+6, "kilograms"),
  28058. name: "Back",
  28059. image: {
  28060. source: "./media/characters/kirina-violet/back.svg",
  28061. extra: 2812 / 2725,
  28062. bottom: 0 / 2812
  28063. }
  28064. },
  28065. mouth: {
  28066. height: math.unit(4.35, "meters"),
  28067. name: "Mouth",
  28068. image: {
  28069. source: "./media/characters/kirina-violet/mouth.svg"
  28070. }
  28071. },
  28072. paw: {
  28073. height: math.unit(5.6, "meters"),
  28074. name: "Paw",
  28075. image: {
  28076. source: "./media/characters/kirina-violet/paw.svg"
  28077. }
  28078. },
  28079. tail: {
  28080. height: math.unit(18, "meters"),
  28081. name: "Tail",
  28082. image: {
  28083. source: "./media/characters/kirina-violet/tail.svg"
  28084. }
  28085. },
  28086. },
  28087. [
  28088. {
  28089. name: "Macro",
  28090. height: math.unit(63.4, "meters"),
  28091. default: true
  28092. },
  28093. ]
  28094. ))
  28095. characterMakers.push(() => makeCharacter(
  28096. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28097. {
  28098. front: {
  28099. height: math.unit(60, "feet"),
  28100. name: "Front",
  28101. image: {
  28102. source: "./media/characters/cat-gigachu/front.svg",
  28103. extra: 1024 / 780,
  28104. bottom: 23 / 1047
  28105. }
  28106. },
  28107. back: {
  28108. height: math.unit(60, "feet"),
  28109. name: "Back",
  28110. image: {
  28111. source: "./media/characters/cat-gigachu/back.svg",
  28112. extra: 1024 / 780,
  28113. bottom: 23 / 1047
  28114. }
  28115. },
  28116. },
  28117. [
  28118. {
  28119. name: "Dynamax",
  28120. height: math.unit(60, "feet"),
  28121. default: true
  28122. },
  28123. ]
  28124. ))
  28125. characterMakers.push(() => makeCharacter(
  28126. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28127. {
  28128. front: {
  28129. height: math.unit(6, "feet"),
  28130. weight: math.unit(150, "lb"),
  28131. name: "Front",
  28132. image: {
  28133. source: "./media/characters/sfaiyan/front.svg",
  28134. extra: 999 / 978,
  28135. bottom: 5 / 1004
  28136. }
  28137. },
  28138. },
  28139. [
  28140. {
  28141. name: "Normal",
  28142. height: math.unit(1.82, "meters")
  28143. },
  28144. {
  28145. name: "Giant",
  28146. height: math.unit(2.27, "km"),
  28147. default: true
  28148. },
  28149. ]
  28150. ))
  28151. characterMakers.push(() => makeCharacter(
  28152. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28153. {
  28154. front: {
  28155. height: math.unit(179, "cm"),
  28156. weight: math.unit(100, "kg"),
  28157. name: "Front",
  28158. image: {
  28159. source: "./media/characters/raunehkeli/front.svg",
  28160. extra: 1934 / 1926,
  28161. bottom: 0 / 1934
  28162. }
  28163. },
  28164. },
  28165. [
  28166. {
  28167. name: "Normal",
  28168. height: math.unit(179, "cm")
  28169. },
  28170. {
  28171. name: "Maximum",
  28172. height: math.unit(575, "meters"),
  28173. default: true
  28174. },
  28175. ]
  28176. ))
  28177. characterMakers.push(() => makeCharacter(
  28178. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28179. {
  28180. front: {
  28181. height: math.unit(6, "feet"),
  28182. weight: math.unit(150, "lb"),
  28183. name: "Front",
  28184. image: {
  28185. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28186. extra: 2625 / 2518,
  28187. bottom: 60 / 2685
  28188. }
  28189. },
  28190. },
  28191. [
  28192. {
  28193. name: "Normal",
  28194. height: math.unit(6 + 2 / 12, "feet"),
  28195. default: true
  28196. },
  28197. {
  28198. name: "Macro",
  28199. height: math.unit(1180, "feet")
  28200. },
  28201. ]
  28202. ))
  28203. characterMakers.push(() => makeCharacter(
  28204. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28205. {
  28206. front: {
  28207. height: math.unit(5 + 6 / 12, "feet"),
  28208. weight: math.unit(108, "lb"),
  28209. name: "Front",
  28210. image: {
  28211. source: "./media/characters/lilith-zott/front.svg",
  28212. extra: 2510 / 2238,
  28213. bottom: 100 / 2610
  28214. }
  28215. },
  28216. frontDressed: {
  28217. height: math.unit(5 + 6 / 12, "feet"),
  28218. weight: math.unit(108, "lb"),
  28219. name: "Front (Dressed)",
  28220. image: {
  28221. source: "./media/characters/lilith-zott/front-dressed.svg",
  28222. extra: 2510 / 2238,
  28223. bottom: 100 / 2610
  28224. }
  28225. },
  28226. },
  28227. [
  28228. {
  28229. name: "Normal",
  28230. height: math.unit(5 + 6 / 12, "feet")
  28231. },
  28232. {
  28233. name: "Macro",
  28234. height: math.unit(200, "feet"),
  28235. default: true
  28236. },
  28237. {
  28238. name: "Macro+",
  28239. height: math.unit(1030, "feet")
  28240. },
  28241. ]
  28242. ))
  28243. characterMakers.push(() => makeCharacter(
  28244. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28245. {
  28246. front: {
  28247. height: math.unit(6, "feet"),
  28248. weight: math.unit(150, "lb"),
  28249. name: "Front",
  28250. image: {
  28251. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28252. extra: 2567 / 2435,
  28253. bottom: 39 / 2606
  28254. }
  28255. },
  28256. frontSuper: {
  28257. height: math.unit(6, "feet"),
  28258. name: "Front (Super)",
  28259. image: {
  28260. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28261. extra: 2567 / 2435,
  28262. bottom: 39 / 2606
  28263. }
  28264. },
  28265. },
  28266. [
  28267. {
  28268. name: "Normal",
  28269. height: math.unit(5 + 10 / 12, "feet")
  28270. },
  28271. {
  28272. name: "Macro",
  28273. height: math.unit(220, "feet"),
  28274. default: true
  28275. },
  28276. {
  28277. name: "Macro+",
  28278. height: math.unit(1100, "feet")
  28279. },
  28280. ]
  28281. ))
  28282. characterMakers.push(() => makeCharacter(
  28283. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28284. {
  28285. front: {
  28286. height: math.unit(100, "miles"),
  28287. name: "Front",
  28288. image: {
  28289. source: "./media/characters/sona/front.svg",
  28290. extra: 2433 / 2201,
  28291. bottom: 53 / 2486
  28292. }
  28293. },
  28294. foot: {
  28295. height: math.unit(16.1, "miles"),
  28296. name: "Foot",
  28297. image: {
  28298. source: "./media/characters/sona/foot.svg"
  28299. }
  28300. },
  28301. },
  28302. [
  28303. {
  28304. name: "Macro",
  28305. height: math.unit(100, "miles"),
  28306. default: true
  28307. },
  28308. ]
  28309. ))
  28310. characterMakers.push(() => makeCharacter(
  28311. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28312. {
  28313. front: {
  28314. height: math.unit(6, "feet"),
  28315. weight: math.unit(150, "lb"),
  28316. name: "Front",
  28317. image: {
  28318. source: "./media/characters/bailey/front.svg",
  28319. extra: 1778 / 1724,
  28320. bottom: 30 / 1808
  28321. }
  28322. },
  28323. },
  28324. [
  28325. {
  28326. name: "Micro",
  28327. height: math.unit(4, "inches")
  28328. },
  28329. {
  28330. name: "Normal",
  28331. height: math.unit(5 + 5 / 12, "feet"),
  28332. default: true
  28333. },
  28334. {
  28335. name: "Macro",
  28336. height: math.unit(250, "feet")
  28337. },
  28338. {
  28339. name: "Megamacro",
  28340. height: math.unit(100, "miles")
  28341. },
  28342. ]
  28343. ))
  28344. characterMakers.push(() => makeCharacter(
  28345. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28346. {
  28347. front: {
  28348. height: math.unit(5 + 2 / 12, "feet"),
  28349. weight: math.unit(120, "lb"),
  28350. name: "Front",
  28351. image: {
  28352. source: "./media/characters/snaps/front.svg",
  28353. extra: 2370 / 2177,
  28354. bottom: 48 / 2418
  28355. }
  28356. },
  28357. back: {
  28358. height: math.unit(5 + 2 / 12, "feet"),
  28359. weight: math.unit(120, "lb"),
  28360. name: "Back",
  28361. image: {
  28362. source: "./media/characters/snaps/back.svg",
  28363. extra: 2408 / 2258,
  28364. bottom: 15 / 2423
  28365. }
  28366. },
  28367. },
  28368. [
  28369. {
  28370. name: "Micro",
  28371. height: math.unit(9, "inches")
  28372. },
  28373. {
  28374. name: "Normal",
  28375. height: math.unit(5 + 2 / 12, "feet"),
  28376. default: true
  28377. },
  28378. {
  28379. name: "Mini Macro",
  28380. height: math.unit(10, "feet")
  28381. },
  28382. ]
  28383. ))
  28384. characterMakers.push(() => makeCharacter(
  28385. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28386. {
  28387. front: {
  28388. height: math.unit(1.8, "meters"),
  28389. weight: math.unit(85, "kg"),
  28390. name: "Front",
  28391. image: {
  28392. source: "./media/characters/azteck/front.svg",
  28393. extra: 2815 / 2625,
  28394. bottom: 89 / 2904
  28395. }
  28396. },
  28397. back: {
  28398. height: math.unit(1.8, "meters"),
  28399. weight: math.unit(85, "kg"),
  28400. name: "Back",
  28401. image: {
  28402. source: "./media/characters/azteck/back.svg",
  28403. extra: 2856 / 2648,
  28404. bottom: 85 / 2941
  28405. }
  28406. },
  28407. frontDressed: {
  28408. height: math.unit(1.8, "meters"),
  28409. weight: math.unit(85, "kg"),
  28410. name: "Front (Dressed)",
  28411. image: {
  28412. source: "./media/characters/azteck/front-dressed.svg",
  28413. extra: 2147 / 2003,
  28414. bottom: 68 / 2215
  28415. }
  28416. },
  28417. head: {
  28418. height: math.unit(0.47, "meters"),
  28419. weight: math.unit(85, "kg"),
  28420. name: "Head",
  28421. image: {
  28422. source: "./media/characters/azteck/head.svg"
  28423. }
  28424. },
  28425. },
  28426. [
  28427. {
  28428. name: "Bite sized",
  28429. height: math.unit(16, "cm")
  28430. },
  28431. {
  28432. name: "Normal",
  28433. height: math.unit(1.8, "meters"),
  28434. default: true
  28435. },
  28436. ]
  28437. ))
  28438. characterMakers.push(() => makeCharacter(
  28439. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28440. {
  28441. front: {
  28442. height: math.unit(6, "feet"),
  28443. weight: math.unit(150, "lb"),
  28444. name: "Front",
  28445. image: {
  28446. source: "./media/characters/pidge/front.svg",
  28447. extra: 620 / 588,
  28448. bottom: 9 / 629
  28449. }
  28450. },
  28451. back: {
  28452. height: math.unit(6, "feet"),
  28453. weight: math.unit(150, "lb"),
  28454. name: "Back",
  28455. image: {
  28456. source: "./media/characters/pidge/back.svg",
  28457. extra: 620 / 588,
  28458. bottom: 9 / 629
  28459. }
  28460. },
  28461. },
  28462. [
  28463. {
  28464. name: "Macro",
  28465. height: math.unit(1, "mile"),
  28466. default: true
  28467. },
  28468. ]
  28469. ))
  28470. characterMakers.push(() => makeCharacter(
  28471. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28472. {
  28473. front: {
  28474. height: math.unit(6, "feet"),
  28475. weight: math.unit(150, "lb"),
  28476. name: "Front",
  28477. image: {
  28478. source: "./media/characters/en/front.svg",
  28479. extra: 1697 / 1563,
  28480. bottom: 103 / 1800
  28481. }
  28482. },
  28483. back: {
  28484. height: math.unit(6, "feet"),
  28485. weight: math.unit(150, "lb"),
  28486. name: "Back",
  28487. image: {
  28488. source: "./media/characters/en/back.svg",
  28489. extra: 1700 / 1570,
  28490. bottom: 51 / 1751
  28491. }
  28492. },
  28493. frontDressed: {
  28494. height: math.unit(6, "feet"),
  28495. weight: math.unit(150, "lb"),
  28496. name: "Front (Dressed)",
  28497. image: {
  28498. source: "./media/characters/en/front-dressed.svg",
  28499. extra: 1697 / 1563,
  28500. bottom: 103 / 1800
  28501. }
  28502. },
  28503. backDressed: {
  28504. height: math.unit(6, "feet"),
  28505. weight: math.unit(150, "lb"),
  28506. name: "Back (Dressed)",
  28507. image: {
  28508. source: "./media/characters/en/back-dressed.svg",
  28509. extra: 1700 / 1570,
  28510. bottom: 51 / 1751
  28511. }
  28512. },
  28513. },
  28514. [
  28515. {
  28516. name: "Macro",
  28517. height: math.unit(210, "feet"),
  28518. default: true
  28519. },
  28520. ]
  28521. ))
  28522. characterMakers.push(() => makeCharacter(
  28523. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28524. {
  28525. front: {
  28526. height: math.unit(6, "feet"),
  28527. weight: math.unit(150, "lb"),
  28528. name: "Front",
  28529. image: {
  28530. source: "./media/characters/haze-orris/front.svg",
  28531. extra: 3975 / 3525,
  28532. bottom: 137 / 4112
  28533. }
  28534. },
  28535. },
  28536. [
  28537. {
  28538. name: "Micro",
  28539. height: math.unit(150, "mm"),
  28540. default: true
  28541. },
  28542. ]
  28543. ))
  28544. characterMakers.push(() => makeCharacter(
  28545. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28546. {
  28547. front: {
  28548. height: math.unit(6, "feet"),
  28549. weight: math.unit(150, "lb"),
  28550. name: "Front",
  28551. image: {
  28552. source: "./media/characters/casselene-yaro/front.svg",
  28553. extra: 4721 / 4541,
  28554. bottom: 82 / 4803
  28555. }
  28556. },
  28557. back: {
  28558. height: math.unit(6, "feet"),
  28559. weight: math.unit(150, "lb"),
  28560. name: "Back",
  28561. image: {
  28562. source: "./media/characters/casselene-yaro/back.svg",
  28563. extra: 4569 / 4377,
  28564. bottom: 69 / 4638
  28565. }
  28566. },
  28567. frontDressed: {
  28568. height: math.unit(6, "feet"),
  28569. weight: math.unit(150, "lb"),
  28570. name: "Front-dressed",
  28571. image: {
  28572. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28573. extra: 4721 / 4541,
  28574. bottom: 82 / 4803
  28575. }
  28576. },
  28577. },
  28578. [
  28579. {
  28580. name: "Macro",
  28581. height: math.unit(190, "feet"),
  28582. default: true
  28583. },
  28584. ]
  28585. ))
  28586. characterMakers.push(() => makeCharacter(
  28587. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28588. {
  28589. front: {
  28590. height: math.unit(6, "feet"),
  28591. weight: math.unit(150, "lb"),
  28592. name: "Front",
  28593. image: {
  28594. source: "./media/characters/myra-rue-delore/front.svg",
  28595. extra: 1340 / 1308,
  28596. bottom: 67 / 1407
  28597. }
  28598. },
  28599. back: {
  28600. height: math.unit(6, "feet"),
  28601. weight: math.unit(150, "lb"),
  28602. name: "Back",
  28603. image: {
  28604. source: "./media/characters/myra-rue-delore/back.svg",
  28605. extra: 1341 / 1310,
  28606. bottom: 40 / 1381
  28607. }
  28608. },
  28609. frontDressed: {
  28610. height: math.unit(6, "feet"),
  28611. weight: math.unit(150, "lb"),
  28612. name: "Front (Dressed)",
  28613. image: {
  28614. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28615. extra: 1340 / 1308,
  28616. bottom: 67 / 1407
  28617. }
  28618. },
  28619. },
  28620. [
  28621. {
  28622. name: "Macro",
  28623. height: math.unit(150, "feet"),
  28624. default: true
  28625. },
  28626. ]
  28627. ))
  28628. characterMakers.push(() => makeCharacter(
  28629. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28630. {
  28631. front: {
  28632. height: math.unit(10, "feet"),
  28633. weight: math.unit(15015, "lb"),
  28634. name: "Front",
  28635. image: {
  28636. source: "./media/characters/fem!plat/front.svg",
  28637. extra: 2799 / 2604,
  28638. bottom: 149 / 2948
  28639. }
  28640. },
  28641. },
  28642. [
  28643. {
  28644. name: "Normal",
  28645. height: math.unit(10, "feet"),
  28646. default: true
  28647. },
  28648. {
  28649. name: "Macro",
  28650. height: math.unit(100, "feet")
  28651. },
  28652. {
  28653. name: "Megamacro",
  28654. height: math.unit(1000, "feet")
  28655. },
  28656. ]
  28657. ))
  28658. characterMakers.push(() => makeCharacter(
  28659. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28660. {
  28661. front: {
  28662. height: math.unit(15 + 5 / 12, "feet"),
  28663. weight: math.unit(4600, "lb"),
  28664. name: "Front",
  28665. image: {
  28666. source: "./media/characters/neapolitan-ananassa/front.svg",
  28667. extra: 2903 / 2736,
  28668. bottom: 0 / 2903
  28669. }
  28670. },
  28671. side: {
  28672. height: math.unit(15 + 5 / 12, "feet"),
  28673. weight: math.unit(4600, "lb"),
  28674. name: "Side",
  28675. image: {
  28676. source: "./media/characters/neapolitan-ananassa/side.svg",
  28677. extra: 2925 / 2719,
  28678. bottom: 0 / 2925
  28679. }
  28680. },
  28681. back: {
  28682. height: math.unit(15 + 5 / 12, "feet"),
  28683. weight: math.unit(4600, "lb"),
  28684. name: "Back",
  28685. image: {
  28686. source: "./media/characters/neapolitan-ananassa/back.svg",
  28687. extra: 2903 / 2736,
  28688. bottom: 0 / 2903
  28689. }
  28690. },
  28691. },
  28692. [
  28693. {
  28694. name: "Normal",
  28695. height: math.unit(15 + 5 / 12, "feet"),
  28696. default: true
  28697. },
  28698. {
  28699. name: "Post-Millenium",
  28700. height: math.unit(35 + 5 / 12, "feet")
  28701. },
  28702. {
  28703. name: "Post-Era",
  28704. height: math.unit(450 + 5 / 12, "feet")
  28705. },
  28706. ]
  28707. ))
  28708. characterMakers.push(() => makeCharacter(
  28709. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28710. {
  28711. front: {
  28712. height: math.unit(300, "meters"),
  28713. weight: math.unit(125000, "tonnes"),
  28714. name: "Front",
  28715. image: {
  28716. source: "./media/characters/pazuzu/front.svg",
  28717. extra: 877 / 794,
  28718. bottom: 47 / 924
  28719. }
  28720. },
  28721. },
  28722. [
  28723. {
  28724. name: "Macro",
  28725. height: math.unit(300, "meters"),
  28726. default: true
  28727. },
  28728. ]
  28729. ))
  28730. characterMakers.push(() => makeCharacter(
  28731. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28732. {
  28733. side: {
  28734. height: math.unit(10 + 7 / 12, "feet"),
  28735. weight: math.unit(2.5, "tons"),
  28736. name: "Side",
  28737. image: {
  28738. source: "./media/characters/aasha/side.svg",
  28739. extra: 1345 / 1245,
  28740. bottom: 111 / 1456
  28741. }
  28742. },
  28743. back: {
  28744. height: math.unit(10 + 7 / 12, "feet"),
  28745. weight: math.unit(2.5, "tons"),
  28746. name: "Back",
  28747. image: {
  28748. source: "./media/characters/aasha/back.svg",
  28749. extra: 1133 / 1057,
  28750. bottom: 257 / 1390
  28751. }
  28752. },
  28753. },
  28754. [
  28755. {
  28756. name: "Normal",
  28757. height: math.unit(10 + 7 / 12, "feet"),
  28758. default: true
  28759. },
  28760. ]
  28761. ))
  28762. characterMakers.push(() => makeCharacter(
  28763. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28764. {
  28765. front: {
  28766. height: math.unit(6 + 3 / 12, "feet"),
  28767. name: "Front",
  28768. image: {
  28769. source: "./media/characters/nevan/front.svg",
  28770. extra: 704 / 704,
  28771. bottom: 28 / 732
  28772. }
  28773. },
  28774. back: {
  28775. height: math.unit(6 + 3 / 12, "feet"),
  28776. name: "Back",
  28777. image: {
  28778. source: "./media/characters/nevan/back.svg",
  28779. extra: 714 / 714,
  28780. bottom: 21 / 735
  28781. }
  28782. },
  28783. frontFlaccid: {
  28784. height: math.unit(6 + 3 / 12, "feet"),
  28785. name: "Front (Flaccid)",
  28786. image: {
  28787. source: "./media/characters/nevan/front-flaccid.svg",
  28788. extra: 704 / 704,
  28789. bottom: 28 / 732
  28790. }
  28791. },
  28792. frontErect: {
  28793. height: math.unit(6 + 3 / 12, "feet"),
  28794. name: "Front (Erect)",
  28795. image: {
  28796. source: "./media/characters/nevan/front-erect.svg",
  28797. extra: 704 / 704,
  28798. bottom: 28 / 732
  28799. }
  28800. },
  28801. backFlaccid: {
  28802. height: math.unit(6 + 3 / 12, "feet"),
  28803. name: "Back (Flaccid)",
  28804. image: {
  28805. source: "./media/characters/nevan/back-flaccid.svg",
  28806. extra: 714 / 714,
  28807. bottom: 21 / 735
  28808. }
  28809. },
  28810. },
  28811. [
  28812. {
  28813. name: "Normal",
  28814. height: math.unit(6 + 3 / 12, "feet"),
  28815. default: true
  28816. },
  28817. ]
  28818. ))
  28819. characterMakers.push(() => makeCharacter(
  28820. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28821. {
  28822. front: {
  28823. height: math.unit(4, "feet"),
  28824. name: "Front",
  28825. image: {
  28826. source: "./media/characters/arhan/front.svg",
  28827. extra: 3368 / 3133,
  28828. bottom: 0 / 3368
  28829. }
  28830. },
  28831. side: {
  28832. height: math.unit(4, "feet"),
  28833. name: "Side",
  28834. image: {
  28835. source: "./media/characters/arhan/side.svg",
  28836. extra: 3347 / 3105,
  28837. bottom: 0 / 3347
  28838. }
  28839. },
  28840. tongue: {
  28841. height: math.unit(1.42, "feet"),
  28842. name: "Tongue",
  28843. image: {
  28844. source: "./media/characters/arhan/tongue.svg"
  28845. }
  28846. },
  28847. head: {
  28848. height: math.unit(0.85, "feet"),
  28849. name: "Head",
  28850. image: {
  28851. source: "./media/characters/arhan/head.svg"
  28852. }
  28853. },
  28854. },
  28855. [
  28856. {
  28857. name: "Normal",
  28858. height: math.unit(4, "feet"),
  28859. default: true
  28860. },
  28861. ]
  28862. ))
  28863. characterMakers.push(() => makeCharacter(
  28864. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28865. {
  28866. front: {
  28867. height: math.unit(5 + 7.5 / 12, "feet"),
  28868. weight: math.unit(120, "lb"),
  28869. name: "Front",
  28870. image: {
  28871. source: "./media/characters/digi-duncan/front.svg",
  28872. extra: 330 / 326,
  28873. bottom: 16 / 346
  28874. }
  28875. },
  28876. side: {
  28877. height: math.unit(5 + 7.5 / 12, "feet"),
  28878. weight: math.unit(120, "lb"),
  28879. name: "Side",
  28880. image: {
  28881. source: "./media/characters/digi-duncan/side.svg",
  28882. extra: 341 / 337,
  28883. bottom: 1 / 342
  28884. }
  28885. },
  28886. back: {
  28887. height: math.unit(5 + 7.5 / 12, "feet"),
  28888. weight: math.unit(120, "lb"),
  28889. name: "Back",
  28890. image: {
  28891. source: "./media/characters/digi-duncan/back.svg",
  28892. extra: 330 / 326,
  28893. bottom: 12 / 342
  28894. }
  28895. },
  28896. },
  28897. [
  28898. {
  28899. name: "Speck",
  28900. height: math.unit(0.25, "mm")
  28901. },
  28902. {
  28903. name: "Micro",
  28904. height: math.unit(5, "mm")
  28905. },
  28906. {
  28907. name: "Tiny",
  28908. height: math.unit(0.5, "inches"),
  28909. default: true
  28910. },
  28911. {
  28912. name: "Human",
  28913. height: math.unit(5 + 7.5 / 12, "feet")
  28914. },
  28915. {
  28916. name: "Minigiant",
  28917. height: math.unit(8 + 5.25, "feet")
  28918. },
  28919. {
  28920. name: "Giant",
  28921. height: math.unit(2000, "feet")
  28922. },
  28923. {
  28924. name: "Mega",
  28925. height: math.unit(371.1, "miles")
  28926. },
  28927. ]
  28928. ))
  28929. characterMakers.push(() => makeCharacter(
  28930. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28931. {
  28932. front: {
  28933. height: math.unit(2, "meters"),
  28934. weight: math.unit(350, "kg"),
  28935. name: "Front",
  28936. image: {
  28937. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28938. extra: 898 / 838,
  28939. bottom: 9 / 907
  28940. }
  28941. },
  28942. },
  28943. [
  28944. {
  28945. name: "Micro",
  28946. height: math.unit(8, "meters")
  28947. },
  28948. {
  28949. name: "Normal",
  28950. height: math.unit(50, "meters"),
  28951. default: true
  28952. },
  28953. {
  28954. name: "Macro",
  28955. height: math.unit(500, "meters")
  28956. },
  28957. ]
  28958. ))
  28959. characterMakers.push(() => makeCharacter(
  28960. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28961. {
  28962. front: {
  28963. height: math.unit(6 + 6 / 12, "feet"),
  28964. name: "Front",
  28965. image: {
  28966. source: "./media/characters/khardesh/front.svg",
  28967. extra: 888 / 797,
  28968. bottom: 25 / 913
  28969. }
  28970. },
  28971. },
  28972. [
  28973. {
  28974. name: "Normal",
  28975. height: math.unit(6 + 6 / 12, "feet"),
  28976. default: true
  28977. },
  28978. {
  28979. name: "Normal+",
  28980. height: math.unit(4, "meters")
  28981. },
  28982. {
  28983. name: "Macro",
  28984. height: math.unit(50, "meters")
  28985. },
  28986. {
  28987. name: "Macro+",
  28988. height: math.unit(100, "meters")
  28989. },
  28990. {
  28991. name: "Megamacro",
  28992. height: math.unit(20, "km")
  28993. },
  28994. ]
  28995. ))
  28996. characterMakers.push(() => makeCharacter(
  28997. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28998. {
  28999. front: {
  29000. height: math.unit(6, "feet"),
  29001. weight: math.unit(150, "lb"),
  29002. name: "Front",
  29003. image: {
  29004. source: "./media/characters/kosho/front.svg",
  29005. extra: 1847 / 1847,
  29006. bottom: 86 / 1933
  29007. }
  29008. },
  29009. },
  29010. [
  29011. {
  29012. name: "Second-stage micro",
  29013. height: math.unit(0.5, "inches")
  29014. },
  29015. {
  29016. name: "First-stage micro",
  29017. height: math.unit(6, "inches")
  29018. },
  29019. {
  29020. name: "Normal",
  29021. height: math.unit(6, "feet"),
  29022. default: true
  29023. },
  29024. {
  29025. name: "First-stage macro",
  29026. height: math.unit(72, "feet")
  29027. },
  29028. {
  29029. name: "Second-stage macro",
  29030. height: math.unit(864, "feet")
  29031. },
  29032. ]
  29033. ))
  29034. characterMakers.push(() => makeCharacter(
  29035. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29036. {
  29037. normal: {
  29038. height: math.unit(4 + 6 / 12, "feet"),
  29039. name: "Normal",
  29040. image: {
  29041. source: "./media/characters/hydra/normal.svg",
  29042. extra: 2833 / 2634,
  29043. bottom: 68 / 2901
  29044. }
  29045. },
  29046. smol: {
  29047. height: math.unit(0.705, "inches"),
  29048. name: "Smol",
  29049. image: {
  29050. source: "./media/characters/hydra/smol.svg",
  29051. extra: 2715 / 2540,
  29052. bottom: 0 / 2715
  29053. }
  29054. },
  29055. },
  29056. [
  29057. {
  29058. name: "Normal",
  29059. height: math.unit(4 + 6 / 12, "feet"),
  29060. default: true
  29061. }
  29062. ]
  29063. ))
  29064. characterMakers.push(() => makeCharacter(
  29065. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29066. {
  29067. front: {
  29068. height: math.unit(0.6, "cm"),
  29069. name: "Front",
  29070. image: {
  29071. source: "./media/characters/daz/front.svg",
  29072. extra: 1682 / 1164,
  29073. bottom: 42 / 1724
  29074. }
  29075. },
  29076. },
  29077. [
  29078. {
  29079. name: "Normal",
  29080. height: math.unit(0.6, "cm"),
  29081. default: true
  29082. },
  29083. ]
  29084. ))
  29085. characterMakers.push(() => makeCharacter(
  29086. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29087. {
  29088. front: {
  29089. height: math.unit(6, "feet"),
  29090. weight: math.unit(235, "lb"),
  29091. name: "Front",
  29092. image: {
  29093. source: "./media/characters/theo-pangolin/front.svg",
  29094. extra: 1996 / 1969,
  29095. bottom: 115 / 2111
  29096. }
  29097. },
  29098. back: {
  29099. height: math.unit(6, "feet"),
  29100. weight: math.unit(235, "lb"),
  29101. name: "Back",
  29102. image: {
  29103. source: "./media/characters/theo-pangolin/back.svg",
  29104. extra: 1979 / 1979,
  29105. bottom: 40 / 2019
  29106. }
  29107. },
  29108. feral: {
  29109. height: math.unit(2, "feet"),
  29110. weight: math.unit(30, "lb"),
  29111. name: "Feral",
  29112. image: {
  29113. source: "./media/characters/theo-pangolin/feral.svg",
  29114. extra: 803 / 791,
  29115. bottom: 181 / 984
  29116. }
  29117. },
  29118. footFive: {
  29119. height: math.unit(1.43, "feet"),
  29120. name: "Foot (Five Toes)",
  29121. image: {
  29122. source: "./media/characters/theo-pangolin/foot-five.svg"
  29123. }
  29124. },
  29125. footFour: {
  29126. height: math.unit(1.43, "feet"),
  29127. name: "Foot (Four Toes)",
  29128. image: {
  29129. source: "./media/characters/theo-pangolin/foot-four.svg"
  29130. }
  29131. },
  29132. handFour: {
  29133. height: math.unit(0.81, "feet"),
  29134. name: "Hand (Four Fingers)",
  29135. image: {
  29136. source: "./media/characters/theo-pangolin/hand-four.svg"
  29137. }
  29138. },
  29139. handThree: {
  29140. height: math.unit(0.81, "feet"),
  29141. name: "Hand (Three Fingers)",
  29142. image: {
  29143. source: "./media/characters/theo-pangolin/hand-three.svg"
  29144. }
  29145. },
  29146. headFront: {
  29147. height: math.unit(1.37, "feet"),
  29148. name: "Head (Front)",
  29149. image: {
  29150. source: "./media/characters/theo-pangolin/head-front.svg"
  29151. }
  29152. },
  29153. headSide: {
  29154. height: math.unit(1.43, "feet"),
  29155. name: "Head (Side)",
  29156. image: {
  29157. source: "./media/characters/theo-pangolin/head-side.svg"
  29158. }
  29159. },
  29160. tongue: {
  29161. height: math.unit(2.29, "feet"),
  29162. name: "Tongue",
  29163. image: {
  29164. source: "./media/characters/theo-pangolin/tongue.svg"
  29165. }
  29166. },
  29167. },
  29168. [
  29169. {
  29170. name: "Normal",
  29171. height: math.unit(6, "feet")
  29172. },
  29173. {
  29174. name: "Macro",
  29175. height: math.unit(400, "feet"),
  29176. default: true
  29177. },
  29178. ]
  29179. ))
  29180. characterMakers.push(() => makeCharacter(
  29181. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29182. {
  29183. front: {
  29184. height: math.unit(6, "inches"),
  29185. weight: math.unit(0.036, "kg"),
  29186. name: "Front",
  29187. image: {
  29188. source: "./media/characters/renée/front.svg",
  29189. extra: 900 / 886,
  29190. bottom: 8 / 908
  29191. }
  29192. },
  29193. },
  29194. [
  29195. {
  29196. name: "Nano",
  29197. height: math.unit(1, "nm")
  29198. },
  29199. {
  29200. name: "Micro",
  29201. height: math.unit(1, "mm")
  29202. },
  29203. {
  29204. name: "Normal",
  29205. height: math.unit(6, "inches")
  29206. },
  29207. {
  29208. name: "Macro",
  29209. height: math.unit(2000, "feet"),
  29210. default: true
  29211. },
  29212. {
  29213. name: "Megamacro",
  29214. height: math.unit(2, "km")
  29215. },
  29216. {
  29217. name: "Gigamacro",
  29218. height: math.unit(2000, "km")
  29219. },
  29220. {
  29221. name: "Teramacro",
  29222. height: math.unit(250000, "km")
  29223. },
  29224. ]
  29225. ))
  29226. characterMakers.push(() => makeCharacter(
  29227. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29228. {
  29229. front: {
  29230. height: math.unit(4, "meters"),
  29231. weight: math.unit(150, "kg"),
  29232. name: "Front",
  29233. image: {
  29234. source: "./media/characters/caledvwlch/front.svg",
  29235. extra: 1760 / 1551,
  29236. bottom: 28 / 1788
  29237. }
  29238. },
  29239. side: {
  29240. height: math.unit(4, "meters"),
  29241. weight: math.unit(150, "kg"),
  29242. name: "Side",
  29243. image: {
  29244. source: "./media/characters/caledvwlch/side.svg",
  29245. extra: 1605 / 1536,
  29246. bottom: 31 / 1636
  29247. }
  29248. },
  29249. back: {
  29250. height: math.unit(4, "meters"),
  29251. weight: math.unit(150, "kg"),
  29252. name: "Back",
  29253. image: {
  29254. source: "./media/characters/caledvwlch/back.svg",
  29255. extra: 1635 / 1565,
  29256. bottom: 27 / 1662
  29257. }
  29258. },
  29259. },
  29260. [
  29261. {
  29262. name: "\"Incognito\"",
  29263. height: math.unit(4, "meters")
  29264. },
  29265. {
  29266. name: "Small rampage",
  29267. height: math.unit(600, "meters")
  29268. },
  29269. {
  29270. name: "Mega",
  29271. height: math.unit(30, "km")
  29272. },
  29273. {
  29274. name: "Home-size",
  29275. height: math.unit(50, "km"),
  29276. default: true
  29277. },
  29278. {
  29279. name: "Giga",
  29280. height: math.unit(300, "km")
  29281. },
  29282. {
  29283. name: "Lounging",
  29284. height: math.unit(11000, "km")
  29285. },
  29286. {
  29287. name: "Planet snacking",
  29288. height: math.unit(2000000, "km")
  29289. },
  29290. ]
  29291. ))
  29292. characterMakers.push(() => makeCharacter(
  29293. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29294. {
  29295. front: {
  29296. height: math.unit(6, "feet"),
  29297. weight: math.unit(215, "lb"),
  29298. name: "Front",
  29299. image: {
  29300. source: "./media/characters/sapphire-svell/front.svg",
  29301. extra: 495 / 455,
  29302. bottom: 20 / 515
  29303. }
  29304. },
  29305. back: {
  29306. height: math.unit(6, "feet"),
  29307. weight: math.unit(216, "lb"),
  29308. name: "Back",
  29309. image: {
  29310. source: "./media/characters/sapphire-svell/back.svg",
  29311. extra: 497 / 477,
  29312. bottom: 7 / 504
  29313. }
  29314. },
  29315. maw: {
  29316. height: math.unit(1.57, "feet"),
  29317. name: "Maw",
  29318. image: {
  29319. source: "./media/characters/sapphire-svell/maw.svg"
  29320. }
  29321. },
  29322. foot: {
  29323. height: math.unit(1.07, "feet"),
  29324. name: "Foot",
  29325. image: {
  29326. source: "./media/characters/sapphire-svell/foot.svg"
  29327. }
  29328. },
  29329. toering: {
  29330. height: math.unit(1.7, "inch"),
  29331. name: "Toering",
  29332. image: {
  29333. source: "./media/characters/sapphire-svell/toering.svg"
  29334. }
  29335. },
  29336. },
  29337. [
  29338. {
  29339. name: "Normal",
  29340. height: math.unit(300, "feet"),
  29341. default: true
  29342. },
  29343. {
  29344. name: "Augmented",
  29345. height: math.unit(1250, "feet")
  29346. },
  29347. {
  29348. name: "Unleashed",
  29349. height: math.unit(3000, "feet")
  29350. },
  29351. ]
  29352. ))
  29353. characterMakers.push(() => makeCharacter(
  29354. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29355. {
  29356. side: {
  29357. height: math.unit(2 + 3 / 12, "feet"),
  29358. weight: math.unit(110, "lb"),
  29359. name: "Side",
  29360. image: {
  29361. source: "./media/characters/glitch-flux/side.svg",
  29362. extra: 997 / 805,
  29363. bottom: 20 / 1017
  29364. }
  29365. },
  29366. },
  29367. [
  29368. {
  29369. name: "Normal",
  29370. height: math.unit(2 + 3 / 12, "feet"),
  29371. default: true
  29372. },
  29373. ]
  29374. ))
  29375. characterMakers.push(() => makeCharacter(
  29376. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29377. {
  29378. front: {
  29379. height: math.unit(4, "meters"),
  29380. name: "Front",
  29381. image: {
  29382. source: "./media/characters/mid/front.svg",
  29383. extra: 507 / 476,
  29384. bottom: 17 / 524
  29385. }
  29386. },
  29387. back: {
  29388. height: math.unit(4, "meters"),
  29389. name: "Back",
  29390. image: {
  29391. source: "./media/characters/mid/back.svg",
  29392. extra: 519 / 487,
  29393. bottom: 7 / 526
  29394. }
  29395. },
  29396. stuck: {
  29397. height: math.unit(2.2, "meters"),
  29398. name: "Stuck",
  29399. image: {
  29400. source: "./media/characters/mid/stuck.svg",
  29401. extra: 1951 / 1869,
  29402. bottom: 88 / 2039
  29403. }
  29404. }
  29405. },
  29406. [
  29407. {
  29408. name: "Normal",
  29409. height: math.unit(4, "meters"),
  29410. default: true
  29411. },
  29412. {
  29413. name: "Big",
  29414. height: math.unit(10, "meters")
  29415. },
  29416. {
  29417. name: "Macro",
  29418. height: math.unit(800, "meters")
  29419. },
  29420. {
  29421. name: "Megamacro",
  29422. height: math.unit(100, "km")
  29423. },
  29424. {
  29425. name: "Overgrown",
  29426. height: math.unit(1, "parsec")
  29427. },
  29428. ]
  29429. ))
  29430. characterMakers.push(() => makeCharacter(
  29431. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29432. {
  29433. front: {
  29434. height: math.unit(2.5, "meters"),
  29435. weight: math.unit(225, "kg"),
  29436. name: "Front",
  29437. image: {
  29438. source: "./media/characters/iris/front.svg",
  29439. extra: 3348 / 3251,
  29440. bottom: 205 / 3553
  29441. }
  29442. },
  29443. maw: {
  29444. height: math.unit(0.56, "meter"),
  29445. name: "Maw",
  29446. image: {
  29447. source: "./media/characters/iris/maw.svg"
  29448. }
  29449. },
  29450. },
  29451. [
  29452. {
  29453. name: "Mewter cat",
  29454. height: math.unit(1.2, "meters")
  29455. },
  29456. {
  29457. name: "Minimacro",
  29458. height: math.unit(2.5, "meters"),
  29459. default: true
  29460. },
  29461. {
  29462. name: "Macro",
  29463. height: math.unit(180, "meters")
  29464. },
  29465. {
  29466. name: "Megamacro",
  29467. height: math.unit(2746, "meters")
  29468. },
  29469. ]
  29470. ))
  29471. characterMakers.push(() => makeCharacter(
  29472. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29473. {
  29474. front: {
  29475. height: math.unit(6, "feet"),
  29476. weight: math.unit(135, "lb"),
  29477. name: "Front",
  29478. image: {
  29479. source: "./media/characters/axel/front.svg",
  29480. extra: 908 / 908,
  29481. bottom: 58 / 966
  29482. }
  29483. },
  29484. side: {
  29485. height: math.unit(6, "feet"),
  29486. weight: math.unit(135, "lb"),
  29487. name: "Side",
  29488. image: {
  29489. source: "./media/characters/axel/side.svg",
  29490. extra: 958 / 958,
  29491. bottom: 11 / 969
  29492. }
  29493. },
  29494. back: {
  29495. height: math.unit(6, "feet"),
  29496. weight: math.unit(135, "lb"),
  29497. name: "Back",
  29498. image: {
  29499. source: "./media/characters/axel/back.svg",
  29500. extra: 887 / 887,
  29501. bottom: 34 / 921
  29502. }
  29503. },
  29504. head: {
  29505. height: math.unit(1.07, "feet"),
  29506. name: "Head",
  29507. image: {
  29508. source: "./media/characters/axel/head.svg"
  29509. }
  29510. },
  29511. beak: {
  29512. height: math.unit(1.4, "feet"),
  29513. name: "Beak",
  29514. image: {
  29515. source: "./media/characters/axel/beak.svg"
  29516. }
  29517. },
  29518. beakSide: {
  29519. height: math.unit(1.4, "feet"),
  29520. name: "Beak Side",
  29521. image: {
  29522. source: "./media/characters/axel/beak-side.svg"
  29523. }
  29524. },
  29525. sheath: {
  29526. height: math.unit(0.5, "feet"),
  29527. name: "Sheath",
  29528. image: {
  29529. source: "./media/characters/axel/sheath.svg"
  29530. }
  29531. },
  29532. dick: {
  29533. height: math.unit(0.98, "feet"),
  29534. name: "Dick",
  29535. image: {
  29536. source: "./media/characters/axel/dick.svg"
  29537. }
  29538. },
  29539. },
  29540. [
  29541. {
  29542. name: "Macro",
  29543. height: math.unit(68, "meters"),
  29544. default: true
  29545. },
  29546. ]
  29547. ))
  29548. characterMakers.push(() => makeCharacter(
  29549. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29550. {
  29551. front: {
  29552. height: math.unit(3.5, "meters"),
  29553. weight: math.unit(1200, "kg"),
  29554. name: "Front",
  29555. image: {
  29556. source: "./media/characters/joanna/front.svg",
  29557. extra: 1596 / 1488,
  29558. bottom: 29 / 1625
  29559. }
  29560. },
  29561. back: {
  29562. height: math.unit(3.5, "meters"),
  29563. weight: math.unit(1200, "kg"),
  29564. name: "Back",
  29565. image: {
  29566. source: "./media/characters/joanna/back.svg",
  29567. extra: 1594 / 1495,
  29568. bottom: 26 / 1620
  29569. }
  29570. },
  29571. frontShorts: {
  29572. height: math.unit(3.5, "meters"),
  29573. weight: math.unit(1200, "kg"),
  29574. name: "Front (Shorts)",
  29575. image: {
  29576. source: "./media/characters/joanna/front-shorts.svg",
  29577. extra: 1596 / 1488,
  29578. bottom: 29 / 1625
  29579. }
  29580. },
  29581. frontBiker: {
  29582. height: math.unit(3.5, "meters"),
  29583. weight: math.unit(1200, "kg"),
  29584. name: "Front (Biker)",
  29585. image: {
  29586. source: "./media/characters/joanna/front-biker.svg",
  29587. extra: 1596 / 1488,
  29588. bottom: 29 / 1625
  29589. }
  29590. },
  29591. backBiker: {
  29592. height: math.unit(3.5, "meters"),
  29593. weight: math.unit(1200, "kg"),
  29594. name: "Back (Biker)",
  29595. image: {
  29596. source: "./media/characters/joanna/back-biker.svg",
  29597. extra: 1594 / 1495,
  29598. bottom: 88 / 1682
  29599. }
  29600. },
  29601. bikeLeft: {
  29602. height: math.unit(2.4, "meters"),
  29603. weight: math.unit(1600, "kg"),
  29604. name: "Bike (Left)",
  29605. image: {
  29606. source: "./media/characters/joanna/bike-left.svg",
  29607. extra: 720 / 720,
  29608. bottom: 8 / 728
  29609. }
  29610. },
  29611. bikeRight: {
  29612. height: math.unit(2.4, "meters"),
  29613. weight: math.unit(1600, "kg"),
  29614. name: "Bike (Right)",
  29615. image: {
  29616. source: "./media/characters/joanna/bike-right.svg",
  29617. extra: 720 / 720,
  29618. bottom: 8 / 728
  29619. }
  29620. },
  29621. },
  29622. [
  29623. {
  29624. name: "Incognito",
  29625. height: math.unit(3.5, "meters")
  29626. },
  29627. {
  29628. name: "Casual Big",
  29629. height: math.unit(200, "meters")
  29630. },
  29631. {
  29632. name: "Macro",
  29633. height: math.unit(600, "meters")
  29634. },
  29635. {
  29636. name: "Original",
  29637. height: math.unit(20, "km"),
  29638. default: true
  29639. },
  29640. {
  29641. name: "Giga",
  29642. height: math.unit(400, "km")
  29643. },
  29644. {
  29645. name: "Lounging",
  29646. height: math.unit(1500, "km")
  29647. },
  29648. {
  29649. name: "Planetary",
  29650. height: math.unit(200000, "km")
  29651. },
  29652. ]
  29653. ))
  29654. characterMakers.push(() => makeCharacter(
  29655. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29656. {
  29657. front: {
  29658. height: math.unit(6, "feet"),
  29659. weight: math.unit(150, "lb"),
  29660. name: "Front",
  29661. image: {
  29662. source: "./media/characters/hugo-sigil/front.svg",
  29663. extra: 522 / 500,
  29664. bottom: 2 / 524
  29665. }
  29666. },
  29667. back: {
  29668. height: math.unit(6, "feet"),
  29669. weight: math.unit(150, "lb"),
  29670. name: "Back",
  29671. image: {
  29672. source: "./media/characters/hugo-sigil/back.svg",
  29673. extra: 519 / 495,
  29674. bottom: 5 / 524
  29675. }
  29676. },
  29677. maw: {
  29678. height: math.unit(1.4, "feet"),
  29679. weight: math.unit(150, "lb"),
  29680. name: "Maw",
  29681. image: {
  29682. source: "./media/characters/hugo-sigil/maw.svg"
  29683. }
  29684. },
  29685. feet: {
  29686. height: math.unit(1.56, "feet"),
  29687. weight: math.unit(150, "lb"),
  29688. name: "Feet",
  29689. image: {
  29690. source: "./media/characters/hugo-sigil/feet.svg",
  29691. extra: 177 / 177,
  29692. bottom: 12 / 189
  29693. }
  29694. },
  29695. },
  29696. [
  29697. {
  29698. name: "Normal",
  29699. height: math.unit(6, "feet")
  29700. },
  29701. {
  29702. name: "Macro",
  29703. height: math.unit(200, "feet"),
  29704. default: true
  29705. },
  29706. ]
  29707. ))
  29708. characterMakers.push(() => makeCharacter(
  29709. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29710. {
  29711. front: {
  29712. height: math.unit(6, "feet"),
  29713. weight: math.unit(150, "lb"),
  29714. name: "Front",
  29715. image: {
  29716. source: "./media/characters/peri/front.svg",
  29717. extra: 2354 / 2233,
  29718. bottom: 49 / 2403
  29719. }
  29720. },
  29721. },
  29722. [
  29723. {
  29724. name: "Really Small",
  29725. height: math.unit(1, "nm")
  29726. },
  29727. {
  29728. name: "Micro",
  29729. height: math.unit(4, "inches")
  29730. },
  29731. {
  29732. name: "Normal",
  29733. height: math.unit(7, "inches"),
  29734. default: true
  29735. },
  29736. {
  29737. name: "Macro",
  29738. height: math.unit(400, "feet")
  29739. },
  29740. {
  29741. name: "Megamacro",
  29742. height: math.unit(100, "miles")
  29743. },
  29744. ]
  29745. ))
  29746. characterMakers.push(() => makeCharacter(
  29747. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29748. {
  29749. frontSlim: {
  29750. height: math.unit(7, "feet"),
  29751. name: "Front (Slim)",
  29752. image: {
  29753. source: "./media/characters/issilora/front-slim.svg",
  29754. extra: 529 / 449,
  29755. bottom: 53 / 582
  29756. }
  29757. },
  29758. sideSlim: {
  29759. height: math.unit(7, "feet"),
  29760. name: "Side (Slim)",
  29761. image: {
  29762. source: "./media/characters/issilora/side-slim.svg",
  29763. extra: 570 / 480,
  29764. bottom: 30 / 600
  29765. }
  29766. },
  29767. backSlim: {
  29768. height: math.unit(7, "feet"),
  29769. name: "Back (Slim)",
  29770. image: {
  29771. source: "./media/characters/issilora/back-slim.svg",
  29772. extra: 537 / 455,
  29773. bottom: 46 / 583
  29774. }
  29775. },
  29776. frontBuff: {
  29777. height: math.unit(7, "feet"),
  29778. name: "Front (Buff)",
  29779. image: {
  29780. source: "./media/characters/issilora/front-buff.svg",
  29781. extra: 2310 / 2035,
  29782. bottom: 335 / 2645
  29783. }
  29784. },
  29785. head: {
  29786. height: math.unit(1.94, "feet"),
  29787. name: "Head",
  29788. image: {
  29789. source: "./media/characters/issilora/head.svg"
  29790. }
  29791. },
  29792. },
  29793. [
  29794. {
  29795. name: "Minimum",
  29796. height: math.unit(7, "feet")
  29797. },
  29798. {
  29799. name: "Comfortable",
  29800. height: math.unit(17, "feet")
  29801. },
  29802. {
  29803. name: "Fun Size",
  29804. height: math.unit(47, "feet")
  29805. },
  29806. {
  29807. name: "Natural Macro",
  29808. height: math.unit(137, "feet"),
  29809. default: true
  29810. },
  29811. {
  29812. name: "Maximum Kaiju",
  29813. height: math.unit(397, "feet")
  29814. },
  29815. ]
  29816. ))
  29817. characterMakers.push(() => makeCharacter(
  29818. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29819. {
  29820. front: {
  29821. height: math.unit(50 + 9/12, "feet"),
  29822. weight: math.unit(32.8, "tons"),
  29823. name: "Front",
  29824. image: {
  29825. source: "./media/characters/irb'iiritaahn/front.svg",
  29826. extra: 1878/1826,
  29827. bottom: 326/2204
  29828. }
  29829. },
  29830. back: {
  29831. height: math.unit(50 + 9/12, "feet"),
  29832. weight: math.unit(32.8, "tons"),
  29833. name: "Back",
  29834. image: {
  29835. source: "./media/characters/irb'iiritaahn/back.svg",
  29836. extra: 2052/2018,
  29837. bottom: 152/2204
  29838. }
  29839. },
  29840. head: {
  29841. height: math.unit(12.86, "feet"),
  29842. name: "Head",
  29843. image: {
  29844. source: "./media/characters/irb'iiritaahn/head.svg"
  29845. }
  29846. },
  29847. maw: {
  29848. height: math.unit(9.66, "feet"),
  29849. name: "Maw",
  29850. image: {
  29851. source: "./media/characters/irb'iiritaahn/maw.svg"
  29852. }
  29853. },
  29854. frontDick: {
  29855. height: math.unit(8.78461, "feet"),
  29856. name: "Front Dick",
  29857. image: {
  29858. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29859. }
  29860. },
  29861. rearDick: {
  29862. height: math.unit(8.78461, "feet"),
  29863. name: "Rear Dick",
  29864. image: {
  29865. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29866. }
  29867. },
  29868. rearDickUnfolded: {
  29869. height: math.unit(8.78, "feet"),
  29870. name: "Rear Dick (Unfolded)",
  29871. image: {
  29872. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29873. }
  29874. },
  29875. wings: {
  29876. height: math.unit(43, "feet"),
  29877. name: "Wings",
  29878. image: {
  29879. source: "./media/characters/irb'iiritaahn/wings.svg"
  29880. }
  29881. },
  29882. },
  29883. [
  29884. {
  29885. name: "Macro",
  29886. height: math.unit(50 + 9/12, "feet"),
  29887. default: true
  29888. },
  29889. ]
  29890. ))
  29891. characterMakers.push(() => makeCharacter(
  29892. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29893. {
  29894. front: {
  29895. height: math.unit(205, "cm"),
  29896. weight: math.unit(102, "kg"),
  29897. name: "Front",
  29898. image: {
  29899. source: "./media/characters/irbisgreif/front.svg",
  29900. extra: 785/706,
  29901. bottom: 13/798
  29902. }
  29903. },
  29904. back: {
  29905. height: math.unit(205, "cm"),
  29906. weight: math.unit(102, "kg"),
  29907. name: "Back",
  29908. image: {
  29909. source: "./media/characters/irbisgreif/back.svg",
  29910. extra: 713/701,
  29911. bottom: 26/739
  29912. }
  29913. },
  29914. frontDressed: {
  29915. height: math.unit(216, "cm"),
  29916. weight: math.unit(102, "kg"),
  29917. name: "Front-dressed",
  29918. image: {
  29919. source: "./media/characters/irbisgreif/front-dressed.svg",
  29920. extra: 902/776,
  29921. bottom: 14/916
  29922. }
  29923. },
  29924. sideDressed: {
  29925. height: math.unit(195, "cm"),
  29926. weight: math.unit(102, "kg"),
  29927. name: "Side-dressed",
  29928. image: {
  29929. source: "./media/characters/irbisgreif/side-dressed.svg",
  29930. extra: 788/688,
  29931. bottom: 21/809
  29932. }
  29933. },
  29934. backDressed: {
  29935. height: math.unit(216, "cm"),
  29936. weight: math.unit(102, "kg"),
  29937. name: "Back-dressed",
  29938. image: {
  29939. source: "./media/characters/irbisgreif/back-dressed.svg",
  29940. extra: 901/783,
  29941. bottom: 10/911
  29942. }
  29943. },
  29944. dick: {
  29945. height: math.unit(0.49, "feet"),
  29946. name: "Dick",
  29947. image: {
  29948. source: "./media/characters/irbisgreif/dick.svg"
  29949. }
  29950. },
  29951. wingTop: {
  29952. height: math.unit(1.93 , "feet"),
  29953. name: "Wing-top",
  29954. image: {
  29955. source: "./media/characters/irbisgreif/wing-top.svg"
  29956. }
  29957. },
  29958. wingBottom: {
  29959. height: math.unit(1.93 , "feet"),
  29960. name: "Wing-bottom",
  29961. image: {
  29962. source: "./media/characters/irbisgreif/wing-bottom.svg"
  29963. }
  29964. },
  29965. },
  29966. [
  29967. {
  29968. name: "Normal",
  29969. height: math.unit(216, "cm"),
  29970. default: true
  29971. },
  29972. ]
  29973. ))
  29974. characterMakers.push(() => makeCharacter(
  29975. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  29976. {
  29977. front: {
  29978. height: math.unit(6, "feet"),
  29979. weight: math.unit(150, "lb"),
  29980. name: "Front",
  29981. image: {
  29982. source: "./media/characters/pride/front.svg",
  29983. extra: 1299/1230,
  29984. bottom: 18/1317
  29985. }
  29986. },
  29987. },
  29988. [
  29989. {
  29990. name: "Normal",
  29991. height: math.unit(7, "feet")
  29992. },
  29993. {
  29994. name: "Mini-macro",
  29995. height: math.unit(11, "feet")
  29996. },
  29997. {
  29998. name: "Macro",
  29999. height: math.unit(15, "meters"),
  30000. default: true
  30001. },
  30002. {
  30003. name: "Macro+",
  30004. height: math.unit(40, "meters")
  30005. },
  30006. ]
  30007. ))
  30008. characterMakers.push(() => makeCharacter(
  30009. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30010. {
  30011. front: {
  30012. height: math.unit(4 + 2 / 12, "feet"),
  30013. weight: math.unit(95, "lb"),
  30014. name: "Front",
  30015. image: {
  30016. source: "./media/characters/vaelophis-nyx/front.svg",
  30017. extra: 2532/2330,
  30018. bottom: 0/2532
  30019. }
  30020. },
  30021. back: {
  30022. height: math.unit(4 + 2 / 12, "feet"),
  30023. weight: math.unit(95, "lb"),
  30024. name: "Back",
  30025. image: {
  30026. source: "./media/characters/vaelophis-nyx/back.svg",
  30027. extra: 2484/2361,
  30028. bottom: 0/2484
  30029. }
  30030. },
  30031. feralSide: {
  30032. height: math.unit(2 + 1/12, "feet"),
  30033. weight: math.unit(20, "lb"),
  30034. name: "Feral (Side)",
  30035. image: {
  30036. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30037. extra: 1721/1581,
  30038. bottom: 70/1791
  30039. }
  30040. },
  30041. feralLazing: {
  30042. height: math.unit(1.08, "feet"),
  30043. weight: math.unit(20, "lb"),
  30044. name: "Feral (Lazing)",
  30045. image: {
  30046. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30047. extra: 822/822,
  30048. bottom: 248/1070
  30049. }
  30050. },
  30051. ear: {
  30052. height: math.unit(0.416, "feet"),
  30053. name: "Ear",
  30054. image: {
  30055. source: "./media/characters/vaelophis-nyx/ear.svg"
  30056. }
  30057. },
  30058. eye: {
  30059. height: math.unit(0.0748, "feet"),
  30060. name: "Eye",
  30061. image: {
  30062. source: "./media/characters/vaelophis-nyx/eye.svg"
  30063. }
  30064. },
  30065. mouth: {
  30066. height: math.unit(0.378, "feet"),
  30067. name: "Mouth",
  30068. image: {
  30069. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30070. }
  30071. },
  30072. spade: {
  30073. height: math.unit(0.55, "feet"),
  30074. name: "Spade",
  30075. image: {
  30076. source: "./media/characters/vaelophis-nyx/spade.svg"
  30077. }
  30078. },
  30079. },
  30080. [
  30081. {
  30082. name: "Normal",
  30083. height: math.unit(4 + 2/12, "feet"),
  30084. default: true
  30085. },
  30086. ]
  30087. ))
  30088. characterMakers.push(() => makeCharacter(
  30089. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30090. {
  30091. front: {
  30092. height: math.unit(7, "feet"),
  30093. weight: math.unit(231, "lb"),
  30094. name: "Front",
  30095. image: {
  30096. source: "./media/characters/flux/front.svg",
  30097. extra: 919/871,
  30098. bottom: 0/919
  30099. }
  30100. },
  30101. back: {
  30102. height: math.unit(7, "feet"),
  30103. weight: math.unit(231, "lb"),
  30104. name: "Back",
  30105. image: {
  30106. source: "./media/characters/flux/back.svg",
  30107. extra: 1040/992,
  30108. bottom: 0/1040
  30109. }
  30110. },
  30111. frontDressed: {
  30112. height: math.unit(7, "feet"),
  30113. weight: math.unit(231, "lb"),
  30114. name: "Front (Dressed)",
  30115. image: {
  30116. source: "./media/characters/flux/front-dressed.svg",
  30117. extra: 919/871,
  30118. bottom: 0/919
  30119. }
  30120. },
  30121. feralSide: {
  30122. height: math.unit(5, "feet"),
  30123. weight: math.unit(150, "lb"),
  30124. name: "Feral (Side)",
  30125. image: {
  30126. source: "./media/characters/flux/feral-side.svg",
  30127. extra: 598/528,
  30128. bottom: 28/626
  30129. }
  30130. },
  30131. head: {
  30132. height: math.unit(1.585, "feet"),
  30133. name: "Head",
  30134. image: {
  30135. source: "./media/characters/flux/head.svg"
  30136. }
  30137. },
  30138. headSide: {
  30139. height: math.unit(1.74, "feet"),
  30140. name: "Head (Side)",
  30141. image: {
  30142. source: "./media/characters/flux/head-side.svg"
  30143. }
  30144. },
  30145. headSideFire: {
  30146. height: math.unit(1.76, "feet"),
  30147. name: "Head (Side, Fire)",
  30148. image: {
  30149. source: "./media/characters/flux/head-side-fire.svg"
  30150. }
  30151. },
  30152. },
  30153. [
  30154. {
  30155. name: "Normal",
  30156. height: math.unit(7, "feet"),
  30157. default: true
  30158. },
  30159. ]
  30160. ))
  30161. characterMakers.push(() => makeCharacter(
  30162. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30163. {
  30164. front: {
  30165. height: math.unit(9, "feet"),
  30166. weight: math.unit(1012, "lb"),
  30167. name: "Front",
  30168. image: {
  30169. source: "./media/characters/ulfra-lupae/front.svg",
  30170. extra: 1083/1011,
  30171. bottom: 67/1150
  30172. }
  30173. },
  30174. },
  30175. [
  30176. {
  30177. name: "Micro",
  30178. height: math.unit(6, "inches")
  30179. },
  30180. {
  30181. name: "Socializing",
  30182. height: math.unit(6 + 5/12, "feet")
  30183. },
  30184. {
  30185. name: "Normal",
  30186. height: math.unit(9, "feet"),
  30187. default: true
  30188. },
  30189. {
  30190. name: "Macro",
  30191. height: math.unit(150, "feet")
  30192. },
  30193. ]
  30194. ))
  30195. characterMakers.push(() => makeCharacter(
  30196. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30197. {
  30198. front: {
  30199. height: math.unit(5 + 2/12, "feet"),
  30200. weight: math.unit(120, "lb"),
  30201. name: "Front",
  30202. image: {
  30203. source: "./media/characters/timber/front.svg",
  30204. extra: 2814/2705,
  30205. bottom: 181/2995
  30206. }
  30207. },
  30208. },
  30209. [
  30210. {
  30211. name: "Normal",
  30212. height: math.unit(5 + 2/12, "feet"),
  30213. default: true
  30214. },
  30215. ]
  30216. ))
  30217. characterMakers.push(() => makeCharacter(
  30218. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30219. {
  30220. front: {
  30221. height: math.unit(5 + 7/12, "feet"),
  30222. weight: math.unit(220, "lb"),
  30223. name: "Front",
  30224. image: {
  30225. source: "./media/characters/nicki/front.svg",
  30226. extra: 453/419,
  30227. bottom: 7/460
  30228. }
  30229. },
  30230. frontAlt: {
  30231. height: math.unit(5 + 7/12, "feet"),
  30232. weight: math.unit(220, "lb"),
  30233. name: "Front-alt",
  30234. image: {
  30235. source: "./media/characters/nicki/front-alt.svg",
  30236. extra: 435/411,
  30237. bottom: 12/447
  30238. }
  30239. },
  30240. back: {
  30241. height: math.unit(5 + 7/12, "feet"),
  30242. weight: math.unit(220, "lb"),
  30243. name: "Back",
  30244. image: {
  30245. source: "./media/characters/nicki/back.svg",
  30246. extra: 440/413,
  30247. bottom: 19/459
  30248. }
  30249. },
  30250. taur: {
  30251. height: math.unit(7 + 6/12, "feet"),
  30252. weight: math.unit(700, "lb"),
  30253. name: "Taur",
  30254. image: {
  30255. source: "./media/characters/nicki/taur.svg",
  30256. extra: 975/773,
  30257. bottom: 0/975
  30258. }
  30259. },
  30260. frontNsfw: {
  30261. height: math.unit(5 + 7/12, "feet"),
  30262. weight: math.unit(220, "lb"),
  30263. name: "Front (NSFW)",
  30264. image: {
  30265. source: "./media/characters/nicki/front-nsfw.svg",
  30266. extra: 453/419,
  30267. bottom: 7/460
  30268. }
  30269. },
  30270. frontNsfwAlt: {
  30271. height: math.unit(5 + 7/12, "feet"),
  30272. weight: math.unit(220, "lb"),
  30273. name: "Front (Alt, NSFW)",
  30274. image: {
  30275. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30276. extra: 435/411,
  30277. bottom: 12/447
  30278. }
  30279. },
  30280. backNsfw: {
  30281. height: math.unit(5 + 7/12, "feet"),
  30282. weight: math.unit(220, "lb"),
  30283. name: "Back (NSFW)",
  30284. image: {
  30285. source: "./media/characters/nicki/back-nsfw.svg",
  30286. extra: 440/413,
  30287. bottom: 19/459
  30288. }
  30289. },
  30290. head: {
  30291. height: math.unit(2.1, "feet"),
  30292. name: "Head",
  30293. image: {
  30294. source: "./media/characters/nicki/head.svg"
  30295. }
  30296. },
  30297. paw: {
  30298. height: math.unit(1.88, "feet"),
  30299. name: "Paw",
  30300. image: {
  30301. source: "./media/characters/nicki/paw.svg"
  30302. }
  30303. },
  30304. },
  30305. [
  30306. {
  30307. name: "Normal",
  30308. height: math.unit(5 + 7/12, "feet"),
  30309. default: true
  30310. },
  30311. ]
  30312. ))
  30313. characterMakers.push(() => makeCharacter(
  30314. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30315. {
  30316. front: {
  30317. height: math.unit(7 + 10/12, "feet"),
  30318. weight: math.unit(3.5, "tons"),
  30319. name: "Front",
  30320. image: {
  30321. source: "./media/characters/lee/front.svg",
  30322. extra: 1773/1615,
  30323. bottom: 86/1859
  30324. }
  30325. },
  30326. hand: {
  30327. height: math.unit(1.78, "feet"),
  30328. name: "Hand",
  30329. image: {
  30330. source: "./media/characters/lee/hand.svg"
  30331. }
  30332. },
  30333. maw: {
  30334. height: math.unit(1.18, "feet"),
  30335. name: "Maw",
  30336. image: {
  30337. source: "./media/characters/lee/maw.svg"
  30338. }
  30339. },
  30340. },
  30341. [
  30342. {
  30343. name: "Normal",
  30344. height: math.unit(7 + 10/12, "feet"),
  30345. default: true
  30346. },
  30347. ]
  30348. ))
  30349. characterMakers.push(() => makeCharacter(
  30350. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30351. {
  30352. front: {
  30353. height: math.unit(9, "feet"),
  30354. name: "Front",
  30355. image: {
  30356. source: "./media/characters/guti/front.svg",
  30357. extra: 4551/4355,
  30358. bottom: 123/4674
  30359. }
  30360. },
  30361. tongue: {
  30362. height: math.unit(1, "feet"),
  30363. name: "Tongue",
  30364. image: {
  30365. source: "./media/characters/guti/tongue.svg"
  30366. }
  30367. },
  30368. paw: {
  30369. height: math.unit(1.18, "feet"),
  30370. name: "Paw",
  30371. image: {
  30372. source: "./media/characters/guti/paw.svg"
  30373. }
  30374. },
  30375. },
  30376. [
  30377. {
  30378. name: "Normal",
  30379. height: math.unit(9, "feet"),
  30380. default: true
  30381. },
  30382. ]
  30383. ))
  30384. characterMakers.push(() => makeCharacter(
  30385. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30386. {
  30387. side: {
  30388. height: math.unit(5, "meters"),
  30389. name: "Side",
  30390. image: {
  30391. source: "./media/characters/vesper/side.svg",
  30392. extra: 1605/1518,
  30393. bottom: 0/1605
  30394. }
  30395. },
  30396. },
  30397. [
  30398. {
  30399. name: "Small",
  30400. height: math.unit(5, "meters")
  30401. },
  30402. {
  30403. name: "Sage",
  30404. height: math.unit(100, "meters"),
  30405. default: true
  30406. },
  30407. {
  30408. name: "Fun Size",
  30409. height: math.unit(600, "meters")
  30410. },
  30411. {
  30412. name: "Goddess",
  30413. height: math.unit(20000, "km")
  30414. },
  30415. {
  30416. name: "Maximum",
  30417. height: math.unit(5, "galaxies")
  30418. },
  30419. ]
  30420. ))
  30421. characterMakers.push(() => makeCharacter(
  30422. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30423. {
  30424. front: {
  30425. height: math.unit(6 + 3/12, "feet"),
  30426. weight: math.unit(190, "lb"),
  30427. name: "Front",
  30428. image: {
  30429. source: "./media/characters/gawain/front.svg",
  30430. extra: 2222/2139,
  30431. bottom: 90/2312
  30432. }
  30433. },
  30434. back: {
  30435. height: math.unit(6 + 3/12, "feet"),
  30436. weight: math.unit(190, "lb"),
  30437. name: "Back",
  30438. image: {
  30439. source: "./media/characters/gawain/back.svg",
  30440. extra: 2199/2111,
  30441. bottom: 73/2272
  30442. }
  30443. },
  30444. },
  30445. [
  30446. {
  30447. name: "Normal",
  30448. height: math.unit(6 + 3/12, "feet"),
  30449. default: true
  30450. },
  30451. ]
  30452. ))
  30453. characterMakers.push(() => makeCharacter(
  30454. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30455. {
  30456. side: {
  30457. height: math.unit(3.5, "meters"),
  30458. weight: math.unit(16000, "lb"),
  30459. name: "Side",
  30460. image: {
  30461. source: "./media/characters/dascalti/side.svg",
  30462. extra: 392/273,
  30463. bottom: 47/439
  30464. }
  30465. },
  30466. breath: {
  30467. height: math.unit(7.4, "feet"),
  30468. name: "Breath",
  30469. image: {
  30470. source: "./media/characters/dascalti/breath.svg"
  30471. }
  30472. },
  30473. fed: {
  30474. height: math.unit(3.6, "meters"),
  30475. weight: math.unit(16000, "lb"),
  30476. name: "Fed",
  30477. image: {
  30478. source: "./media/characters/dascalti/fed.svg",
  30479. extra: 1419/820,
  30480. bottom: 95/1514
  30481. }
  30482. },
  30483. },
  30484. [
  30485. {
  30486. name: "Normal",
  30487. height: math.unit(3.5, "meters"),
  30488. default: true
  30489. },
  30490. ]
  30491. ))
  30492. characterMakers.push(() => makeCharacter(
  30493. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30494. {
  30495. front: {
  30496. height: math.unit(3 + 5/12, "feet"),
  30497. name: "Front",
  30498. image: {
  30499. source: "./media/characters/mauve/front.svg",
  30500. extra: 1126/1033,
  30501. bottom: 65/1191
  30502. }
  30503. },
  30504. side: {
  30505. height: math.unit(3 + 5/12, "feet"),
  30506. name: "Side",
  30507. image: {
  30508. source: "./media/characters/mauve/side.svg",
  30509. extra: 1089/1001,
  30510. bottom: 29/1118
  30511. }
  30512. },
  30513. back: {
  30514. height: math.unit(3 + 5/12, "feet"),
  30515. name: "Back",
  30516. image: {
  30517. source: "./media/characters/mauve/back.svg",
  30518. extra: 1173/1053,
  30519. bottom: 109/1282
  30520. }
  30521. },
  30522. },
  30523. [
  30524. {
  30525. name: "Normal",
  30526. height: math.unit(3 + 5/12, "feet"),
  30527. default: true
  30528. },
  30529. ]
  30530. ))
  30531. characterMakers.push(() => makeCharacter(
  30532. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30533. {
  30534. front: {
  30535. height: math.unit(6 + 3/12, "feet"),
  30536. weight: math.unit(430, "lb"),
  30537. name: "Front",
  30538. image: {
  30539. source: "./media/characters/carlos/front.svg",
  30540. extra: 1964/1913,
  30541. bottom: 70/2034
  30542. }
  30543. },
  30544. },
  30545. [
  30546. {
  30547. name: "Normal",
  30548. height: math.unit(6 + 3/12, "feet"),
  30549. default: true
  30550. },
  30551. ]
  30552. ))
  30553. characterMakers.push(() => makeCharacter(
  30554. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30555. {
  30556. back: {
  30557. height: math.unit(5 + 10/12, "feet"),
  30558. weight: math.unit(200, "lb"),
  30559. name: "Back",
  30560. image: {
  30561. source: "./media/characters/jax/back.svg",
  30562. extra: 764/739,
  30563. bottom: 25/789
  30564. }
  30565. },
  30566. },
  30567. [
  30568. {
  30569. name: "Normal",
  30570. height: math.unit(5 + 10/12, "feet"),
  30571. default: true
  30572. },
  30573. ]
  30574. ))
  30575. characterMakers.push(() => makeCharacter(
  30576. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30577. {
  30578. front: {
  30579. height: math.unit(8, "feet"),
  30580. weight: math.unit(250, "lb"),
  30581. name: "Front",
  30582. image: {
  30583. source: "./media/characters/eikthynir/front.svg",
  30584. extra: 1332/1166,
  30585. bottom: 82/1414
  30586. }
  30587. },
  30588. back: {
  30589. height: math.unit(8, "feet"),
  30590. weight: math.unit(250, "lb"),
  30591. name: "Back",
  30592. image: {
  30593. source: "./media/characters/eikthynir/back.svg",
  30594. extra: 1342/1190,
  30595. bottom: 19/1361
  30596. }
  30597. },
  30598. dick: {
  30599. height: math.unit(2.35, "feet"),
  30600. name: "Dick",
  30601. image: {
  30602. source: "./media/characters/eikthynir/dick.svg"
  30603. }
  30604. },
  30605. },
  30606. [
  30607. {
  30608. name: "Normal",
  30609. height: math.unit(8, "feet"),
  30610. default: true
  30611. },
  30612. ]
  30613. ))
  30614. characterMakers.push(() => makeCharacter(
  30615. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30616. {
  30617. front: {
  30618. height: math.unit(99, "meters"),
  30619. weight: math.unit(13000, "tons"),
  30620. name: "Front",
  30621. image: {
  30622. source: "./media/characters/zlmos/front.svg",
  30623. extra: 2202/1992,
  30624. bottom: 315/2517
  30625. }
  30626. },
  30627. },
  30628. [
  30629. {
  30630. name: "Macro",
  30631. height: math.unit(99, "meters"),
  30632. default: true
  30633. },
  30634. ]
  30635. ))
  30636. characterMakers.push(() => makeCharacter(
  30637. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30638. {
  30639. front: {
  30640. height: math.unit(6 + 5/12, "feet"),
  30641. name: "Front",
  30642. image: {
  30643. source: "./media/characters/purri/front.svg",
  30644. extra: 1698/1610,
  30645. bottom: 32/1730
  30646. }
  30647. },
  30648. frontAlt: {
  30649. height: math.unit(6 + 5/12, "feet"),
  30650. name: "Front (Alt)",
  30651. image: {
  30652. source: "./media/characters/purri/front-alt.svg",
  30653. extra: 450/420,
  30654. bottom: 26/476
  30655. }
  30656. },
  30657. boots: {
  30658. height: math.unit(5.5, "feet"),
  30659. name: "Boots",
  30660. image: {
  30661. source: "./media/characters/purri/boots.svg",
  30662. extra: 905/853,
  30663. bottom: 18/923
  30664. }
  30665. },
  30666. lying: {
  30667. height: math.unit(2, "feet"),
  30668. name: "Lying",
  30669. image: {
  30670. source: "./media/characters/purri/lying.svg",
  30671. extra: 940/843,
  30672. bottom: 146/1086
  30673. }
  30674. },
  30675. devious: {
  30676. height: math.unit(1.77, "feet"),
  30677. name: "Devious",
  30678. image: {
  30679. source: "./media/characters/purri/devious.svg",
  30680. extra: 1440/1155,
  30681. bottom: 147/1587
  30682. }
  30683. },
  30684. bean: {
  30685. height: math.unit(1.94, "feet"),
  30686. name: "Bean",
  30687. image: {
  30688. source: "./media/characters/purri/bean.svg"
  30689. }
  30690. },
  30691. },
  30692. [
  30693. {
  30694. name: "Micro",
  30695. height: math.unit(1, "mm")
  30696. },
  30697. {
  30698. name: "Normal",
  30699. height: math.unit(6 + 5/12, "feet"),
  30700. default: true
  30701. },
  30702. {
  30703. name: "Macro :3c",
  30704. height: math.unit(2, "miles")
  30705. },
  30706. ]
  30707. ))
  30708. characterMakers.push(() => makeCharacter(
  30709. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30710. {
  30711. front: {
  30712. height: math.unit(6 + 2/12, "feet"),
  30713. weight: math.unit(250, "lb"),
  30714. name: "Front",
  30715. image: {
  30716. source: "./media/characters/moonlight/front.svg",
  30717. extra: 1044/908,
  30718. bottom: 56/1100
  30719. }
  30720. },
  30721. paw: {
  30722. height: math.unit(1, "feet"),
  30723. name: "Paw",
  30724. image: {
  30725. source: "./media/characters/moonlight/paw.svg"
  30726. }
  30727. },
  30728. paws: {
  30729. height: math.unit(0.98, "feet"),
  30730. name: "Paws",
  30731. image: {
  30732. source: "./media/characters/moonlight/paws.svg",
  30733. extra: 939/939,
  30734. bottom: 50/989
  30735. }
  30736. },
  30737. mouth: {
  30738. height: math.unit(0.48, "feet"),
  30739. name: "Mouth",
  30740. image: {
  30741. source: "./media/characters/moonlight/mouth.svg"
  30742. }
  30743. },
  30744. dick: {
  30745. height: math.unit(1.46, "feet"),
  30746. name: "Dick",
  30747. image: {
  30748. source: "./media/characters/moonlight/dick.svg"
  30749. }
  30750. },
  30751. },
  30752. [
  30753. {
  30754. name: "Normal",
  30755. height: math.unit(6 + 2/12, "feet"),
  30756. default: true
  30757. },
  30758. {
  30759. name: "Macro",
  30760. height: math.unit(300, "feet")
  30761. },
  30762. {
  30763. name: "Macro+",
  30764. height: math.unit(1, "mile")
  30765. },
  30766. {
  30767. name: "Mt. Moon",
  30768. height: math.unit(5, "miles")
  30769. },
  30770. {
  30771. name: "Megamacro",
  30772. height: math.unit(15, "miles")
  30773. },
  30774. ]
  30775. ))
  30776. characterMakers.push(() => makeCharacter(
  30777. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30778. {
  30779. back: {
  30780. height: math.unit(6, "feet"),
  30781. weight: math.unit(150, "lb"),
  30782. name: "Back",
  30783. image: {
  30784. source: "./media/characters/sylen/back.svg",
  30785. extra: 1335/1273,
  30786. bottom: 107/1442
  30787. }
  30788. },
  30789. },
  30790. [
  30791. {
  30792. name: "Normal",
  30793. height: math.unit(5 + 5/12, "feet")
  30794. },
  30795. {
  30796. name: "Megamacro",
  30797. height: math.unit(3, "miles"),
  30798. default: true
  30799. },
  30800. ]
  30801. ))
  30802. characterMakers.push(() => makeCharacter(
  30803. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30804. {
  30805. front: {
  30806. height: math.unit(6, "feet"),
  30807. weight: math.unit(190, "lb"),
  30808. name: "Front",
  30809. image: {
  30810. source: "./media/characters/huttser/front.svg",
  30811. extra: 1152/1058,
  30812. bottom: 23/1175
  30813. }
  30814. },
  30815. side: {
  30816. height: math.unit(6, "feet"),
  30817. weight: math.unit(190, "lb"),
  30818. name: "Side",
  30819. image: {
  30820. source: "./media/characters/huttser/side.svg",
  30821. extra: 1174/1065,
  30822. bottom: 18/1192
  30823. }
  30824. },
  30825. back: {
  30826. height: math.unit(6, "feet"),
  30827. weight: math.unit(190, "lb"),
  30828. name: "Back",
  30829. image: {
  30830. source: "./media/characters/huttser/back.svg",
  30831. extra: 1158/1056,
  30832. bottom: 12/1170
  30833. }
  30834. },
  30835. },
  30836. [
  30837. ]
  30838. ))
  30839. characterMakers.push(() => makeCharacter(
  30840. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30841. {
  30842. side: {
  30843. height: math.unit(12 + 9/12, "feet"),
  30844. weight: math.unit(15000, "lb"),
  30845. name: "Side",
  30846. image: {
  30847. source: "./media/characters/faan/side.svg",
  30848. extra: 2747/2697,
  30849. bottom: 0/2747
  30850. }
  30851. },
  30852. front: {
  30853. height: math.unit(12 + 9/12, "feet"),
  30854. weight: math.unit(15000, "lb"),
  30855. name: "Front",
  30856. image: {
  30857. source: "./media/characters/faan/front.svg",
  30858. extra: 607/571,
  30859. bottom: 24/631
  30860. }
  30861. },
  30862. head: {
  30863. height: math.unit(2.85, "feet"),
  30864. name: "Head",
  30865. image: {
  30866. source: "./media/characters/faan/head.svg"
  30867. }
  30868. },
  30869. headAlt: {
  30870. height: math.unit(3.13, "feet"),
  30871. name: "Head-alt",
  30872. image: {
  30873. source: "./media/characters/faan/head-alt.svg"
  30874. }
  30875. },
  30876. },
  30877. [
  30878. {
  30879. name: "Normal",
  30880. height: math.unit(12 + 9/12, "feet"),
  30881. default: true
  30882. },
  30883. ]
  30884. ))
  30885. characterMakers.push(() => makeCharacter(
  30886. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30887. {
  30888. front: {
  30889. height: math.unit(6, "feet"),
  30890. weight: math.unit(300, "lb"),
  30891. name: "Front",
  30892. image: {
  30893. source: "./media/characters/tanio/front.svg",
  30894. extra: 711/673,
  30895. bottom: 25/736
  30896. }
  30897. },
  30898. },
  30899. [
  30900. {
  30901. name: "Normal",
  30902. height: math.unit(6, "feet"),
  30903. default: true
  30904. },
  30905. ]
  30906. ))
  30907. characterMakers.push(() => makeCharacter(
  30908. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  30909. {
  30910. front: {
  30911. height: math.unit(3, "inches"),
  30912. name: "Front",
  30913. image: {
  30914. source: "./media/characters/noboru/front.svg",
  30915. extra: 1039/932,
  30916. bottom: 18/1057
  30917. }
  30918. },
  30919. },
  30920. [
  30921. {
  30922. name: "Micro",
  30923. height: math.unit(3, "inches"),
  30924. default: true
  30925. },
  30926. ]
  30927. ))
  30928. characterMakers.push(() => makeCharacter(
  30929. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  30930. {
  30931. front: {
  30932. height: math.unit(1.85, "meters"),
  30933. weight: math.unit(80, "kg"),
  30934. name: "Front",
  30935. image: {
  30936. source: "./media/characters/daniel-barrett/front.svg",
  30937. extra: 355/337,
  30938. bottom: 9/364
  30939. }
  30940. },
  30941. },
  30942. [
  30943. {
  30944. name: "Pico",
  30945. height: math.unit(0.0433, "mm")
  30946. },
  30947. {
  30948. name: "Nano",
  30949. height: math.unit(1.5, "mm")
  30950. },
  30951. {
  30952. name: "Micro",
  30953. height: math.unit(5.3, "cm"),
  30954. default: true
  30955. },
  30956. {
  30957. name: "Normal",
  30958. height: math.unit(1.85, "meters")
  30959. },
  30960. {
  30961. name: "Macro",
  30962. height: math.unit(64.7, "meters")
  30963. },
  30964. {
  30965. name: "Megamacro",
  30966. height: math.unit(2.26, "km")
  30967. },
  30968. {
  30969. name: "Gigamacro",
  30970. height: math.unit(79, "km")
  30971. },
  30972. {
  30973. name: "Teramacro",
  30974. height: math.unit(2765, "km")
  30975. },
  30976. {
  30977. name: "Petamacro",
  30978. height: math.unit(96678, "km")
  30979. },
  30980. ]
  30981. ))
  30982. characterMakers.push(() => makeCharacter(
  30983. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  30984. {
  30985. front: {
  30986. height: math.unit(30, "meters"),
  30987. weight: math.unit(400, "tons"),
  30988. name: "Front",
  30989. image: {
  30990. source: "./media/characters/zeel/front.svg",
  30991. extra: 2599/2599,
  30992. bottom: 226/2825
  30993. }
  30994. },
  30995. },
  30996. [
  30997. {
  30998. name: "Macro",
  30999. height: math.unit(30, "meters"),
  31000. default: true
  31001. },
  31002. ]
  31003. ))
  31004. characterMakers.push(() => makeCharacter(
  31005. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31006. {
  31007. front: {
  31008. height: math.unit(6 + 7/12, "feet"),
  31009. weight: math.unit(210, "lb"),
  31010. name: "Front",
  31011. image: {
  31012. source: "./media/characters/tarn/front.svg",
  31013. extra: 3517/3220,
  31014. bottom: 91/3608
  31015. }
  31016. },
  31017. back: {
  31018. height: math.unit(6 + 7/12, "feet"),
  31019. weight: math.unit(210, "lb"),
  31020. name: "Back",
  31021. image: {
  31022. source: "./media/characters/tarn/back.svg",
  31023. extra: 3566/3241,
  31024. bottom: 34/3600
  31025. }
  31026. },
  31027. dick: {
  31028. height: math.unit(1.65, "feet"),
  31029. name: "Dick",
  31030. image: {
  31031. source: "./media/characters/tarn/dick.svg"
  31032. }
  31033. },
  31034. paw: {
  31035. height: math.unit(1.80, "feet"),
  31036. name: "Paw",
  31037. image: {
  31038. source: "./media/characters/tarn/paw.svg"
  31039. }
  31040. },
  31041. tongue: {
  31042. height: math.unit(0.97, "feet"),
  31043. name: "Tongue",
  31044. image: {
  31045. source: "./media/characters/tarn/tongue.svg"
  31046. }
  31047. },
  31048. },
  31049. [
  31050. {
  31051. name: "Micro",
  31052. height: math.unit(4, "inches")
  31053. },
  31054. {
  31055. name: "Normal",
  31056. height: math.unit(6 + 7/12, "feet"),
  31057. default: true
  31058. },
  31059. {
  31060. name: "Macro",
  31061. height: math.unit(300, "feet")
  31062. },
  31063. ]
  31064. ))
  31065. characterMakers.push(() => makeCharacter(
  31066. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31067. {
  31068. front: {
  31069. height: math.unit(5 + 7/12, "feet"),
  31070. weight: math.unit(80, "kg"),
  31071. name: "Front",
  31072. image: {
  31073. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31074. extra: 3023/2865,
  31075. bottom: 33/3056
  31076. }
  31077. },
  31078. back: {
  31079. height: math.unit(5 + 7/12, "feet"),
  31080. weight: math.unit(80, "kg"),
  31081. name: "Back",
  31082. image: {
  31083. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31084. extra: 3020/2886,
  31085. bottom: 30/3050
  31086. }
  31087. },
  31088. dick: {
  31089. height: math.unit(0.98, "feet"),
  31090. name: "Dick",
  31091. image: {
  31092. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31093. }
  31094. },
  31095. anatomy: {
  31096. height: math.unit(2.86, "feet"),
  31097. name: "Anatomy",
  31098. image: {
  31099. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31100. }
  31101. },
  31102. },
  31103. [
  31104. {
  31105. name: "Really Small",
  31106. height: math.unit(2, "inches")
  31107. },
  31108. {
  31109. name: "Micro",
  31110. height: math.unit(5.583, "inches")
  31111. },
  31112. {
  31113. name: "Normal",
  31114. height: math.unit(5 + 7/12, "feet"),
  31115. default: true
  31116. },
  31117. {
  31118. name: "Macro",
  31119. height: math.unit(67, "feet")
  31120. },
  31121. {
  31122. name: "Megamacro",
  31123. height: math.unit(134, "feet")
  31124. },
  31125. ]
  31126. ))
  31127. characterMakers.push(() => makeCharacter(
  31128. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31129. {
  31130. front: {
  31131. height: math.unit(9, "feet"),
  31132. weight: math.unit(120, "lb"),
  31133. name: "Front",
  31134. image: {
  31135. source: "./media/characters/sally/front.svg",
  31136. extra: 1506/1349,
  31137. bottom: 66/1572
  31138. }
  31139. },
  31140. },
  31141. [
  31142. {
  31143. name: "Normal",
  31144. height: math.unit(9, "feet"),
  31145. default: true
  31146. },
  31147. ]
  31148. ))
  31149. characterMakers.push(() => makeCharacter(
  31150. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31151. {
  31152. front: {
  31153. height: math.unit(8, "feet"),
  31154. weight: math.unit(900, "lb"),
  31155. name: "Front",
  31156. image: {
  31157. source: "./media/characters/owen/front.svg",
  31158. extra: 1761/1657,
  31159. bottom: 74/1835
  31160. }
  31161. },
  31162. side: {
  31163. height: math.unit(8, "feet"),
  31164. weight: math.unit(900, "lb"),
  31165. name: "Side",
  31166. image: {
  31167. source: "./media/characters/owen/side.svg",
  31168. extra: 1797/1734,
  31169. bottom: 30/1827
  31170. }
  31171. },
  31172. back: {
  31173. height: math.unit(8, "feet"),
  31174. weight: math.unit(900, "lb"),
  31175. name: "Back",
  31176. image: {
  31177. source: "./media/characters/owen/back.svg",
  31178. extra: 1796/1706,
  31179. bottom: 59/1855
  31180. }
  31181. },
  31182. maw: {
  31183. height: math.unit(1.76, "feet"),
  31184. name: "Maw",
  31185. image: {
  31186. source: "./media/characters/owen/maw.svg"
  31187. }
  31188. },
  31189. },
  31190. [
  31191. {
  31192. name: "Normal",
  31193. height: math.unit(8, "feet"),
  31194. default: true
  31195. },
  31196. ]
  31197. ))
  31198. characterMakers.push(() => makeCharacter(
  31199. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31200. {
  31201. front: {
  31202. height: math.unit(4, "feet"),
  31203. weight: math.unit(400, "lb"),
  31204. name: "Front",
  31205. image: {
  31206. source: "./media/characters/ryth/front.svg",
  31207. extra: 876/691,
  31208. bottom: 25/901
  31209. }
  31210. },
  31211. },
  31212. [
  31213. {
  31214. name: "Normal",
  31215. height: math.unit(4, "feet"),
  31216. default: true
  31217. },
  31218. ]
  31219. ))
  31220. characterMakers.push(() => makeCharacter(
  31221. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31222. {
  31223. front: {
  31224. height: math.unit(7, "feet"),
  31225. weight: math.unit(180, "lb"),
  31226. name: "Front",
  31227. image: {
  31228. source: "./media/characters/necrolance/front.svg",
  31229. extra: 1062/947,
  31230. bottom: 41/1103
  31231. }
  31232. },
  31233. back: {
  31234. height: math.unit(7, "feet"),
  31235. weight: math.unit(180, "lb"),
  31236. name: "Back",
  31237. image: {
  31238. source: "./media/characters/necrolance/back.svg",
  31239. extra: 1045/984,
  31240. bottom: 14/1059
  31241. }
  31242. },
  31243. wing: {
  31244. height: math.unit(2.67, "feet"),
  31245. name: "Wing",
  31246. image: {
  31247. source: "./media/characters/necrolance/wing.svg"
  31248. }
  31249. },
  31250. },
  31251. [
  31252. {
  31253. name: "Normal",
  31254. height: math.unit(7, "feet"),
  31255. default: true
  31256. },
  31257. ]
  31258. ))
  31259. characterMakers.push(() => makeCharacter(
  31260. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31261. {
  31262. front: {
  31263. height: math.unit(76, "meters"),
  31264. weight: math.unit(30000, "tons"),
  31265. name: "Front",
  31266. image: {
  31267. source: "./media/characters/tyler/front.svg",
  31268. extra: 1640/1640,
  31269. bottom: 114/1754
  31270. }
  31271. },
  31272. },
  31273. [
  31274. {
  31275. name: "Macro",
  31276. height: math.unit(76, "meters"),
  31277. default: true
  31278. },
  31279. ]
  31280. ))
  31281. characterMakers.push(() => makeCharacter(
  31282. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31283. {
  31284. front: {
  31285. height: math.unit(4 + 11/12, "feet"),
  31286. weight: math.unit(132, "lb"),
  31287. name: "Front",
  31288. image: {
  31289. source: "./media/characters/icey/front.svg",
  31290. extra: 2750/2550,
  31291. bottom: 33/2783
  31292. }
  31293. },
  31294. back: {
  31295. height: math.unit(4 + 11/12, "feet"),
  31296. weight: math.unit(132, "lb"),
  31297. name: "Back",
  31298. image: {
  31299. source: "./media/characters/icey/back.svg",
  31300. extra: 2624/2481,
  31301. bottom: 35/2659
  31302. }
  31303. },
  31304. },
  31305. [
  31306. {
  31307. name: "Normal",
  31308. height: math.unit(4 + 11/12, "feet"),
  31309. default: true
  31310. },
  31311. ]
  31312. ))
  31313. characterMakers.push(() => makeCharacter(
  31314. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31315. {
  31316. front: {
  31317. height: math.unit(100, "feet"),
  31318. weight: math.unit(0, "lb"),
  31319. name: "Front",
  31320. image: {
  31321. source: "./media/characters/smile/front.svg",
  31322. extra: 2983/2912,
  31323. bottom: 162/3145
  31324. }
  31325. },
  31326. back: {
  31327. height: math.unit(100, "feet"),
  31328. weight: math.unit(0, "lb"),
  31329. name: "Back",
  31330. image: {
  31331. source: "./media/characters/smile/back.svg",
  31332. extra: 3143/3031,
  31333. bottom: 91/3234
  31334. }
  31335. },
  31336. head: {
  31337. height: math.unit(26.3, "feet"),
  31338. weight: math.unit(0, "lb"),
  31339. name: "Head",
  31340. image: {
  31341. source: "./media/characters/smile/head.svg"
  31342. }
  31343. },
  31344. collar: {
  31345. height: math.unit(5.3, "feet"),
  31346. weight: math.unit(0, "lb"),
  31347. name: "Collar",
  31348. image: {
  31349. source: "./media/characters/smile/collar.svg"
  31350. }
  31351. },
  31352. },
  31353. [
  31354. {
  31355. name: "Macro",
  31356. height: math.unit(100, "feet"),
  31357. default: true
  31358. },
  31359. ]
  31360. ))
  31361. characterMakers.push(() => makeCharacter(
  31362. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31363. {
  31364. dragon: {
  31365. height: math.unit(26, "feet"),
  31366. weight: math.unit(36, "tons"),
  31367. name: "Dragon",
  31368. image: {
  31369. source: "./media/characters/arimphae/dragon.svg",
  31370. extra: 1574/983,
  31371. bottom: 357/1931
  31372. }
  31373. },
  31374. drake: {
  31375. height: math.unit(9, "feet"),
  31376. weight: math.unit(1.5, "tons"),
  31377. name: "Drake",
  31378. image: {
  31379. source: "./media/characters/arimphae/drake.svg",
  31380. extra: 1120/925,
  31381. bottom: 435/1555
  31382. }
  31383. },
  31384. },
  31385. [
  31386. {
  31387. name: "Small",
  31388. height: math.unit(26*5/9, "feet")
  31389. },
  31390. {
  31391. name: "Normal",
  31392. height: math.unit(26, "feet"),
  31393. default: true
  31394. },
  31395. ]
  31396. ))
  31397. characterMakers.push(() => makeCharacter(
  31398. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31399. {
  31400. front: {
  31401. height: math.unit(8 + 9/12, "feet"),
  31402. name: "Front",
  31403. image: {
  31404. source: "./media/characters/xander/front.svg",
  31405. extra: 848/673,
  31406. bottom: 62/910
  31407. }
  31408. },
  31409. },
  31410. [
  31411. {
  31412. name: "Normal",
  31413. height: math.unit(8 + 9/12, "feet"),
  31414. default: true
  31415. },
  31416. {
  31417. name: "Gaze Grabber",
  31418. height: math.unit(13 + 8/12, "feet")
  31419. },
  31420. {
  31421. name: "Jaw Dropper",
  31422. height: math.unit(27, "feet")
  31423. },
  31424. {
  31425. name: "Show Stopper",
  31426. height: math.unit(136, "feet")
  31427. },
  31428. {
  31429. name: "Superstar",
  31430. height: math.unit(1.9e6, "miles")
  31431. },
  31432. ]
  31433. ))
  31434. //characters
  31435. function makeCharacters() {
  31436. const results = [];
  31437. characterMakers.forEach(character => {
  31438. results.push(character());
  31439. });
  31440. return results;
  31441. }