less copy protection, more size visualization
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

32245 řádky
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: 3928 / 3681
  5752. }
  5753. },
  5754. },
  5755. [
  5756. {
  5757. name: "Micro",
  5758. height: math.unit(2, "inches")
  5759. },
  5760. {
  5761. name: "Normal",
  5762. height: math.unit(5 + 8 / 12, "feet")
  5763. },
  5764. {
  5765. name: "Macro",
  5766. height: math.unit(250, "feet"),
  5767. default: true
  5768. },
  5769. {
  5770. name: "Megamacro",
  5771. height: math.unit(7, "miles")
  5772. },
  5773. ]
  5774. ))
  5775. characterMakers.push(() => makeCharacter(
  5776. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5777. {
  5778. front: {
  5779. height: math.unit(6, "feet"),
  5780. weight: math.unit(220, "lb"),
  5781. name: "Front",
  5782. image: {
  5783. source: "./media/characters/gemini/front.svg"
  5784. }
  5785. },
  5786. back: {
  5787. height: math.unit(6, "feet"),
  5788. weight: math.unit(220, "lb"),
  5789. name: "Back",
  5790. image: {
  5791. source: "./media/characters/gemini/back.svg"
  5792. }
  5793. },
  5794. kneeling: {
  5795. height: math.unit(6 / 1.5, "feet"),
  5796. weight: math.unit(220, "lb"),
  5797. name: "Kneeling",
  5798. image: {
  5799. source: "./media/characters/gemini/kneeling.svg",
  5800. bottom: 0.02
  5801. }
  5802. },
  5803. },
  5804. [
  5805. {
  5806. name: "Macro",
  5807. height: math.unit(300, "meters"),
  5808. default: true
  5809. },
  5810. {
  5811. name: "Megamacro",
  5812. height: math.unit(6900, "meters")
  5813. },
  5814. ]
  5815. ))
  5816. characterMakers.push(() => makeCharacter(
  5817. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5818. {
  5819. anthro: {
  5820. height: math.unit(2.35, "meters"),
  5821. weight: math.unit(73, "kg"),
  5822. name: "Anthro",
  5823. image: {
  5824. source: "./media/characters/alicia/anthro.svg",
  5825. extra: 2571 / 2385,
  5826. bottom: 75 / 2648
  5827. }
  5828. },
  5829. paw: {
  5830. height: math.unit(1.32, "feet"),
  5831. name: "Paw",
  5832. image: {
  5833. source: "./media/characters/alicia/paw.svg"
  5834. }
  5835. },
  5836. feral: {
  5837. height: math.unit(1.69, "meters"),
  5838. weight: math.unit(73, "kg"),
  5839. name: "Feral",
  5840. image: {
  5841. source: "./media/characters/alicia/feral.svg",
  5842. extra: 2123 / 1715,
  5843. bottom: 222 / 2349
  5844. }
  5845. },
  5846. },
  5847. [
  5848. {
  5849. name: "Normal",
  5850. height: math.unit(2.35, "meters")
  5851. },
  5852. {
  5853. name: "Macro",
  5854. height: math.unit(60, "meters"),
  5855. default: true
  5856. },
  5857. {
  5858. name: "Megamacro",
  5859. height: math.unit(10000, "kilometers")
  5860. },
  5861. ]
  5862. ))
  5863. characterMakers.push(() => makeCharacter(
  5864. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5865. {
  5866. front: {
  5867. height: math.unit(7, "feet"),
  5868. weight: math.unit(250, "lbs"),
  5869. name: "Front",
  5870. image: {
  5871. source: "./media/characters/archy/front.svg"
  5872. }
  5873. }
  5874. },
  5875. [
  5876. {
  5877. name: "Micro",
  5878. height: math.unit(1, "inch")
  5879. },
  5880. {
  5881. name: "Shorty",
  5882. height: math.unit(5, "feet")
  5883. },
  5884. {
  5885. name: "Normal",
  5886. height: math.unit(7, "feet")
  5887. },
  5888. {
  5889. name: "Macro",
  5890. height: math.unit(600, "meters"),
  5891. default: true
  5892. },
  5893. {
  5894. name: "Megamacro",
  5895. height: math.unit(1, "mile")
  5896. },
  5897. ]
  5898. ))
  5899. characterMakers.push(() => makeCharacter(
  5900. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5901. {
  5902. front: {
  5903. height: math.unit(1.65, "meters"),
  5904. weight: math.unit(74, "kg"),
  5905. name: "Front",
  5906. image: {
  5907. source: "./media/characters/berri/front.svg",
  5908. extra: 857 / 837,
  5909. bottom: 18 / 877
  5910. }
  5911. },
  5912. bum: {
  5913. height: math.unit(1.46, "feet"),
  5914. name: "Bum",
  5915. image: {
  5916. source: "./media/characters/berri/bum.svg"
  5917. }
  5918. },
  5919. mouth: {
  5920. height: math.unit(0.44, "feet"),
  5921. name: "Mouth",
  5922. image: {
  5923. source: "./media/characters/berri/mouth.svg"
  5924. }
  5925. },
  5926. paw: {
  5927. height: math.unit(0.826, "feet"),
  5928. name: "Paw",
  5929. image: {
  5930. source: "./media/characters/berri/paw.svg"
  5931. }
  5932. },
  5933. },
  5934. [
  5935. {
  5936. name: "Normal",
  5937. height: math.unit(1.65, "meters")
  5938. },
  5939. {
  5940. name: "Macro",
  5941. height: math.unit(60, "m"),
  5942. default: true
  5943. },
  5944. {
  5945. name: "Megamacro",
  5946. height: math.unit(9.213, "km")
  5947. },
  5948. {
  5949. name: "Planet Eater",
  5950. height: math.unit(489, "megameters")
  5951. },
  5952. {
  5953. name: "Teramacro",
  5954. height: math.unit(2471635000000, "meters")
  5955. },
  5956. {
  5957. name: "Examacro",
  5958. height: math.unit(8.0624e+26, "meters")
  5959. }
  5960. ]
  5961. ))
  5962. characterMakers.push(() => makeCharacter(
  5963. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5964. {
  5965. front: {
  5966. height: math.unit(1.72, "meters"),
  5967. weight: math.unit(68, "kg"),
  5968. name: "Front",
  5969. image: {
  5970. source: "./media/characters/lexi/front.svg"
  5971. }
  5972. }
  5973. },
  5974. [
  5975. {
  5976. name: "Very Smol",
  5977. height: math.unit(10, "mm")
  5978. },
  5979. {
  5980. name: "Micro",
  5981. height: math.unit(6.8, "cm"),
  5982. default: true
  5983. },
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(1.72, "m")
  5987. }
  5988. ]
  5989. ))
  5990. characterMakers.push(() => makeCharacter(
  5991. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5992. {
  5993. front: {
  5994. height: math.unit(1.69, "meters"),
  5995. weight: math.unit(68, "kg"),
  5996. name: "Front",
  5997. image: {
  5998. source: "./media/characters/martin/front.svg",
  5999. extra: 596 / 581
  6000. }
  6001. }
  6002. },
  6003. [
  6004. {
  6005. name: "Micro",
  6006. height: math.unit(6.85, "cm"),
  6007. default: true
  6008. },
  6009. {
  6010. name: "Normal",
  6011. height: math.unit(1.69, "m")
  6012. }
  6013. ]
  6014. ))
  6015. characterMakers.push(() => makeCharacter(
  6016. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6017. {
  6018. front: {
  6019. height: math.unit(1.69, "meters"),
  6020. weight: math.unit(68, "kg"),
  6021. name: "Front",
  6022. image: {
  6023. source: "./media/characters/juno/front.svg"
  6024. }
  6025. }
  6026. },
  6027. [
  6028. {
  6029. name: "Micro",
  6030. height: math.unit(7, "cm")
  6031. },
  6032. {
  6033. name: "Normal",
  6034. height: math.unit(1.89, "m")
  6035. },
  6036. {
  6037. name: "Macro",
  6038. height: math.unit(353, "meters"),
  6039. default: true
  6040. }
  6041. ]
  6042. ))
  6043. characterMakers.push(() => makeCharacter(
  6044. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6045. {
  6046. front: {
  6047. height: math.unit(1.93, "meters"),
  6048. weight: math.unit(83, "kg"),
  6049. name: "Front",
  6050. image: {
  6051. source: "./media/characters/samantha/front.svg"
  6052. }
  6053. },
  6054. frontClothed: {
  6055. height: math.unit(1.93, "meters"),
  6056. weight: math.unit(83, "kg"),
  6057. name: "Front (Clothed)",
  6058. image: {
  6059. source: "./media/characters/samantha/front-clothed.svg"
  6060. }
  6061. },
  6062. back: {
  6063. height: math.unit(1.93, "meters"),
  6064. weight: math.unit(83, "kg"),
  6065. name: "Back",
  6066. image: {
  6067. source: "./media/characters/samantha/back.svg"
  6068. }
  6069. },
  6070. },
  6071. [
  6072. {
  6073. name: "Normal",
  6074. height: math.unit(1.93, "m")
  6075. },
  6076. {
  6077. name: "Macro",
  6078. height: math.unit(74, "meters"),
  6079. default: true
  6080. },
  6081. {
  6082. name: "Macro+",
  6083. height: math.unit(223, "meters"),
  6084. },
  6085. {
  6086. name: "Megamacro",
  6087. height: math.unit(8381, "meters"),
  6088. },
  6089. {
  6090. name: "Megamacro+",
  6091. height: math.unit(12000, "kilometers")
  6092. },
  6093. ]
  6094. ))
  6095. characterMakers.push(() => makeCharacter(
  6096. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6097. {
  6098. front: {
  6099. height: math.unit(1.92, "meters"),
  6100. weight: math.unit(80, "kg"),
  6101. name: "Front",
  6102. image: {
  6103. source: "./media/characters/dr-clay/front.svg"
  6104. }
  6105. },
  6106. frontClothed: {
  6107. height: math.unit(1.92, "meters"),
  6108. weight: math.unit(80, "kg"),
  6109. name: "Front (Clothed)",
  6110. image: {
  6111. source: "./media/characters/dr-clay/front-clothed.svg"
  6112. }
  6113. }
  6114. },
  6115. [
  6116. {
  6117. name: "Normal",
  6118. height: math.unit(1.92, "m")
  6119. },
  6120. {
  6121. name: "Macro",
  6122. height: math.unit(214, "meters"),
  6123. default: true
  6124. },
  6125. {
  6126. name: "Macro+",
  6127. height: math.unit(12.237, "meters"),
  6128. },
  6129. {
  6130. name: "Megamacro",
  6131. height: math.unit(557, "megameters"),
  6132. },
  6133. {
  6134. name: "Unimaginable",
  6135. height: math.unit(120e9, "lightyears")
  6136. },
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6141. {
  6142. front: {
  6143. height: math.unit(2, "meters"),
  6144. weight: math.unit(80, "kg"),
  6145. name: "Front",
  6146. image: {
  6147. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6148. }
  6149. }
  6150. },
  6151. [
  6152. {
  6153. name: "Teramacro",
  6154. height: math.unit(500000, "lightyears"),
  6155. default: true
  6156. },
  6157. ]
  6158. ))
  6159. characterMakers.push(() => makeCharacter(
  6160. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6161. {
  6162. front: {
  6163. height: math.unit(2, "meters"),
  6164. weight: math.unit(150, "kg"),
  6165. name: "Front",
  6166. image: {
  6167. source: "./media/characters/vemus/front.svg",
  6168. extra: 2384 / 2084,
  6169. bottom: 0.0123
  6170. }
  6171. }
  6172. },
  6173. [
  6174. {
  6175. name: "Normal",
  6176. height: math.unit(3.75, "meters"),
  6177. default: true
  6178. },
  6179. {
  6180. name: "Big",
  6181. height: math.unit(8, "meters")
  6182. },
  6183. {
  6184. name: "Macro",
  6185. height: math.unit(100, "meters")
  6186. },
  6187. {
  6188. name: "Macro+",
  6189. height: math.unit(1500, "meters")
  6190. },
  6191. {
  6192. name: "Stellar",
  6193. height: math.unit(14e8, "meters")
  6194. },
  6195. ]
  6196. ))
  6197. characterMakers.push(() => makeCharacter(
  6198. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6199. {
  6200. front: {
  6201. height: math.unit(2, "meters"),
  6202. weight: math.unit(70, "kg"),
  6203. name: "Front",
  6204. image: {
  6205. source: "./media/characters/beherit/front.svg",
  6206. extra: 1408 / 1242
  6207. }
  6208. }
  6209. },
  6210. [
  6211. {
  6212. name: "Normal",
  6213. height: math.unit(6, "feet")
  6214. },
  6215. {
  6216. name: "Lorg",
  6217. height: math.unit(25, "feet"),
  6218. default: true
  6219. },
  6220. {
  6221. name: "Lorger",
  6222. height: math.unit(75, "feet")
  6223. },
  6224. {
  6225. name: "Macro",
  6226. height: math.unit(200, "meters")
  6227. },
  6228. ]
  6229. ))
  6230. characterMakers.push(() => makeCharacter(
  6231. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6232. {
  6233. front: {
  6234. height: math.unit(2, "meters"),
  6235. weight: math.unit(150, "kg"),
  6236. name: "Front",
  6237. image: {
  6238. source: "./media/characters/everett/front.svg",
  6239. extra: 2038 / 1737,
  6240. bottom: 0.03
  6241. }
  6242. },
  6243. paw: {
  6244. height: math.unit(2 / 3.6, "meters"),
  6245. name: "Paw",
  6246. image: {
  6247. source: "./media/characters/everett/paw.svg"
  6248. }
  6249. },
  6250. },
  6251. [
  6252. {
  6253. name: "Normal",
  6254. height: math.unit(15, "feet"),
  6255. default: true
  6256. },
  6257. {
  6258. name: "Lorg",
  6259. height: math.unit(70, "feet"),
  6260. default: true
  6261. },
  6262. {
  6263. name: "Lorger",
  6264. height: math.unit(250, "feet")
  6265. },
  6266. {
  6267. name: "Macro",
  6268. height: math.unit(500, "meters")
  6269. },
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6274. {
  6275. front: {
  6276. height: math.unit(2, "meters"),
  6277. weight: math.unit(86, "kg"),
  6278. name: "Front",
  6279. image: {
  6280. source: "./media/characters/rose/front.svg",
  6281. extra: 350/335,
  6282. bottom: 10/360
  6283. }
  6284. },
  6285. frontAlt: {
  6286. height: math.unit(1.6, "meters"),
  6287. weight: math.unit(86, "kg"),
  6288. name: "Front (Alt)",
  6289. image: {
  6290. source: "./media/characters/rose/front-alt.svg",
  6291. extra: 299/283,
  6292. bottom: 3/302
  6293. }
  6294. },
  6295. plush: {
  6296. height: math.unit(2, "meters"),
  6297. weight: math.unit(86/3, "kg"),
  6298. name: "Plush",
  6299. image: {
  6300. source: "./media/characters/rose/plush.svg",
  6301. extra: 361/337,
  6302. bottom: 11/372
  6303. }
  6304. },
  6305. },
  6306. [
  6307. {
  6308. name: "Mini-Micro",
  6309. height: math.unit(1, "cm")
  6310. },
  6311. {
  6312. name: "Micro",
  6313. height: math.unit(3.5, "inches"),
  6314. default: true
  6315. },
  6316. {
  6317. name: "Normal",
  6318. height: math.unit(6 + 1 / 6, "feet")
  6319. },
  6320. {
  6321. name: "Mini-Macro",
  6322. height: math.unit(9 + 10 / 12, "feet")
  6323. },
  6324. ]
  6325. ))
  6326. characterMakers.push(() => makeCharacter(
  6327. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6328. {
  6329. front: {
  6330. height: math.unit(2, "meters"),
  6331. weight: math.unit(350, "lbs"),
  6332. name: "Front",
  6333. image: {
  6334. source: "./media/characters/regal/front.svg"
  6335. }
  6336. },
  6337. back: {
  6338. height: math.unit(2, "meters"),
  6339. weight: math.unit(350, "lbs"),
  6340. name: "Back",
  6341. image: {
  6342. source: "./media/characters/regal/back.svg"
  6343. }
  6344. },
  6345. },
  6346. [
  6347. {
  6348. name: "Macro",
  6349. height: math.unit(350, "feet"),
  6350. default: true
  6351. }
  6352. ]
  6353. ))
  6354. characterMakers.push(() => makeCharacter(
  6355. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6356. {
  6357. front: {
  6358. height: math.unit(4 + 11 / 12, "feet"),
  6359. weight: math.unit(100, "lbs"),
  6360. name: "Front",
  6361. image: {
  6362. source: "./media/characters/opal/front.svg"
  6363. }
  6364. },
  6365. frontAlt: {
  6366. height: math.unit(4 + 11 / 12, "feet"),
  6367. weight: math.unit(100, "lbs"),
  6368. name: "Front (Alt)",
  6369. image: {
  6370. source: "./media/characters/opal/front-alt.svg"
  6371. }
  6372. },
  6373. },
  6374. [
  6375. {
  6376. name: "Small",
  6377. height: math.unit(4 + 11 / 12, "feet")
  6378. },
  6379. {
  6380. name: "Normal",
  6381. height: math.unit(20, "feet"),
  6382. default: true
  6383. },
  6384. {
  6385. name: "Macro",
  6386. height: math.unit(120, "feet")
  6387. },
  6388. {
  6389. name: "Megamacro",
  6390. height: math.unit(80, "miles")
  6391. },
  6392. {
  6393. name: "True Size",
  6394. height: math.unit(100000, "lightyears")
  6395. },
  6396. ]
  6397. ))
  6398. characterMakers.push(() => makeCharacter(
  6399. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6400. {
  6401. front: {
  6402. height: math.unit(6, "feet"),
  6403. weight: math.unit(200, "lbs"),
  6404. name: "Front",
  6405. image: {
  6406. source: "./media/characters/vector-wuff/front.svg"
  6407. }
  6408. }
  6409. },
  6410. [
  6411. {
  6412. name: "Normal",
  6413. height: math.unit(2.8, "meters")
  6414. },
  6415. {
  6416. name: "Macro",
  6417. height: math.unit(450, "meters"),
  6418. default: true
  6419. },
  6420. {
  6421. name: "Megamacro",
  6422. height: math.unit(15, "kilometers")
  6423. }
  6424. ]
  6425. ))
  6426. characterMakers.push(() => makeCharacter(
  6427. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6428. {
  6429. front: {
  6430. height: math.unit(6, "feet"),
  6431. weight: math.unit(256, "lbs"),
  6432. name: "Front",
  6433. image: {
  6434. source: "./media/characters/dannik/front.svg"
  6435. }
  6436. }
  6437. },
  6438. [
  6439. {
  6440. name: "Macro",
  6441. height: math.unit(69.57, "meters"),
  6442. default: true
  6443. },
  6444. ]
  6445. ))
  6446. characterMakers.push(() => makeCharacter(
  6447. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6448. {
  6449. front: {
  6450. height: math.unit(6, "feet"),
  6451. weight: math.unit(120, "lbs"),
  6452. name: "Front",
  6453. image: {
  6454. source: "./media/characters/azura-saharah/front.svg"
  6455. }
  6456. },
  6457. back: {
  6458. height: math.unit(6, "feet"),
  6459. weight: math.unit(120, "lbs"),
  6460. name: "Back",
  6461. image: {
  6462. source: "./media/characters/azura-saharah/back.svg"
  6463. }
  6464. },
  6465. },
  6466. [
  6467. {
  6468. name: "Macro",
  6469. height: math.unit(100, "feet"),
  6470. default: true
  6471. },
  6472. ]
  6473. ))
  6474. characterMakers.push(() => makeCharacter(
  6475. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6476. {
  6477. side: {
  6478. height: math.unit(5 + 4 / 12, "feet"),
  6479. weight: math.unit(163, "lbs"),
  6480. name: "Side",
  6481. image: {
  6482. source: "./media/characters/kennedy/side.svg"
  6483. }
  6484. }
  6485. },
  6486. [
  6487. {
  6488. name: "Standard Doggo",
  6489. height: math.unit(5 + 4 / 12, "feet")
  6490. },
  6491. {
  6492. name: "Big Doggo",
  6493. height: math.unit(25 + 3 / 12, "feet"),
  6494. default: true
  6495. },
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6500. {
  6501. front: {
  6502. height: math.unit(6, "feet"),
  6503. weight: math.unit(90, "lbs"),
  6504. name: "Front",
  6505. image: {
  6506. source: "./media/characters/odi-lunar/front.svg"
  6507. }
  6508. }
  6509. },
  6510. [
  6511. {
  6512. name: "Micro",
  6513. height: math.unit(3, "inches"),
  6514. default: true
  6515. },
  6516. {
  6517. name: "Normal",
  6518. height: math.unit(5.5, "feet")
  6519. }
  6520. ]
  6521. ))
  6522. characterMakers.push(() => makeCharacter(
  6523. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6524. {
  6525. back: {
  6526. height: math.unit(6, "feet"),
  6527. weight: math.unit(220, "lbs"),
  6528. name: "Back",
  6529. image: {
  6530. source: "./media/characters/mandake/back.svg"
  6531. }
  6532. }
  6533. },
  6534. [
  6535. {
  6536. name: "Normal",
  6537. height: math.unit(7, "feet"),
  6538. default: true
  6539. },
  6540. {
  6541. name: "Macro",
  6542. height: math.unit(78, "feet")
  6543. },
  6544. {
  6545. name: "Macro+",
  6546. height: math.unit(300, "meters")
  6547. },
  6548. {
  6549. name: "Macro++",
  6550. height: math.unit(2400, "feet")
  6551. },
  6552. {
  6553. name: "Megamacro",
  6554. height: math.unit(5167, "meters")
  6555. },
  6556. {
  6557. name: "Gigamacro",
  6558. height: math.unit(41769, "miles")
  6559. },
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(120, "lbs"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/yozey/front.svg"
  6571. }
  6572. },
  6573. frontAlt: {
  6574. height: math.unit(6, "feet"),
  6575. weight: math.unit(120, "lbs"),
  6576. name: "Front (Alt)",
  6577. image: {
  6578. source: "./media/characters/yozey/front-alt.svg"
  6579. }
  6580. },
  6581. side: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(120, "lbs"),
  6584. name: "Side",
  6585. image: {
  6586. source: "./media/characters/yozey/side.svg"
  6587. }
  6588. },
  6589. },
  6590. [
  6591. {
  6592. name: "Micro",
  6593. height: math.unit(3, "inches"),
  6594. default: true
  6595. },
  6596. {
  6597. name: "Normal",
  6598. height: math.unit(6, "feet")
  6599. }
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(6, "feet"),
  6607. weight: math.unit(103, "lbs"),
  6608. name: "Front",
  6609. image: {
  6610. source: "./media/characters/valeska-voss/front.svg"
  6611. }
  6612. }
  6613. },
  6614. [
  6615. {
  6616. name: "Mini-Sized Sub",
  6617. height: math.unit(3.1, "inches")
  6618. },
  6619. {
  6620. name: "Mid-Sized Sub",
  6621. height: math.unit(6.2, "inches")
  6622. },
  6623. {
  6624. name: "Full-Sized Sub",
  6625. height: math.unit(9.3, "inches")
  6626. },
  6627. {
  6628. name: "Normal",
  6629. height: math.unit(5 + 2 / 12, "foot"),
  6630. default: true
  6631. },
  6632. ]
  6633. ))
  6634. characterMakers.push(() => makeCharacter(
  6635. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6636. {
  6637. front: {
  6638. height: math.unit(6, "feet"),
  6639. weight: math.unit(160, "lbs"),
  6640. name: "Front",
  6641. image: {
  6642. source: "./media/characters/gene-zeta/front.svg",
  6643. extra: 3006 / 2826,
  6644. bottom: 182 / 3188
  6645. }
  6646. }
  6647. },
  6648. [
  6649. {
  6650. name: "Micro",
  6651. height: math.unit(6, "inches")
  6652. },
  6653. {
  6654. name: "Normal",
  6655. height: math.unit(5 + 11 / 12, "foot"),
  6656. default: true
  6657. },
  6658. {
  6659. name: "Macro",
  6660. height: math.unit(140, "feet")
  6661. },
  6662. {
  6663. name: "Supercharged",
  6664. height: math.unit(2500, "feet")
  6665. },
  6666. ]
  6667. ))
  6668. characterMakers.push(() => makeCharacter(
  6669. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6670. {
  6671. front: {
  6672. height: math.unit(6, "feet"),
  6673. weight: math.unit(350, "lbs"),
  6674. name: "Front",
  6675. image: {
  6676. source: "./media/characters/razinox/front.svg",
  6677. extra: 1686 / 1548,
  6678. bottom: 28.2 / 1868
  6679. }
  6680. },
  6681. back: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(350, "lbs"),
  6684. name: "Back",
  6685. image: {
  6686. source: "./media/characters/razinox/back.svg",
  6687. extra: 1660 / 1590,
  6688. bottom: 15 / 1665
  6689. }
  6690. },
  6691. },
  6692. [
  6693. {
  6694. name: "Normal",
  6695. height: math.unit(10 + 8 / 12, "foot")
  6696. },
  6697. {
  6698. name: "Minimacro",
  6699. height: math.unit(15, "foot")
  6700. },
  6701. {
  6702. name: "Macro",
  6703. height: math.unit(60, "foot"),
  6704. default: true
  6705. },
  6706. {
  6707. name: "Megamacro",
  6708. height: math.unit(5, "miles")
  6709. },
  6710. {
  6711. name: "Gigamacro",
  6712. height: math.unit(6000, "miles")
  6713. },
  6714. ]
  6715. ))
  6716. characterMakers.push(() => makeCharacter(
  6717. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6718. {
  6719. front: {
  6720. height: math.unit(6, "feet"),
  6721. weight: math.unit(150, "lbs"),
  6722. name: "Front",
  6723. image: {
  6724. source: "./media/characters/cobalt/front.svg"
  6725. }
  6726. }
  6727. },
  6728. [
  6729. {
  6730. name: "Normal",
  6731. height: math.unit(8 + 1 / 12, "foot")
  6732. },
  6733. {
  6734. name: "Macro",
  6735. height: math.unit(111, "foot"),
  6736. default: true
  6737. },
  6738. {
  6739. name: "Supracosmic",
  6740. height: math.unit(1e42, "feet")
  6741. },
  6742. ]
  6743. ))
  6744. characterMakers.push(() => makeCharacter(
  6745. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6746. {
  6747. front: {
  6748. height: math.unit(6, "feet"),
  6749. weight: math.unit(140, "lbs"),
  6750. name: "Front",
  6751. image: {
  6752. source: "./media/characters/amanda/front.svg"
  6753. }
  6754. }
  6755. },
  6756. [
  6757. {
  6758. name: "Micro",
  6759. height: math.unit(5, "inches"),
  6760. default: true
  6761. },
  6762. ]
  6763. ))
  6764. characterMakers.push(() => makeCharacter(
  6765. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6766. {
  6767. front: {
  6768. height: math.unit(2.75, "meters"),
  6769. weight: math.unit(1200, "lb"),
  6770. name: "Front",
  6771. image: {
  6772. source: "./media/characters/teal/front.svg",
  6773. extra: 2463 / 2320,
  6774. bottom: 166 / 2629
  6775. }
  6776. },
  6777. back: {
  6778. height: math.unit(2.75, "meters"),
  6779. weight: math.unit(1200, "lb"),
  6780. name: "Back",
  6781. image: {
  6782. source: "./media/characters/teal/back.svg",
  6783. extra: 2580 / 2489,
  6784. bottom: 151 / 2731
  6785. }
  6786. },
  6787. sitting: {
  6788. height: math.unit(1.9, "meters"),
  6789. weight: math.unit(1200, "lb"),
  6790. name: "Sitting",
  6791. image: {
  6792. source: "./media/characters/teal/sitting.svg",
  6793. extra: 623 / 590,
  6794. bottom: 121 / 744
  6795. }
  6796. },
  6797. standing: {
  6798. height: math.unit(2.75, "meters"),
  6799. weight: math.unit(1200, "lb"),
  6800. name: "Standing",
  6801. image: {
  6802. source: "./media/characters/teal/standing.svg",
  6803. extra: 923 / 893,
  6804. bottom: 60 / 983
  6805. }
  6806. },
  6807. stretching: {
  6808. height: math.unit(3.65, "meters"),
  6809. weight: math.unit(1200, "lb"),
  6810. name: "Stretching",
  6811. image: {
  6812. source: "./media/characters/teal/stretching.svg",
  6813. extra: 1276 / 1244,
  6814. bottom: 0 / 1276
  6815. }
  6816. },
  6817. legged: {
  6818. height: math.unit(1.3, "meters"),
  6819. weight: math.unit(100, "lb"),
  6820. name: "Legged",
  6821. image: {
  6822. source: "./media/characters/teal/legged.svg",
  6823. extra: 462 / 437,
  6824. bottom: 24 / 486
  6825. }
  6826. },
  6827. naga: {
  6828. height: math.unit(5.4, "meters"),
  6829. weight: math.unit(4000, "lb"),
  6830. name: "Naga",
  6831. image: {
  6832. source: "./media/characters/teal/naga.svg",
  6833. extra: 1902 / 1858,
  6834. bottom: 0 / 1902
  6835. }
  6836. },
  6837. hand: {
  6838. height: math.unit(0.52, "meters"),
  6839. name: "Hand",
  6840. image: {
  6841. source: "./media/characters/teal/hand.svg"
  6842. }
  6843. },
  6844. maw: {
  6845. height: math.unit(0.43, "meters"),
  6846. name: "Maw",
  6847. image: {
  6848. source: "./media/characters/teal/maw.svg"
  6849. }
  6850. },
  6851. slit: {
  6852. height: math.unit(0.25, "meters"),
  6853. name: "Slit",
  6854. image: {
  6855. source: "./media/characters/teal/slit.svg"
  6856. }
  6857. },
  6858. },
  6859. [
  6860. {
  6861. name: "Normal",
  6862. height: math.unit(2.75, "meters"),
  6863. default: true
  6864. },
  6865. {
  6866. name: "Macro",
  6867. height: math.unit(300, "feet")
  6868. },
  6869. {
  6870. name: "Macro+",
  6871. height: math.unit(2000, "feet")
  6872. },
  6873. ]
  6874. ))
  6875. characterMakers.push(() => makeCharacter(
  6876. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6877. {
  6878. frontCat: {
  6879. height: math.unit(6, "feet"),
  6880. weight: math.unit(180, "lbs"),
  6881. name: "Front (Cat)",
  6882. image: {
  6883. source: "./media/characters/ravin-amulet/front-cat.svg"
  6884. }
  6885. },
  6886. frontCatAlt: {
  6887. height: math.unit(6, "feet"),
  6888. weight: math.unit(180, "lbs"),
  6889. name: "Front (Alt, Cat)",
  6890. image: {
  6891. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6892. }
  6893. },
  6894. frontWerewolf: {
  6895. height: math.unit(6 * 1.2, "feet"),
  6896. weight: math.unit(225, "lbs"),
  6897. name: "Front (Werewolf)",
  6898. image: {
  6899. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6900. }
  6901. },
  6902. backWerewolf: {
  6903. height: math.unit(6 * 1.2, "feet"),
  6904. weight: math.unit(225, "lbs"),
  6905. name: "Back (Werewolf)",
  6906. image: {
  6907. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6908. }
  6909. },
  6910. },
  6911. [
  6912. {
  6913. name: "Nano",
  6914. height: math.unit(1, "micrometer")
  6915. },
  6916. {
  6917. name: "Micro",
  6918. height: math.unit(1, "inch")
  6919. },
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(6, "feet"),
  6923. default: true
  6924. },
  6925. {
  6926. name: "Macro",
  6927. height: math.unit(60, "feet")
  6928. }
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6933. {
  6934. front: {
  6935. height: math.unit(6, "feet"),
  6936. weight: math.unit(165, "lbs"),
  6937. name: "Front",
  6938. image: {
  6939. source: "./media/characters/fluoresce/front.svg"
  6940. }
  6941. }
  6942. },
  6943. [
  6944. {
  6945. name: "Micro",
  6946. height: math.unit(6, "cm")
  6947. },
  6948. {
  6949. name: "Normal",
  6950. height: math.unit(5 + 7 / 12, "feet"),
  6951. default: true
  6952. },
  6953. {
  6954. name: "Macro",
  6955. height: math.unit(56, "feet")
  6956. },
  6957. {
  6958. name: "Megamacro",
  6959. height: math.unit(1.9, "miles")
  6960. },
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6965. {
  6966. front: {
  6967. height: math.unit(9 + 6 / 12, "feet"),
  6968. weight: math.unit(523, "lbs"),
  6969. name: "Side",
  6970. image: {
  6971. source: "./media/characters/aurora/side.svg"
  6972. }
  6973. }
  6974. },
  6975. [
  6976. {
  6977. name: "Normal",
  6978. height: math.unit(9 + 6 / 12, "feet")
  6979. },
  6980. {
  6981. name: "Macro",
  6982. height: math.unit(96, "feet"),
  6983. default: true
  6984. },
  6985. {
  6986. name: "Macro+",
  6987. height: math.unit(243, "feet")
  6988. },
  6989. ]
  6990. ))
  6991. characterMakers.push(() => makeCharacter(
  6992. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6993. {
  6994. front: {
  6995. height: math.unit(194, "cm"),
  6996. weight: math.unit(90, "kg"),
  6997. name: "Front",
  6998. image: {
  6999. source: "./media/characters/ranek/front.svg"
  7000. }
  7001. },
  7002. side: {
  7003. height: math.unit(194, "cm"),
  7004. weight: math.unit(90, "kg"),
  7005. name: "Side",
  7006. image: {
  7007. source: "./media/characters/ranek/side.svg"
  7008. }
  7009. },
  7010. back: {
  7011. height: math.unit(194, "cm"),
  7012. weight: math.unit(90, "kg"),
  7013. name: "Back",
  7014. image: {
  7015. source: "./media/characters/ranek/back.svg"
  7016. }
  7017. },
  7018. feral: {
  7019. height: math.unit(30, "cm"),
  7020. weight: math.unit(1.6, "lbs"),
  7021. name: "Feral",
  7022. image: {
  7023. source: "./media/characters/ranek/feral.svg"
  7024. }
  7025. },
  7026. },
  7027. [
  7028. {
  7029. name: "Normal",
  7030. height: math.unit(194, "cm"),
  7031. default: true
  7032. },
  7033. {
  7034. name: "Macro",
  7035. height: math.unit(100, "meters")
  7036. },
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7041. {
  7042. front: {
  7043. height: math.unit(5 + 6 / 12, "feet"),
  7044. weight: math.unit(153, "lbs"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/andrew-cooper/front.svg"
  7048. }
  7049. },
  7050. },
  7051. [
  7052. {
  7053. name: "Nano",
  7054. height: math.unit(1, "mm")
  7055. },
  7056. {
  7057. name: "Micro",
  7058. height: math.unit(2, "inches")
  7059. },
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(5 + 6 / 12, "feet"),
  7063. default: true
  7064. }
  7065. ]
  7066. ))
  7067. characterMakers.push(() => makeCharacter(
  7068. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7069. {
  7070. front: {
  7071. height: math.unit(6, "feet"),
  7072. weight: math.unit(180, "lbs"),
  7073. name: "Front",
  7074. image: {
  7075. source: "./media/characters/akane-sato/front.svg",
  7076. extra: 1219 / 1140
  7077. }
  7078. },
  7079. back: {
  7080. height: math.unit(6, "feet"),
  7081. weight: math.unit(180, "lbs"),
  7082. name: "Back",
  7083. image: {
  7084. source: "./media/characters/akane-sato/back.svg",
  7085. extra: 1219 / 1170
  7086. }
  7087. },
  7088. },
  7089. [
  7090. {
  7091. name: "Normal",
  7092. height: math.unit(2.5, "meters")
  7093. },
  7094. {
  7095. name: "Macro",
  7096. height: math.unit(250, "meters"),
  7097. default: true
  7098. },
  7099. {
  7100. name: "Megamacro",
  7101. height: math.unit(25, "km")
  7102. },
  7103. ]
  7104. ))
  7105. characterMakers.push(() => makeCharacter(
  7106. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7107. {
  7108. front: {
  7109. height: math.unit(6, "feet"),
  7110. weight: math.unit(65, "kg"),
  7111. name: "Front",
  7112. image: {
  7113. source: "./media/characters/rook/front.svg",
  7114. extra: 960 / 950
  7115. }
  7116. }
  7117. },
  7118. [
  7119. {
  7120. name: "Normal",
  7121. height: math.unit(8.8, "feet")
  7122. },
  7123. {
  7124. name: "Macro",
  7125. height: math.unit(88, "feet"),
  7126. default: true
  7127. },
  7128. {
  7129. name: "Megamacro",
  7130. height: math.unit(8, "miles")
  7131. },
  7132. ]
  7133. ))
  7134. characterMakers.push(() => makeCharacter(
  7135. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7136. {
  7137. front: {
  7138. height: math.unit(12 + 2 / 12, "feet"),
  7139. weight: math.unit(808, "lbs"),
  7140. name: "Front",
  7141. image: {
  7142. source: "./media/characters/prodigy/front.svg"
  7143. }
  7144. }
  7145. },
  7146. [
  7147. {
  7148. name: "Normal",
  7149. height: math.unit(12 + 2 / 12, "feet"),
  7150. default: true
  7151. },
  7152. {
  7153. name: "Macro",
  7154. height: math.unit(143, "feet")
  7155. },
  7156. {
  7157. name: "Macro+",
  7158. height: math.unit(400, "feet")
  7159. },
  7160. ]
  7161. ))
  7162. characterMakers.push(() => makeCharacter(
  7163. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7164. {
  7165. front: {
  7166. height: math.unit(6, "feet"),
  7167. weight: math.unit(225, "lbs"),
  7168. name: "Front",
  7169. image: {
  7170. source: "./media/characters/daniel/front.svg"
  7171. }
  7172. },
  7173. leaning: {
  7174. height: math.unit(6, "feet"),
  7175. weight: math.unit(225, "lbs"),
  7176. name: "Leaning",
  7177. image: {
  7178. source: "./media/characters/daniel/leaning.svg"
  7179. }
  7180. },
  7181. },
  7182. [
  7183. {
  7184. name: "Macro",
  7185. height: math.unit(1000, "feet"),
  7186. default: true
  7187. },
  7188. ]
  7189. ))
  7190. characterMakers.push(() => makeCharacter(
  7191. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7192. {
  7193. front: {
  7194. height: math.unit(6, "feet"),
  7195. weight: math.unit(88, "lbs"),
  7196. name: "Front",
  7197. image: {
  7198. source: "./media/characters/chiros/front.svg",
  7199. extra: 306 / 226
  7200. }
  7201. },
  7202. side: {
  7203. height: math.unit(6, "feet"),
  7204. weight: math.unit(88, "lbs"),
  7205. name: "Side",
  7206. image: {
  7207. source: "./media/characters/chiros/side.svg",
  7208. extra: 306 / 226
  7209. }
  7210. },
  7211. },
  7212. [
  7213. {
  7214. name: "Normal",
  7215. height: math.unit(6, "cm"),
  7216. default: true
  7217. },
  7218. ]
  7219. ))
  7220. characterMakers.push(() => makeCharacter(
  7221. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7222. {
  7223. front: {
  7224. height: math.unit(6, "feet"),
  7225. weight: math.unit(100, "lbs"),
  7226. name: "Front",
  7227. image: {
  7228. source: "./media/characters/selka/front.svg",
  7229. extra: 947 / 887
  7230. }
  7231. }
  7232. },
  7233. [
  7234. {
  7235. name: "Normal",
  7236. height: math.unit(5, "cm"),
  7237. default: true
  7238. },
  7239. ]
  7240. ))
  7241. characterMakers.push(() => makeCharacter(
  7242. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7243. {
  7244. front: {
  7245. height: math.unit(8 + 3 / 12, "feet"),
  7246. weight: math.unit(424, "lbs"),
  7247. name: "Front",
  7248. image: {
  7249. source: "./media/characters/verin/front.svg",
  7250. extra: 1845 / 1550
  7251. }
  7252. },
  7253. frontArmored: {
  7254. height: math.unit(8 + 3 / 12, "feet"),
  7255. weight: math.unit(424, "lbs"),
  7256. name: "Front (Armored)",
  7257. image: {
  7258. source: "./media/characters/verin/front-armor.svg",
  7259. extra: 1845 / 1550,
  7260. bottom: 0.01
  7261. }
  7262. },
  7263. back: {
  7264. height: math.unit(8 + 3 / 12, "feet"),
  7265. weight: math.unit(424, "lbs"),
  7266. name: "Back",
  7267. image: {
  7268. source: "./media/characters/verin/back.svg",
  7269. bottom: 0.1,
  7270. extra: 1
  7271. }
  7272. },
  7273. foot: {
  7274. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7275. name: "Foot",
  7276. image: {
  7277. source: "./media/characters/verin/foot.svg"
  7278. }
  7279. },
  7280. },
  7281. [
  7282. {
  7283. name: "Normal",
  7284. height: math.unit(8 + 3 / 12, "feet")
  7285. },
  7286. {
  7287. name: "Minimacro",
  7288. height: math.unit(21, "feet"),
  7289. default: true
  7290. },
  7291. {
  7292. name: "Macro",
  7293. height: math.unit(626, "feet")
  7294. },
  7295. ]
  7296. ))
  7297. characterMakers.push(() => makeCharacter(
  7298. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7299. {
  7300. front: {
  7301. height: math.unit(2.718, "meters"),
  7302. weight: math.unit(150, "lbs"),
  7303. name: "Front",
  7304. image: {
  7305. source: "./media/characters/sovrim-terraquian/front.svg"
  7306. }
  7307. },
  7308. back: {
  7309. height: math.unit(2.718, "meters"),
  7310. weight: math.unit(150, "lbs"),
  7311. name: "Back",
  7312. image: {
  7313. source: "./media/characters/sovrim-terraquian/back.svg"
  7314. }
  7315. }
  7316. },
  7317. [
  7318. {
  7319. name: "Micro",
  7320. height: math.unit(2, "inches")
  7321. },
  7322. {
  7323. name: "Small",
  7324. height: math.unit(1, "meter")
  7325. },
  7326. {
  7327. name: "Normal",
  7328. height: math.unit(Math.E, "meters"),
  7329. default: true
  7330. },
  7331. {
  7332. name: "Macro",
  7333. height: math.unit(20, "meters")
  7334. },
  7335. {
  7336. name: "Macro+",
  7337. height: math.unit(400, "meters")
  7338. },
  7339. ]
  7340. ))
  7341. characterMakers.push(() => makeCharacter(
  7342. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7343. {
  7344. front: {
  7345. height: math.unit(7, "feet"),
  7346. weight: math.unit(489, "lbs"),
  7347. name: "Front",
  7348. image: {
  7349. source: "./media/characters/reece-silvermane/front.svg",
  7350. bottom: 0.02,
  7351. extra: 1
  7352. }
  7353. },
  7354. },
  7355. [
  7356. {
  7357. name: "Macro",
  7358. height: math.unit(1.5, "miles"),
  7359. default: true
  7360. },
  7361. ]
  7362. ))
  7363. characterMakers.push(() => makeCharacter(
  7364. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7365. {
  7366. front: {
  7367. height: math.unit(6, "feet"),
  7368. weight: math.unit(78, "kg"),
  7369. name: "Front",
  7370. image: {
  7371. source: "./media/characters/kane/front.svg",
  7372. extra: 978 / 899
  7373. }
  7374. },
  7375. },
  7376. [
  7377. {
  7378. name: "Normal",
  7379. height: math.unit(2.1, "m"),
  7380. },
  7381. {
  7382. name: "Macro",
  7383. height: math.unit(1, "km"),
  7384. default: true
  7385. },
  7386. ]
  7387. ))
  7388. characterMakers.push(() => makeCharacter(
  7389. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7390. {
  7391. front: {
  7392. height: math.unit(6, "feet"),
  7393. weight: math.unit(200, "kg"),
  7394. name: "Front",
  7395. image: {
  7396. source: "./media/characters/tegon/front.svg",
  7397. bottom: 0.01,
  7398. extra: 1
  7399. }
  7400. },
  7401. },
  7402. [
  7403. {
  7404. name: "Micro",
  7405. height: math.unit(1, "inch")
  7406. },
  7407. {
  7408. name: "Normal",
  7409. height: math.unit(6 + 3 / 12, "feet"),
  7410. default: true
  7411. },
  7412. {
  7413. name: "Macro",
  7414. height: math.unit(300, "feet")
  7415. },
  7416. {
  7417. name: "Megamacro",
  7418. height: math.unit(69, "miles")
  7419. },
  7420. ]
  7421. ))
  7422. characterMakers.push(() => makeCharacter(
  7423. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7424. {
  7425. side: {
  7426. height: math.unit(6, "feet"),
  7427. weight: math.unit(2304, "lbs"),
  7428. name: "Side",
  7429. image: {
  7430. source: "./media/characters/arcturax/side.svg",
  7431. extra: 790 / 376,
  7432. bottom: 0.01
  7433. }
  7434. },
  7435. },
  7436. [
  7437. {
  7438. name: "Micro",
  7439. height: math.unit(2, "inch")
  7440. },
  7441. {
  7442. name: "Normal",
  7443. height: math.unit(6, "feet")
  7444. },
  7445. {
  7446. name: "Macro",
  7447. height: math.unit(39, "feet"),
  7448. default: true
  7449. },
  7450. {
  7451. name: "Megamacro",
  7452. height: math.unit(7, "miles")
  7453. },
  7454. ]
  7455. ))
  7456. characterMakers.push(() => makeCharacter(
  7457. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7458. {
  7459. front: {
  7460. height: math.unit(6, "feet"),
  7461. weight: math.unit(50, "lbs"),
  7462. name: "Front",
  7463. image: {
  7464. source: "./media/characters/sentri/front.svg",
  7465. extra: 1750 / 1570,
  7466. bottom: 0.025
  7467. }
  7468. },
  7469. frontAlt: {
  7470. height: math.unit(6, "feet"),
  7471. weight: math.unit(50, "lbs"),
  7472. name: "Front (Alt)",
  7473. image: {
  7474. source: "./media/characters/sentri/front-alt.svg",
  7475. extra: 1750 / 1570,
  7476. bottom: 0.025
  7477. }
  7478. },
  7479. },
  7480. [
  7481. {
  7482. name: "Normal",
  7483. height: math.unit(15, "feet"),
  7484. default: true
  7485. },
  7486. {
  7487. name: "Macro",
  7488. height: math.unit(2500, "feet")
  7489. }
  7490. ]
  7491. ))
  7492. characterMakers.push(() => makeCharacter(
  7493. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7494. {
  7495. front: {
  7496. height: math.unit(5 + 8 / 12, "feet"),
  7497. weight: math.unit(130, "lbs"),
  7498. name: "Front",
  7499. image: {
  7500. source: "./media/characters/corvin/front.svg",
  7501. extra: 1803 / 1629
  7502. }
  7503. },
  7504. frontShirt: {
  7505. height: math.unit(5 + 8 / 12, "feet"),
  7506. weight: math.unit(130, "lbs"),
  7507. name: "Front (Shirt)",
  7508. image: {
  7509. source: "./media/characters/corvin/front-shirt.svg",
  7510. extra: 1803 / 1629
  7511. }
  7512. },
  7513. frontPoncho: {
  7514. height: math.unit(5 + 8 / 12, "feet"),
  7515. weight: math.unit(130, "lbs"),
  7516. name: "Front (Poncho)",
  7517. image: {
  7518. source: "./media/characters/corvin/front-poncho.svg",
  7519. extra: 1803 / 1629
  7520. }
  7521. },
  7522. side: {
  7523. height: math.unit(5 + 8 / 12, "feet"),
  7524. weight: math.unit(130, "lbs"),
  7525. name: "Side",
  7526. image: {
  7527. source: "./media/characters/corvin/side.svg",
  7528. extra: 1012 / 945
  7529. }
  7530. },
  7531. back: {
  7532. height: math.unit(5 + 8 / 12, "feet"),
  7533. weight: math.unit(130, "lbs"),
  7534. name: "Back",
  7535. image: {
  7536. source: "./media/characters/corvin/back.svg",
  7537. extra: 1803 / 1629
  7538. }
  7539. },
  7540. },
  7541. [
  7542. {
  7543. name: "Micro",
  7544. height: math.unit(3, "inches")
  7545. },
  7546. {
  7547. name: "Normal",
  7548. height: math.unit(5 + 8 / 12, "feet")
  7549. },
  7550. {
  7551. name: "Macro",
  7552. height: math.unit(300, "feet"),
  7553. default: true
  7554. },
  7555. {
  7556. name: "Megamacro",
  7557. height: math.unit(500, "miles")
  7558. }
  7559. ]
  7560. ))
  7561. characterMakers.push(() => makeCharacter(
  7562. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7563. {
  7564. front: {
  7565. height: math.unit(6, "feet"),
  7566. weight: math.unit(135, "lbs"),
  7567. name: "Front",
  7568. image: {
  7569. source: "./media/characters/q/front.svg",
  7570. extra: 854 / 752,
  7571. bottom: 0.005
  7572. }
  7573. },
  7574. back: {
  7575. height: math.unit(6, "feet"),
  7576. weight: math.unit(130, "lbs"),
  7577. name: "Back",
  7578. image: {
  7579. source: "./media/characters/q/back.svg",
  7580. extra: 854 / 752
  7581. }
  7582. },
  7583. },
  7584. [
  7585. {
  7586. name: "Macro",
  7587. height: math.unit(90, "feet"),
  7588. default: true
  7589. },
  7590. {
  7591. name: "Extra Macro",
  7592. height: math.unit(300, "feet"),
  7593. },
  7594. {
  7595. name: "BIG WALF",
  7596. height: math.unit(750, "feet"),
  7597. },
  7598. ]
  7599. ))
  7600. characterMakers.push(() => makeCharacter(
  7601. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7602. {
  7603. front: {
  7604. height: math.unit(6, "feet"),
  7605. weight: math.unit(150, "lbs"),
  7606. name: "Front",
  7607. image: {
  7608. source: "./media/characters/carley/front.svg",
  7609. extra: 3927 / 3540,
  7610. bottom: 29.2 / 735
  7611. }
  7612. }
  7613. },
  7614. [
  7615. {
  7616. name: "Normal",
  7617. height: math.unit(6 + 3 / 12, "feet")
  7618. },
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(185, "feet"),
  7622. default: true
  7623. },
  7624. {
  7625. name: "Megamacro",
  7626. height: math.unit(8, "miles"),
  7627. },
  7628. ]
  7629. ))
  7630. characterMakers.push(() => makeCharacter(
  7631. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7632. {
  7633. front: {
  7634. height: math.unit(3, "feet"),
  7635. weight: math.unit(28, "lbs"),
  7636. name: "Front",
  7637. image: {
  7638. source: "./media/characters/citrine/front.svg"
  7639. }
  7640. }
  7641. },
  7642. [
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(3, "feet"),
  7646. default: true
  7647. }
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7652. {
  7653. front: {
  7654. height: math.unit(14, "feet"),
  7655. weight: math.unit(1450, "kg"),
  7656. capacity: math.unit(15, "people"),
  7657. name: "Front",
  7658. image: {
  7659. source: "./media/characters/aura-starwind/front.svg",
  7660. extra: 1455 / 1335
  7661. }
  7662. },
  7663. side: {
  7664. height: math.unit(14, "feet"),
  7665. weight: math.unit(1450, "kg"),
  7666. capacity: math.unit(15, "people"),
  7667. name: "Side",
  7668. image: {
  7669. source: "./media/characters/aura-starwind/side.svg",
  7670. extra: 1654 / 1497
  7671. }
  7672. },
  7673. taur: {
  7674. height: math.unit(18, "feet"),
  7675. weight: math.unit(5500, "kg"),
  7676. capacity: math.unit(50, "people"),
  7677. name: "Taur",
  7678. image: {
  7679. source: "./media/characters/aura-starwind/taur.svg",
  7680. extra: 1760 / 1650
  7681. }
  7682. },
  7683. feral: {
  7684. height: math.unit(46, "feet"),
  7685. weight: math.unit(25000, "kg"),
  7686. capacity: math.unit(120, "people"),
  7687. name: "Feral",
  7688. image: {
  7689. source: "./media/characters/aura-starwind/feral.svg"
  7690. }
  7691. },
  7692. },
  7693. [
  7694. {
  7695. name: "Normal",
  7696. height: math.unit(14, "feet"),
  7697. default: true
  7698. },
  7699. {
  7700. name: "Macro",
  7701. height: math.unit(50, "meters")
  7702. },
  7703. {
  7704. name: "Megamacro",
  7705. height: math.unit(5000, "meters")
  7706. },
  7707. {
  7708. name: "Gigamacro",
  7709. height: math.unit(100000, "kilometers")
  7710. },
  7711. ]
  7712. ))
  7713. characterMakers.push(() => makeCharacter(
  7714. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7715. {
  7716. front: {
  7717. height: math.unit(2 + 7 / 12, "feet"),
  7718. weight: math.unit(32, "lbs"),
  7719. name: "Front",
  7720. image: {
  7721. source: "./media/characters/rivet/front.svg",
  7722. extra: 1716 / 1658,
  7723. bottom: 0.03
  7724. }
  7725. },
  7726. foot: {
  7727. height: math.unit(0.551, "feet"),
  7728. name: "Rivet's Foot",
  7729. image: {
  7730. source: "./media/characters/rivet/foot.svg"
  7731. },
  7732. rename: true
  7733. }
  7734. },
  7735. [
  7736. {
  7737. name: "Micro",
  7738. height: math.unit(1.5, "inches"),
  7739. },
  7740. {
  7741. name: "Normal",
  7742. height: math.unit(2 + 7 / 12, "feet"),
  7743. default: true
  7744. },
  7745. {
  7746. name: "Macro",
  7747. height: math.unit(85, "feet")
  7748. },
  7749. {
  7750. name: "Megamacro",
  7751. height: math.unit(2.2, "km")
  7752. }
  7753. ]
  7754. ))
  7755. characterMakers.push(() => makeCharacter(
  7756. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7757. {
  7758. front: {
  7759. height: math.unit(5 + 9 / 12, "feet"),
  7760. weight: math.unit(150, "lbs"),
  7761. name: "Front",
  7762. image: {
  7763. source: "./media/characters/coffee/front.svg",
  7764. extra: 3666 / 3032,
  7765. bottom: 0.04
  7766. }
  7767. },
  7768. foot: {
  7769. height: math.unit(1.29, "feet"),
  7770. name: "Foot",
  7771. image: {
  7772. source: "./media/characters/coffee/foot.svg"
  7773. }
  7774. },
  7775. },
  7776. [
  7777. {
  7778. name: "Micro",
  7779. height: math.unit(2, "inches"),
  7780. },
  7781. {
  7782. name: "Normal",
  7783. height: math.unit(5 + 9 / 12, "feet"),
  7784. default: true
  7785. },
  7786. {
  7787. name: "Macro",
  7788. height: math.unit(800, "feet")
  7789. },
  7790. {
  7791. name: "Megamacro",
  7792. height: math.unit(25, "miles")
  7793. }
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(200, "lbs"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/chari-gal/front.svg",
  7805. extra: 1568 / 1385,
  7806. bottom: 0.047
  7807. }
  7808. },
  7809. gigantamax: {
  7810. height: math.unit(6 * 16, "feet"),
  7811. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7812. name: "Gigantamax",
  7813. image: {
  7814. source: "./media/characters/chari-gal/gigantamax.svg",
  7815. extra: 1124 / 888,
  7816. bottom: 0.03
  7817. }
  7818. },
  7819. },
  7820. [
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(5 + 7 / 12, "feet")
  7824. },
  7825. {
  7826. name: "Macro",
  7827. height: math.unit(200, "feet"),
  7828. default: true
  7829. }
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7834. {
  7835. front: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(150, "lbs"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/nova/front.svg",
  7841. extra: 5000 / 4722,
  7842. bottom: 0.02
  7843. }
  7844. }
  7845. },
  7846. [
  7847. {
  7848. name: "Micro-",
  7849. height: math.unit(0.8, "inches")
  7850. },
  7851. {
  7852. name: "Micro",
  7853. height: math.unit(2, "inches"),
  7854. default: true
  7855. },
  7856. ]
  7857. ))
  7858. characterMakers.push(() => makeCharacter(
  7859. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7860. {
  7861. front: {
  7862. height: math.unit(3 + 1 / 12, "feet"),
  7863. weight: math.unit(21.7, "lbs"),
  7864. name: "Front",
  7865. image: {
  7866. source: "./media/characters/argent/front.svg",
  7867. extra: 1471 / 1331,
  7868. bottom: 100.8 / 1575.5
  7869. }
  7870. }
  7871. },
  7872. [
  7873. {
  7874. name: "Micro",
  7875. height: math.unit(2, "inches")
  7876. },
  7877. {
  7878. name: "Normal",
  7879. height: math.unit(3 + 1 / 12, "feet"),
  7880. default: true
  7881. },
  7882. {
  7883. name: "Macro",
  7884. height: math.unit(120, "feet")
  7885. },
  7886. ]
  7887. ))
  7888. characterMakers.push(() => makeCharacter(
  7889. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7890. {
  7891. lamp: {
  7892. height: math.unit(7 * 1559 / 989, "feet"),
  7893. name: "Magic Lamp",
  7894. image: {
  7895. source: "./media/characters/mira-al-cul/lamp.svg",
  7896. extra: 1617 / 1559
  7897. }
  7898. },
  7899. front: {
  7900. height: math.unit(7, "feet"),
  7901. name: "Front",
  7902. image: {
  7903. source: "./media/characters/mira-al-cul/front.svg",
  7904. extra: 1044 / 990
  7905. }
  7906. },
  7907. },
  7908. [
  7909. {
  7910. name: "Heavily Restricted",
  7911. height: math.unit(7 * 1559 / 989, "feet")
  7912. },
  7913. {
  7914. name: "Freshly Freed",
  7915. height: math.unit(50 * 1559 / 989, "feet")
  7916. },
  7917. {
  7918. name: "World Encompassing",
  7919. height: math.unit(10000 * 1559 / 989, "miles")
  7920. },
  7921. {
  7922. name: "Galactic",
  7923. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7924. },
  7925. {
  7926. name: "Palmed Universe",
  7927. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7928. default: true
  7929. },
  7930. {
  7931. name: "Multiversal Matriarch",
  7932. height: math.unit(8.87e10, "yottameters")
  7933. },
  7934. {
  7935. name: "Void Mother",
  7936. height: math.unit(3.14e110, "yottaparsecs")
  7937. },
  7938. {
  7939. name: "Toying with Transcendence",
  7940. height: math.unit(1e307, "meters")
  7941. },
  7942. ]
  7943. ))
  7944. characterMakers.push(() => makeCharacter(
  7945. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7946. {
  7947. front: {
  7948. height: math.unit(17 + 1 / 12, "feet"),
  7949. weight: math.unit(476.2 * 5, "lbs"),
  7950. name: "Front",
  7951. image: {
  7952. source: "./media/characters/kuro-shi-uchū/front.svg",
  7953. extra: 2329 / 1835,
  7954. bottom: 0.02
  7955. }
  7956. },
  7957. },
  7958. [
  7959. {
  7960. name: "Micro",
  7961. height: math.unit(2, "inches")
  7962. },
  7963. {
  7964. name: "Normal",
  7965. height: math.unit(12, "meters")
  7966. },
  7967. {
  7968. name: "Planetary",
  7969. height: math.unit(0.00929, "AU"),
  7970. default: true
  7971. },
  7972. {
  7973. name: "Universal",
  7974. height: math.unit(20, "gigaparsecs")
  7975. },
  7976. ]
  7977. ))
  7978. characterMakers.push(() => makeCharacter(
  7979. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7980. {
  7981. front: {
  7982. height: math.unit(5 + 2 / 12, "feet"),
  7983. weight: math.unit(120, "lbs"),
  7984. name: "Front",
  7985. image: {
  7986. source: "./media/characters/katherine/front.svg",
  7987. extra: 2075 / 1969
  7988. }
  7989. },
  7990. dress: {
  7991. height: math.unit(5 + 2 / 12, "feet"),
  7992. weight: math.unit(120, "lbs"),
  7993. name: "Dress",
  7994. image: {
  7995. source: "./media/characters/katherine/dress.svg",
  7996. extra: 2258 / 2064
  7997. }
  7998. },
  7999. },
  8000. [
  8001. {
  8002. name: "Micro",
  8003. height: math.unit(1, "inches"),
  8004. default: true
  8005. },
  8006. {
  8007. name: "Normal",
  8008. height: math.unit(5 + 2 / 12, "feet")
  8009. },
  8010. {
  8011. name: "Macro",
  8012. height: math.unit(100, "meters")
  8013. },
  8014. {
  8015. name: "Megamacro",
  8016. height: math.unit(80, "miles")
  8017. },
  8018. ]
  8019. ))
  8020. characterMakers.push(() => makeCharacter(
  8021. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8022. {
  8023. front: {
  8024. height: math.unit(7 + 8 / 12, "feet"),
  8025. weight: math.unit(250, "lbs"),
  8026. name: "Front",
  8027. image: {
  8028. source: "./media/characters/yevis/front.svg",
  8029. extra: 1938 / 1755
  8030. }
  8031. }
  8032. },
  8033. [
  8034. {
  8035. name: "Mortal",
  8036. height: math.unit(7 + 8 / 12, "feet")
  8037. },
  8038. {
  8039. name: "Battle",
  8040. height: math.unit(25 + 11 / 12, "feet")
  8041. },
  8042. {
  8043. name: "Wrath",
  8044. height: math.unit(1654 + 11 / 12, "feet")
  8045. },
  8046. {
  8047. name: "Planet Destroyer",
  8048. height: math.unit(12000, "miles")
  8049. },
  8050. {
  8051. name: "Galaxy Conqueror",
  8052. height: math.unit(1.45, "zettameters"),
  8053. default: true
  8054. },
  8055. {
  8056. name: "Universal War",
  8057. height: math.unit(184, "gigaparsecs")
  8058. },
  8059. {
  8060. name: "Eternity War",
  8061. height: math.unit(1.98e55, "yottaparsecs")
  8062. },
  8063. ]
  8064. ))
  8065. characterMakers.push(() => makeCharacter(
  8066. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8067. {
  8068. front: {
  8069. height: math.unit(5 + 8 / 12, "feet"),
  8070. weight: math.unit(63, "kg"),
  8071. name: "Front",
  8072. image: {
  8073. source: "./media/characters/xavier/front.svg",
  8074. extra: 944 / 883
  8075. }
  8076. },
  8077. frontStretch: {
  8078. height: math.unit(5 + 8 / 12, "feet"),
  8079. weight: math.unit(63, "kg"),
  8080. name: "Stretching",
  8081. image: {
  8082. source: "./media/characters/xavier/front-stretch.svg",
  8083. extra: 962 / 820
  8084. }
  8085. },
  8086. },
  8087. [
  8088. {
  8089. name: "Normal",
  8090. height: math.unit(5 + 8 / 12, "feet")
  8091. },
  8092. {
  8093. name: "Macro",
  8094. height: math.unit(100, "meters"),
  8095. default: true
  8096. },
  8097. {
  8098. name: "McLargeHuge",
  8099. height: math.unit(10, "miles")
  8100. },
  8101. ]
  8102. ))
  8103. characterMakers.push(() => makeCharacter(
  8104. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8105. {
  8106. front: {
  8107. height: math.unit(5 + 5 / 12, "feet"),
  8108. weight: math.unit(150, "lb"),
  8109. name: "Front",
  8110. image: {
  8111. source: "./media/characters/joshii/front.svg",
  8112. extra: 765 / 653,
  8113. bottom: 51 / 816
  8114. }
  8115. },
  8116. foot: {
  8117. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8118. name: "Foot",
  8119. image: {
  8120. source: "./media/characters/joshii/foot.svg"
  8121. }
  8122. },
  8123. },
  8124. [
  8125. {
  8126. name: "Micro",
  8127. height: math.unit(2, "inches"),
  8128. default: true
  8129. },
  8130. {
  8131. name: "Normal",
  8132. height: math.unit(5 + 5 / 12, "feet")
  8133. },
  8134. {
  8135. name: "Macro",
  8136. height: math.unit(785, "feet")
  8137. },
  8138. {
  8139. name: "Megamacro",
  8140. height: math.unit(24.5, "miles")
  8141. },
  8142. ]
  8143. ))
  8144. characterMakers.push(() => makeCharacter(
  8145. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8146. {
  8147. front: {
  8148. height: math.unit(6, "feet"),
  8149. weight: math.unit(150, "lb"),
  8150. name: "Front",
  8151. image: {
  8152. source: "./media/characters/goddess-elizabeth/front.svg",
  8153. extra: 1800 / 1525,
  8154. bottom: 0.005
  8155. }
  8156. },
  8157. foot: {
  8158. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8159. name: "Foot",
  8160. image: {
  8161. source: "./media/characters/goddess-elizabeth/foot.svg"
  8162. }
  8163. },
  8164. mouth: {
  8165. height: math.unit(6, "feet"),
  8166. name: "Mouth",
  8167. image: {
  8168. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8169. }
  8170. },
  8171. },
  8172. [
  8173. {
  8174. name: "Micro",
  8175. height: math.unit(12, "feet")
  8176. },
  8177. {
  8178. name: "Normal",
  8179. height: math.unit(80, "miles"),
  8180. default: true
  8181. },
  8182. {
  8183. name: "Macro",
  8184. height: math.unit(15000, "parsecs")
  8185. },
  8186. ]
  8187. ))
  8188. characterMakers.push(() => makeCharacter(
  8189. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8190. {
  8191. front: {
  8192. height: math.unit(5 + 9 / 12, "feet"),
  8193. weight: math.unit(144, "lb"),
  8194. name: "Front",
  8195. image: {
  8196. source: "./media/characters/kara/front.svg"
  8197. }
  8198. },
  8199. feet: {
  8200. height: math.unit(6 / 6.765, "feet"),
  8201. name: "Kara's Feet",
  8202. rename: true,
  8203. image: {
  8204. source: "./media/characters/kara/feet.svg"
  8205. }
  8206. },
  8207. },
  8208. [
  8209. {
  8210. name: "Normal",
  8211. height: math.unit(5 + 9 / 12, "feet")
  8212. },
  8213. {
  8214. name: "Macro",
  8215. height: math.unit(174, "feet"),
  8216. default: true
  8217. },
  8218. ]
  8219. ))
  8220. characterMakers.push(() => makeCharacter(
  8221. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8222. {
  8223. front: {
  8224. height: math.unit(18, "feet"),
  8225. weight: math.unit(4050, "lb"),
  8226. name: "Front",
  8227. image: {
  8228. source: "./media/characters/tyrone/front.svg",
  8229. extra: 2405 / 2270,
  8230. bottom: 182 / 2587
  8231. }
  8232. },
  8233. },
  8234. [
  8235. {
  8236. name: "Normal",
  8237. height: math.unit(18, "feet"),
  8238. default: true
  8239. },
  8240. {
  8241. name: "Macro",
  8242. height: math.unit(300, "feet")
  8243. },
  8244. {
  8245. name: "Megamacro",
  8246. height: math.unit(15, "km")
  8247. },
  8248. {
  8249. name: "Gigamacro",
  8250. height: math.unit(500, "km")
  8251. },
  8252. {
  8253. name: "Teramacro",
  8254. height: math.unit(0.5, "gigameters")
  8255. },
  8256. {
  8257. name: "Omnimacro",
  8258. height: math.unit(1e252, "yottauniverse")
  8259. },
  8260. ]
  8261. ))
  8262. characterMakers.push(() => makeCharacter(
  8263. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8264. {
  8265. front: {
  8266. height: math.unit(7 + 8 / 12, "feet"),
  8267. weight: math.unit(120, "lb"),
  8268. name: "Front",
  8269. image: {
  8270. source: "./media/characters/danny/front.svg",
  8271. extra: 1490 / 1350
  8272. }
  8273. },
  8274. back: {
  8275. height: math.unit(7 + 8 / 12, "feet"),
  8276. weight: math.unit(120, "lb"),
  8277. name: "Back",
  8278. image: {
  8279. source: "./media/characters/danny/back.svg",
  8280. extra: 1490 / 1350
  8281. }
  8282. },
  8283. },
  8284. [
  8285. {
  8286. name: "Normal",
  8287. height: math.unit(7 + 8 / 12, "feet"),
  8288. default: true
  8289. },
  8290. ]
  8291. ))
  8292. characterMakers.push(() => makeCharacter(
  8293. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8294. {
  8295. front: {
  8296. height: math.unit(3.5, "inches"),
  8297. weight: math.unit(19, "grams"),
  8298. name: "Front",
  8299. image: {
  8300. source: "./media/characters/mallow/front.svg",
  8301. extra: 471 / 431
  8302. }
  8303. },
  8304. back: {
  8305. height: math.unit(3.5, "inches"),
  8306. weight: math.unit(19, "grams"),
  8307. name: "Back",
  8308. image: {
  8309. source: "./media/characters/mallow/back.svg",
  8310. extra: 471 / 431
  8311. }
  8312. },
  8313. },
  8314. [
  8315. {
  8316. name: "Normal",
  8317. height: math.unit(3.5, "inches"),
  8318. default: true
  8319. },
  8320. ]
  8321. ))
  8322. characterMakers.push(() => makeCharacter(
  8323. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8324. {
  8325. front: {
  8326. height: math.unit(9, "feet"),
  8327. weight: math.unit(230, "kg"),
  8328. name: "Front",
  8329. image: {
  8330. source: "./media/characters/starry-aqua/front.svg"
  8331. }
  8332. },
  8333. back: {
  8334. height: math.unit(9, "feet"),
  8335. weight: math.unit(230, "kg"),
  8336. name: "Back",
  8337. image: {
  8338. source: "./media/characters/starry-aqua/back.svg"
  8339. }
  8340. },
  8341. hand: {
  8342. height: math.unit(9 * 0.1168, "feet"),
  8343. name: "Hand",
  8344. image: {
  8345. source: "./media/characters/starry-aqua/hand.svg"
  8346. }
  8347. },
  8348. foot: {
  8349. height: math.unit(9 * 0.18, "feet"),
  8350. name: "Foot",
  8351. image: {
  8352. source: "./media/characters/starry-aqua/foot.svg"
  8353. }
  8354. }
  8355. },
  8356. [
  8357. {
  8358. name: "Micro",
  8359. height: math.unit(3, "inches")
  8360. },
  8361. {
  8362. name: "Normal",
  8363. height: math.unit(9, "feet")
  8364. },
  8365. {
  8366. name: "Macro",
  8367. height: math.unit(300, "feet"),
  8368. default: true
  8369. },
  8370. {
  8371. name: "Megamacro",
  8372. height: math.unit(3200, "feet")
  8373. }
  8374. ]
  8375. ))
  8376. characterMakers.push(() => makeCharacter(
  8377. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8378. {
  8379. front: {
  8380. height: math.unit(6, "feet"),
  8381. weight: math.unit(230, "lb"),
  8382. name: "Front",
  8383. image: {
  8384. source: "./media/characters/luka/front.svg",
  8385. extra: 1,
  8386. bottom: 0.025
  8387. }
  8388. },
  8389. },
  8390. [
  8391. {
  8392. name: "Normal",
  8393. height: math.unit(12 + 8 / 12, "feet"),
  8394. default: true
  8395. },
  8396. {
  8397. name: "Minimacro",
  8398. height: math.unit(20, "feet")
  8399. },
  8400. {
  8401. name: "Macro",
  8402. height: math.unit(250, "feet")
  8403. },
  8404. {
  8405. name: "Megamacro",
  8406. height: math.unit(5, "miles")
  8407. },
  8408. {
  8409. name: "Gigamacro",
  8410. height: math.unit(8000, "miles")
  8411. },
  8412. ]
  8413. ))
  8414. characterMakers.push(() => makeCharacter(
  8415. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8416. {
  8417. front: {
  8418. height: math.unit(6, "feet"),
  8419. weight: math.unit(150, "lb"),
  8420. name: "Front",
  8421. image: {
  8422. source: "./media/characters/natalie-nightring/front.svg",
  8423. extra: 1,
  8424. bottom: 0.06
  8425. }
  8426. },
  8427. },
  8428. [
  8429. {
  8430. name: "Uh Oh",
  8431. height: math.unit(0.1, "mm")
  8432. },
  8433. {
  8434. name: "Small",
  8435. height: math.unit(3, "inches")
  8436. },
  8437. {
  8438. name: "Human Scale",
  8439. height: math.unit(6, "feet")
  8440. },
  8441. {
  8442. name: "Librarian",
  8443. height: math.unit(50, "feet"),
  8444. default: true
  8445. },
  8446. {
  8447. name: "Immense",
  8448. height: math.unit(200, "miles")
  8449. },
  8450. ]
  8451. ))
  8452. characterMakers.push(() => makeCharacter(
  8453. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8454. {
  8455. front: {
  8456. height: math.unit(6, "feet"),
  8457. weight: math.unit(180, "lbs"),
  8458. name: "Front",
  8459. image: {
  8460. source: "./media/characters/danni-rosie/front.svg",
  8461. extra: 1260 / 1128,
  8462. bottom: 0.022
  8463. }
  8464. },
  8465. },
  8466. [
  8467. {
  8468. name: "Micro",
  8469. height: math.unit(2, "inches"),
  8470. default: true
  8471. },
  8472. ]
  8473. ))
  8474. characterMakers.push(() => makeCharacter(
  8475. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8476. {
  8477. front: {
  8478. height: math.unit(5 + 9 / 12, "feet"),
  8479. weight: math.unit(220, "lb"),
  8480. name: "Front",
  8481. image: {
  8482. source: "./media/characters/samantha-kruse/front.svg",
  8483. extra: (985 / 935),
  8484. bottom: 0.03
  8485. }
  8486. },
  8487. frontUndressed: {
  8488. height: math.unit(5 + 9 / 12, "feet"),
  8489. weight: math.unit(220, "lb"),
  8490. name: "Front (Undressed)",
  8491. image: {
  8492. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8493. extra: (973 / 923),
  8494. bottom: 0.025
  8495. }
  8496. },
  8497. fat: {
  8498. height: math.unit(5 + 9 / 12, "feet"),
  8499. weight: math.unit(900, "lb"),
  8500. name: "Front (Fat)",
  8501. image: {
  8502. source: "./media/characters/samantha-kruse/fat.svg",
  8503. extra: 2688 / 2561
  8504. }
  8505. },
  8506. },
  8507. [
  8508. {
  8509. name: "Normal",
  8510. height: math.unit(5 + 9 / 12, "feet"),
  8511. default: true
  8512. }
  8513. ]
  8514. ))
  8515. characterMakers.push(() => makeCharacter(
  8516. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8517. {
  8518. back: {
  8519. height: math.unit(5 + 4 / 12, "feet"),
  8520. weight: math.unit(4963, "lb"),
  8521. name: "Back",
  8522. image: {
  8523. source: "./media/characters/amelia-rosie/back.svg",
  8524. extra: 1113 / 963,
  8525. bottom: 0.01
  8526. }
  8527. },
  8528. },
  8529. [
  8530. {
  8531. name: "Level 0",
  8532. height: math.unit(5 + 4 / 12, "feet")
  8533. },
  8534. {
  8535. name: "Level 1",
  8536. height: math.unit(164597, "feet"),
  8537. default: true
  8538. },
  8539. {
  8540. name: "Level 2",
  8541. height: math.unit(956243, "miles")
  8542. },
  8543. {
  8544. name: "Level 3",
  8545. height: math.unit(29421709423, "miles")
  8546. },
  8547. {
  8548. name: "Level 4",
  8549. height: math.unit(154, "lightyears")
  8550. },
  8551. {
  8552. name: "Level 5",
  8553. height: math.unit(4738272, "lightyears")
  8554. },
  8555. {
  8556. name: "Level 6",
  8557. height: math.unit(145787152896, "lightyears")
  8558. },
  8559. ]
  8560. ))
  8561. characterMakers.push(() => makeCharacter(
  8562. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8563. {
  8564. front: {
  8565. height: math.unit(5 + 11 / 12, "feet"),
  8566. weight: math.unit(65, "kg"),
  8567. name: "Front",
  8568. image: {
  8569. source: "./media/characters/rook-kitara/front.svg",
  8570. extra: 1347 / 1274,
  8571. bottom: 0.005
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Totally Unfair",
  8578. height: math.unit(1.8, "mm")
  8579. },
  8580. {
  8581. name: "Lap Rookie",
  8582. height: math.unit(1.4, "feet")
  8583. },
  8584. {
  8585. name: "Normal",
  8586. height: math.unit(5 + 11 / 12, "feet"),
  8587. default: true
  8588. },
  8589. {
  8590. name: "How Did This Happen",
  8591. height: math.unit(80, "miles")
  8592. }
  8593. ]
  8594. ))
  8595. characterMakers.push(() => makeCharacter(
  8596. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8597. {
  8598. front: {
  8599. height: math.unit(7, "feet"),
  8600. weight: math.unit(300, "lb"),
  8601. name: "Front",
  8602. image: {
  8603. source: "./media/characters/pisces/front.svg",
  8604. extra: 2255 / 2115,
  8605. bottom: 0.03
  8606. }
  8607. },
  8608. back: {
  8609. height: math.unit(7, "feet"),
  8610. weight: math.unit(300, "lb"),
  8611. name: "Back",
  8612. image: {
  8613. source: "./media/characters/pisces/back.svg",
  8614. extra: 2146 / 2055,
  8615. bottom: 0.04
  8616. }
  8617. },
  8618. },
  8619. [
  8620. {
  8621. name: "Normal",
  8622. height: math.unit(7, "feet"),
  8623. default: true
  8624. },
  8625. {
  8626. name: "Swimming Pool",
  8627. height: math.unit(12.2, "meters")
  8628. },
  8629. {
  8630. name: "Olympic Swimming Pool",
  8631. height: math.unit(56.3, "meters")
  8632. },
  8633. {
  8634. name: "Lake Superior",
  8635. height: math.unit(93900, "meters")
  8636. },
  8637. {
  8638. name: "Mediterranean Sea",
  8639. height: math.unit(644457, "meters")
  8640. },
  8641. {
  8642. name: "World's Oceans",
  8643. height: math.unit(4567491, "meters")
  8644. },
  8645. ]
  8646. ))
  8647. characterMakers.push(() => makeCharacter(
  8648. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8649. {
  8650. front: {
  8651. height: math.unit(2.3, "meters"),
  8652. weight: math.unit(120, "kg"),
  8653. name: "Front",
  8654. image: {
  8655. source: "./media/characters/zelas/front.svg"
  8656. }
  8657. },
  8658. side: {
  8659. height: math.unit(2.3, "meters"),
  8660. weight: math.unit(120, "kg"),
  8661. name: "Side",
  8662. image: {
  8663. source: "./media/characters/zelas/side.svg"
  8664. }
  8665. },
  8666. back: {
  8667. height: math.unit(2.3, "meters"),
  8668. weight: math.unit(120, "kg"),
  8669. name: "Back",
  8670. image: {
  8671. source: "./media/characters/zelas/back.svg"
  8672. }
  8673. },
  8674. foot: {
  8675. height: math.unit(1.116, "feet"),
  8676. name: "Foot",
  8677. image: {
  8678. source: "./media/characters/zelas/foot.svg"
  8679. }
  8680. },
  8681. },
  8682. [
  8683. {
  8684. name: "Normal",
  8685. height: math.unit(2.3, "meters")
  8686. },
  8687. {
  8688. name: "Macro",
  8689. height: math.unit(30, "meters"),
  8690. default: true
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(1, "inch"),
  8699. weight: math.unit(0.21, "grams"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/talbot/front.svg",
  8703. extra: 594 / 544
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Micro",
  8710. height: math.unit(1, "inch"),
  8711. default: true
  8712. },
  8713. ]
  8714. ))
  8715. characterMakers.push(() => makeCharacter(
  8716. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8717. {
  8718. front: {
  8719. height: math.unit(3 + 3 / 12, "feet"),
  8720. weight: math.unit(51.8, "lb"),
  8721. name: "Front",
  8722. image: {
  8723. source: "./media/characters/fliss/front.svg",
  8724. extra: 840 / 640
  8725. }
  8726. },
  8727. },
  8728. [
  8729. {
  8730. name: "Teeny Tiny",
  8731. height: math.unit(1, "mm")
  8732. },
  8733. {
  8734. name: "Small",
  8735. height: math.unit(1, "inch"),
  8736. default: true
  8737. },
  8738. {
  8739. name: "Standard Sylveon",
  8740. height: math.unit(3 + 3 / 12, "feet")
  8741. },
  8742. {
  8743. name: "Large Nuisance",
  8744. height: math.unit(33, "feet")
  8745. },
  8746. {
  8747. name: "City Filler",
  8748. height: math.unit(3000, "feet")
  8749. },
  8750. {
  8751. name: "New Horizon",
  8752. height: math.unit(6000, "miles")
  8753. },
  8754. ]
  8755. ))
  8756. characterMakers.push(() => makeCharacter(
  8757. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8758. {
  8759. front: {
  8760. height: math.unit(5, "cm"),
  8761. weight: math.unit(1.94, "g"),
  8762. name: "Front",
  8763. image: {
  8764. source: "./media/characters/fleta/front.svg",
  8765. extra: 835 / 803
  8766. }
  8767. },
  8768. back: {
  8769. height: math.unit(5, "cm"),
  8770. weight: math.unit(1.94, "g"),
  8771. name: "Back",
  8772. image: {
  8773. source: "./media/characters/fleta/back.svg",
  8774. extra: 835 / 803
  8775. }
  8776. },
  8777. },
  8778. [
  8779. {
  8780. name: "Micro",
  8781. height: math.unit(5, "cm"),
  8782. default: true
  8783. },
  8784. ]
  8785. ))
  8786. characterMakers.push(() => makeCharacter(
  8787. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8788. {
  8789. front: {
  8790. height: math.unit(6, "feet"),
  8791. weight: math.unit(225, "lb"),
  8792. name: "Front",
  8793. image: {
  8794. source: "./media/characters/dominic/front.svg",
  8795. extra: 1770 / 1620,
  8796. bottom: 0.025
  8797. }
  8798. },
  8799. back: {
  8800. height: math.unit(6, "feet"),
  8801. weight: math.unit(225, "lb"),
  8802. name: "Back",
  8803. image: {
  8804. source: "./media/characters/dominic/back.svg",
  8805. extra: 1745 / 1620,
  8806. bottom: 0.065
  8807. }
  8808. },
  8809. },
  8810. [
  8811. {
  8812. name: "Nano",
  8813. height: math.unit(0.1, "mm")
  8814. },
  8815. {
  8816. name: "Micro-",
  8817. height: math.unit(1, "mm")
  8818. },
  8819. {
  8820. name: "Micro",
  8821. height: math.unit(4, "inches")
  8822. },
  8823. {
  8824. name: "Normal",
  8825. height: math.unit(6 + 4 / 12, "feet"),
  8826. default: true
  8827. },
  8828. {
  8829. name: "Macro",
  8830. height: math.unit(115, "feet")
  8831. },
  8832. {
  8833. name: "Macro+",
  8834. height: math.unit(955, "feet")
  8835. },
  8836. {
  8837. name: "Megamacro",
  8838. height: math.unit(8990, "feet")
  8839. },
  8840. {
  8841. name: "Gigmacro",
  8842. height: math.unit(9310, "miles")
  8843. },
  8844. {
  8845. name: "Teramacro",
  8846. height: math.unit(1567005010, "miles")
  8847. },
  8848. {
  8849. name: "Examacro",
  8850. height: math.unit(1425, "parsecs")
  8851. },
  8852. ]
  8853. ))
  8854. characterMakers.push(() => makeCharacter(
  8855. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8856. {
  8857. front: {
  8858. height: math.unit(400, "feet"),
  8859. weight: math.unit(44444444, "lb"),
  8860. name: "Front",
  8861. image: {
  8862. source: "./media/characters/major-colonel/front.svg"
  8863. }
  8864. },
  8865. back: {
  8866. height: math.unit(400, "feet"),
  8867. weight: math.unit(44444444, "lb"),
  8868. name: "Back",
  8869. image: {
  8870. source: "./media/characters/major-colonel/back.svg"
  8871. }
  8872. },
  8873. },
  8874. [
  8875. {
  8876. name: "Macro",
  8877. height: math.unit(400, "feet"),
  8878. default: true
  8879. },
  8880. ]
  8881. ))
  8882. characterMakers.push(() => makeCharacter(
  8883. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8884. {
  8885. catFront: {
  8886. height: math.unit(6, "feet"),
  8887. weight: math.unit(120, "lb"),
  8888. name: "Front (Cat Side)",
  8889. image: {
  8890. source: "./media/characters/axel-lycan/cat-front.svg",
  8891. extra: 430 / 402,
  8892. bottom: 43 / 472.35
  8893. }
  8894. },
  8895. catBack: {
  8896. height: math.unit(6, "feet"),
  8897. weight: math.unit(120, "lb"),
  8898. name: "Back (Cat Side)",
  8899. image: {
  8900. source: "./media/characters/axel-lycan/cat-back.svg",
  8901. extra: 447 / 419,
  8902. bottom: 23.3 / 469
  8903. }
  8904. },
  8905. wolfFront: {
  8906. height: math.unit(6, "feet"),
  8907. weight: math.unit(120, "lb"),
  8908. name: "Front (Wolf Side)",
  8909. image: {
  8910. source: "./media/characters/axel-lycan/wolf-front.svg",
  8911. extra: 485 / 456,
  8912. bottom: 19 / 504
  8913. }
  8914. },
  8915. wolfBack: {
  8916. height: math.unit(6, "feet"),
  8917. weight: math.unit(120, "lb"),
  8918. name: "Back (Wolf Side)",
  8919. image: {
  8920. source: "./media/characters/axel-lycan/wolf-back.svg",
  8921. extra: 475 / 438,
  8922. bottom: 39.2 / 514
  8923. }
  8924. },
  8925. },
  8926. [
  8927. {
  8928. name: "Macro",
  8929. height: math.unit(1, "km"),
  8930. default: true
  8931. },
  8932. ]
  8933. ))
  8934. characterMakers.push(() => makeCharacter(
  8935. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8936. {
  8937. front: {
  8938. height: math.unit(5 + 9 / 12, "feet"),
  8939. weight: math.unit(175, "lb"),
  8940. name: "Front",
  8941. image: {
  8942. source: "./media/characters/vanrel-hyena/front.svg",
  8943. extra: 1086 / 1010,
  8944. bottom: 0.04
  8945. }
  8946. },
  8947. },
  8948. [
  8949. {
  8950. name: "Normal",
  8951. height: math.unit(5 + 9 / 12, "feet"),
  8952. default: true
  8953. },
  8954. ]
  8955. ))
  8956. characterMakers.push(() => makeCharacter(
  8957. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8958. {
  8959. front: {
  8960. height: math.unit(6, "feet"),
  8961. weight: math.unit(103, "lb"),
  8962. name: "Front",
  8963. image: {
  8964. source: "./media/characters/abbott-absol/front.svg",
  8965. extra: 2010 / 1842
  8966. }
  8967. },
  8968. },
  8969. [
  8970. {
  8971. name: "Megamicro",
  8972. height: math.unit(0.1, "mm")
  8973. },
  8974. {
  8975. name: "Micro",
  8976. height: math.unit(1, "inch")
  8977. },
  8978. {
  8979. name: "Normal",
  8980. height: math.unit(6, "feet"),
  8981. default: true
  8982. },
  8983. ]
  8984. ))
  8985. characterMakers.push(() => makeCharacter(
  8986. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8987. {
  8988. front: {
  8989. height: math.unit(6, "feet"),
  8990. weight: math.unit(264, "lb"),
  8991. name: "Front",
  8992. image: {
  8993. source: "./media/characters/hector/front.svg",
  8994. extra: 2280 / 2130,
  8995. bottom: 0.07
  8996. }
  8997. },
  8998. },
  8999. [
  9000. {
  9001. name: "Normal",
  9002. height: math.unit(12.25, "foot"),
  9003. default: true
  9004. },
  9005. {
  9006. name: "Macro",
  9007. height: math.unit(160, "feet")
  9008. },
  9009. ]
  9010. ))
  9011. characterMakers.push(() => makeCharacter(
  9012. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9013. {
  9014. front: {
  9015. height: math.unit(6, "feet"),
  9016. weight: math.unit(150, "lb"),
  9017. name: "Front",
  9018. image: {
  9019. source: "./media/characters/sal/front.svg",
  9020. extra: 1846 / 1699,
  9021. bottom: 0.04
  9022. }
  9023. },
  9024. },
  9025. [
  9026. {
  9027. name: "Megamacro",
  9028. height: math.unit(10, "miles"),
  9029. default: true
  9030. },
  9031. ]
  9032. ))
  9033. characterMakers.push(() => makeCharacter(
  9034. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9035. {
  9036. front: {
  9037. height: math.unit(3, "meters"),
  9038. weight: math.unit(450, "kg"),
  9039. name: "front",
  9040. image: {
  9041. source: "./media/characters/ranger/front.svg",
  9042. extra: 2401 / 2243,
  9043. bottom: 0.05
  9044. }
  9045. },
  9046. },
  9047. [
  9048. {
  9049. name: "Normal",
  9050. height: math.unit(3, "meters"),
  9051. default: true
  9052. },
  9053. ]
  9054. ))
  9055. characterMakers.push(() => makeCharacter(
  9056. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9057. {
  9058. front: {
  9059. height: math.unit(14, "feet"),
  9060. weight: math.unit(800, "kg"),
  9061. name: "Front",
  9062. image: {
  9063. source: "./media/characters/theresa/front.svg",
  9064. extra: 3575 / 3346,
  9065. bottom: 0.03
  9066. }
  9067. },
  9068. },
  9069. [
  9070. {
  9071. name: "Normal",
  9072. height: math.unit(14, "feet"),
  9073. default: true
  9074. },
  9075. ]
  9076. ))
  9077. characterMakers.push(() => makeCharacter(
  9078. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9079. {
  9080. front: {
  9081. height: math.unit(6, "feet"),
  9082. weight: math.unit(3, "kg"),
  9083. name: "Front",
  9084. image: {
  9085. source: "./media/characters/ine/front.svg",
  9086. extra: 678 / 539,
  9087. bottom: 0.023
  9088. }
  9089. },
  9090. },
  9091. [
  9092. {
  9093. name: "Normal",
  9094. height: math.unit(2.265, "feet"),
  9095. default: true
  9096. },
  9097. ]
  9098. ))
  9099. characterMakers.push(() => makeCharacter(
  9100. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9101. {
  9102. front: {
  9103. height: math.unit(5, "feet"),
  9104. weight: math.unit(30, "kg"),
  9105. name: "Front",
  9106. image: {
  9107. source: "./media/characters/vial/front.svg",
  9108. extra: 1365 / 1277,
  9109. bottom: 0.04
  9110. }
  9111. },
  9112. },
  9113. [
  9114. {
  9115. name: "Normal",
  9116. height: math.unit(5, "feet"),
  9117. default: true
  9118. },
  9119. ]
  9120. ))
  9121. characterMakers.push(() => makeCharacter(
  9122. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9123. {
  9124. side: {
  9125. height: math.unit(3.4, "meters"),
  9126. weight: math.unit(1000, "lb"),
  9127. name: "Side",
  9128. image: {
  9129. source: "./media/characters/rovoska/side.svg",
  9130. extra: 4403 / 1515
  9131. }
  9132. },
  9133. },
  9134. [
  9135. {
  9136. name: "Normal",
  9137. height: math.unit(3.4, "meters"),
  9138. default: true
  9139. },
  9140. ]
  9141. ))
  9142. characterMakers.push(() => makeCharacter(
  9143. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9144. {
  9145. front: {
  9146. height: math.unit(8, "feet"),
  9147. weight: math.unit(315, "lb"),
  9148. name: "Front",
  9149. image: {
  9150. source: "./media/characters/gunner-rotthbauer/front.svg"
  9151. }
  9152. },
  9153. back: {
  9154. height: math.unit(8, "feet"),
  9155. weight: math.unit(315, "lb"),
  9156. name: "Back",
  9157. image: {
  9158. source: "./media/characters/gunner-rotthbauer/back.svg"
  9159. }
  9160. },
  9161. },
  9162. [
  9163. {
  9164. name: "Micro",
  9165. height: math.unit(3.5, "inches")
  9166. },
  9167. {
  9168. name: "Normal",
  9169. height: math.unit(8, "feet"),
  9170. default: true
  9171. },
  9172. {
  9173. name: "Macro",
  9174. height: math.unit(250, "feet")
  9175. },
  9176. {
  9177. name: "Megamacro",
  9178. height: math.unit(1, "AU")
  9179. },
  9180. ]
  9181. ))
  9182. characterMakers.push(() => makeCharacter(
  9183. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9184. {
  9185. front: {
  9186. height: math.unit(5 + 5 / 12, "feet"),
  9187. weight: math.unit(140, "lb"),
  9188. name: "Front",
  9189. image: {
  9190. source: "./media/characters/allatia/front.svg",
  9191. extra: 1227 / 1180,
  9192. bottom: 0.027
  9193. }
  9194. },
  9195. },
  9196. [
  9197. {
  9198. name: "Normal",
  9199. height: math.unit(5 + 5 / 12, "feet")
  9200. },
  9201. {
  9202. name: "Macro",
  9203. height: math.unit(250, "feet"),
  9204. default: true
  9205. },
  9206. {
  9207. name: "Megamacro",
  9208. height: math.unit(8, "miles")
  9209. }
  9210. ]
  9211. ))
  9212. characterMakers.push(() => makeCharacter(
  9213. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9214. {
  9215. front: {
  9216. height: math.unit(6, "feet"),
  9217. weight: math.unit(120, "lb"),
  9218. name: "Front",
  9219. image: {
  9220. source: "./media/characters/tene/front.svg",
  9221. extra: 1728 / 1578,
  9222. bottom: 0.022
  9223. }
  9224. },
  9225. stomping: {
  9226. height: math.unit(2.025, "meters"),
  9227. weight: math.unit(120, "lb"),
  9228. name: "Stomping",
  9229. image: {
  9230. source: "./media/characters/tene/stomping.svg",
  9231. extra: 938 / 873,
  9232. bottom: 0.01
  9233. }
  9234. },
  9235. sitting: {
  9236. height: math.unit(1, "meter"),
  9237. weight: math.unit(120, "lb"),
  9238. name: "Sitting",
  9239. image: {
  9240. source: "./media/characters/tene/sitting.svg",
  9241. extra: 437 / 415,
  9242. bottom: 0.1
  9243. }
  9244. },
  9245. feral: {
  9246. height: math.unit(3.9, "feet"),
  9247. weight: math.unit(250, "lb"),
  9248. name: "Feral",
  9249. image: {
  9250. source: "./media/characters/tene/feral.svg",
  9251. extra: 717 / 458,
  9252. bottom: 0.179
  9253. }
  9254. },
  9255. },
  9256. [
  9257. {
  9258. name: "Normal",
  9259. height: math.unit(6, "feet")
  9260. },
  9261. {
  9262. name: "Macro",
  9263. height: math.unit(300, "feet"),
  9264. default: true
  9265. },
  9266. {
  9267. name: "Megamacro",
  9268. height: math.unit(5, "miles")
  9269. },
  9270. ]
  9271. ))
  9272. characterMakers.push(() => makeCharacter(
  9273. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9274. {
  9275. side: {
  9276. height: math.unit(6, "feet"),
  9277. name: "Side",
  9278. image: {
  9279. source: "./media/characters/evander/side.svg",
  9280. extra: 877 / 477
  9281. }
  9282. },
  9283. },
  9284. [
  9285. {
  9286. name: "Normal",
  9287. height: math.unit(0.83, "meters"),
  9288. default: true
  9289. },
  9290. ]
  9291. ))
  9292. characterMakers.push(() => makeCharacter(
  9293. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9294. {
  9295. front: {
  9296. height: math.unit(12, "feet"),
  9297. weight: math.unit(1000, "lb"),
  9298. name: "Front",
  9299. image: {
  9300. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9301. extra: 1762 / 1611
  9302. }
  9303. },
  9304. back: {
  9305. height: math.unit(12, "feet"),
  9306. weight: math.unit(1000, "lb"),
  9307. name: "Back",
  9308. image: {
  9309. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9310. extra: 1762 / 1611
  9311. }
  9312. },
  9313. },
  9314. [
  9315. {
  9316. name: "Normal",
  9317. height: math.unit(12, "feet"),
  9318. default: true
  9319. },
  9320. {
  9321. name: "Kaiju",
  9322. height: math.unit(150, "feet")
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9328. {
  9329. front: {
  9330. height: math.unit(6, "feet"),
  9331. weight: math.unit(150, "lb"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/zero-alurus/front.svg"
  9335. }
  9336. },
  9337. back: {
  9338. height: math.unit(6, "feet"),
  9339. weight: math.unit(150, "lb"),
  9340. name: "Back",
  9341. image: {
  9342. source: "./media/characters/zero-alurus/back.svg"
  9343. }
  9344. },
  9345. },
  9346. [
  9347. {
  9348. name: "Normal",
  9349. height: math.unit(5 + 10 / 12, "feet")
  9350. },
  9351. {
  9352. name: "Macro",
  9353. height: math.unit(60, "feet"),
  9354. default: true
  9355. },
  9356. {
  9357. name: "Macro+",
  9358. height: math.unit(450, "feet")
  9359. },
  9360. ]
  9361. ))
  9362. characterMakers.push(() => makeCharacter(
  9363. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9364. {
  9365. front: {
  9366. height: math.unit(6, "feet"),
  9367. weight: math.unit(200, "lb"),
  9368. name: "Front",
  9369. image: {
  9370. source: "./media/characters/mega-shi/front.svg",
  9371. extra: 1279 / 1250,
  9372. bottom: 0.02
  9373. }
  9374. },
  9375. back: {
  9376. height: math.unit(6, "feet"),
  9377. weight: math.unit(200, "lb"),
  9378. name: "Back",
  9379. image: {
  9380. source: "./media/characters/mega-shi/back.svg",
  9381. extra: 1279 / 1250,
  9382. bottom: 0.02
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Micro",
  9389. height: math.unit(16 + 6 / 12, "feet")
  9390. },
  9391. {
  9392. name: "Third Dimension",
  9393. height: math.unit(40, "meters")
  9394. },
  9395. {
  9396. name: "Normal",
  9397. height: math.unit(660, "feet"),
  9398. default: true
  9399. },
  9400. {
  9401. name: "Megamacro",
  9402. height: math.unit(10, "miles")
  9403. },
  9404. {
  9405. name: "Planetary Launch",
  9406. height: math.unit(500, "miles")
  9407. },
  9408. {
  9409. name: "Interstellar",
  9410. height: math.unit(1e9, "miles")
  9411. },
  9412. {
  9413. name: "Leaving the Universe",
  9414. height: math.unit(1, "gigaparsec")
  9415. },
  9416. {
  9417. name: "Travelling Universes",
  9418. height: math.unit(30e15, "parsecs")
  9419. },
  9420. ]
  9421. ))
  9422. characterMakers.push(() => makeCharacter(
  9423. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9424. {
  9425. front: {
  9426. height: math.unit(6, "feet"),
  9427. weight: math.unit(150, "lb"),
  9428. name: "Front",
  9429. image: {
  9430. source: "./media/characters/odyssey/front.svg",
  9431. extra: 1782 / 1582,
  9432. bottom: 0.01
  9433. }
  9434. },
  9435. side: {
  9436. height: math.unit(5.7, "feet"),
  9437. weight: math.unit(140, "lb"),
  9438. name: "Side",
  9439. image: {
  9440. source: "./media/characters/odyssey/side.svg",
  9441. extra: 6462 / 5700
  9442. }
  9443. },
  9444. },
  9445. [
  9446. {
  9447. name: "Normal",
  9448. height: math.unit(5 + 4 / 12, "feet")
  9449. },
  9450. {
  9451. name: "Macro",
  9452. height: math.unit(1, "km")
  9453. },
  9454. {
  9455. name: "Megamacro",
  9456. height: math.unit(3000, "km")
  9457. },
  9458. {
  9459. name: "Gigamacro",
  9460. height: math.unit(1, "AU"),
  9461. default: true
  9462. },
  9463. {
  9464. name: "Omniversal",
  9465. height: math.unit(100e14, "lightyears")
  9466. },
  9467. ]
  9468. ))
  9469. characterMakers.push(() => makeCharacter(
  9470. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9471. {
  9472. front: {
  9473. height: math.unit(6, "feet"),
  9474. weight: math.unit(300, "lb"),
  9475. name: "Front",
  9476. image: {
  9477. source: "./media/characters/mekuto/front.svg",
  9478. extra: 921 / 832,
  9479. bottom: 0.03
  9480. }
  9481. },
  9482. hand: {
  9483. height: math.unit(6 / 10.24, "feet"),
  9484. name: "Hand",
  9485. image: {
  9486. source: "./media/characters/mekuto/hand.svg"
  9487. }
  9488. },
  9489. foot: {
  9490. height: math.unit(6 / 5.05, "feet"),
  9491. name: "Foot",
  9492. image: {
  9493. source: "./media/characters/mekuto/foot.svg"
  9494. }
  9495. },
  9496. },
  9497. [
  9498. {
  9499. name: "Minimicro",
  9500. height: math.unit(0.2, "inches")
  9501. },
  9502. {
  9503. name: "Micro",
  9504. height: math.unit(1.5, "inches")
  9505. },
  9506. {
  9507. name: "Normal",
  9508. height: math.unit(5 + 11 / 12, "feet"),
  9509. default: true
  9510. },
  9511. {
  9512. name: "Minimacro",
  9513. height: math.unit(17 + 9 / 12, "feet")
  9514. },
  9515. {
  9516. name: "Macro",
  9517. height: math.unit(177.5, "feet")
  9518. },
  9519. {
  9520. name: "Megamacro",
  9521. height: math.unit(152, "miles")
  9522. },
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9527. {
  9528. front: {
  9529. height: math.unit(6.5, "inches"),
  9530. weight: math.unit(13, "oz"),
  9531. name: "Front",
  9532. image: {
  9533. source: "./media/characters/dafydd-tomos/front.svg",
  9534. extra: 2990 / 2603,
  9535. bottom: 0.03
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Micro",
  9542. height: math.unit(6.5, "inches"),
  9543. default: true
  9544. },
  9545. ]
  9546. ))
  9547. characterMakers.push(() => makeCharacter(
  9548. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9549. {
  9550. front: {
  9551. height: math.unit(6, "feet"),
  9552. weight: math.unit(150, "lb"),
  9553. name: "Front",
  9554. image: {
  9555. source: "./media/characters/splinter/front.svg",
  9556. extra: 2990 / 2882,
  9557. bottom: 0.04
  9558. }
  9559. },
  9560. back: {
  9561. height: math.unit(6, "feet"),
  9562. weight: math.unit(150, "lb"),
  9563. name: "Back",
  9564. image: {
  9565. source: "./media/characters/splinter/back.svg",
  9566. extra: 2990 / 2882,
  9567. bottom: 0.04
  9568. }
  9569. },
  9570. },
  9571. [
  9572. {
  9573. name: "Normal",
  9574. height: math.unit(6, "feet")
  9575. },
  9576. {
  9577. name: "Macro",
  9578. height: math.unit(230, "meters"),
  9579. default: true
  9580. },
  9581. ]
  9582. ))
  9583. characterMakers.push(() => makeCharacter(
  9584. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9585. {
  9586. front: {
  9587. height: math.unit(4 + 10 / 12, "feet"),
  9588. weight: math.unit(480, "lb"),
  9589. name: "Front",
  9590. image: {
  9591. source: "./media/characters/snow-gabumon/front.svg",
  9592. extra: 1140 / 963,
  9593. bottom: 0.058
  9594. }
  9595. },
  9596. back: {
  9597. height: math.unit(4 + 10 / 12, "feet"),
  9598. weight: math.unit(480, "lb"),
  9599. name: "Back",
  9600. image: {
  9601. source: "./media/characters/snow-gabumon/back.svg",
  9602. extra: 1115 / 962,
  9603. bottom: 0.041
  9604. }
  9605. },
  9606. frontUndresed: {
  9607. height: math.unit(4 + 10 / 12, "feet"),
  9608. weight: math.unit(480, "lb"),
  9609. name: "Front (Undressed)",
  9610. image: {
  9611. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9612. extra: 1061 / 960,
  9613. bottom: 0.045
  9614. }
  9615. },
  9616. },
  9617. [
  9618. {
  9619. name: "Micro",
  9620. height: math.unit(1, "inch")
  9621. },
  9622. {
  9623. name: "Normal",
  9624. height: math.unit(4 + 10 / 12, "feet"),
  9625. default: true
  9626. },
  9627. {
  9628. name: "Macro",
  9629. height: math.unit(200, "feet")
  9630. },
  9631. {
  9632. name: "Megamacro",
  9633. height: math.unit(120, "miles")
  9634. },
  9635. {
  9636. name: "Gigamacro",
  9637. height: math.unit(9800, "miles")
  9638. },
  9639. ]
  9640. ))
  9641. characterMakers.push(() => makeCharacter(
  9642. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9643. {
  9644. front: {
  9645. height: math.unit(1.7, "meters"),
  9646. weight: math.unit(140, "lb"),
  9647. name: "Front",
  9648. image: {
  9649. source: "./media/characters/moody/front.svg",
  9650. extra: 3226 / 3007,
  9651. bottom: 0.087
  9652. }
  9653. },
  9654. },
  9655. [
  9656. {
  9657. name: "Micro",
  9658. height: math.unit(1, "mm")
  9659. },
  9660. {
  9661. name: "Normal",
  9662. height: math.unit(1.7, "meters"),
  9663. default: true
  9664. },
  9665. {
  9666. name: "Macro",
  9667. height: math.unit(80, "meters")
  9668. },
  9669. {
  9670. name: "Macro+",
  9671. height: math.unit(500, "meters")
  9672. },
  9673. ]
  9674. ))
  9675. characterMakers.push(() => makeCharacter(
  9676. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9677. {
  9678. front: {
  9679. height: math.unit(6, "feet"),
  9680. weight: math.unit(150, "lb"),
  9681. name: "Front",
  9682. image: {
  9683. source: "./media/characters/zyas/front.svg",
  9684. extra: 1180 / 1120,
  9685. bottom: 0.045
  9686. }
  9687. },
  9688. },
  9689. [
  9690. {
  9691. name: "Normal",
  9692. height: math.unit(10, "feet"),
  9693. default: true
  9694. },
  9695. {
  9696. name: "Macro",
  9697. height: math.unit(500, "feet")
  9698. },
  9699. {
  9700. name: "Megamacro",
  9701. height: math.unit(5, "miles")
  9702. },
  9703. {
  9704. name: "Teramacro",
  9705. height: math.unit(150000, "miles")
  9706. },
  9707. ]
  9708. ))
  9709. characterMakers.push(() => makeCharacter(
  9710. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9711. {
  9712. front: {
  9713. height: math.unit(6, "feet"),
  9714. weight: math.unit(150, "lb"),
  9715. name: "Front",
  9716. image: {
  9717. source: "./media/characters/cuon/front.svg",
  9718. extra: 1390 / 1320,
  9719. bottom: 0.008
  9720. }
  9721. },
  9722. },
  9723. [
  9724. {
  9725. name: "Micro",
  9726. height: math.unit(3, "inches")
  9727. },
  9728. {
  9729. name: "Normal",
  9730. height: math.unit(18 + 9 / 12, "feet"),
  9731. default: true
  9732. },
  9733. {
  9734. name: "Macro",
  9735. height: math.unit(360, "feet")
  9736. },
  9737. {
  9738. name: "Megamacro",
  9739. height: math.unit(360, "miles")
  9740. },
  9741. ]
  9742. ))
  9743. characterMakers.push(() => makeCharacter(
  9744. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9745. {
  9746. front: {
  9747. height: math.unit(2.4, "meters"),
  9748. weight: math.unit(70, "kg"),
  9749. name: "Front",
  9750. image: {
  9751. source: "./media/characters/nyanuxk/front.svg",
  9752. extra: 1172 / 1084,
  9753. bottom: 0.065
  9754. }
  9755. },
  9756. side: {
  9757. height: math.unit(2.4, "meters"),
  9758. weight: math.unit(70, "kg"),
  9759. name: "Side",
  9760. image: {
  9761. source: "./media/characters/nyanuxk/side.svg",
  9762. extra: 1190 / 1132,
  9763. bottom: 0.007
  9764. }
  9765. },
  9766. back: {
  9767. height: math.unit(2.4, "meters"),
  9768. weight: math.unit(70, "kg"),
  9769. name: "Back",
  9770. image: {
  9771. source: "./media/characters/nyanuxk/back.svg",
  9772. extra: 1200 / 1141,
  9773. bottom: 0.015
  9774. }
  9775. },
  9776. foot: {
  9777. height: math.unit(0.52, "meters"),
  9778. name: "Foot",
  9779. image: {
  9780. source: "./media/characters/nyanuxk/foot.svg"
  9781. }
  9782. },
  9783. },
  9784. [
  9785. {
  9786. name: "Micro",
  9787. height: math.unit(2, "cm")
  9788. },
  9789. {
  9790. name: "Normal",
  9791. height: math.unit(2.4, "meters"),
  9792. default: true
  9793. },
  9794. {
  9795. name: "Smaller Macro",
  9796. height: math.unit(120, "meters")
  9797. },
  9798. {
  9799. name: "Bigger Macro",
  9800. height: math.unit(1.2, "km")
  9801. },
  9802. {
  9803. name: "Megamacro",
  9804. height: math.unit(15, "kilometers")
  9805. },
  9806. {
  9807. name: "Gigamacro",
  9808. height: math.unit(2000, "km")
  9809. },
  9810. {
  9811. name: "Teramacro",
  9812. height: math.unit(500000, "km")
  9813. },
  9814. ]
  9815. ))
  9816. characterMakers.push(() => makeCharacter(
  9817. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9818. {
  9819. side: {
  9820. height: math.unit(6, "feet"),
  9821. name: "Side",
  9822. image: {
  9823. source: "./media/characters/ailbhe/side.svg",
  9824. extra: 757 / 464,
  9825. bottom: 0.041
  9826. }
  9827. },
  9828. },
  9829. [
  9830. {
  9831. name: "Normal",
  9832. height: math.unit(1.07, "meters"),
  9833. default: true
  9834. },
  9835. ]
  9836. ))
  9837. characterMakers.push(() => makeCharacter(
  9838. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9839. {
  9840. front: {
  9841. height: math.unit(6, "feet"),
  9842. weight: math.unit(120, "kg"),
  9843. name: "Front",
  9844. image: {
  9845. source: "./media/characters/zevulfius/front.svg",
  9846. extra: 965 / 903
  9847. }
  9848. },
  9849. side: {
  9850. height: math.unit(6, "feet"),
  9851. weight: math.unit(120, "kg"),
  9852. name: "Side",
  9853. image: {
  9854. source: "./media/characters/zevulfius/side.svg",
  9855. extra: 939 / 900
  9856. }
  9857. },
  9858. back: {
  9859. height: math.unit(6, "feet"),
  9860. weight: math.unit(120, "kg"),
  9861. name: "Back",
  9862. image: {
  9863. source: "./media/characters/zevulfius/back.svg",
  9864. extra: 918 / 854,
  9865. bottom: 0.005
  9866. }
  9867. },
  9868. foot: {
  9869. height: math.unit(6 / 3.72, "feet"),
  9870. name: "Foot",
  9871. image: {
  9872. source: "./media/characters/zevulfius/foot.svg"
  9873. }
  9874. },
  9875. },
  9876. [
  9877. {
  9878. name: "Macro",
  9879. height: math.unit(750, "meters")
  9880. },
  9881. {
  9882. name: "Megamacro",
  9883. height: math.unit(20, "km"),
  9884. default: true
  9885. },
  9886. {
  9887. name: "Gigamacro",
  9888. height: math.unit(2000, "km")
  9889. },
  9890. {
  9891. name: "Teramacro",
  9892. height: math.unit(250000, "km")
  9893. },
  9894. ]
  9895. ))
  9896. characterMakers.push(() => makeCharacter(
  9897. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9898. {
  9899. front: {
  9900. height: math.unit(100, "feet"),
  9901. weight: math.unit(350, "kg"),
  9902. name: "Front",
  9903. image: {
  9904. source: "./media/characters/rikes/front.svg",
  9905. extra: 1565 / 1483,
  9906. bottom: 0.017
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Macro",
  9913. height: math.unit(100, "feet"),
  9914. default: true
  9915. },
  9916. ]
  9917. ))
  9918. characterMakers.push(() => makeCharacter(
  9919. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9920. {
  9921. anthro: {
  9922. height: math.unit(8, "feet"),
  9923. weight: math.unit(120, "kg"),
  9924. name: "Anthro",
  9925. image: {
  9926. source: "./media/characters/adam-silver-mane/anthro.svg",
  9927. extra: 5743 / 5339,
  9928. bottom: 0.07
  9929. }
  9930. },
  9931. taur: {
  9932. height: math.unit(16, "feet"),
  9933. weight: math.unit(1500, "kg"),
  9934. name: "Taur",
  9935. image: {
  9936. source: "./media/characters/adam-silver-mane/taur.svg",
  9937. extra: 1713 / 1571,
  9938. bottom: 0.01
  9939. }
  9940. },
  9941. },
  9942. [
  9943. {
  9944. name: "Normal",
  9945. height: math.unit(8, "feet")
  9946. },
  9947. {
  9948. name: "Minimacro",
  9949. height: math.unit(80, "feet")
  9950. },
  9951. {
  9952. name: "Macro",
  9953. height: math.unit(800, "feet"),
  9954. default: true
  9955. },
  9956. {
  9957. name: "Megamacro",
  9958. height: math.unit(8000, "feet")
  9959. },
  9960. {
  9961. name: "Gigamacro",
  9962. height: math.unit(800, "miles")
  9963. },
  9964. {
  9965. name: "Teramacro",
  9966. height: math.unit(80000, "miles")
  9967. },
  9968. {
  9969. name: "Celestial",
  9970. height: math.unit(8e6, "miles")
  9971. },
  9972. {
  9973. name: "Star Dragon",
  9974. height: math.unit(800000, "parsecs")
  9975. },
  9976. {
  9977. name: "Godly",
  9978. height: math.unit(800, "teraparsecs")
  9979. },
  9980. ]
  9981. ))
  9982. characterMakers.push(() => makeCharacter(
  9983. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9984. {
  9985. front: {
  9986. height: math.unit(6, "feet"),
  9987. weight: math.unit(150, "lb"),
  9988. name: "Front",
  9989. image: {
  9990. source: "./media/characters/ky'owin/front.svg",
  9991. extra: 3888 / 3068,
  9992. bottom: 0.015
  9993. }
  9994. },
  9995. },
  9996. [
  9997. {
  9998. name: "Normal",
  9999. height: math.unit(6 + 8 / 12, "feet")
  10000. },
  10001. {
  10002. name: "Large",
  10003. height: math.unit(68, "feet")
  10004. },
  10005. {
  10006. name: "Macro",
  10007. height: math.unit(132, "feet")
  10008. },
  10009. {
  10010. name: "Macro+",
  10011. height: math.unit(340, "feet")
  10012. },
  10013. {
  10014. name: "Macro++",
  10015. height: math.unit(680, "feet"),
  10016. default: true
  10017. },
  10018. {
  10019. name: "Megamacro",
  10020. height: math.unit(1, "mile")
  10021. },
  10022. {
  10023. name: "Megamacro+",
  10024. height: math.unit(10, "miles")
  10025. },
  10026. ]
  10027. ))
  10028. characterMakers.push(() => makeCharacter(
  10029. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10030. {
  10031. front: {
  10032. height: math.unit(4, "feet"),
  10033. weight: math.unit(50, "lb"),
  10034. name: "Front",
  10035. image: {
  10036. source: "./media/characters/mal/front.svg",
  10037. extra: 785 / 724,
  10038. bottom: 0.07
  10039. }
  10040. },
  10041. },
  10042. [
  10043. {
  10044. name: "Micro",
  10045. height: math.unit(4, "inches")
  10046. },
  10047. {
  10048. name: "Normal",
  10049. height: math.unit(4, "feet"),
  10050. default: true
  10051. },
  10052. {
  10053. name: "Macro",
  10054. height: math.unit(200, "feet")
  10055. },
  10056. ]
  10057. ))
  10058. characterMakers.push(() => makeCharacter(
  10059. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10060. {
  10061. front: {
  10062. height: math.unit(6, "feet"),
  10063. weight: math.unit(150, "lb"),
  10064. name: "Front",
  10065. image: {
  10066. source: "./media/characters/jordan-deware/front.svg",
  10067. extra: 1191 / 1012
  10068. }
  10069. },
  10070. },
  10071. [
  10072. {
  10073. name: "Nano",
  10074. height: math.unit(0.01, "mm")
  10075. },
  10076. {
  10077. name: "Minimicro",
  10078. height: math.unit(1, "mm")
  10079. },
  10080. {
  10081. name: "Micro",
  10082. height: math.unit(0.5, "inches")
  10083. },
  10084. {
  10085. name: "Normal",
  10086. height: math.unit(4, "feet"),
  10087. default: true
  10088. },
  10089. {
  10090. name: "Minimacro",
  10091. height: math.unit(40, "meters")
  10092. },
  10093. {
  10094. name: "Small Macro",
  10095. height: math.unit(400, "meters")
  10096. },
  10097. {
  10098. name: "Macro",
  10099. height: math.unit(4, "miles")
  10100. },
  10101. {
  10102. name: "Megamacro",
  10103. height: math.unit(40, "miles")
  10104. },
  10105. {
  10106. name: "Megamacro+",
  10107. height: math.unit(400, "miles")
  10108. },
  10109. {
  10110. name: "Gigamacro",
  10111. height: math.unit(400000, "miles")
  10112. },
  10113. ]
  10114. ))
  10115. characterMakers.push(() => makeCharacter(
  10116. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10117. {
  10118. side: {
  10119. height: math.unit(6, "feet"),
  10120. weight: math.unit(150, "lb"),
  10121. name: "Side",
  10122. image: {
  10123. source: "./media/characters/kimiko/side.svg",
  10124. extra: 600 / 358
  10125. }
  10126. },
  10127. },
  10128. [
  10129. {
  10130. name: "Normal",
  10131. height: math.unit(15, "feet"),
  10132. default: true
  10133. },
  10134. {
  10135. name: "Macro",
  10136. height: math.unit(220, "feet")
  10137. },
  10138. {
  10139. name: "Macro+",
  10140. height: math.unit(1450, "feet")
  10141. },
  10142. {
  10143. name: "Megamacro",
  10144. height: math.unit(11500, "feet")
  10145. },
  10146. {
  10147. name: "Gigamacro",
  10148. height: math.unit(9500, "miles")
  10149. },
  10150. {
  10151. name: "Teramacro",
  10152. height: math.unit(2208005005, "miles")
  10153. },
  10154. {
  10155. name: "Examacro",
  10156. height: math.unit(2750, "parsecs")
  10157. },
  10158. {
  10159. name: "Zettamacro",
  10160. height: math.unit(101500, "parsecs")
  10161. },
  10162. ]
  10163. ))
  10164. characterMakers.push(() => makeCharacter(
  10165. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10166. {
  10167. front: {
  10168. height: math.unit(6, "feet"),
  10169. weight: math.unit(70, "kg"),
  10170. name: "Front",
  10171. image: {
  10172. source: "./media/characters/andrew-sleepy/front.svg"
  10173. }
  10174. },
  10175. side: {
  10176. height: math.unit(6, "feet"),
  10177. weight: math.unit(70, "kg"),
  10178. name: "Side",
  10179. image: {
  10180. source: "./media/characters/andrew-sleepy/side.svg"
  10181. }
  10182. },
  10183. },
  10184. [
  10185. {
  10186. name: "Micro",
  10187. height: math.unit(1, "mm"),
  10188. default: true
  10189. },
  10190. ]
  10191. ))
  10192. characterMakers.push(() => makeCharacter(
  10193. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10194. {
  10195. front: {
  10196. height: math.unit(6, "feet"),
  10197. weight: math.unit(150, "lb"),
  10198. name: "Front",
  10199. image: {
  10200. source: "./media/characters/judio/front.svg",
  10201. extra: 1258 / 1110
  10202. }
  10203. },
  10204. },
  10205. [
  10206. {
  10207. name: "Normal",
  10208. height: math.unit(5 + 6 / 12, "feet")
  10209. },
  10210. {
  10211. name: "Macro",
  10212. height: math.unit(1000, "feet"),
  10213. default: true
  10214. },
  10215. {
  10216. name: "Megamacro",
  10217. height: math.unit(10, "miles")
  10218. },
  10219. ]
  10220. ))
  10221. characterMakers.push(() => makeCharacter(
  10222. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10223. {
  10224. front: {
  10225. height: math.unit(6, "feet"),
  10226. weight: math.unit(68, "kg"),
  10227. name: "Front",
  10228. image: {
  10229. source: "./media/characters/nomaxice/front.svg",
  10230. extra: 1498 / 1073,
  10231. bottom: 0.075
  10232. }
  10233. },
  10234. foot: {
  10235. height: math.unit(1.1, "feet"),
  10236. name: "Foot",
  10237. image: {
  10238. source: "./media/characters/nomaxice/foot.svg"
  10239. }
  10240. },
  10241. },
  10242. [
  10243. {
  10244. name: "Micro",
  10245. height: math.unit(8, "cm")
  10246. },
  10247. {
  10248. name: "Norm",
  10249. height: math.unit(1.82, "m")
  10250. },
  10251. {
  10252. name: "Norm+",
  10253. height: math.unit(8.8, "feet")
  10254. },
  10255. {
  10256. name: "Big",
  10257. height: math.unit(8, "meters"),
  10258. default: true
  10259. },
  10260. {
  10261. name: "Macro",
  10262. height: math.unit(18, "meters")
  10263. },
  10264. {
  10265. name: "Macro+",
  10266. height: math.unit(88, "meters")
  10267. },
  10268. ]
  10269. ))
  10270. characterMakers.push(() => makeCharacter(
  10271. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10272. {
  10273. front: {
  10274. height: math.unit(12, "feet"),
  10275. weight: math.unit(1.5, "tons"),
  10276. name: "Front",
  10277. image: {
  10278. source: "./media/characters/dydros/front.svg",
  10279. extra: 863 / 800,
  10280. bottom: 0.015
  10281. }
  10282. },
  10283. back: {
  10284. height: math.unit(12, "feet"),
  10285. weight: math.unit(1.5, "tons"),
  10286. name: "Back",
  10287. image: {
  10288. source: "./media/characters/dydros/back.svg",
  10289. extra: 900 / 843,
  10290. bottom: 0.005
  10291. }
  10292. },
  10293. },
  10294. [
  10295. {
  10296. name: "Normal",
  10297. height: math.unit(12, "feet"),
  10298. default: true
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(6, "feet"),
  10307. weight: math.unit(100, "kg"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/riggi/front.svg",
  10311. extra: 5787 / 5303
  10312. }
  10313. },
  10314. hyper: {
  10315. height: math.unit(6 * 5 / 3, "feet"),
  10316. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10317. name: "Hyper",
  10318. image: {
  10319. source: "./media/characters/riggi/hyper.svg",
  10320. extra: 3595 / 3485
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Small Macro",
  10327. height: math.unit(50, "feet")
  10328. },
  10329. {
  10330. name: "Default",
  10331. height: math.unit(200, "feet"),
  10332. default: true
  10333. },
  10334. {
  10335. name: "Loom",
  10336. height: math.unit(10000, "feet")
  10337. },
  10338. {
  10339. name: "Cruising Altitude",
  10340. height: math.unit(30000, "feet")
  10341. },
  10342. {
  10343. name: "Megamacro",
  10344. height: math.unit(100, "miles")
  10345. },
  10346. {
  10347. name: "Continent Sized",
  10348. height: math.unit(2800, "miles")
  10349. },
  10350. {
  10351. name: "Earth Sized",
  10352. height: math.unit(8000, "miles")
  10353. },
  10354. ]
  10355. ))
  10356. characterMakers.push(() => makeCharacter(
  10357. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10358. {
  10359. front: {
  10360. height: math.unit(6, "feet"),
  10361. weight: math.unit(250, "lb"),
  10362. name: "Front",
  10363. image: {
  10364. source: "./media/characters/alexi/front.svg",
  10365. extra: 3483 / 3291,
  10366. bottom: 0.04
  10367. }
  10368. },
  10369. back: {
  10370. height: math.unit(6, "feet"),
  10371. weight: math.unit(250, "lb"),
  10372. name: "Back",
  10373. image: {
  10374. source: "./media/characters/alexi/back.svg",
  10375. extra: 3533 / 3356,
  10376. bottom: 0.021
  10377. }
  10378. },
  10379. frontTransforming: {
  10380. height: math.unit(8.58, "feet"),
  10381. weight: math.unit(1300, "lb"),
  10382. name: "Transforming",
  10383. image: {
  10384. source: "./media/characters/alexi/front-transforming.svg",
  10385. extra: 437 / 409,
  10386. bottom: 19 / 458.66
  10387. }
  10388. },
  10389. frontTransformed: {
  10390. height: math.unit(12.5, "feet"),
  10391. weight: math.unit(4000, "lb"),
  10392. name: "Transformed",
  10393. image: {
  10394. source: "./media/characters/alexi/front-transformed.svg",
  10395. extra: 639 / 614,
  10396. bottom: 30.55 / 671
  10397. }
  10398. },
  10399. },
  10400. [
  10401. {
  10402. name: "Normal",
  10403. height: math.unit(14, "feet"),
  10404. default: true
  10405. },
  10406. {
  10407. name: "Minimacro",
  10408. height: math.unit(30, "meters")
  10409. },
  10410. {
  10411. name: "Macro",
  10412. height: math.unit(500, "meters")
  10413. },
  10414. {
  10415. name: "Megamacro",
  10416. height: math.unit(9000, "km")
  10417. },
  10418. {
  10419. name: "Teramacro",
  10420. height: math.unit(384000, "km")
  10421. },
  10422. ]
  10423. ))
  10424. characterMakers.push(() => makeCharacter(
  10425. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10426. {
  10427. front: {
  10428. height: math.unit(6, "feet"),
  10429. weight: math.unit(150, "lb"),
  10430. name: "Front",
  10431. image: {
  10432. source: "./media/characters/kayroo/front.svg",
  10433. extra: 1153 / 1038,
  10434. bottom: 0.06
  10435. }
  10436. },
  10437. foot: {
  10438. height: math.unit(6, "feet"),
  10439. weight: math.unit(150, "lb"),
  10440. name: "Foot",
  10441. image: {
  10442. source: "./media/characters/kayroo/foot.svg"
  10443. }
  10444. },
  10445. },
  10446. [
  10447. {
  10448. name: "Normal",
  10449. height: math.unit(8, "feet"),
  10450. default: true
  10451. },
  10452. {
  10453. name: "Minimacro",
  10454. height: math.unit(250, "feet")
  10455. },
  10456. {
  10457. name: "Macro",
  10458. height: math.unit(2800, "feet")
  10459. },
  10460. {
  10461. name: "Megamacro",
  10462. height: math.unit(5200, "feet")
  10463. },
  10464. {
  10465. name: "Gigamacro",
  10466. height: math.unit(27000, "feet")
  10467. },
  10468. {
  10469. name: "Omega",
  10470. height: math.unit(45000, "feet")
  10471. },
  10472. ]
  10473. ))
  10474. characterMakers.push(() => makeCharacter(
  10475. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10476. {
  10477. front: {
  10478. height: math.unit(18, "feet"),
  10479. weight: math.unit(5800, "lb"),
  10480. name: "Front",
  10481. image: {
  10482. source: "./media/characters/rhys/front.svg",
  10483. extra: 3386 / 3090,
  10484. bottom: 0.07
  10485. }
  10486. },
  10487. },
  10488. [
  10489. {
  10490. name: "Normal",
  10491. height: math.unit(18, "feet"),
  10492. default: true
  10493. },
  10494. {
  10495. name: "Working Size",
  10496. height: math.unit(200, "feet")
  10497. },
  10498. {
  10499. name: "Demolition Size",
  10500. height: math.unit(2000, "feet")
  10501. },
  10502. {
  10503. name: "Maximum Licensed Size",
  10504. height: math.unit(5, "miles")
  10505. },
  10506. {
  10507. name: "Maximum Observed Size",
  10508. height: math.unit(10, "yottameters")
  10509. },
  10510. ]
  10511. ))
  10512. characterMakers.push(() => makeCharacter(
  10513. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10514. {
  10515. front: {
  10516. height: math.unit(6, "feet"),
  10517. weight: math.unit(250, "lb"),
  10518. name: "Front",
  10519. image: {
  10520. source: "./media/characters/toto/front.svg",
  10521. extra: 527 / 479,
  10522. bottom: 0.05
  10523. }
  10524. },
  10525. },
  10526. [
  10527. {
  10528. name: "Micro",
  10529. height: math.unit(3, "feet")
  10530. },
  10531. {
  10532. name: "Normal",
  10533. height: math.unit(10, "feet")
  10534. },
  10535. {
  10536. name: "Macro",
  10537. height: math.unit(150, "feet"),
  10538. default: true
  10539. },
  10540. {
  10541. name: "Megamacro",
  10542. height: math.unit(1200, "feet")
  10543. },
  10544. ]
  10545. ))
  10546. characterMakers.push(() => makeCharacter(
  10547. { name: "King", species: ["lion"], tags: ["anthro"] },
  10548. {
  10549. back: {
  10550. height: math.unit(6, "feet"),
  10551. weight: math.unit(150, "lb"),
  10552. name: "Back",
  10553. image: {
  10554. source: "./media/characters/king/back.svg"
  10555. }
  10556. },
  10557. },
  10558. [
  10559. {
  10560. name: "Micro",
  10561. height: math.unit(2, "inches")
  10562. },
  10563. {
  10564. name: "Normal",
  10565. height: math.unit(8, "feet")
  10566. },
  10567. {
  10568. name: "Macro",
  10569. height: math.unit(200, "feet"),
  10570. default: true
  10571. },
  10572. {
  10573. name: "Megamacro",
  10574. height: math.unit(50, "miles")
  10575. },
  10576. ]
  10577. ))
  10578. characterMakers.push(() => makeCharacter(
  10579. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10580. {
  10581. anthro: {
  10582. height: math.unit(6 + 5 / 12, "feet"),
  10583. weight: math.unit(280, "lb"),
  10584. name: "Anthro",
  10585. image: {
  10586. source: "./media/characters/cordite/anthro.svg",
  10587. extra: 1986 / 1905,
  10588. bottom: 0.025
  10589. }
  10590. },
  10591. feral: {
  10592. height: math.unit(2, "feet"),
  10593. weight: math.unit(90, "lb"),
  10594. name: "Feral",
  10595. image: {
  10596. source: "./media/characters/cordite/feral.svg",
  10597. extra: 1260 / 755,
  10598. bottom: 0.05
  10599. }
  10600. },
  10601. },
  10602. [
  10603. {
  10604. name: "Normal",
  10605. height: math.unit(6 + 5 / 12, "feet"),
  10606. default: true
  10607. },
  10608. ]
  10609. ))
  10610. characterMakers.push(() => makeCharacter(
  10611. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10612. {
  10613. front: {
  10614. height: math.unit(6, "feet"),
  10615. weight: math.unit(150, "lb"),
  10616. name: "Front",
  10617. image: {
  10618. source: "./media/characters/pianostrong/front.svg",
  10619. extra: 6577 / 6254,
  10620. bottom: 0.02
  10621. }
  10622. },
  10623. side: {
  10624. height: math.unit(6, "feet"),
  10625. weight: math.unit(150, "lb"),
  10626. name: "Side",
  10627. image: {
  10628. source: "./media/characters/pianostrong/side.svg",
  10629. extra: 6106 / 5730
  10630. }
  10631. },
  10632. back: {
  10633. height: math.unit(6, "feet"),
  10634. weight: math.unit(150, "lb"),
  10635. name: "Back",
  10636. image: {
  10637. source: "./media/characters/pianostrong/back.svg",
  10638. extra: 6085 / 5733,
  10639. bottom: 0.01
  10640. }
  10641. },
  10642. },
  10643. [
  10644. {
  10645. name: "Macro",
  10646. height: math.unit(100, "feet")
  10647. },
  10648. {
  10649. name: "Macro+",
  10650. height: math.unit(300, "feet"),
  10651. default: true
  10652. },
  10653. {
  10654. name: "Macro++",
  10655. height: math.unit(1000, "feet")
  10656. },
  10657. ]
  10658. ))
  10659. characterMakers.push(() => makeCharacter(
  10660. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10661. {
  10662. front: {
  10663. height: math.unit(6, "feet"),
  10664. weight: math.unit(150, "lb"),
  10665. name: "Front",
  10666. image: {
  10667. source: "./media/characters/kona/front.svg",
  10668. extra: 2960 / 2629,
  10669. bottom: 0.005
  10670. }
  10671. },
  10672. },
  10673. [
  10674. {
  10675. name: "Normal",
  10676. height: math.unit(11 + 8 / 12, "feet")
  10677. },
  10678. {
  10679. name: "Macro",
  10680. height: math.unit(850, "feet"),
  10681. default: true
  10682. },
  10683. {
  10684. name: "Macro+",
  10685. height: math.unit(1.5, "km"),
  10686. default: true
  10687. },
  10688. {
  10689. name: "Megamacro",
  10690. height: math.unit(80, "miles")
  10691. },
  10692. {
  10693. name: "Gigamacro",
  10694. height: math.unit(3500, "miles")
  10695. },
  10696. ]
  10697. ))
  10698. characterMakers.push(() => makeCharacter(
  10699. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10700. {
  10701. side: {
  10702. height: math.unit(1.9, "meters"),
  10703. weight: math.unit(326, "kg"),
  10704. name: "Side",
  10705. image: {
  10706. source: "./media/characters/levi/side.svg",
  10707. extra: 1704 / 1334,
  10708. bottom: 0.02
  10709. }
  10710. },
  10711. },
  10712. [
  10713. {
  10714. name: "Normal",
  10715. height: math.unit(1.9, "meters"),
  10716. default: true
  10717. },
  10718. {
  10719. name: "Macro",
  10720. height: math.unit(20, "meters")
  10721. },
  10722. {
  10723. name: "Macro+",
  10724. height: math.unit(200, "meters")
  10725. },
  10726. {
  10727. name: "Megamacro",
  10728. height: math.unit(2, "km")
  10729. },
  10730. {
  10731. name: "Megamacro+",
  10732. height: math.unit(20, "km")
  10733. },
  10734. {
  10735. name: "Gigamacro",
  10736. height: math.unit(2500, "km")
  10737. },
  10738. {
  10739. name: "Gigamacro+",
  10740. height: math.unit(120000, "km")
  10741. },
  10742. {
  10743. name: "Teramacro",
  10744. height: math.unit(7.77e6, "km")
  10745. },
  10746. ]
  10747. ))
  10748. characterMakers.push(() => makeCharacter(
  10749. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10750. {
  10751. front: {
  10752. height: math.unit(6 + 4 / 12, "feet"),
  10753. weight: math.unit(188, "lb"),
  10754. name: "Front",
  10755. image: {
  10756. source: "./media/characters/bmc/front.svg",
  10757. extra: 1067 / 1022,
  10758. bottom: 0.047
  10759. }
  10760. },
  10761. },
  10762. [
  10763. {
  10764. name: "Human-sized",
  10765. height: math.unit(6 + 4 / 12, "feet")
  10766. },
  10767. {
  10768. name: "Small",
  10769. height: math.unit(250, "feet")
  10770. },
  10771. {
  10772. name: "Normal",
  10773. height: math.unit(1250, "feet"),
  10774. default: true
  10775. },
  10776. {
  10777. name: "Good Day",
  10778. height: math.unit(88, "miles")
  10779. },
  10780. {
  10781. name: "Largest Measured Size",
  10782. height: math.unit(11.2e6, "lightyears")
  10783. },
  10784. ]
  10785. ))
  10786. characterMakers.push(() => makeCharacter(
  10787. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10788. {
  10789. front: {
  10790. height: math.unit(20, "feet"),
  10791. weight: math.unit(2016, "kg"),
  10792. name: "Front",
  10793. image: {
  10794. source: "./media/characters/sven-the-kaiju/front.svg",
  10795. extra: 1479 / 1449,
  10796. bottom: 0.05
  10797. }
  10798. },
  10799. },
  10800. [
  10801. {
  10802. name: "Fairy",
  10803. height: math.unit(6, "inches")
  10804. },
  10805. {
  10806. name: "Normal",
  10807. height: math.unit(20, "feet"),
  10808. default: true
  10809. },
  10810. {
  10811. name: "Rampage",
  10812. height: math.unit(200, "feet")
  10813. },
  10814. {
  10815. name: "Archfey Forest Guardian",
  10816. height: math.unit(1, "mile")
  10817. },
  10818. ]
  10819. ))
  10820. characterMakers.push(() => makeCharacter(
  10821. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10822. {
  10823. front: {
  10824. height: math.unit(4, "meters"),
  10825. weight: math.unit(2, "tons"),
  10826. name: "Front",
  10827. image: {
  10828. source: "./media/characters/marik/front.svg",
  10829. extra: 1057 / 1003,
  10830. bottom: 0.08
  10831. }
  10832. },
  10833. },
  10834. [
  10835. {
  10836. name: "Normal",
  10837. height: math.unit(4, "meters"),
  10838. default: true
  10839. },
  10840. {
  10841. name: "Macro",
  10842. height: math.unit(20, "meters")
  10843. },
  10844. {
  10845. name: "Megamacro",
  10846. height: math.unit(50, "km")
  10847. },
  10848. {
  10849. name: "Gigamacro",
  10850. height: math.unit(100, "km")
  10851. },
  10852. {
  10853. name: "Alpha Macro",
  10854. height: math.unit(7.88e7, "yottameters")
  10855. },
  10856. ]
  10857. ))
  10858. characterMakers.push(() => makeCharacter(
  10859. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10860. {
  10861. front: {
  10862. height: math.unit(6, "feet"),
  10863. weight: math.unit(110, "lb"),
  10864. name: "Front",
  10865. image: {
  10866. source: "./media/characters/mel/front.svg",
  10867. extra: 736 / 617,
  10868. bottom: 0.017
  10869. }
  10870. },
  10871. },
  10872. [
  10873. {
  10874. name: "Pico",
  10875. height: math.unit(3, "pm")
  10876. },
  10877. {
  10878. name: "Nano",
  10879. height: math.unit(3, "nm")
  10880. },
  10881. {
  10882. name: "Micro",
  10883. height: math.unit(0.3, "mm"),
  10884. default: true
  10885. },
  10886. {
  10887. name: "Micro+",
  10888. height: math.unit(3, "mm")
  10889. },
  10890. {
  10891. name: "Normal",
  10892. height: math.unit(5 + 10.5 / 12, "feet")
  10893. },
  10894. ]
  10895. ))
  10896. characterMakers.push(() => makeCharacter(
  10897. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10898. {
  10899. kaiju: {
  10900. height: math.unit(1.75, "meters"),
  10901. weight: math.unit(55, "kg"),
  10902. name: "Kaiju",
  10903. image: {
  10904. source: "./media/characters/lykonous/kaiju.svg",
  10905. extra: 1055 / 946,
  10906. bottom: 0.135
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Normal",
  10913. height: math.unit(2.5, "meters"),
  10914. default: true
  10915. },
  10916. {
  10917. name: "Kaiju Dragon",
  10918. height: math.unit(60, "meters")
  10919. },
  10920. {
  10921. name: "Mega Kaiju",
  10922. height: math.unit(120, "km")
  10923. },
  10924. {
  10925. name: "Giga Kaiju",
  10926. height: math.unit(200, "megameters")
  10927. },
  10928. {
  10929. name: "Terra Kaiju",
  10930. height: math.unit(400, "gigameters")
  10931. },
  10932. {
  10933. name: "Kaiju Dragon God",
  10934. height: math.unit(13000, "exaparsecs")
  10935. },
  10936. ]
  10937. ))
  10938. characterMakers.push(() => makeCharacter(
  10939. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10940. {
  10941. front: {
  10942. height: math.unit(6, "feet"),
  10943. weight: math.unit(150, "lb"),
  10944. name: "Front",
  10945. image: {
  10946. source: "./media/characters/blü/front.svg",
  10947. extra: 1883 / 1564,
  10948. bottom: 0.031
  10949. }
  10950. },
  10951. },
  10952. [
  10953. {
  10954. name: "Normal",
  10955. height: math.unit(13, "feet"),
  10956. default: true
  10957. },
  10958. {
  10959. name: "Big Boi",
  10960. height: math.unit(150, "meters")
  10961. },
  10962. {
  10963. name: "Mini Stomper",
  10964. height: math.unit(300, "meters")
  10965. },
  10966. {
  10967. name: "Macro",
  10968. height: math.unit(1000, "meters")
  10969. },
  10970. {
  10971. name: "Megamacro",
  10972. height: math.unit(11000, "meters")
  10973. },
  10974. {
  10975. name: "Gigamacro",
  10976. height: math.unit(11000, "km")
  10977. },
  10978. {
  10979. name: "Teramacro",
  10980. height: math.unit(420000, "km")
  10981. },
  10982. {
  10983. name: "Examacro",
  10984. height: math.unit(120, "parsecs")
  10985. },
  10986. {
  10987. name: "God Tho",
  10988. height: math.unit(98000000000, "parsecs")
  10989. },
  10990. ]
  10991. ))
  10992. characterMakers.push(() => makeCharacter(
  10993. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10994. {
  10995. taurFront: {
  10996. height: math.unit(6, "feet"),
  10997. weight: math.unit(200, "lb"),
  10998. name: "Taur (Front)",
  10999. image: {
  11000. source: "./media/characters/scales/taur-front.svg",
  11001. extra: 1,
  11002. bottom: 0.05
  11003. }
  11004. },
  11005. taurBack: {
  11006. height: math.unit(6, "feet"),
  11007. weight: math.unit(200, "lb"),
  11008. name: "Taur (Back)",
  11009. image: {
  11010. source: "./media/characters/scales/taur-back.svg",
  11011. extra: 1,
  11012. bottom: 0.08
  11013. }
  11014. },
  11015. anthro: {
  11016. height: math.unit(6 * 7 / 12, "feet"),
  11017. weight: math.unit(100, "lb"),
  11018. name: "Anthro",
  11019. image: {
  11020. source: "./media/characters/scales/anthro.svg",
  11021. extra: 1,
  11022. bottom: 0.06
  11023. }
  11024. },
  11025. },
  11026. [
  11027. {
  11028. name: "Normal",
  11029. height: math.unit(12, "feet"),
  11030. default: true
  11031. },
  11032. ]
  11033. ))
  11034. characterMakers.push(() => makeCharacter(
  11035. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11036. {
  11037. front: {
  11038. height: math.unit(6, "feet"),
  11039. weight: math.unit(150, "lb"),
  11040. name: "Front",
  11041. image: {
  11042. source: "./media/characters/koragos/front.svg",
  11043. extra: 841 / 794,
  11044. bottom: 0.035
  11045. }
  11046. },
  11047. back: {
  11048. height: math.unit(6, "feet"),
  11049. weight: math.unit(150, "lb"),
  11050. name: "Back",
  11051. image: {
  11052. source: "./media/characters/koragos/back.svg",
  11053. extra: 841 / 810,
  11054. bottom: 0.022
  11055. }
  11056. },
  11057. },
  11058. [
  11059. {
  11060. name: "Normal",
  11061. height: math.unit(6 + 11 / 12, "feet"),
  11062. default: true
  11063. },
  11064. {
  11065. name: "Macro",
  11066. height: math.unit(490, "feet")
  11067. },
  11068. {
  11069. name: "Megamacro",
  11070. height: math.unit(10, "miles")
  11071. },
  11072. {
  11073. name: "Gigamacro",
  11074. height: math.unit(50, "miles")
  11075. },
  11076. ]
  11077. ))
  11078. characterMakers.push(() => makeCharacter(
  11079. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11080. {
  11081. front: {
  11082. height: math.unit(6, "feet"),
  11083. weight: math.unit(250, "lb"),
  11084. name: "Front",
  11085. image: {
  11086. source: "./media/characters/xylrem/front.svg",
  11087. extra: 3323 / 3050,
  11088. bottom: 0.065
  11089. }
  11090. },
  11091. },
  11092. [
  11093. {
  11094. name: "Micro",
  11095. height: math.unit(4, "feet")
  11096. },
  11097. {
  11098. name: "Normal",
  11099. height: math.unit(16, "feet"),
  11100. default: true
  11101. },
  11102. {
  11103. name: "Macro",
  11104. height: math.unit(2720, "feet")
  11105. },
  11106. {
  11107. name: "Megamacro",
  11108. height: math.unit(25000, "miles")
  11109. },
  11110. ]
  11111. ))
  11112. characterMakers.push(() => makeCharacter(
  11113. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11114. {
  11115. front: {
  11116. height: math.unit(8, "feet"),
  11117. weight: math.unit(250, "kg"),
  11118. name: "Front",
  11119. image: {
  11120. source: "./media/characters/ikideru/front.svg",
  11121. extra: 930 / 870,
  11122. bottom: 0.087
  11123. }
  11124. },
  11125. back: {
  11126. height: math.unit(8, "feet"),
  11127. weight: math.unit(250, "kg"),
  11128. name: "Back",
  11129. image: {
  11130. source: "./media/characters/ikideru/back.svg",
  11131. extra: 919 / 852,
  11132. bottom: 0.055
  11133. }
  11134. },
  11135. },
  11136. [
  11137. {
  11138. name: "Rare",
  11139. height: math.unit(8, "feet"),
  11140. default: true
  11141. },
  11142. {
  11143. name: "Playful Loom",
  11144. height: math.unit(80, "feet")
  11145. },
  11146. {
  11147. name: "City Leaner",
  11148. height: math.unit(230, "feet")
  11149. },
  11150. {
  11151. name: "Megamacro",
  11152. height: math.unit(2500, "feet")
  11153. },
  11154. {
  11155. name: "Gigamacro",
  11156. height: math.unit(26400, "feet")
  11157. },
  11158. {
  11159. name: "Tectonic Shifter",
  11160. height: math.unit(1.7, "megameters")
  11161. },
  11162. {
  11163. name: "Planet Carer",
  11164. height: math.unit(21, "megameters")
  11165. },
  11166. {
  11167. name: "God",
  11168. height: math.unit(11157.22, "parsecs")
  11169. },
  11170. ]
  11171. ))
  11172. characterMakers.push(() => makeCharacter(
  11173. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11174. {
  11175. front: {
  11176. height: math.unit(6, "feet"),
  11177. weight: math.unit(120, "lb"),
  11178. name: "Front",
  11179. image: {
  11180. source: "./media/characters/neo/front.svg"
  11181. }
  11182. },
  11183. },
  11184. [
  11185. {
  11186. name: "Micro",
  11187. height: math.unit(2, "inches"),
  11188. default: true
  11189. },
  11190. {
  11191. name: "Human Size",
  11192. height: math.unit(5 + 8 / 12, "feet")
  11193. },
  11194. ]
  11195. ))
  11196. characterMakers.push(() => makeCharacter(
  11197. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11198. {
  11199. front: {
  11200. height: math.unit(13 + 10 / 12, "feet"),
  11201. weight: math.unit(5320, "lb"),
  11202. name: "Front",
  11203. image: {
  11204. source: "./media/characters/chauncey-chantz/front.svg",
  11205. extra: 1587 / 1435,
  11206. bottom: 0.02
  11207. }
  11208. },
  11209. },
  11210. [
  11211. {
  11212. name: "Normal",
  11213. height: math.unit(13 + 10 / 12, "feet"),
  11214. default: true
  11215. },
  11216. {
  11217. name: "Macro",
  11218. height: math.unit(45, "feet")
  11219. },
  11220. {
  11221. name: "Megamacro",
  11222. height: math.unit(250, "miles")
  11223. },
  11224. {
  11225. name: "Planetary",
  11226. height: math.unit(10000, "miles")
  11227. },
  11228. {
  11229. name: "Galactic",
  11230. height: math.unit(40000, "parsecs")
  11231. },
  11232. {
  11233. name: "Universal",
  11234. height: math.unit(1, "yottameter")
  11235. },
  11236. ]
  11237. ))
  11238. characterMakers.push(() => makeCharacter(
  11239. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11240. {
  11241. front: {
  11242. height: math.unit(6, "feet"),
  11243. weight: math.unit(150, "lb"),
  11244. name: "Front",
  11245. image: {
  11246. source: "./media/characters/epifox/front.svg",
  11247. extra: 1,
  11248. bottom: 0.075
  11249. }
  11250. },
  11251. },
  11252. [
  11253. {
  11254. name: "Micro",
  11255. height: math.unit(6, "inches")
  11256. },
  11257. {
  11258. name: "Normal",
  11259. height: math.unit(12, "feet"),
  11260. default: true
  11261. },
  11262. {
  11263. name: "Macro",
  11264. height: math.unit(3810, "feet")
  11265. },
  11266. {
  11267. name: "Megamacro",
  11268. height: math.unit(500, "miles")
  11269. },
  11270. ]
  11271. ))
  11272. characterMakers.push(() => makeCharacter(
  11273. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11274. {
  11275. front: {
  11276. height: math.unit(1.8796, "m"),
  11277. weight: math.unit(230, "lb"),
  11278. name: "Front",
  11279. image: {
  11280. source: "./media/characters/colin-t/front.svg",
  11281. extra: 1272 / 1193,
  11282. bottom: 0.07
  11283. }
  11284. },
  11285. },
  11286. [
  11287. {
  11288. name: "Micro",
  11289. height: math.unit(0.571, "meters")
  11290. },
  11291. {
  11292. name: "Normal",
  11293. height: math.unit(1.8796, "meters"),
  11294. default: true
  11295. },
  11296. {
  11297. name: "Tall",
  11298. height: math.unit(4, "meters")
  11299. },
  11300. {
  11301. name: "Macro",
  11302. height: math.unit(67.241, "meters")
  11303. },
  11304. {
  11305. name: "Megamacro",
  11306. height: math.unit(371.856, "meters")
  11307. },
  11308. {
  11309. name: "Planetary",
  11310. height: math.unit(12631.5689, "km")
  11311. },
  11312. ]
  11313. ))
  11314. characterMakers.push(() => makeCharacter(
  11315. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11316. {
  11317. front: {
  11318. height: math.unit(1.85, "meters"),
  11319. weight: math.unit(80, "kg"),
  11320. name: "Front",
  11321. image: {
  11322. source: "./media/characters/matvei/front.svg",
  11323. extra: 614 / 594,
  11324. bottom: 0.01
  11325. }
  11326. },
  11327. },
  11328. [
  11329. {
  11330. name: "Normal",
  11331. height: math.unit(1.85, "meters"),
  11332. default: true
  11333. },
  11334. ]
  11335. ))
  11336. characterMakers.push(() => makeCharacter(
  11337. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11338. {
  11339. front: {
  11340. height: math.unit(5 + 9 / 12, "feet"),
  11341. weight: math.unit(70, "lb"),
  11342. name: "Front",
  11343. image: {
  11344. source: "./media/characters/quincy/front.svg",
  11345. extra: 3041 / 2751
  11346. }
  11347. },
  11348. back: {
  11349. height: math.unit(5 + 9 / 12, "feet"),
  11350. weight: math.unit(70, "lb"),
  11351. name: "Back",
  11352. image: {
  11353. source: "./media/characters/quincy/back.svg",
  11354. extra: 3041 / 2751
  11355. }
  11356. },
  11357. flying: {
  11358. height: math.unit(5 + 4 / 12, "feet"),
  11359. weight: math.unit(70, "lb"),
  11360. name: "Flying",
  11361. image: {
  11362. source: "./media/characters/quincy/flying.svg",
  11363. extra: 1044 / 930
  11364. }
  11365. },
  11366. },
  11367. [
  11368. {
  11369. name: "Micro",
  11370. height: math.unit(3, "cm")
  11371. },
  11372. {
  11373. name: "Normal",
  11374. height: math.unit(5 + 9 / 12, "feet")
  11375. },
  11376. {
  11377. name: "Macro",
  11378. height: math.unit(200, "meters"),
  11379. default: true
  11380. },
  11381. {
  11382. name: "Megamacro",
  11383. height: math.unit(1000, "meters")
  11384. },
  11385. ]
  11386. ))
  11387. characterMakers.push(() => makeCharacter(
  11388. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11389. {
  11390. front: {
  11391. height: math.unit(4 + 7 / 12, "feet"),
  11392. weight: math.unit(50, "lb"),
  11393. name: "Front",
  11394. image: {
  11395. source: "./media/characters/vanrel/front.svg",
  11396. extra: 1,
  11397. bottom: 0.02
  11398. }
  11399. },
  11400. frontAlt: {
  11401. height: math.unit(4 + 7 / 12, "feet"),
  11402. weight: math.unit(50, "lb"),
  11403. name: "Front-alt",
  11404. image: {
  11405. source: "./media/characters/vanrel/front-alt.svg",
  11406. extra: 1,
  11407. bottom: 15 / 1511
  11408. }
  11409. },
  11410. elemental: {
  11411. height: math.unit(3, "feet"),
  11412. weight: math.unit(50, "lb"),
  11413. name: "Elemental",
  11414. image: {
  11415. source: "./media/characters/vanrel/elemental.svg",
  11416. extra: 192.3 / 162.8,
  11417. bottom: 1.79 / 194.17
  11418. }
  11419. },
  11420. side: {
  11421. height: math.unit(4 + 7 / 12, "feet"),
  11422. weight: math.unit(50, "lb"),
  11423. name: "Side",
  11424. image: {
  11425. source: "./media/characters/vanrel/side.svg",
  11426. extra: 1,
  11427. bottom: 0.025
  11428. }
  11429. },
  11430. tome: {
  11431. height: math.unit(1.35, "feet"),
  11432. weight: math.unit(10, "lb"),
  11433. name: "Vanrel's Tome",
  11434. rename: true,
  11435. image: {
  11436. source: "./media/characters/vanrel/tome.svg"
  11437. }
  11438. },
  11439. beans: {
  11440. height: math.unit(0.89, "feet"),
  11441. name: "Beans",
  11442. image: {
  11443. source: "./media/characters/vanrel/beans.svg"
  11444. }
  11445. },
  11446. },
  11447. [
  11448. {
  11449. name: "Normal",
  11450. height: math.unit(4 + 7 / 12, "feet"),
  11451. default: true
  11452. },
  11453. ]
  11454. ))
  11455. characterMakers.push(() => makeCharacter(
  11456. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11457. {
  11458. front: {
  11459. height: math.unit(7 + 5 / 12, "feet"),
  11460. weight: math.unit(150, "lb"),
  11461. name: "Front",
  11462. image: {
  11463. source: "./media/characters/kuiper-vanrel/front.svg",
  11464. extra: 1118 / 1068,
  11465. bottom: 0.09
  11466. }
  11467. },
  11468. foot: {
  11469. height: math.unit(0.55, "meters"),
  11470. name: "Foot",
  11471. image: {
  11472. source: "./media/characters/kuiper-vanrel/foot.svg",
  11473. }
  11474. },
  11475. battle: {
  11476. height: math.unit(6.824, "feet"),
  11477. weight: math.unit(150, "lb"),
  11478. name: "Battle",
  11479. image: {
  11480. source: "./media/characters/kuiper-vanrel/battle.svg",
  11481. extra: 1466 / 1327,
  11482. bottom: 29 / 1492.5
  11483. }
  11484. },
  11485. battleAlt: {
  11486. height: math.unit(6.824, "feet"),
  11487. weight: math.unit(150, "lb"),
  11488. name: "Battle (Alt)",
  11489. image: {
  11490. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11491. extra: 2081 / 1965,
  11492. bottom: 40 / 2121
  11493. }
  11494. },
  11495. },
  11496. [
  11497. {
  11498. name: "Normal",
  11499. height: math.unit(7 + 5 / 12, "feet"),
  11500. default: true
  11501. },
  11502. ]
  11503. ))
  11504. characterMakers.push(() => makeCharacter(
  11505. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11506. {
  11507. front: {
  11508. height: math.unit(8 + 5 / 12, "feet"),
  11509. weight: math.unit(150, "lb"),
  11510. name: "Front",
  11511. image: {
  11512. source: "./media/characters/keset-vanrel/front.svg",
  11513. extra: 1150 / 1084,
  11514. bottom: 0.05
  11515. }
  11516. },
  11517. hand: {
  11518. height: math.unit(0.6, "meters"),
  11519. name: "Hand",
  11520. image: {
  11521. source: "./media/characters/keset-vanrel/hand.svg"
  11522. }
  11523. },
  11524. foot: {
  11525. height: math.unit(0.94978, "meters"),
  11526. name: "Foot",
  11527. image: {
  11528. source: "./media/characters/keset-vanrel/foot.svg"
  11529. }
  11530. },
  11531. battle: {
  11532. height: math.unit(7.408, "feet"),
  11533. weight: math.unit(150, "lb"),
  11534. name: "Battle",
  11535. image: {
  11536. source: "./media/characters/keset-vanrel/battle.svg",
  11537. extra: 1890 / 1386,
  11538. bottom: 73.28 / 1970
  11539. }
  11540. },
  11541. },
  11542. [
  11543. {
  11544. name: "Normal",
  11545. height: math.unit(8 + 5 / 12, "feet"),
  11546. default: true
  11547. },
  11548. ]
  11549. ))
  11550. characterMakers.push(() => makeCharacter(
  11551. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11552. {
  11553. front: {
  11554. height: math.unit(6, "feet"),
  11555. weight: math.unit(150, "lb"),
  11556. name: "Front",
  11557. image: {
  11558. source: "./media/characters/neos/front.svg",
  11559. extra: 1696 / 992,
  11560. bottom: 0.14
  11561. }
  11562. },
  11563. },
  11564. [
  11565. {
  11566. name: "Normal",
  11567. height: math.unit(54, "cm"),
  11568. default: true
  11569. },
  11570. {
  11571. name: "Macro",
  11572. height: math.unit(100, "m")
  11573. },
  11574. {
  11575. name: "Megamacro",
  11576. height: math.unit(10, "km")
  11577. },
  11578. {
  11579. name: "Megamacro+",
  11580. height: math.unit(100, "km")
  11581. },
  11582. {
  11583. name: "Gigamacro",
  11584. height: math.unit(100, "Mm")
  11585. },
  11586. {
  11587. name: "Teramacro",
  11588. height: math.unit(100, "Gm")
  11589. },
  11590. {
  11591. name: "Examacro",
  11592. height: math.unit(100, "Em")
  11593. },
  11594. {
  11595. name: "Godly",
  11596. height: math.unit(10000, "Ym")
  11597. },
  11598. {
  11599. name: "Beyond Godly",
  11600. height: math.unit(25, "multiverses")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11606. {
  11607. feminine: {
  11608. height: math.unit(5, "feet"),
  11609. weight: math.unit(100, "lb"),
  11610. name: "Feminine",
  11611. image: {
  11612. source: "./media/characters/sammy-mouse/feminine.svg",
  11613. extra: 2526 / 2425,
  11614. bottom: 0.123
  11615. }
  11616. },
  11617. masculine: {
  11618. height: math.unit(5, "feet"),
  11619. weight: math.unit(100, "lb"),
  11620. name: "Masculine",
  11621. image: {
  11622. source: "./media/characters/sammy-mouse/masculine.svg",
  11623. extra: 2526 / 2425,
  11624. bottom: 0.123
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Micro",
  11631. height: math.unit(5, "inches")
  11632. },
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(5, "feet"),
  11636. default: true
  11637. },
  11638. {
  11639. name: "Macro",
  11640. height: math.unit(60, "feet")
  11641. },
  11642. ]
  11643. ))
  11644. characterMakers.push(() => makeCharacter(
  11645. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11646. {
  11647. front: {
  11648. height: math.unit(4, "feet"),
  11649. weight: math.unit(50, "lb"),
  11650. name: "Front",
  11651. image: {
  11652. source: "./media/characters/kole/front.svg",
  11653. extra: 1423 / 1303,
  11654. bottom: 0.025
  11655. }
  11656. },
  11657. back: {
  11658. height: math.unit(4, "feet"),
  11659. weight: math.unit(50, "lb"),
  11660. name: "Back",
  11661. image: {
  11662. source: "./media/characters/kole/back.svg",
  11663. extra: 1426 / 1280,
  11664. bottom: 0.02
  11665. }
  11666. },
  11667. },
  11668. [
  11669. {
  11670. name: "Normal",
  11671. height: math.unit(4, "feet"),
  11672. default: true
  11673. },
  11674. ]
  11675. ))
  11676. characterMakers.push(() => makeCharacter(
  11677. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11678. {
  11679. front: {
  11680. height: math.unit(2 + 6 / 12, "feet"),
  11681. weight: math.unit(20, "lb"),
  11682. name: "Front",
  11683. image: {
  11684. source: "./media/characters/rufran/front.svg",
  11685. extra: 2041 / 1839,
  11686. bottom: 0.055
  11687. }
  11688. },
  11689. back: {
  11690. height: math.unit(2 + 6 / 12, "feet"),
  11691. weight: math.unit(20, "lb"),
  11692. name: "Back",
  11693. image: {
  11694. source: "./media/characters/rufran/back.svg",
  11695. extra: 2054 / 1839,
  11696. bottom: 0.01
  11697. }
  11698. },
  11699. hand: {
  11700. height: math.unit(0.2166, "meters"),
  11701. name: "Hand",
  11702. image: {
  11703. source: "./media/characters/rufran/hand.svg"
  11704. }
  11705. },
  11706. foot: {
  11707. height: math.unit(0.185, "meters"),
  11708. name: "Foot",
  11709. image: {
  11710. source: "./media/characters/rufran/foot.svg"
  11711. }
  11712. },
  11713. },
  11714. [
  11715. {
  11716. name: "Micro",
  11717. height: math.unit(1, "inch")
  11718. },
  11719. {
  11720. name: "Normal",
  11721. height: math.unit(2 + 6 / 12, "feet"),
  11722. default: true
  11723. },
  11724. {
  11725. name: "Big",
  11726. height: math.unit(60, "feet")
  11727. },
  11728. {
  11729. name: "Macro",
  11730. height: math.unit(325, "feet")
  11731. },
  11732. ]
  11733. ))
  11734. characterMakers.push(() => makeCharacter(
  11735. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11736. {
  11737. front: {
  11738. height: math.unit(0.3, "meters"),
  11739. weight: math.unit(3.5, "kg"),
  11740. name: "Front",
  11741. image: {
  11742. source: "./media/characters/chip/front.svg",
  11743. extra: 748 / 674
  11744. }
  11745. },
  11746. },
  11747. [
  11748. {
  11749. name: "Micro",
  11750. height: math.unit(1, "inch"),
  11751. default: true
  11752. },
  11753. ]
  11754. ))
  11755. characterMakers.push(() => makeCharacter(
  11756. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11757. {
  11758. side: {
  11759. height: math.unit(2.3, "meters"),
  11760. weight: math.unit(3500, "lb"),
  11761. name: "Side",
  11762. image: {
  11763. source: "./media/characters/torvid/side.svg",
  11764. extra: 1972 / 722,
  11765. bottom: 0.035
  11766. }
  11767. },
  11768. },
  11769. [
  11770. {
  11771. name: "Normal",
  11772. height: math.unit(2.3, "meters"),
  11773. default: true
  11774. },
  11775. ]
  11776. ))
  11777. characterMakers.push(() => makeCharacter(
  11778. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11779. {
  11780. front: {
  11781. height: math.unit(2, "meters"),
  11782. weight: math.unit(150.5, "kg"),
  11783. name: "Front",
  11784. image: {
  11785. source: "./media/characters/susan/front.svg",
  11786. extra: 693 / 635,
  11787. bottom: 0.05
  11788. }
  11789. },
  11790. },
  11791. [
  11792. {
  11793. name: "Megamacro",
  11794. height: math.unit(505, "miles"),
  11795. default: true
  11796. },
  11797. ]
  11798. ))
  11799. characterMakers.push(() => makeCharacter(
  11800. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11801. {
  11802. front: {
  11803. height: math.unit(6, "feet"),
  11804. weight: math.unit(150, "lb"),
  11805. name: "Front",
  11806. image: {
  11807. source: "./media/characters/raindrops/front.svg",
  11808. extra: 2655 / 2461,
  11809. bottom: 49 / 2705
  11810. }
  11811. },
  11812. back: {
  11813. height: math.unit(6, "feet"),
  11814. weight: math.unit(150, "lb"),
  11815. name: "Back",
  11816. image: {
  11817. source: "./media/characters/raindrops/back.svg",
  11818. extra: 2574 / 2400,
  11819. bottom: 65 / 2634
  11820. }
  11821. },
  11822. },
  11823. [
  11824. {
  11825. name: "Micro",
  11826. height: math.unit(6, "inches")
  11827. },
  11828. {
  11829. name: "Normal",
  11830. height: math.unit(6 + 2 / 12, "feet")
  11831. },
  11832. {
  11833. name: "Macro",
  11834. height: math.unit(131, "feet"),
  11835. default: true
  11836. },
  11837. {
  11838. name: "Megamacro",
  11839. height: math.unit(15, "miles")
  11840. },
  11841. {
  11842. name: "Gigamacro",
  11843. height: math.unit(4000, "miles")
  11844. },
  11845. {
  11846. name: "Teramacro",
  11847. height: math.unit(315000, "miles")
  11848. },
  11849. ]
  11850. ))
  11851. characterMakers.push(() => makeCharacter(
  11852. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11853. {
  11854. front: {
  11855. height: math.unit(2.794, "meters"),
  11856. weight: math.unit(325, "kg"),
  11857. name: "Front",
  11858. image: {
  11859. source: "./media/characters/tezwa/front.svg",
  11860. extra: 2083 / 1906,
  11861. bottom: 0.031
  11862. }
  11863. },
  11864. foot: {
  11865. height: math.unit(0.687, "meters"),
  11866. name: "Foot",
  11867. image: {
  11868. source: "./media/characters/tezwa/foot.svg"
  11869. }
  11870. },
  11871. },
  11872. [
  11873. {
  11874. name: "Normal",
  11875. height: math.unit(9 + 2 / 12, "feet"),
  11876. default: true
  11877. },
  11878. ]
  11879. ))
  11880. characterMakers.push(() => makeCharacter(
  11881. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11882. {
  11883. front: {
  11884. height: math.unit(58, "feet"),
  11885. weight: math.unit(89000, "lb"),
  11886. name: "Front",
  11887. image: {
  11888. source: "./media/characters/typhus/front.svg",
  11889. extra: 816 / 800,
  11890. bottom: 0.065
  11891. }
  11892. },
  11893. },
  11894. [
  11895. {
  11896. name: "Macro",
  11897. height: math.unit(58, "feet"),
  11898. default: true
  11899. },
  11900. ]
  11901. ))
  11902. characterMakers.push(() => makeCharacter(
  11903. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11904. {
  11905. front: {
  11906. height: math.unit(12, "feet"),
  11907. weight: math.unit(6, "tonnes"),
  11908. name: "Front",
  11909. image: {
  11910. source: "./media/characters/lyra-von-wulf/front.svg",
  11911. extra: 1,
  11912. bottom: 0.10
  11913. }
  11914. },
  11915. frontMecha: {
  11916. height: math.unit(12, "feet"),
  11917. weight: math.unit(12, "tonnes"),
  11918. name: "Front (Mecha)",
  11919. image: {
  11920. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11921. extra: 1,
  11922. bottom: 0.042
  11923. }
  11924. },
  11925. maw: {
  11926. height: math.unit(2.2, "feet"),
  11927. name: "Maw",
  11928. image: {
  11929. source: "./media/characters/lyra-von-wulf/maw.svg"
  11930. }
  11931. },
  11932. },
  11933. [
  11934. {
  11935. name: "Normal",
  11936. height: math.unit(12, "feet"),
  11937. default: true
  11938. },
  11939. {
  11940. name: "Classic",
  11941. height: math.unit(50, "feet")
  11942. },
  11943. {
  11944. name: "Macro",
  11945. height: math.unit(500, "feet")
  11946. },
  11947. {
  11948. name: "Megamacro",
  11949. height: math.unit(1, "mile")
  11950. },
  11951. {
  11952. name: "Gigamacro",
  11953. height: math.unit(400, "miles")
  11954. },
  11955. {
  11956. name: "Teramacro",
  11957. height: math.unit(22000, "miles")
  11958. },
  11959. {
  11960. name: "Solarmacro",
  11961. height: math.unit(8600000, "miles")
  11962. },
  11963. {
  11964. name: "Galactic",
  11965. height: math.unit(1057000, "lightyears")
  11966. },
  11967. ]
  11968. ))
  11969. characterMakers.push(() => makeCharacter(
  11970. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11971. {
  11972. front: {
  11973. height: math.unit(6 + 10 / 12, "feet"),
  11974. weight: math.unit(150, "lb"),
  11975. name: "Front",
  11976. image: {
  11977. source: "./media/characters/dixon/front.svg",
  11978. extra: 3361 / 3209,
  11979. bottom: 0.01
  11980. }
  11981. },
  11982. },
  11983. [
  11984. {
  11985. name: "Normal",
  11986. height: math.unit(6 + 10 / 12, "feet"),
  11987. default: true
  11988. },
  11989. {
  11990. name: "Big",
  11991. height: math.unit(12, "meters")
  11992. },
  11993. {
  11994. name: "Macro",
  11995. height: math.unit(500, "meters")
  11996. },
  11997. {
  11998. name: "Megamacro",
  11999. height: math.unit(2, "km")
  12000. },
  12001. ]
  12002. ))
  12003. characterMakers.push(() => makeCharacter(
  12004. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12005. {
  12006. front: {
  12007. height: math.unit(185, "cm"),
  12008. weight: math.unit(68, "kg"),
  12009. name: "Front",
  12010. image: {
  12011. source: "./media/characters/kauko/front.svg",
  12012. extra: 1455 / 1421,
  12013. bottom: 0.03
  12014. }
  12015. },
  12016. back: {
  12017. height: math.unit(185, "cm"),
  12018. weight: math.unit(68, "kg"),
  12019. name: "Back",
  12020. image: {
  12021. source: "./media/characters/kauko/back.svg",
  12022. extra: 1455 / 1421,
  12023. bottom: 0.004
  12024. }
  12025. },
  12026. },
  12027. [
  12028. {
  12029. name: "Normal",
  12030. height: math.unit(185, "cm"),
  12031. default: true
  12032. },
  12033. ]
  12034. ))
  12035. characterMakers.push(() => makeCharacter(
  12036. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12037. {
  12038. front: {
  12039. height: math.unit(6, "feet"),
  12040. weight: math.unit(150, "kg"),
  12041. name: "Front",
  12042. image: {
  12043. source: "./media/characters/varg/front.svg",
  12044. extra: 1108 / 1018,
  12045. bottom: 0.0375
  12046. }
  12047. },
  12048. },
  12049. [
  12050. {
  12051. name: "Normal",
  12052. height: math.unit(5, "meters")
  12053. },
  12054. {
  12055. name: "Macro",
  12056. height: math.unit(200, "meters")
  12057. },
  12058. {
  12059. name: "Megamacro",
  12060. height: math.unit(20, "kilometers")
  12061. },
  12062. {
  12063. name: "True Size",
  12064. height: math.unit(211, "km"),
  12065. default: true
  12066. },
  12067. {
  12068. name: "Gigamacro",
  12069. height: math.unit(1000, "km")
  12070. },
  12071. {
  12072. name: "Gigamacro+",
  12073. height: math.unit(8000, "km")
  12074. },
  12075. {
  12076. name: "Teramacro",
  12077. height: math.unit(1000000, "km")
  12078. },
  12079. ]
  12080. ))
  12081. characterMakers.push(() => makeCharacter(
  12082. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12083. {
  12084. front: {
  12085. height: math.unit(7 + 7 / 12, "feet"),
  12086. weight: math.unit(267, "lb"),
  12087. name: "Front",
  12088. image: {
  12089. source: "./media/characters/dayza/front.svg",
  12090. extra: 1262 / 1200,
  12091. bottom: 0.035
  12092. }
  12093. },
  12094. side: {
  12095. height: math.unit(7 + 7 / 12, "feet"),
  12096. weight: math.unit(267, "lb"),
  12097. name: "Side",
  12098. image: {
  12099. source: "./media/characters/dayza/side.svg",
  12100. extra: 1295 / 1245,
  12101. bottom: 0.05
  12102. }
  12103. },
  12104. back: {
  12105. height: math.unit(7 + 7 / 12, "feet"),
  12106. weight: math.unit(267, "lb"),
  12107. name: "Back",
  12108. image: {
  12109. source: "./media/characters/dayza/back.svg",
  12110. extra: 1241 / 1170
  12111. }
  12112. },
  12113. },
  12114. [
  12115. {
  12116. name: "Normal",
  12117. height: math.unit(7 + 7 / 12, "feet"),
  12118. default: true
  12119. },
  12120. {
  12121. name: "Macro",
  12122. height: math.unit(155, "feet")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(6 + 5 / 12, "feet"),
  12131. weight: math.unit(160, "lb"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/xanthos/front.svg",
  12135. extra: 1,
  12136. bottom: 0.04
  12137. }
  12138. },
  12139. back: {
  12140. height: math.unit(6 + 5 / 12, "feet"),
  12141. weight: math.unit(160, "lb"),
  12142. name: "Back",
  12143. image: {
  12144. source: "./media/characters/xanthos/back.svg",
  12145. extra: 1,
  12146. bottom: 0.03
  12147. }
  12148. },
  12149. hand: {
  12150. height: math.unit(0.928, "feet"),
  12151. name: "Hand",
  12152. image: {
  12153. source: "./media/characters/xanthos/hand.svg"
  12154. }
  12155. },
  12156. foot: {
  12157. height: math.unit(1.286, "feet"),
  12158. name: "Foot",
  12159. image: {
  12160. source: "./media/characters/xanthos/foot.svg"
  12161. }
  12162. },
  12163. },
  12164. [
  12165. {
  12166. name: "Normal",
  12167. height: math.unit(6 + 5 / 12, "feet"),
  12168. default: true
  12169. },
  12170. {
  12171. name: "Normal+",
  12172. height: math.unit(6, "meters")
  12173. },
  12174. {
  12175. name: "Macro",
  12176. height: math.unit(40, "feet")
  12177. },
  12178. {
  12179. name: "Macro+",
  12180. height: math.unit(200, "meters")
  12181. },
  12182. {
  12183. name: "Megamacro",
  12184. height: math.unit(20, "km")
  12185. },
  12186. {
  12187. name: "Megamacro+",
  12188. height: math.unit(100, "km")
  12189. },
  12190. ]
  12191. ))
  12192. characterMakers.push(() => makeCharacter(
  12193. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12194. {
  12195. front: {
  12196. height: math.unit(6 + 3 / 12, "feet"),
  12197. weight: math.unit(215, "lb"),
  12198. name: "Front",
  12199. image: {
  12200. source: "./media/characters/grynn/front.svg",
  12201. extra: 4627 / 4209,
  12202. bottom: 0.047
  12203. }
  12204. },
  12205. },
  12206. [
  12207. {
  12208. name: "Micro",
  12209. height: math.unit(6, "inches")
  12210. },
  12211. {
  12212. name: "Normal",
  12213. height: math.unit(6 + 3 / 12, "feet"),
  12214. default: true
  12215. },
  12216. {
  12217. name: "Big",
  12218. height: math.unit(104, "feet")
  12219. },
  12220. {
  12221. name: "Macro",
  12222. height: math.unit(944, "feet")
  12223. },
  12224. {
  12225. name: "Macro+",
  12226. height: math.unit(9480, "feet")
  12227. },
  12228. {
  12229. name: "Megamacro",
  12230. height: math.unit(78752, "feet")
  12231. },
  12232. {
  12233. name: "Megamacro+",
  12234. height: math.unit(630128, "feet")
  12235. },
  12236. {
  12237. name: "Megamacro++",
  12238. height: math.unit(3150695, "feet")
  12239. },
  12240. ]
  12241. ))
  12242. characterMakers.push(() => makeCharacter(
  12243. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12244. {
  12245. front: {
  12246. height: math.unit(7 + 5 / 12, "feet"),
  12247. weight: math.unit(450, "lb"),
  12248. name: "Front",
  12249. image: {
  12250. source: "./media/characters/mocha-aura/front.svg",
  12251. extra: 1907 / 1817,
  12252. bottom: 0.04
  12253. }
  12254. },
  12255. back: {
  12256. height: math.unit(7 + 5 / 12, "feet"),
  12257. weight: math.unit(450, "lb"),
  12258. name: "Back",
  12259. image: {
  12260. source: "./media/characters/mocha-aura/back.svg",
  12261. extra: 1900 / 1825,
  12262. bottom: 0.045
  12263. }
  12264. },
  12265. },
  12266. [
  12267. {
  12268. name: "Nano",
  12269. height: math.unit(1, "nm")
  12270. },
  12271. {
  12272. name: "Megamicro",
  12273. height: math.unit(1, "mm")
  12274. },
  12275. {
  12276. name: "Micro",
  12277. height: math.unit(3, "inches")
  12278. },
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(7 + 5 / 12, "feet"),
  12282. default: true
  12283. },
  12284. {
  12285. name: "Macro",
  12286. height: math.unit(30, "feet")
  12287. },
  12288. {
  12289. name: "Megamacro",
  12290. height: math.unit(3500, "feet")
  12291. },
  12292. {
  12293. name: "Teramacro",
  12294. height: math.unit(500000, "miles")
  12295. },
  12296. {
  12297. name: "Petamacro",
  12298. height: math.unit(50000000000000000, "parsecs")
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12304. {
  12305. front: {
  12306. height: math.unit(6, "feet"),
  12307. weight: math.unit(150, "lb"),
  12308. name: "Front",
  12309. image: {
  12310. source: "./media/characters/ilisha-devya/front.svg",
  12311. extra: 1,
  12312. bottom: 0.175
  12313. }
  12314. },
  12315. back: {
  12316. height: math.unit(6, "feet"),
  12317. weight: math.unit(150, "lb"),
  12318. name: "Back",
  12319. image: {
  12320. source: "./media/characters/ilisha-devya/back.svg",
  12321. extra: 1,
  12322. bottom: 0.015
  12323. }
  12324. },
  12325. },
  12326. [
  12327. {
  12328. name: "Macro",
  12329. height: math.unit(500, "feet"),
  12330. default: true
  12331. },
  12332. {
  12333. name: "Megamacro",
  12334. height: math.unit(10, "miles")
  12335. },
  12336. {
  12337. name: "Gigamacro",
  12338. height: math.unit(100000, "miles")
  12339. },
  12340. {
  12341. name: "Examacro",
  12342. height: math.unit(1e9, "lightyears")
  12343. },
  12344. {
  12345. name: "Omniversal",
  12346. height: math.unit(1e33, "lightyears")
  12347. },
  12348. {
  12349. name: "Beyond Infinite",
  12350. height: math.unit(1e100, "lightyears")
  12351. },
  12352. ]
  12353. ))
  12354. characterMakers.push(() => makeCharacter(
  12355. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12356. {
  12357. Side: {
  12358. height: math.unit(6, "feet"),
  12359. weight: math.unit(150, "lb"),
  12360. name: "Side",
  12361. image: {
  12362. source: "./media/characters/mira/side.svg",
  12363. extra: 900 / 799,
  12364. bottom: 0.02
  12365. }
  12366. },
  12367. },
  12368. [
  12369. {
  12370. name: "Human Size",
  12371. height: math.unit(6, "feet")
  12372. },
  12373. {
  12374. name: "Macro",
  12375. height: math.unit(100, "feet"),
  12376. default: true
  12377. },
  12378. {
  12379. name: "Megamacro",
  12380. height: math.unit(10, "miles")
  12381. },
  12382. {
  12383. name: "Gigamacro",
  12384. height: math.unit(25000, "miles")
  12385. },
  12386. {
  12387. name: "Teramacro",
  12388. height: math.unit(300, "AU")
  12389. },
  12390. {
  12391. name: "Full Size",
  12392. height: math.unit(4.5e10, "lightyears")
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12398. {
  12399. front: {
  12400. height: math.unit(6, "feet"),
  12401. weight: math.unit(150, "lb"),
  12402. name: "Front",
  12403. image: {
  12404. source: "./media/characters/holly/front.svg",
  12405. extra: 639 / 606
  12406. }
  12407. },
  12408. back: {
  12409. height: math.unit(6, "feet"),
  12410. weight: math.unit(150, "lb"),
  12411. name: "Back",
  12412. image: {
  12413. source: "./media/characters/holly/back.svg",
  12414. extra: 623 / 598
  12415. }
  12416. },
  12417. frontWorking: {
  12418. height: math.unit(6, "feet"),
  12419. weight: math.unit(150, "lb"),
  12420. name: "Front (Working)",
  12421. image: {
  12422. source: "./media/characters/holly/front-working.svg",
  12423. extra: 607 / 577,
  12424. bottom: 0.048
  12425. }
  12426. },
  12427. },
  12428. [
  12429. {
  12430. name: "Normal",
  12431. height: math.unit(12 + 3 / 12, "feet"),
  12432. default: true
  12433. },
  12434. ]
  12435. ))
  12436. characterMakers.push(() => makeCharacter(
  12437. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12438. {
  12439. front: {
  12440. height: math.unit(6, "feet"),
  12441. weight: math.unit(150, "lb"),
  12442. name: "Front",
  12443. image: {
  12444. source: "./media/characters/porter/front.svg",
  12445. extra: 1,
  12446. bottom: 0.01
  12447. }
  12448. },
  12449. frontRobes: {
  12450. height: math.unit(6, "feet"),
  12451. weight: math.unit(150, "lb"),
  12452. name: "Front (Robes)",
  12453. image: {
  12454. source: "./media/characters/porter/front-robes.svg",
  12455. extra: 1.01,
  12456. bottom: 0.01
  12457. }
  12458. },
  12459. },
  12460. [
  12461. {
  12462. name: "Normal",
  12463. height: math.unit(11 + 9 / 12, "feet"),
  12464. default: true
  12465. },
  12466. ]
  12467. ))
  12468. characterMakers.push(() => makeCharacter(
  12469. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12470. {
  12471. legendary: {
  12472. height: math.unit(6, "feet"),
  12473. weight: math.unit(150, "lb"),
  12474. name: "Legendary",
  12475. image: {
  12476. source: "./media/characters/lucy/legendary.svg",
  12477. extra: 1355 / 1100,
  12478. bottom: 0.045
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Legendary",
  12485. height: math.unit(86882 * 2, "miles"),
  12486. default: true
  12487. },
  12488. ]
  12489. ))
  12490. characterMakers.push(() => makeCharacter(
  12491. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12492. {
  12493. front: {
  12494. height: math.unit(6, "feet"),
  12495. weight: math.unit(150, "lb"),
  12496. name: "Front",
  12497. image: {
  12498. source: "./media/characters/drusilla/front.svg",
  12499. extra: 678 / 635,
  12500. bottom: 0.03
  12501. }
  12502. },
  12503. back: {
  12504. height: math.unit(6, "feet"),
  12505. weight: math.unit(150, "lb"),
  12506. name: "Back",
  12507. image: {
  12508. source: "./media/characters/drusilla/back.svg",
  12509. extra: 678 / 635,
  12510. bottom: 0.005
  12511. }
  12512. },
  12513. },
  12514. [
  12515. {
  12516. name: "Macro",
  12517. height: math.unit(100, "feet")
  12518. },
  12519. {
  12520. name: "Canon Height",
  12521. height: math.unit(2000, "feet"),
  12522. default: true
  12523. },
  12524. ]
  12525. ))
  12526. characterMakers.push(() => makeCharacter(
  12527. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12528. {
  12529. front: {
  12530. height: math.unit(6, "feet"),
  12531. weight: math.unit(180, "lb"),
  12532. name: "Front",
  12533. image: {
  12534. source: "./media/characters/renard-thatch/front.svg",
  12535. extra: 2411 / 2275,
  12536. bottom: 0.01
  12537. }
  12538. },
  12539. frontPosing: {
  12540. height: math.unit(6, "feet"),
  12541. weight: math.unit(180, "lb"),
  12542. name: "Front (Posing)",
  12543. image: {
  12544. source: "./media/characters/renard-thatch/front-posing.svg",
  12545. extra: 2381 / 2261,
  12546. bottom: 0.01
  12547. }
  12548. },
  12549. back: {
  12550. height: math.unit(6, "feet"),
  12551. weight: math.unit(180, "lb"),
  12552. name: "Back",
  12553. image: {
  12554. source: "./media/characters/renard-thatch/back.svg",
  12555. extra: 2428 / 2288
  12556. }
  12557. },
  12558. },
  12559. [
  12560. {
  12561. name: "Micro",
  12562. height: math.unit(3, "inches")
  12563. },
  12564. {
  12565. name: "Default",
  12566. height: math.unit(6, "feet"),
  12567. default: true
  12568. },
  12569. {
  12570. name: "Macro",
  12571. height: math.unit(75, "feet")
  12572. },
  12573. ]
  12574. ))
  12575. characterMakers.push(() => makeCharacter(
  12576. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12577. {
  12578. front: {
  12579. height: math.unit(1450, "feet"),
  12580. weight: math.unit(1.21e6, "tons"),
  12581. name: "Front",
  12582. image: {
  12583. source: "./media/characters/sekvra/front.svg",
  12584. extra: 1,
  12585. bottom: 0.03
  12586. }
  12587. },
  12588. frontClothed: {
  12589. height: math.unit(1450, "feet"),
  12590. weight: math.unit(1.21e6, "tons"),
  12591. name: "Front (Clothed)",
  12592. image: {
  12593. source: "./media/characters/sekvra/front-clothed.svg",
  12594. extra: 1,
  12595. bottom: 0.03
  12596. }
  12597. },
  12598. side: {
  12599. height: math.unit(1450, "feet"),
  12600. weight: math.unit(1.21e6, "tons"),
  12601. name: "Side",
  12602. image: {
  12603. source: "./media/characters/sekvra/side.svg",
  12604. extra: 1,
  12605. bottom: 0.025
  12606. }
  12607. },
  12608. back: {
  12609. height: math.unit(1450, "feet"),
  12610. weight: math.unit(1.21e6, "tons"),
  12611. name: "Back",
  12612. image: {
  12613. source: "./media/characters/sekvra/back.svg",
  12614. extra: 1,
  12615. bottom: 0.005
  12616. }
  12617. },
  12618. },
  12619. [
  12620. {
  12621. name: "Macro",
  12622. height: math.unit(1450, "feet"),
  12623. default: true
  12624. },
  12625. {
  12626. name: "Megamacro",
  12627. height: math.unit(15000, "feet")
  12628. },
  12629. ]
  12630. ))
  12631. characterMakers.push(() => makeCharacter(
  12632. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12633. {
  12634. front: {
  12635. height: math.unit(6, "feet"),
  12636. weight: math.unit(150, "lb"),
  12637. name: "Front",
  12638. image: {
  12639. source: "./media/characters/carmine/front.svg",
  12640. extra: 1,
  12641. bottom: 0.035
  12642. }
  12643. },
  12644. frontArmor: {
  12645. height: math.unit(6, "feet"),
  12646. weight: math.unit(150, "lb"),
  12647. name: "Front (Armor)",
  12648. image: {
  12649. source: "./media/characters/carmine/front-armor.svg",
  12650. extra: 1,
  12651. bottom: 0.035
  12652. }
  12653. },
  12654. },
  12655. [
  12656. {
  12657. name: "Large",
  12658. height: math.unit(1, "mile")
  12659. },
  12660. {
  12661. name: "Huge",
  12662. height: math.unit(40, "miles"),
  12663. default: true
  12664. },
  12665. {
  12666. name: "Colossal",
  12667. height: math.unit(2500, "miles")
  12668. },
  12669. ]
  12670. ))
  12671. characterMakers.push(() => makeCharacter(
  12672. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12673. {
  12674. front: {
  12675. height: math.unit(6, "feet"),
  12676. weight: math.unit(150, "lb"),
  12677. name: "Front",
  12678. image: {
  12679. source: "./media/characters/elyssia/front.svg",
  12680. extra: 2201 / 2035,
  12681. bottom: 0.05
  12682. }
  12683. },
  12684. frontClothed: {
  12685. height: math.unit(6, "feet"),
  12686. weight: math.unit(150, "lb"),
  12687. name: "Front (Clothed)",
  12688. image: {
  12689. source: "./media/characters/elyssia/front-clothed.svg",
  12690. extra: 2201 / 2035,
  12691. bottom: 0.05
  12692. }
  12693. },
  12694. back: {
  12695. height: math.unit(6, "feet"),
  12696. weight: math.unit(150, "lb"),
  12697. name: "Back",
  12698. image: {
  12699. source: "./media/characters/elyssia/back.svg",
  12700. extra: 2201 / 2035,
  12701. bottom: 0.013
  12702. }
  12703. },
  12704. },
  12705. [
  12706. {
  12707. name: "Smaller",
  12708. height: math.unit(150, "feet")
  12709. },
  12710. {
  12711. name: "Standard",
  12712. height: math.unit(1400, "feet"),
  12713. default: true
  12714. },
  12715. {
  12716. name: "Distracted",
  12717. height: math.unit(15000, "feet")
  12718. },
  12719. ]
  12720. ))
  12721. characterMakers.push(() => makeCharacter(
  12722. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12723. {
  12724. front: {
  12725. height: math.unit(7 + 4 / 12, "feet"),
  12726. weight: math.unit(500, "lb"),
  12727. name: "Front",
  12728. image: {
  12729. source: "./media/characters/geno-maxwell/front.svg",
  12730. extra: 2207 / 2040,
  12731. bottom: 0.015
  12732. }
  12733. },
  12734. },
  12735. [
  12736. {
  12737. name: "Micro",
  12738. height: math.unit(3, "inches")
  12739. },
  12740. {
  12741. name: "Normal",
  12742. height: math.unit(7 + 4 / 12, "feet"),
  12743. default: true
  12744. },
  12745. {
  12746. name: "Macro",
  12747. height: math.unit(220, "feet")
  12748. },
  12749. {
  12750. name: "Megamacro",
  12751. height: math.unit(11, "miles")
  12752. },
  12753. ]
  12754. ))
  12755. characterMakers.push(() => makeCharacter(
  12756. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12757. {
  12758. front: {
  12759. height: math.unit(7 + 4 / 12, "feet"),
  12760. weight: math.unit(500, "lb"),
  12761. name: "Front",
  12762. image: {
  12763. source: "./media/characters/regena-maxwell/front.svg",
  12764. extra: 3115 / 2770,
  12765. bottom: 0.02
  12766. }
  12767. },
  12768. },
  12769. [
  12770. {
  12771. name: "Normal",
  12772. height: math.unit(7 + 4 / 12, "feet"),
  12773. default: true
  12774. },
  12775. {
  12776. name: "Macro",
  12777. height: math.unit(220, "feet")
  12778. },
  12779. {
  12780. name: "Megamacro",
  12781. height: math.unit(11, "miles")
  12782. },
  12783. ]
  12784. ))
  12785. characterMakers.push(() => makeCharacter(
  12786. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12787. {
  12788. front: {
  12789. height: math.unit(6, "feet"),
  12790. weight: math.unit(150, "lb"),
  12791. name: "Front",
  12792. image: {
  12793. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12794. extra: 860 / 690,
  12795. bottom: 0.03
  12796. }
  12797. },
  12798. },
  12799. [
  12800. {
  12801. name: "Normal",
  12802. height: math.unit(1.7, "meters"),
  12803. default: true
  12804. },
  12805. ]
  12806. ))
  12807. characterMakers.push(() => makeCharacter(
  12808. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12809. {
  12810. front: {
  12811. height: math.unit(6, "feet"),
  12812. weight: math.unit(150, "lb"),
  12813. name: "Front",
  12814. image: {
  12815. source: "./media/characters/quilly/front.svg",
  12816. extra: 890 / 776
  12817. }
  12818. },
  12819. },
  12820. [
  12821. {
  12822. name: "Gigamacro",
  12823. height: math.unit(404090, "miles"),
  12824. default: true
  12825. },
  12826. ]
  12827. ))
  12828. characterMakers.push(() => makeCharacter(
  12829. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12830. {
  12831. front: {
  12832. height: math.unit(7 + 8 / 12, "feet"),
  12833. weight: math.unit(350, "lb"),
  12834. name: "Front",
  12835. image: {
  12836. source: "./media/characters/tempest/front.svg",
  12837. extra: 1175 / 1086,
  12838. bottom: 0.02
  12839. }
  12840. },
  12841. },
  12842. [
  12843. {
  12844. name: "Normal",
  12845. height: math.unit(7 + 8 / 12, "feet"),
  12846. default: true
  12847. },
  12848. ]
  12849. ))
  12850. characterMakers.push(() => makeCharacter(
  12851. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12852. {
  12853. side: {
  12854. height: math.unit(4 + 5 / 12, "feet"),
  12855. weight: math.unit(80, "lb"),
  12856. name: "Side",
  12857. image: {
  12858. source: "./media/characters/rodger/side.svg",
  12859. extra: 1235 / 1118
  12860. }
  12861. },
  12862. },
  12863. [
  12864. {
  12865. name: "Micro",
  12866. height: math.unit(1, "inch")
  12867. },
  12868. {
  12869. name: "Normal",
  12870. height: math.unit(4 + 5 / 12, "feet"),
  12871. default: true
  12872. },
  12873. {
  12874. name: "Macro",
  12875. height: math.unit(120, "feet")
  12876. },
  12877. ]
  12878. ))
  12879. characterMakers.push(() => makeCharacter(
  12880. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12881. {
  12882. front: {
  12883. height: math.unit(6, "feet"),
  12884. weight: math.unit(150, "lb"),
  12885. name: "Front",
  12886. image: {
  12887. source: "./media/characters/danyel/front.svg",
  12888. extra: 1185 / 1123,
  12889. bottom: 0.05
  12890. }
  12891. },
  12892. },
  12893. [
  12894. {
  12895. name: "Shrunken",
  12896. height: math.unit(0.5, "mm")
  12897. },
  12898. {
  12899. name: "Micro",
  12900. height: math.unit(1, "mm"),
  12901. default: true
  12902. },
  12903. {
  12904. name: "Upsized",
  12905. height: math.unit(5 + 5 / 12, "feet")
  12906. },
  12907. ]
  12908. ))
  12909. characterMakers.push(() => makeCharacter(
  12910. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12911. {
  12912. front: {
  12913. height: math.unit(5 + 6 / 12, "feet"),
  12914. weight: math.unit(200, "lb"),
  12915. name: "Front",
  12916. image: {
  12917. source: "./media/characters/vivian-bijoux/front.svg",
  12918. extra: 1,
  12919. bottom: 0.072
  12920. }
  12921. },
  12922. },
  12923. [
  12924. {
  12925. name: "Normal",
  12926. height: math.unit(5 + 6 / 12, "feet"),
  12927. default: true
  12928. },
  12929. {
  12930. name: "Bad Dream",
  12931. height: math.unit(500, "feet")
  12932. },
  12933. {
  12934. name: "Nightmare",
  12935. height: math.unit(500, "miles")
  12936. },
  12937. ]
  12938. ))
  12939. characterMakers.push(() => makeCharacter(
  12940. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12941. {
  12942. front: {
  12943. height: math.unit(6 + 1 / 12, "feet"),
  12944. weight: math.unit(260, "lb"),
  12945. name: "Front",
  12946. image: {
  12947. source: "./media/characters/zeta/front.svg",
  12948. extra: 1968 / 1889,
  12949. bottom: 0.06
  12950. }
  12951. },
  12952. back: {
  12953. height: math.unit(6 + 1 / 12, "feet"),
  12954. weight: math.unit(260, "lb"),
  12955. name: "Back",
  12956. image: {
  12957. source: "./media/characters/zeta/back.svg",
  12958. extra: 1944 / 1858,
  12959. bottom: 0.03
  12960. }
  12961. },
  12962. hand: {
  12963. height: math.unit(1.112, "feet"),
  12964. name: "Hand",
  12965. image: {
  12966. source: "./media/characters/zeta/hand.svg"
  12967. }
  12968. },
  12969. foot: {
  12970. height: math.unit(1.48, "feet"),
  12971. name: "Foot",
  12972. image: {
  12973. source: "./media/characters/zeta/foot.svg"
  12974. }
  12975. },
  12976. },
  12977. [
  12978. {
  12979. name: "Micro",
  12980. height: math.unit(6, "inches")
  12981. },
  12982. {
  12983. name: "Normal",
  12984. height: math.unit(6 + 1 / 12, "feet"),
  12985. default: true
  12986. },
  12987. {
  12988. name: "Macro",
  12989. height: math.unit(20, "feet")
  12990. },
  12991. ]
  12992. ))
  12993. characterMakers.push(() => makeCharacter(
  12994. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12995. {
  12996. front: {
  12997. height: math.unit(6, "feet"),
  12998. weight: math.unit(150, "lb"),
  12999. name: "Front",
  13000. image: {
  13001. source: "./media/characters/jamie-larsen/front.svg",
  13002. extra: 962 / 933,
  13003. bottom: 0.02
  13004. }
  13005. },
  13006. back: {
  13007. height: math.unit(6, "feet"),
  13008. weight: math.unit(150, "lb"),
  13009. name: "Back",
  13010. image: {
  13011. source: "./media/characters/jamie-larsen/back.svg",
  13012. extra: 997 / 946
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Macro",
  13019. height: math.unit(28 + 7 / 12, "feet"),
  13020. default: true
  13021. },
  13022. {
  13023. name: "Macro+",
  13024. height: math.unit(180, "feet")
  13025. },
  13026. {
  13027. name: "Megamacro",
  13028. height: math.unit(10, "miles")
  13029. },
  13030. {
  13031. name: "Gigamacro",
  13032. height: math.unit(200000, "miles")
  13033. },
  13034. ]
  13035. ))
  13036. characterMakers.push(() => makeCharacter(
  13037. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13038. {
  13039. front: {
  13040. height: math.unit(6, "feet"),
  13041. weight: math.unit(120, "lb"),
  13042. name: "Front",
  13043. image: {
  13044. source: "./media/characters/vance/front.svg",
  13045. extra: 1980 / 1890,
  13046. bottom: 0.09
  13047. }
  13048. },
  13049. back: {
  13050. height: math.unit(6, "feet"),
  13051. weight: math.unit(120, "lb"),
  13052. name: "Back",
  13053. image: {
  13054. source: "./media/characters/vance/back.svg",
  13055. extra: 2081 / 1994,
  13056. bottom: 0.014
  13057. }
  13058. },
  13059. hand: {
  13060. height: math.unit(0.88, "feet"),
  13061. name: "Hand",
  13062. image: {
  13063. source: "./media/characters/vance/hand.svg"
  13064. }
  13065. },
  13066. foot: {
  13067. height: math.unit(0.64, "feet"),
  13068. name: "Foot",
  13069. image: {
  13070. source: "./media/characters/vance/foot.svg"
  13071. }
  13072. },
  13073. },
  13074. [
  13075. {
  13076. name: "Small",
  13077. height: math.unit(90, "feet"),
  13078. default: true
  13079. },
  13080. {
  13081. name: "Macro",
  13082. height: math.unit(100, "meters")
  13083. },
  13084. {
  13085. name: "Megamacro",
  13086. height: math.unit(15, "miles")
  13087. },
  13088. ]
  13089. ))
  13090. characterMakers.push(() => makeCharacter(
  13091. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13092. {
  13093. front: {
  13094. height: math.unit(6, "feet"),
  13095. weight: math.unit(180, "lb"),
  13096. name: "Front",
  13097. image: {
  13098. source: "./media/characters/xochitl/front.svg",
  13099. extra: 2297 / 2261,
  13100. bottom: 0.065
  13101. }
  13102. },
  13103. back: {
  13104. height: math.unit(6, "feet"),
  13105. weight: math.unit(180, "lb"),
  13106. name: "Back",
  13107. image: {
  13108. source: "./media/characters/xochitl/back.svg",
  13109. extra: 2386 / 2354,
  13110. bottom: 0.01
  13111. }
  13112. },
  13113. foot: {
  13114. height: math.unit(6 / 5 * 1.15, "feet"),
  13115. weight: math.unit(150, "lb"),
  13116. name: "Foot",
  13117. image: {
  13118. source: "./media/characters/xochitl/foot.svg"
  13119. }
  13120. },
  13121. },
  13122. [
  13123. {
  13124. name: "Macro",
  13125. height: math.unit(80, "feet")
  13126. },
  13127. {
  13128. name: "Macro+",
  13129. height: math.unit(400, "feet"),
  13130. default: true
  13131. },
  13132. {
  13133. name: "Gigamacro",
  13134. height: math.unit(80000, "miles")
  13135. },
  13136. {
  13137. name: "Gigamacro+",
  13138. height: math.unit(400000, "miles")
  13139. },
  13140. {
  13141. name: "Teramacro",
  13142. height: math.unit(300, "AU")
  13143. },
  13144. ]
  13145. ))
  13146. characterMakers.push(() => makeCharacter(
  13147. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13148. {
  13149. front: {
  13150. height: math.unit(6, "feet"),
  13151. weight: math.unit(150, "lb"),
  13152. name: "Front",
  13153. image: {
  13154. source: "./media/characters/vincent/front.svg",
  13155. extra: 1130 / 1080,
  13156. bottom: 0.055
  13157. }
  13158. },
  13159. beak: {
  13160. height: math.unit(6 * 0.1, "feet"),
  13161. name: "Beak",
  13162. image: {
  13163. source: "./media/characters/vincent/beak.svg"
  13164. }
  13165. },
  13166. hand: {
  13167. height: math.unit(6 * 0.85, "feet"),
  13168. weight: math.unit(150, "lb"),
  13169. name: "Hand",
  13170. image: {
  13171. source: "./media/characters/vincent/hand.svg"
  13172. }
  13173. },
  13174. foot: {
  13175. height: math.unit(6 * 0.19, "feet"),
  13176. weight: math.unit(150, "lb"),
  13177. name: "Foot",
  13178. image: {
  13179. source: "./media/characters/vincent/foot.svg"
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Base",
  13186. height: math.unit(6 + 5 / 12, "feet"),
  13187. default: true
  13188. },
  13189. {
  13190. name: "Macro",
  13191. height: math.unit(300, "feet")
  13192. },
  13193. {
  13194. name: "Megamacro",
  13195. height: math.unit(2, "miles")
  13196. },
  13197. {
  13198. name: "Gigamacro",
  13199. height: math.unit(1000, "miles")
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(6 + 2 / 12, "feet"),
  13208. weight: math.unit(265, "lb"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/jay/front.svg",
  13212. extra: 1510 / 1430,
  13213. bottom: 0.042
  13214. }
  13215. },
  13216. back: {
  13217. height: math.unit(6 + 2 / 12, "feet"),
  13218. weight: math.unit(265, "lb"),
  13219. name: "Back",
  13220. image: {
  13221. source: "./media/characters/jay/back.svg",
  13222. extra: 1510 / 1430,
  13223. bottom: 0.025
  13224. }
  13225. },
  13226. clothed: {
  13227. height: math.unit(6 + 2 / 12, "feet"),
  13228. weight: math.unit(265, "lb"),
  13229. name: "Front (Clothed)",
  13230. image: {
  13231. source: "./media/characters/jay/clothed.svg",
  13232. extra: 744 / 699,
  13233. bottom: 0.043
  13234. }
  13235. },
  13236. head: {
  13237. height: math.unit(1.772, "feet"),
  13238. name: "Head",
  13239. image: {
  13240. source: "./media/characters/jay/head.svg"
  13241. }
  13242. },
  13243. sizeRay: {
  13244. height: math.unit(1.331, "feet"),
  13245. name: "Size Ray",
  13246. image: {
  13247. source: "./media/characters/jay/size-ray.svg"
  13248. }
  13249. },
  13250. },
  13251. [
  13252. {
  13253. name: "Micro",
  13254. height: math.unit(1, "inch")
  13255. },
  13256. {
  13257. name: "Normal",
  13258. height: math.unit(6 + 2 / 12, "feet"),
  13259. default: true
  13260. },
  13261. {
  13262. name: "Macro",
  13263. height: math.unit(1, "mile")
  13264. },
  13265. {
  13266. name: "Megamacro",
  13267. height: math.unit(100, "miles")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(2, "meters"),
  13276. weight: math.unit(500, "kg"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/coatl/front.svg",
  13280. extra: 3948 / 3500,
  13281. bottom: 0.082
  13282. }
  13283. },
  13284. },
  13285. [
  13286. {
  13287. name: "Normal",
  13288. height: math.unit(4, "meters")
  13289. },
  13290. {
  13291. name: "Macro",
  13292. height: math.unit(100, "meters"),
  13293. default: true
  13294. },
  13295. {
  13296. name: "Macro+",
  13297. height: math.unit(300, "meters")
  13298. },
  13299. {
  13300. name: "Megamacro",
  13301. height: math.unit(3, "gigameters")
  13302. },
  13303. {
  13304. name: "Megamacro+",
  13305. height: math.unit(300, "terameters")
  13306. },
  13307. {
  13308. name: "Megamacro++",
  13309. height: math.unit(3, "lightyears")
  13310. },
  13311. ]
  13312. ))
  13313. characterMakers.push(() => makeCharacter(
  13314. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13315. {
  13316. front: {
  13317. height: math.unit(6, "feet"),
  13318. weight: math.unit(50, "kg"),
  13319. name: "front",
  13320. image: {
  13321. source: "./media/characters/shiroryu/front.svg",
  13322. extra: 1990 / 1935
  13323. }
  13324. },
  13325. },
  13326. [
  13327. {
  13328. name: "Mortal Mingling",
  13329. height: math.unit(3, "meters")
  13330. },
  13331. {
  13332. name: "Kaiju-ish",
  13333. height: math.unit(250, "meters")
  13334. },
  13335. {
  13336. name: "Somewhat Godly",
  13337. height: math.unit(400, "km"),
  13338. default: true
  13339. },
  13340. {
  13341. name: "Planetary",
  13342. height: math.unit(300, "megameters")
  13343. },
  13344. {
  13345. name: "Galaxy-dwarfing",
  13346. height: math.unit(450, "kiloparsecs")
  13347. },
  13348. {
  13349. name: "Universe Eater",
  13350. height: math.unit(150, "gigaparsecs")
  13351. },
  13352. {
  13353. name: "Almost Immeasurable",
  13354. height: math.unit(1.3e266, "yottaparsecs")
  13355. },
  13356. ]
  13357. ))
  13358. characterMakers.push(() => makeCharacter(
  13359. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13360. {
  13361. front: {
  13362. height: math.unit(6, "feet"),
  13363. weight: math.unit(150, "lb"),
  13364. name: "Front",
  13365. image: {
  13366. source: "./media/characters/umeko/front.svg",
  13367. extra: 1,
  13368. bottom: 0.019
  13369. }
  13370. },
  13371. frontArmored: {
  13372. height: math.unit(6, "feet"),
  13373. weight: math.unit(150, "lb"),
  13374. name: "Front (Armored)",
  13375. image: {
  13376. source: "./media/characters/umeko/front-armored.svg",
  13377. extra: 1,
  13378. bottom: 0.021
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Macro",
  13385. height: math.unit(220, "feet"),
  13386. default: true
  13387. },
  13388. {
  13389. name: "Guardian Dragon",
  13390. height: math.unit(50, "miles")
  13391. },
  13392. {
  13393. name: "Cosmic",
  13394. height: math.unit(800000, "miles")
  13395. },
  13396. ]
  13397. ))
  13398. characterMakers.push(() => makeCharacter(
  13399. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13400. {
  13401. front: {
  13402. height: math.unit(6, "feet"),
  13403. weight: math.unit(150, "lb"),
  13404. name: "Front",
  13405. image: {
  13406. source: "./media/characters/cassidy/front.svg",
  13407. extra: 1,
  13408. bottom: 0.043
  13409. }
  13410. },
  13411. },
  13412. [
  13413. {
  13414. name: "Canon Height",
  13415. height: math.unit(120, "feet"),
  13416. default: true
  13417. },
  13418. {
  13419. name: "Macro+",
  13420. height: math.unit(400, "feet")
  13421. },
  13422. {
  13423. name: "Macro++",
  13424. height: math.unit(4000, "feet")
  13425. },
  13426. {
  13427. name: "Megamacro",
  13428. height: math.unit(3, "miles")
  13429. },
  13430. ]
  13431. ))
  13432. characterMakers.push(() => makeCharacter(
  13433. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13434. {
  13435. front: {
  13436. height: math.unit(6, "feet"),
  13437. weight: math.unit(150, "lb"),
  13438. name: "Front",
  13439. image: {
  13440. source: "./media/characters/isaac/front.svg",
  13441. extra: 896 / 815,
  13442. bottom: 0.11
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Human Size",
  13449. height: math.unit(8, "feet"),
  13450. default: true
  13451. },
  13452. {
  13453. name: "Macro",
  13454. height: math.unit(400, "feet")
  13455. },
  13456. {
  13457. name: "Megamacro",
  13458. height: math.unit(50, "miles")
  13459. },
  13460. {
  13461. name: "Canon Height",
  13462. height: math.unit(200, "AU")
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13468. {
  13469. front: {
  13470. height: math.unit(6, "feet"),
  13471. weight: math.unit(72, "kg"),
  13472. name: "Front",
  13473. image: {
  13474. source: "./media/characters/sleekit/front.svg",
  13475. extra: 4693 / 4487,
  13476. bottom: 0.012
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Minimum Height",
  13483. height: math.unit(10, "meters")
  13484. },
  13485. {
  13486. name: "Smaller",
  13487. height: math.unit(25, "meters")
  13488. },
  13489. {
  13490. name: "Larger",
  13491. height: math.unit(38, "meters"),
  13492. default: true
  13493. },
  13494. {
  13495. name: "Maximum height",
  13496. height: math.unit(100, "meters")
  13497. },
  13498. ]
  13499. ))
  13500. characterMakers.push(() => makeCharacter(
  13501. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13502. {
  13503. front: {
  13504. height: math.unit(6, "feet"),
  13505. weight: math.unit(150, "lb"),
  13506. name: "Front",
  13507. image: {
  13508. source: "./media/characters/nillia/front.svg",
  13509. extra: 2195 / 2037,
  13510. bottom: 0.005
  13511. }
  13512. },
  13513. back: {
  13514. height: math.unit(6, "feet"),
  13515. weight: math.unit(150, "lb"),
  13516. name: "Back",
  13517. image: {
  13518. source: "./media/characters/nillia/back.svg",
  13519. extra: 2195 / 2037,
  13520. bottom: 0.005
  13521. }
  13522. },
  13523. },
  13524. [
  13525. {
  13526. name: "Canon Height",
  13527. height: math.unit(489, "feet"),
  13528. default: true
  13529. }
  13530. ]
  13531. ))
  13532. characterMakers.push(() => makeCharacter(
  13533. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13534. {
  13535. front: {
  13536. height: math.unit(6, "feet"),
  13537. weight: math.unit(150, "lb"),
  13538. name: "Front",
  13539. image: {
  13540. source: "./media/characters/mesmyriza/front.svg",
  13541. extra: 2067 / 1784,
  13542. bottom: 0.035
  13543. }
  13544. },
  13545. foot: {
  13546. height: math.unit(6 / (250 / 35), "feet"),
  13547. name: "Foot",
  13548. image: {
  13549. source: "./media/characters/mesmyriza/foot.svg"
  13550. }
  13551. },
  13552. },
  13553. [
  13554. {
  13555. name: "Macro",
  13556. height: math.unit(457, "meters"),
  13557. default: true
  13558. },
  13559. {
  13560. name: "Megamacro",
  13561. height: math.unit(8, "megameters")
  13562. },
  13563. ]
  13564. ))
  13565. characterMakers.push(() => makeCharacter(
  13566. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13567. {
  13568. front: {
  13569. height: math.unit(6, "feet"),
  13570. weight: math.unit(250, "lb"),
  13571. name: "Front",
  13572. image: {
  13573. source: "./media/characters/saudade/front.svg",
  13574. extra: 1172 / 1139,
  13575. bottom: 0.035
  13576. }
  13577. },
  13578. },
  13579. [
  13580. {
  13581. name: "Micro",
  13582. height: math.unit(3, "inches")
  13583. },
  13584. {
  13585. name: "Normal",
  13586. height: math.unit(6, "feet"),
  13587. default: true
  13588. },
  13589. {
  13590. name: "Macro",
  13591. height: math.unit(50, "feet")
  13592. },
  13593. {
  13594. name: "Megamacro",
  13595. height: math.unit(2800, "feet")
  13596. },
  13597. ]
  13598. ))
  13599. characterMakers.push(() => makeCharacter(
  13600. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13601. {
  13602. front: {
  13603. height: math.unit(5 + 4 / 12, "feet"),
  13604. weight: math.unit(100, "lb"),
  13605. name: "Front",
  13606. image: {
  13607. source: "./media/characters/keireer/front.svg",
  13608. extra: 716 / 666,
  13609. bottom: 0.05
  13610. }
  13611. },
  13612. },
  13613. [
  13614. {
  13615. name: "Normal",
  13616. height: math.unit(5 + 4 / 12, "feet"),
  13617. default: true
  13618. },
  13619. ]
  13620. ))
  13621. characterMakers.push(() => makeCharacter(
  13622. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13623. {
  13624. front: {
  13625. height: math.unit(6, "feet"),
  13626. weight: math.unit(90, "kg"),
  13627. name: "Front",
  13628. image: {
  13629. source: "./media/characters/mirja/front.svg",
  13630. extra: 1789 / 1683,
  13631. bottom: 0.05
  13632. }
  13633. },
  13634. frontDressed: {
  13635. height: math.unit(6, "feet"),
  13636. weight: math.unit(90, "lb"),
  13637. name: "Front (Dressed)",
  13638. image: {
  13639. source: "./media/characters/mirja/front-dressed.svg",
  13640. extra: 1789 / 1683,
  13641. bottom: 0.05
  13642. }
  13643. },
  13644. back: {
  13645. height: math.unit(6, "feet"),
  13646. weight: math.unit(90, "lb"),
  13647. name: "Back",
  13648. image: {
  13649. source: "./media/characters/mirja/back.svg",
  13650. extra: 953 / 917,
  13651. bottom: 0.017
  13652. }
  13653. },
  13654. },
  13655. [
  13656. {
  13657. name: "\"Incognito\"",
  13658. height: math.unit(3, "meters")
  13659. },
  13660. {
  13661. name: "Strolling Size",
  13662. height: math.unit(15, "km")
  13663. },
  13664. {
  13665. name: "Larger Strolling Size",
  13666. height: math.unit(400, "km")
  13667. },
  13668. {
  13669. name: "Preferred Size",
  13670. height: math.unit(5000, "km")
  13671. },
  13672. {
  13673. name: "True Size",
  13674. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13675. default: true
  13676. },
  13677. ]
  13678. ))
  13679. characterMakers.push(() => makeCharacter(
  13680. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13681. {
  13682. front: {
  13683. height: math.unit(15, "feet"),
  13684. weight: math.unit(880, "kg"),
  13685. name: "Front",
  13686. image: {
  13687. source: "./media/characters/nightraver/front.svg",
  13688. extra: 2444 / 2160,
  13689. bottom: 0.027
  13690. }
  13691. },
  13692. back: {
  13693. height: math.unit(15, "feet"),
  13694. weight: math.unit(880, "kg"),
  13695. name: "Back",
  13696. image: {
  13697. source: "./media/characters/nightraver/back.svg",
  13698. extra: 2309 / 2180,
  13699. bottom: 0.005
  13700. }
  13701. },
  13702. sole: {
  13703. height: math.unit(2.878, "feet"),
  13704. name: "Sole",
  13705. image: {
  13706. source: "./media/characters/nightraver/sole.svg"
  13707. }
  13708. },
  13709. foot: {
  13710. height: math.unit(2.285, "feet"),
  13711. name: "Foot",
  13712. image: {
  13713. source: "./media/characters/nightraver/foot.svg"
  13714. }
  13715. },
  13716. maw: {
  13717. height: math.unit(2.67, "feet"),
  13718. name: "Maw",
  13719. image: {
  13720. source: "./media/characters/nightraver/maw.svg"
  13721. }
  13722. },
  13723. },
  13724. [
  13725. {
  13726. name: "Micro",
  13727. height: math.unit(1, "cm")
  13728. },
  13729. {
  13730. name: "Normal",
  13731. height: math.unit(15, "feet"),
  13732. default: true
  13733. },
  13734. {
  13735. name: "Macro",
  13736. height: math.unit(300, "feet")
  13737. },
  13738. {
  13739. name: "Megamacro",
  13740. height: math.unit(300, "miles")
  13741. },
  13742. {
  13743. name: "Gigamacro",
  13744. height: math.unit(10000, "miles")
  13745. },
  13746. ]
  13747. ))
  13748. characterMakers.push(() => makeCharacter(
  13749. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13750. {
  13751. side: {
  13752. height: math.unit(2, "inches"),
  13753. weight: math.unit(5, "grams"),
  13754. name: "Side",
  13755. image: {
  13756. source: "./media/characters/arc/side.svg"
  13757. }
  13758. },
  13759. },
  13760. [
  13761. {
  13762. name: "Micro",
  13763. height: math.unit(2, "inches"),
  13764. default: true
  13765. },
  13766. ]
  13767. ))
  13768. characterMakers.push(() => makeCharacter(
  13769. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13770. {
  13771. front: {
  13772. height: math.unit(1.1938, "meters"),
  13773. weight: math.unit(54, "kg"),
  13774. name: "Front",
  13775. image: {
  13776. source: "./media/characters/nebula-shahar/front.svg",
  13777. extra: 1642 / 1436,
  13778. bottom: 0.06
  13779. }
  13780. },
  13781. },
  13782. [
  13783. {
  13784. name: "Megamicro",
  13785. height: math.unit(0.3, "mm")
  13786. },
  13787. {
  13788. name: "Micro",
  13789. height: math.unit(3, "cm")
  13790. },
  13791. {
  13792. name: "Normal",
  13793. height: math.unit(138, "cm"),
  13794. default: true
  13795. },
  13796. {
  13797. name: "Macro",
  13798. height: math.unit(30, "m")
  13799. },
  13800. ]
  13801. ))
  13802. characterMakers.push(() => makeCharacter(
  13803. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13804. {
  13805. front: {
  13806. height: math.unit(5.24, "feet"),
  13807. weight: math.unit(150, "lb"),
  13808. name: "Front",
  13809. image: {
  13810. source: "./media/characters/shayla/front.svg",
  13811. extra: 1512 / 1414,
  13812. bottom: 0.01
  13813. }
  13814. },
  13815. back: {
  13816. height: math.unit(5.24, "feet"),
  13817. weight: math.unit(150, "lb"),
  13818. name: "Back",
  13819. image: {
  13820. source: "./media/characters/shayla/back.svg",
  13821. extra: 1512 / 1414
  13822. }
  13823. },
  13824. hand: {
  13825. height: math.unit(0.7781496062992126, "feet"),
  13826. name: "Hand",
  13827. image: {
  13828. source: "./media/characters/shayla/hand.svg"
  13829. }
  13830. },
  13831. foot: {
  13832. height: math.unit(1.4206036745406823, "feet"),
  13833. name: "Foot",
  13834. image: {
  13835. source: "./media/characters/shayla/foot.svg"
  13836. }
  13837. },
  13838. },
  13839. [
  13840. {
  13841. name: "Micro",
  13842. height: math.unit(0.32, "feet")
  13843. },
  13844. {
  13845. name: "Normal",
  13846. height: math.unit(5.24, "feet"),
  13847. default: true
  13848. },
  13849. {
  13850. name: "Macro",
  13851. height: math.unit(492.12, "feet")
  13852. },
  13853. {
  13854. name: "Megamacro",
  13855. height: math.unit(186.41, "miles")
  13856. },
  13857. ]
  13858. ))
  13859. characterMakers.push(() => makeCharacter(
  13860. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13861. {
  13862. front: {
  13863. height: math.unit(2.2, "m"),
  13864. weight: math.unit(120, "kg"),
  13865. name: "Front",
  13866. image: {
  13867. source: "./media/characters/pia-jr/front.svg",
  13868. extra: 1000 / 970,
  13869. bottom: 0.035
  13870. }
  13871. },
  13872. hand: {
  13873. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13874. name: "Hand",
  13875. image: {
  13876. source: "./media/characters/pia-jr/hand.svg"
  13877. }
  13878. },
  13879. paw: {
  13880. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13881. name: "Paw",
  13882. image: {
  13883. source: "./media/characters/pia-jr/paw.svg"
  13884. }
  13885. },
  13886. },
  13887. [
  13888. {
  13889. name: "Micro",
  13890. height: math.unit(1.2, "cm")
  13891. },
  13892. {
  13893. name: "Normal",
  13894. height: math.unit(2.2, "m"),
  13895. default: true
  13896. },
  13897. {
  13898. name: "Macro",
  13899. height: math.unit(180, "m")
  13900. },
  13901. {
  13902. name: "Megamacro",
  13903. height: math.unit(420, "km")
  13904. },
  13905. ]
  13906. ))
  13907. characterMakers.push(() => makeCharacter(
  13908. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13909. {
  13910. front: {
  13911. height: math.unit(2, "m"),
  13912. weight: math.unit(115, "kg"),
  13913. name: "Front",
  13914. image: {
  13915. source: "./media/characters/pia-sr/front.svg",
  13916. extra: 760 / 730,
  13917. bottom: 0.015
  13918. }
  13919. },
  13920. back: {
  13921. height: math.unit(2, "m"),
  13922. weight: math.unit(115, "kg"),
  13923. name: "Back",
  13924. image: {
  13925. source: "./media/characters/pia-sr/back.svg",
  13926. extra: 760 / 730,
  13927. bottom: 0.01
  13928. }
  13929. },
  13930. hand: {
  13931. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13932. name: "Hand",
  13933. image: {
  13934. source: "./media/characters/pia-sr/hand.svg"
  13935. }
  13936. },
  13937. foot: {
  13938. height: math.unit(1.83, "feet"),
  13939. name: "Foot",
  13940. image: {
  13941. source: "./media/characters/pia-sr/foot.svg"
  13942. }
  13943. },
  13944. },
  13945. [
  13946. {
  13947. name: "Micro",
  13948. height: math.unit(88, "mm")
  13949. },
  13950. {
  13951. name: "Normal",
  13952. height: math.unit(2, "m"),
  13953. default: true
  13954. },
  13955. {
  13956. name: "Macro",
  13957. height: math.unit(200, "m")
  13958. },
  13959. {
  13960. name: "Megamacro",
  13961. height: math.unit(420, "km")
  13962. },
  13963. ]
  13964. ))
  13965. characterMakers.push(() => makeCharacter(
  13966. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13967. {
  13968. front: {
  13969. height: math.unit(8 + 2 / 12, "feet"),
  13970. weight: math.unit(300, "lb"),
  13971. name: "Front",
  13972. image: {
  13973. source: "./media/characters/kibibyte/front.svg",
  13974. extra: 2221 / 2098,
  13975. bottom: 0.04
  13976. }
  13977. },
  13978. },
  13979. [
  13980. {
  13981. name: "Normal",
  13982. height: math.unit(8 + 2 / 12, "feet"),
  13983. default: true
  13984. },
  13985. {
  13986. name: "Socialable Macro",
  13987. height: math.unit(50, "feet")
  13988. },
  13989. {
  13990. name: "Macro",
  13991. height: math.unit(300, "feet")
  13992. },
  13993. {
  13994. name: "Megamacro",
  13995. height: math.unit(500, "miles")
  13996. },
  13997. ]
  13998. ))
  13999. characterMakers.push(() => makeCharacter(
  14000. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14001. {
  14002. front: {
  14003. height: math.unit(6, "feet"),
  14004. weight: math.unit(150, "lb"),
  14005. name: "Front",
  14006. image: {
  14007. source: "./media/characters/felix/front.svg",
  14008. extra: 762 / 722,
  14009. bottom: 0.02
  14010. }
  14011. },
  14012. frontClothed: {
  14013. height: math.unit(6, "feet"),
  14014. weight: math.unit(150, "lb"),
  14015. name: "Front (Clothed)",
  14016. image: {
  14017. source: "./media/characters/felix/front-clothed.svg",
  14018. extra: 762 / 722,
  14019. bottom: 0.02
  14020. }
  14021. },
  14022. },
  14023. [
  14024. {
  14025. name: "Normal",
  14026. height: math.unit(6 + 8 / 12, "feet"),
  14027. default: true
  14028. },
  14029. {
  14030. name: "Macro",
  14031. height: math.unit(2600, "feet")
  14032. },
  14033. {
  14034. name: "Megamacro",
  14035. height: math.unit(450, "miles")
  14036. },
  14037. ]
  14038. ))
  14039. characterMakers.push(() => makeCharacter(
  14040. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14041. {
  14042. front: {
  14043. height: math.unit(6 + 1 / 12, "feet"),
  14044. weight: math.unit(250, "lb"),
  14045. name: "Front",
  14046. image: {
  14047. source: "./media/characters/tobo/front.svg",
  14048. extra: 608 / 586,
  14049. bottom: 0.023
  14050. }
  14051. },
  14052. back: {
  14053. height: math.unit(6 + 1 / 12, "feet"),
  14054. weight: math.unit(250, "lb"),
  14055. name: "Back",
  14056. image: {
  14057. source: "./media/characters/tobo/back.svg",
  14058. extra: 608 / 586
  14059. }
  14060. },
  14061. },
  14062. [
  14063. {
  14064. name: "Nano",
  14065. height: math.unit(2, "nm")
  14066. },
  14067. {
  14068. name: "Megamicro",
  14069. height: math.unit(0.1, "mm")
  14070. },
  14071. {
  14072. name: "Micro",
  14073. height: math.unit(1, "inch"),
  14074. default: true
  14075. },
  14076. {
  14077. name: "Human-sized",
  14078. height: math.unit(6 + 1 / 12, "feet")
  14079. },
  14080. {
  14081. name: "Macro",
  14082. height: math.unit(250, "feet")
  14083. },
  14084. {
  14085. name: "Megamacro",
  14086. height: math.unit(75, "miles")
  14087. },
  14088. {
  14089. name: "Texas-sized",
  14090. height: math.unit(750, "miles")
  14091. },
  14092. {
  14093. name: "Teramacro",
  14094. height: math.unit(50000, "miles")
  14095. },
  14096. ]
  14097. ))
  14098. characterMakers.push(() => makeCharacter(
  14099. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14100. {
  14101. front: {
  14102. height: math.unit(6, "feet"),
  14103. weight: math.unit(269, "lb"),
  14104. name: "Front",
  14105. image: {
  14106. source: "./media/characters/danny-kapowsky/front.svg",
  14107. extra: 766 / 736,
  14108. bottom: 0.044
  14109. }
  14110. },
  14111. back: {
  14112. height: math.unit(6, "feet"),
  14113. weight: math.unit(269, "lb"),
  14114. name: "Back",
  14115. image: {
  14116. source: "./media/characters/danny-kapowsky/back.svg",
  14117. extra: 797 / 760,
  14118. bottom: 0.025
  14119. }
  14120. },
  14121. },
  14122. [
  14123. {
  14124. name: "Macro",
  14125. height: math.unit(150, "feet"),
  14126. default: true
  14127. },
  14128. {
  14129. name: "Macro+",
  14130. height: math.unit(200, "feet")
  14131. },
  14132. {
  14133. name: "Macro++",
  14134. height: math.unit(300, "feet")
  14135. },
  14136. {
  14137. name: "Macro+++",
  14138. height: math.unit(400, "feet")
  14139. },
  14140. ]
  14141. ))
  14142. characterMakers.push(() => makeCharacter(
  14143. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14144. {
  14145. side: {
  14146. height: math.unit(6, "feet"),
  14147. weight: math.unit(170, "lb"),
  14148. name: "Side",
  14149. image: {
  14150. source: "./media/characters/finn/side.svg",
  14151. extra: 1953 / 1807,
  14152. bottom: 0.057
  14153. }
  14154. },
  14155. },
  14156. [
  14157. {
  14158. name: "Megamacro",
  14159. height: math.unit(14445, "feet"),
  14160. default: true
  14161. },
  14162. ]
  14163. ))
  14164. characterMakers.push(() => makeCharacter(
  14165. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14166. {
  14167. front: {
  14168. height: math.unit(5 + 6 / 12, "feet"),
  14169. weight: math.unit(125, "lb"),
  14170. name: "Front",
  14171. image: {
  14172. source: "./media/characters/roy/front.svg",
  14173. extra: 1,
  14174. bottom: 0.11
  14175. }
  14176. },
  14177. },
  14178. [
  14179. {
  14180. name: "Micro",
  14181. height: math.unit(3, "inches"),
  14182. default: true
  14183. },
  14184. {
  14185. name: "Normal",
  14186. height: math.unit(5 + 6 / 12, "feet")
  14187. },
  14188. {
  14189. name: "Lesser Macro",
  14190. height: math.unit(60, "feet")
  14191. },
  14192. {
  14193. name: "Greater Macro",
  14194. height: math.unit(120, "feet")
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14200. {
  14201. front: {
  14202. height: math.unit(6, "feet"),
  14203. weight: math.unit(100, "lb"),
  14204. name: "Front",
  14205. image: {
  14206. source: "./media/characters/aevsivs/front.svg",
  14207. extra: 1,
  14208. bottom: 0.03
  14209. }
  14210. },
  14211. back: {
  14212. height: math.unit(6, "feet"),
  14213. weight: math.unit(100, "lb"),
  14214. name: "Back",
  14215. image: {
  14216. source: "./media/characters/aevsivs/back.svg"
  14217. }
  14218. },
  14219. },
  14220. [
  14221. {
  14222. name: "Micro",
  14223. height: math.unit(2, "inches"),
  14224. default: true
  14225. },
  14226. {
  14227. name: "Normal",
  14228. height: math.unit(5, "feet")
  14229. },
  14230. ]
  14231. ))
  14232. characterMakers.push(() => makeCharacter(
  14233. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14234. {
  14235. front: {
  14236. height: math.unit(5 + 7 / 12, "feet"),
  14237. weight: math.unit(159, "lb"),
  14238. name: "Front",
  14239. image: {
  14240. source: "./media/characters/hildegard/front.svg",
  14241. extra: 289 / 269,
  14242. bottom: 7.63 / 297.8
  14243. }
  14244. },
  14245. back: {
  14246. height: math.unit(5 + 7 / 12, "feet"),
  14247. weight: math.unit(159, "lb"),
  14248. name: "Back",
  14249. image: {
  14250. source: "./media/characters/hildegard/back.svg",
  14251. extra: 280 / 260,
  14252. bottom: 2.3 / 282
  14253. }
  14254. },
  14255. },
  14256. [
  14257. {
  14258. name: "Normal",
  14259. height: math.unit(5 + 7 / 12, "feet"),
  14260. default: true
  14261. },
  14262. ]
  14263. ))
  14264. characterMakers.push(() => makeCharacter(
  14265. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14266. {
  14267. bernard: {
  14268. height: math.unit(2 + 7 / 12, "feet"),
  14269. weight: math.unit(66, "lb"),
  14270. name: "Bernard",
  14271. rename: true,
  14272. image: {
  14273. source: "./media/characters/bernard-wilder/bernard.svg",
  14274. extra: 192 / 128,
  14275. bottom: 0.05
  14276. }
  14277. },
  14278. wilder: {
  14279. height: math.unit(5 + 8 / 12, "feet"),
  14280. weight: math.unit(143, "lb"),
  14281. name: "Wilder",
  14282. rename: true,
  14283. image: {
  14284. source: "./media/characters/bernard-wilder/wilder.svg",
  14285. extra: 361 / 312,
  14286. bottom: 0.02
  14287. }
  14288. },
  14289. },
  14290. [
  14291. {
  14292. name: "Normal",
  14293. height: math.unit(2 + 7 / 12, "feet"),
  14294. default: true
  14295. },
  14296. ]
  14297. ))
  14298. characterMakers.push(() => makeCharacter(
  14299. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14300. {
  14301. anthro: {
  14302. height: math.unit(6 + 1 / 12, "feet"),
  14303. weight: math.unit(155, "lb"),
  14304. name: "Anthro",
  14305. image: {
  14306. source: "./media/characters/hearth/anthro.svg",
  14307. extra: 260 / 250,
  14308. bottom: 0.02
  14309. }
  14310. },
  14311. feral: {
  14312. height: math.unit(3.78, "feet"),
  14313. weight: math.unit(35, "kg"),
  14314. name: "Feral",
  14315. image: {
  14316. source: "./media/characters/hearth/feral.svg",
  14317. extra: 153 / 135,
  14318. bottom: 0.03
  14319. }
  14320. },
  14321. },
  14322. [
  14323. {
  14324. name: "Normal",
  14325. height: math.unit(6 + 1 / 12, "feet"),
  14326. default: true
  14327. },
  14328. ]
  14329. ))
  14330. characterMakers.push(() => makeCharacter(
  14331. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14332. {
  14333. front: {
  14334. height: math.unit(6, "feet"),
  14335. weight: math.unit(182, "lb"),
  14336. name: "Front",
  14337. image: {
  14338. source: "./media/characters/ingrid/front.svg",
  14339. extra: 294 / 268,
  14340. bottom: 0.027
  14341. }
  14342. },
  14343. },
  14344. [
  14345. {
  14346. name: "Normal",
  14347. height: math.unit(6, "feet"),
  14348. default: true
  14349. },
  14350. ]
  14351. ))
  14352. characterMakers.push(() => makeCharacter(
  14353. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14354. {
  14355. eevee: {
  14356. height: math.unit(2 + 10 / 12, "feet"),
  14357. weight: math.unit(86, "lb"),
  14358. name: "Malgam",
  14359. image: {
  14360. source: "./media/characters/malgam/eevee.svg",
  14361. extra: 218 / 180,
  14362. bottom: 0.2
  14363. }
  14364. },
  14365. sylveon: {
  14366. height: math.unit(4, "feet"),
  14367. weight: math.unit(101, "lb"),
  14368. name: "Future Malgam",
  14369. rename: true,
  14370. image: {
  14371. source: "./media/characters/malgam/sylveon.svg",
  14372. extra: 371 / 325,
  14373. bottom: 0.015
  14374. }
  14375. },
  14376. gigantamax: {
  14377. height: math.unit(50, "feet"),
  14378. name: "Gigantamax Malgam",
  14379. rename: true,
  14380. image: {
  14381. source: "./media/characters/malgam/gigantamax.svg"
  14382. }
  14383. },
  14384. },
  14385. [
  14386. {
  14387. name: "Normal",
  14388. height: math.unit(2 + 10 / 12, "feet"),
  14389. default: true
  14390. },
  14391. ]
  14392. ))
  14393. characterMakers.push(() => makeCharacter(
  14394. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14395. {
  14396. front: {
  14397. height: math.unit(5 + 11 / 12, "feet"),
  14398. weight: math.unit(188, "lb"),
  14399. name: "Front",
  14400. image: {
  14401. source: "./media/characters/fleur/front.svg",
  14402. extra: 309 / 283,
  14403. bottom: 0.007
  14404. }
  14405. },
  14406. },
  14407. [
  14408. {
  14409. name: "Normal",
  14410. height: math.unit(5 + 11 / 12, "feet"),
  14411. default: true
  14412. },
  14413. ]
  14414. ))
  14415. characterMakers.push(() => makeCharacter(
  14416. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14417. {
  14418. front: {
  14419. height: math.unit(5 + 4 / 12, "feet"),
  14420. weight: math.unit(122, "lb"),
  14421. name: "Front",
  14422. image: {
  14423. source: "./media/characters/jude/front.svg",
  14424. extra: 288 / 273,
  14425. bottom: 0.03
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Normal",
  14432. height: math.unit(5 + 4 / 12, "feet"),
  14433. default: true
  14434. },
  14435. ]
  14436. ))
  14437. characterMakers.push(() => makeCharacter(
  14438. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14439. {
  14440. front: {
  14441. height: math.unit(5 + 11 / 12, "feet"),
  14442. weight: math.unit(190, "lb"),
  14443. name: "Front",
  14444. image: {
  14445. source: "./media/characters/seara/front.svg",
  14446. extra: 1,
  14447. bottom: 0.05
  14448. }
  14449. },
  14450. },
  14451. [
  14452. {
  14453. name: "Normal",
  14454. height: math.unit(5 + 11 / 12, "feet"),
  14455. default: true
  14456. },
  14457. ]
  14458. ))
  14459. characterMakers.push(() => makeCharacter(
  14460. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14461. {
  14462. front: {
  14463. height: math.unit(16 + 5 / 12, "feet"),
  14464. weight: math.unit(524, "lb"),
  14465. name: "Front",
  14466. image: {
  14467. source: "./media/characters/caspian/front.svg",
  14468. extra: 1,
  14469. bottom: 0.04
  14470. }
  14471. },
  14472. },
  14473. [
  14474. {
  14475. name: "Normal",
  14476. height: math.unit(16 + 5 / 12, "feet"),
  14477. default: true
  14478. },
  14479. ]
  14480. ))
  14481. characterMakers.push(() => makeCharacter(
  14482. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14483. {
  14484. front: {
  14485. height: math.unit(5 + 7 / 12, "feet"),
  14486. weight: math.unit(170, "lb"),
  14487. name: "Front",
  14488. image: {
  14489. source: "./media/characters/mika/front.svg",
  14490. extra: 1,
  14491. bottom: 0.016
  14492. }
  14493. },
  14494. },
  14495. [
  14496. {
  14497. name: "Normal",
  14498. height: math.unit(5 + 7 / 12, "feet"),
  14499. default: true
  14500. },
  14501. ]
  14502. ))
  14503. characterMakers.push(() => makeCharacter(
  14504. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14505. {
  14506. front: {
  14507. height: math.unit(6 + 2 / 12, "feet"),
  14508. weight: math.unit(268, "lb"),
  14509. name: "Front",
  14510. image: {
  14511. source: "./media/characters/sol/front.svg",
  14512. extra: 247 / 231,
  14513. bottom: 0.05
  14514. }
  14515. },
  14516. },
  14517. [
  14518. {
  14519. name: "Normal",
  14520. height: math.unit(6 + 2 / 12, "feet"),
  14521. default: true
  14522. },
  14523. ]
  14524. ))
  14525. characterMakers.push(() => makeCharacter(
  14526. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14527. {
  14528. buizel: {
  14529. height: math.unit(2 + 5 / 12, "feet"),
  14530. weight: math.unit(87, "lb"),
  14531. name: "Buizel",
  14532. image: {
  14533. source: "./media/characters/umiko/buizel.svg",
  14534. extra: 172 / 157,
  14535. bottom: 0.01
  14536. }
  14537. },
  14538. floatzel: {
  14539. height: math.unit(5 + 9 / 12, "feet"),
  14540. weight: math.unit(250, "lb"),
  14541. name: "Floatzel",
  14542. image: {
  14543. source: "./media/characters/umiko/floatzel.svg",
  14544. extra: 262 / 248
  14545. }
  14546. },
  14547. },
  14548. [
  14549. {
  14550. name: "Normal",
  14551. height: math.unit(2 + 5 / 12, "feet"),
  14552. default: true
  14553. },
  14554. ]
  14555. ))
  14556. characterMakers.push(() => makeCharacter(
  14557. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14558. {
  14559. front: {
  14560. height: math.unit(6 + 2 / 12, "feet"),
  14561. weight: math.unit(146, "lb"),
  14562. name: "Front",
  14563. image: {
  14564. source: "./media/characters/iliac/front.svg",
  14565. extra: 389 / 365,
  14566. bottom: 0.035
  14567. }
  14568. },
  14569. },
  14570. [
  14571. {
  14572. name: "Normal",
  14573. height: math.unit(6 + 2 / 12, "feet"),
  14574. default: true
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(6, "feet"),
  14583. weight: math.unit(170, "lb"),
  14584. name: "Front",
  14585. image: {
  14586. source: "./media/characters/topaz/front.svg",
  14587. extra: 317 / 303,
  14588. bottom: 0.055
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Normal",
  14595. height: math.unit(6, "feet"),
  14596. default: true
  14597. },
  14598. ]
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14602. {
  14603. front: {
  14604. height: math.unit(5 + 11 / 12, "feet"),
  14605. weight: math.unit(144, "lb"),
  14606. name: "Front",
  14607. image: {
  14608. source: "./media/characters/gabriel/front.svg",
  14609. extra: 285 / 262,
  14610. bottom: 0.004
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Normal",
  14617. height: math.unit(5 + 11 / 12, "feet"),
  14618. default: true
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14624. {
  14625. side: {
  14626. height: math.unit(6 + 5 / 12, "feet"),
  14627. weight: math.unit(300, "lb"),
  14628. name: "Side",
  14629. image: {
  14630. source: "./media/characters/tempest-suicune/side.svg",
  14631. extra: 195 / 154,
  14632. bottom: 0.04
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(6 + 5 / 12, "feet"),
  14640. default: true
  14641. },
  14642. ]
  14643. ))
  14644. characterMakers.push(() => makeCharacter(
  14645. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14646. {
  14647. front: {
  14648. height: math.unit(7 + 2 / 12, "feet"),
  14649. weight: math.unit(322, "lb"),
  14650. name: "Front",
  14651. image: {
  14652. source: "./media/characters/vulcan/front.svg",
  14653. extra: 154 / 147,
  14654. bottom: 0.04
  14655. }
  14656. },
  14657. },
  14658. [
  14659. {
  14660. name: "Normal",
  14661. height: math.unit(7 + 2 / 12, "feet"),
  14662. default: true
  14663. },
  14664. ]
  14665. ))
  14666. characterMakers.push(() => makeCharacter(
  14667. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14668. {
  14669. front: {
  14670. height: math.unit(5 + 10 / 12, "feet"),
  14671. weight: math.unit(264, "lb"),
  14672. name: "Front",
  14673. image: {
  14674. source: "./media/characters/gault/front.svg",
  14675. extra: 161 / 140,
  14676. bottom: 0.028
  14677. }
  14678. },
  14679. },
  14680. [
  14681. {
  14682. name: "Normal",
  14683. height: math.unit(5 + 10 / 12, "feet"),
  14684. default: true
  14685. },
  14686. ]
  14687. ))
  14688. characterMakers.push(() => makeCharacter(
  14689. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14690. {
  14691. front: {
  14692. height: math.unit(6, "feet"),
  14693. weight: math.unit(150, "lb"),
  14694. name: "Front",
  14695. image: {
  14696. source: "./media/characters/shard/front.svg",
  14697. extra: 273 / 238,
  14698. bottom: 0.02
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(3 + 6 / 12, "feet"),
  14706. default: true
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(5 + 11 / 12, "feet"),
  14715. weight: math.unit(146, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/ashe/front.svg",
  14719. extra: 400 / 373,
  14720. bottom: 0.01
  14721. }
  14722. },
  14723. },
  14724. [
  14725. {
  14726. name: "Normal",
  14727. height: math.unit(5 + 11 / 12, "feet"),
  14728. default: true
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(5 + 5 / 12, "feet"),
  14737. weight: math.unit(135, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/beatrix/front.svg",
  14741. extra: 392 / 379,
  14742. bottom: 0.01
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(6, "feet"),
  14750. default: true
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14756. {
  14757. front: {
  14758. height: math.unit(6, "feet"),
  14759. weight: math.unit(150, "lb"),
  14760. name: "Front",
  14761. image: {
  14762. source: "./media/characters/ignatius/front.svg",
  14763. extra: 245 / 222,
  14764. bottom: 0.01
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(5 + 5 / 12, "feet"),
  14772. default: true
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14778. {
  14779. front: {
  14780. height: math.unit(6 + 2 / 12, "feet"),
  14781. weight: math.unit(138, "lb"),
  14782. name: "Front",
  14783. image: {
  14784. source: "./media/characters/mei-li/front.svg",
  14785. extra: 237 / 229,
  14786. bottom: 0.03
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(6 + 2 / 12, "feet"),
  14794. default: true
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14800. {
  14801. front: {
  14802. height: math.unit(2 + 4 / 12, "feet"),
  14803. weight: math.unit(62, "lb"),
  14804. name: "Front",
  14805. image: {
  14806. source: "./media/characters/puru/front.svg",
  14807. extra: 206 / 149,
  14808. bottom: 0.06
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Normal",
  14815. height: math.unit(2 + 4 / 12, "feet"),
  14816. default: true
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14822. {
  14823. taur: {
  14824. height: math.unit(11, "feet"),
  14825. weight: math.unit(500, "lb"),
  14826. name: "Taur",
  14827. image: {
  14828. source: "./media/characters/kee/taur.svg",
  14829. extra: 1,
  14830. bottom: 0.04
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(11, "feet"),
  14838. default: true
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14844. {
  14845. anthro: {
  14846. height: math.unit(7, "feet"),
  14847. weight: math.unit(190, "lb"),
  14848. name: "Anthro",
  14849. image: {
  14850. source: "./media/characters/cobalt-dracha/anthro.svg",
  14851. extra: 231 / 225,
  14852. bottom: 0.04
  14853. }
  14854. },
  14855. feral: {
  14856. height: math.unit(9 + 7 / 12, "feet"),
  14857. weight: math.unit(294, "lb"),
  14858. name: "Feral",
  14859. image: {
  14860. source: "./media/characters/cobalt-dracha/feral.svg",
  14861. extra: 692 / 633,
  14862. bottom: 0.05
  14863. }
  14864. },
  14865. },
  14866. [
  14867. {
  14868. name: "Normal",
  14869. height: math.unit(7, "feet"),
  14870. default: true
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14876. {
  14877. fallen: {
  14878. height: math.unit(11 + 8 / 12, "feet"),
  14879. weight: math.unit(485, "lb"),
  14880. name: "Java (Fallen)",
  14881. rename: true,
  14882. image: {
  14883. source: "./media/characters/java/fallen.svg",
  14884. extra: 226 / 208,
  14885. bottom: 0.005
  14886. }
  14887. },
  14888. godkin: {
  14889. height: math.unit(10 + 6 / 12, "feet"),
  14890. weight: math.unit(328, "lb"),
  14891. name: "Java (Godkin)",
  14892. rename: true,
  14893. image: {
  14894. source: "./media/characters/java/godkin.svg",
  14895. extra: 270 / 262,
  14896. bottom: 0.02
  14897. }
  14898. },
  14899. },
  14900. [
  14901. {
  14902. name: "Normal",
  14903. height: math.unit(11 + 8 / 12, "feet"),
  14904. default: true
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14910. {
  14911. front: {
  14912. height: math.unit(7 + 8 / 12, "feet"),
  14913. weight: math.unit(320, "lb"),
  14914. name: "Front",
  14915. image: {
  14916. source: "./media/characters/skoll/front.svg",
  14917. extra: 232 / 220,
  14918. bottom: 0.02
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Normal",
  14925. height: math.unit(7 + 8 / 12, "feet"),
  14926. default: true
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14932. {
  14933. front: {
  14934. height: math.unit(5 + 9 / 12, "feet"),
  14935. weight: math.unit(170, "lb"),
  14936. name: "Front",
  14937. image: {
  14938. source: "./media/characters/purna/front.svg",
  14939. extra: 239 / 229,
  14940. bottom: 0.01
  14941. }
  14942. },
  14943. },
  14944. [
  14945. {
  14946. name: "Normal",
  14947. height: math.unit(5 + 9 / 12, "feet"),
  14948. default: true
  14949. },
  14950. ]
  14951. ))
  14952. characterMakers.push(() => makeCharacter(
  14953. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14954. {
  14955. front: {
  14956. height: math.unit(5 + 9 / 12, "feet"),
  14957. weight: math.unit(142, "lb"),
  14958. name: "Front",
  14959. image: {
  14960. source: "./media/characters/kuva/front.svg",
  14961. extra: 281 / 271,
  14962. bottom: 0.006
  14963. }
  14964. },
  14965. },
  14966. [
  14967. {
  14968. name: "Normal",
  14969. height: math.unit(5 + 9 / 12, "feet"),
  14970. default: true
  14971. },
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14976. {
  14977. anthro: {
  14978. height: math.unit(9 + 2 / 12, "feet"),
  14979. weight: math.unit(270, "lb"),
  14980. name: "Anthro",
  14981. image: {
  14982. source: "./media/characters/embra/anthro.svg",
  14983. extra: 200 / 187,
  14984. bottom: 0.02
  14985. }
  14986. },
  14987. feral: {
  14988. height: math.unit(18 + 8 / 12, "feet"),
  14989. weight: math.unit(576, "lb"),
  14990. name: "Feral",
  14991. image: {
  14992. source: "./media/characters/embra/feral.svg",
  14993. extra: 152 / 137,
  14994. bottom: 0.037
  14995. }
  14996. },
  14997. },
  14998. [
  14999. {
  15000. name: "Normal",
  15001. height: math.unit(9 + 2 / 12, "feet"),
  15002. default: true
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15008. {
  15009. anthro: {
  15010. height: math.unit(10 + 9 / 12, "feet"),
  15011. weight: math.unit(224, "lb"),
  15012. name: "Anthro",
  15013. image: {
  15014. source: "./media/characters/grottos/anthro.svg",
  15015. extra: 350 / 332,
  15016. bottom: 0.045
  15017. }
  15018. },
  15019. feral: {
  15020. height: math.unit(20 + 7 / 12, "feet"),
  15021. weight: math.unit(629, "lb"),
  15022. name: "Feral",
  15023. image: {
  15024. source: "./media/characters/grottos/feral.svg",
  15025. extra: 207 / 190,
  15026. bottom: 0.05
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(10 + 9 / 12, "feet"),
  15034. default: true
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15040. {
  15041. anthro: {
  15042. height: math.unit(9 + 6 / 12, "feet"),
  15043. weight: math.unit(298, "lb"),
  15044. name: "Anthro",
  15045. image: {
  15046. source: "./media/characters/frifna/anthro.svg",
  15047. extra: 282 / 269,
  15048. bottom: 0.015
  15049. }
  15050. },
  15051. feral: {
  15052. height: math.unit(16 + 2 / 12, "feet"),
  15053. weight: math.unit(624, "lb"),
  15054. name: "Feral",
  15055. image: {
  15056. source: "./media/characters/frifna/feral.svg"
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(9 + 6 / 12, "feet"),
  15064. default: true
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(6 + 2 / 12, "feet"),
  15073. weight: math.unit(168, "lb"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/elise/front.svg",
  15077. extra: 276 / 271
  15078. }
  15079. },
  15080. },
  15081. [
  15082. {
  15083. name: "Normal",
  15084. height: math.unit(6 + 2 / 12, "feet"),
  15085. default: true
  15086. },
  15087. ]
  15088. ))
  15089. characterMakers.push(() => makeCharacter(
  15090. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15091. {
  15092. front: {
  15093. height: math.unit(5 + 10 / 12, "feet"),
  15094. weight: math.unit(210, "lb"),
  15095. name: "Front",
  15096. image: {
  15097. source: "./media/characters/glade/front.svg",
  15098. extra: 258 / 247,
  15099. bottom: 0.008
  15100. }
  15101. },
  15102. },
  15103. [
  15104. {
  15105. name: "Normal",
  15106. height: math.unit(5 + 10 / 12, "feet"),
  15107. default: true
  15108. },
  15109. ]
  15110. ))
  15111. characterMakers.push(() => makeCharacter(
  15112. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15113. {
  15114. front: {
  15115. height: math.unit(5 + 10 / 12, "feet"),
  15116. weight: math.unit(129, "lb"),
  15117. name: "Front",
  15118. image: {
  15119. source: "./media/characters/rina/front.svg",
  15120. extra: 266 / 255,
  15121. bottom: 0.005
  15122. }
  15123. },
  15124. },
  15125. [
  15126. {
  15127. name: "Normal",
  15128. height: math.unit(5 + 10 / 12, "feet"),
  15129. default: true
  15130. },
  15131. ]
  15132. ))
  15133. characterMakers.push(() => makeCharacter(
  15134. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15135. {
  15136. front: {
  15137. height: math.unit(6 + 1 / 12, "feet"),
  15138. weight: math.unit(192, "lb"),
  15139. name: "Front",
  15140. image: {
  15141. source: "./media/characters/veronica/front.svg",
  15142. extra: 319 / 309,
  15143. bottom: 0.005
  15144. }
  15145. },
  15146. },
  15147. [
  15148. {
  15149. name: "Normal",
  15150. height: math.unit(6 + 1 / 12, "feet"),
  15151. default: true
  15152. },
  15153. ]
  15154. ))
  15155. characterMakers.push(() => makeCharacter(
  15156. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15157. {
  15158. front: {
  15159. height: math.unit(9 + 3 / 12, "feet"),
  15160. weight: math.unit(1100, "lb"),
  15161. name: "Front",
  15162. image: {
  15163. source: "./media/characters/braxton/front.svg",
  15164. extra: 1057 / 984,
  15165. bottom: 0.05
  15166. }
  15167. },
  15168. },
  15169. [
  15170. {
  15171. name: "Normal",
  15172. height: math.unit(9 + 3 / 12, "feet")
  15173. },
  15174. {
  15175. name: "Giant",
  15176. height: math.unit(300, "feet"),
  15177. default: true
  15178. },
  15179. {
  15180. name: "Macro",
  15181. height: math.unit(700, "feet")
  15182. },
  15183. {
  15184. name: "Megamacro",
  15185. height: math.unit(6000, "feet")
  15186. },
  15187. ]
  15188. ))
  15189. characterMakers.push(() => makeCharacter(
  15190. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15191. {
  15192. front: {
  15193. height: math.unit(6 + 7 / 12, "feet"),
  15194. weight: math.unit(150, "lb"),
  15195. name: "Front",
  15196. image: {
  15197. source: "./media/characters/blue-feyonics/front.svg",
  15198. extra: 1403 / 1306,
  15199. bottom: 0.047
  15200. }
  15201. },
  15202. },
  15203. [
  15204. {
  15205. name: "Normal",
  15206. height: math.unit(6 + 7 / 12, "feet"),
  15207. default: true
  15208. },
  15209. ]
  15210. ))
  15211. characterMakers.push(() => makeCharacter(
  15212. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15213. {
  15214. front: {
  15215. height: math.unit(1.8, "meters"),
  15216. weight: math.unit(60, "kg"),
  15217. name: "Front",
  15218. image: {
  15219. source: "./media/characters/maxwell/front.svg",
  15220. extra: 2060 / 1873
  15221. }
  15222. },
  15223. },
  15224. [
  15225. {
  15226. name: "Micro",
  15227. height: math.unit(1, "mm")
  15228. },
  15229. {
  15230. name: "Normal",
  15231. height: math.unit(1.8, "meter"),
  15232. default: true
  15233. },
  15234. {
  15235. name: "Macro",
  15236. height: math.unit(30, "meters")
  15237. },
  15238. {
  15239. name: "Megamacro",
  15240. height: math.unit(10, "km")
  15241. },
  15242. ]
  15243. ))
  15244. characterMakers.push(() => makeCharacter(
  15245. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15246. {
  15247. front: {
  15248. height: math.unit(6, "feet"),
  15249. weight: math.unit(150, "lb"),
  15250. name: "Front",
  15251. image: {
  15252. source: "./media/characters/jack/front.svg",
  15253. extra: 1754 / 1640,
  15254. bottom: 0.01
  15255. }
  15256. },
  15257. },
  15258. [
  15259. {
  15260. name: "Normal",
  15261. height: math.unit(80000, "feet"),
  15262. default: true
  15263. },
  15264. {
  15265. name: "Max size",
  15266. height: math.unit(10, "lightyears")
  15267. },
  15268. ]
  15269. ))
  15270. characterMakers.push(() => makeCharacter(
  15271. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15272. {
  15273. upright: {
  15274. height: math.unit(7, "feet"),
  15275. weight: math.unit(170, "lb"),
  15276. name: "Upright",
  15277. image: {
  15278. source: "./media/characters/cafat/upright.svg",
  15279. bottom: 0.01
  15280. }
  15281. },
  15282. uprightFull: {
  15283. height: math.unit(7, "feet"),
  15284. weight: math.unit(170, "lb"),
  15285. name: "Upright (Full)",
  15286. image: {
  15287. source: "./media/characters/cafat/upright-full.svg",
  15288. bottom: 0.01
  15289. }
  15290. },
  15291. side: {
  15292. height: math.unit(5, "feet"),
  15293. weight: math.unit(150, "lb"),
  15294. name: "Side",
  15295. image: {
  15296. source: "./media/characters/cafat/side.svg"
  15297. }
  15298. },
  15299. },
  15300. [
  15301. {
  15302. name: "Small",
  15303. height: math.unit(7, "feet"),
  15304. default: true
  15305. },
  15306. {
  15307. name: "Large",
  15308. height: math.unit(15.5, "feet")
  15309. },
  15310. ]
  15311. ))
  15312. characterMakers.push(() => makeCharacter(
  15313. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15314. {
  15315. front: {
  15316. height: math.unit(6, "feet"),
  15317. weight: math.unit(150, "lb"),
  15318. name: "Front",
  15319. image: {
  15320. source: "./media/characters/verin-raharra/front.svg",
  15321. extra: 5019 / 4835,
  15322. bottom: 0.023
  15323. }
  15324. },
  15325. },
  15326. [
  15327. {
  15328. name: "Normal",
  15329. height: math.unit(7 + 5 / 12, "feet"),
  15330. default: true
  15331. },
  15332. {
  15333. name: "Upsized",
  15334. height: math.unit(20, "feet")
  15335. },
  15336. ]
  15337. ))
  15338. characterMakers.push(() => makeCharacter(
  15339. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15340. {
  15341. front: {
  15342. height: math.unit(7, "feet"),
  15343. weight: math.unit(230, "lb"),
  15344. name: "Front",
  15345. image: {
  15346. source: "./media/characters/nakata/front.svg",
  15347. extra: 1.005,
  15348. bottom: 0.01
  15349. }
  15350. },
  15351. },
  15352. [
  15353. {
  15354. name: "Normal",
  15355. height: math.unit(7, "feet"),
  15356. default: true
  15357. },
  15358. {
  15359. name: "Big",
  15360. height: math.unit(14, "feet")
  15361. },
  15362. {
  15363. name: "Macro",
  15364. height: math.unit(400, "feet")
  15365. },
  15366. ]
  15367. ))
  15368. characterMakers.push(() => makeCharacter(
  15369. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15370. {
  15371. front: {
  15372. height: math.unit(4.91, "feet"),
  15373. weight: math.unit(100, "lb"),
  15374. name: "Front",
  15375. image: {
  15376. source: "./media/characters/lily/front.svg",
  15377. extra: 1585 / 1415,
  15378. bottom: 0.02
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Normal",
  15385. height: math.unit(4.91, "feet"),
  15386. default: true
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15392. {
  15393. laying: {
  15394. height: math.unit(4 + 4 / 12, "feet"),
  15395. weight: math.unit(600, "lb"),
  15396. name: "Laying",
  15397. image: {
  15398. source: "./media/characters/sheila/laying.svg",
  15399. extra: 1333 / 1265,
  15400. bottom: 0.16
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Normal",
  15407. height: math.unit(4 + 4 / 12, "feet"),
  15408. default: true
  15409. },
  15410. ]
  15411. ))
  15412. characterMakers.push(() => makeCharacter(
  15413. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15414. {
  15415. front: {
  15416. height: math.unit(6, "feet"),
  15417. weight: math.unit(190, "lb"),
  15418. name: "Front",
  15419. image: {
  15420. source: "./media/characters/sax/front.svg",
  15421. extra: 1187 / 973,
  15422. bottom: 0.042
  15423. }
  15424. },
  15425. },
  15426. [
  15427. {
  15428. name: "Micro",
  15429. height: math.unit(4, "inches"),
  15430. default: true
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15436. {
  15437. front: {
  15438. height: math.unit(6, "feet"),
  15439. weight: math.unit(150, "lb"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/pandora/front.svg",
  15443. extra: 2720 / 2556,
  15444. bottom: 0.015
  15445. }
  15446. },
  15447. back: {
  15448. height: math.unit(6, "feet"),
  15449. weight: math.unit(150, "lb"),
  15450. name: "Back",
  15451. image: {
  15452. source: "./media/characters/pandora/back.svg",
  15453. extra: 2720 / 2556,
  15454. bottom: 0.01
  15455. }
  15456. },
  15457. beans: {
  15458. height: math.unit(6 / 8, "feet"),
  15459. name: "Beans",
  15460. image: {
  15461. source: "./media/characters/pandora/beans.svg"
  15462. }
  15463. },
  15464. skirt: {
  15465. height: math.unit(6, "feet"),
  15466. weight: math.unit(150, "lb"),
  15467. name: "Skirt",
  15468. image: {
  15469. source: "./media/characters/pandora/skirt.svg",
  15470. extra: 1622 / 1525,
  15471. bottom: 0.015
  15472. }
  15473. },
  15474. hoodie: {
  15475. height: math.unit(6, "feet"),
  15476. weight: math.unit(150, "lb"),
  15477. name: "Hoodie",
  15478. image: {
  15479. source: "./media/characters/pandora/hoodie.svg",
  15480. extra: 1622 / 1525,
  15481. bottom: 0.015
  15482. }
  15483. },
  15484. casual: {
  15485. height: math.unit(6, "feet"),
  15486. weight: math.unit(150, "lb"),
  15487. name: "Casual",
  15488. image: {
  15489. source: "./media/characters/pandora/casual.svg",
  15490. extra: 1622 / 1525,
  15491. bottom: 0.015
  15492. }
  15493. },
  15494. },
  15495. [
  15496. {
  15497. name: "Normal",
  15498. height: math.unit(6, "feet")
  15499. },
  15500. {
  15501. name: "Big Steppy",
  15502. height: math.unit(1, "km"),
  15503. default: true
  15504. },
  15505. ]
  15506. ))
  15507. characterMakers.push(() => makeCharacter(
  15508. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15509. {
  15510. side: {
  15511. height: math.unit(10, "feet"),
  15512. weight: math.unit(800, "kg"),
  15513. name: "Side",
  15514. image: {
  15515. source: "./media/characters/venio-darcony/side.svg",
  15516. extra: 1373 / 1003,
  15517. bottom: 0.037
  15518. }
  15519. },
  15520. front: {
  15521. height: math.unit(19, "feet"),
  15522. weight: math.unit(800, "kg"),
  15523. name: "Front",
  15524. image: {
  15525. source: "./media/characters/venio-darcony/front.svg"
  15526. }
  15527. },
  15528. back: {
  15529. height: math.unit(19, "feet"),
  15530. weight: math.unit(800, "kg"),
  15531. name: "Back",
  15532. image: {
  15533. source: "./media/characters/venio-darcony/back.svg"
  15534. }
  15535. },
  15536. sideNsfw: {
  15537. height: math.unit(10, "feet"),
  15538. weight: math.unit(800, "kg"),
  15539. name: "Side (NSFW)",
  15540. image: {
  15541. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15542. extra: 1373 / 1003,
  15543. bottom: 0.037
  15544. }
  15545. },
  15546. frontNsfw: {
  15547. height: math.unit(19, "feet"),
  15548. weight: math.unit(800, "kg"),
  15549. name: "Front (NSFW)",
  15550. image: {
  15551. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15552. }
  15553. },
  15554. backNsfw: {
  15555. height: math.unit(19, "feet"),
  15556. weight: math.unit(800, "kg"),
  15557. name: "Back (NSFW)",
  15558. image: {
  15559. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15560. }
  15561. },
  15562. sideArmored: {
  15563. height: math.unit(10, "feet"),
  15564. weight: math.unit(800, "kg"),
  15565. name: "Side (Armored)",
  15566. image: {
  15567. source: "./media/characters/venio-darcony/side-armored.svg",
  15568. extra: 1373 / 1003,
  15569. bottom: 0.037
  15570. }
  15571. },
  15572. frontArmored: {
  15573. height: math.unit(19, "feet"),
  15574. weight: math.unit(900, "kg"),
  15575. name: "Front (Armored)",
  15576. image: {
  15577. source: "./media/characters/venio-darcony/front-armored.svg"
  15578. }
  15579. },
  15580. backArmored: {
  15581. height: math.unit(19, "feet"),
  15582. weight: math.unit(900, "kg"),
  15583. name: "Back (Armored)",
  15584. image: {
  15585. source: "./media/characters/venio-darcony/back-armored.svg"
  15586. }
  15587. },
  15588. sword: {
  15589. height: math.unit(10, "feet"),
  15590. weight: math.unit(50, "lb"),
  15591. name: "Sword",
  15592. image: {
  15593. source: "./media/characters/venio-darcony/sword.svg"
  15594. }
  15595. },
  15596. },
  15597. [
  15598. {
  15599. name: "Normal",
  15600. height: math.unit(10, "feet")
  15601. },
  15602. {
  15603. name: "Macro",
  15604. height: math.unit(130, "feet"),
  15605. default: true
  15606. },
  15607. {
  15608. name: "Macro+",
  15609. height: math.unit(240, "feet")
  15610. },
  15611. ]
  15612. ))
  15613. characterMakers.push(() => makeCharacter(
  15614. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15615. {
  15616. front: {
  15617. height: math.unit(6, "feet"),
  15618. weight: math.unit(150, "lb"),
  15619. name: "Front",
  15620. image: {
  15621. source: "./media/characters/veski/front.svg",
  15622. extra: 1299 / 1225,
  15623. bottom: 0.04
  15624. }
  15625. },
  15626. back: {
  15627. height: math.unit(6, "feet"),
  15628. weight: math.unit(150, "lb"),
  15629. name: "Back",
  15630. image: {
  15631. source: "./media/characters/veski/back.svg",
  15632. extra: 1299 / 1225,
  15633. bottom: 0.008
  15634. }
  15635. },
  15636. maw: {
  15637. height: math.unit(1.5 * 1.21, "feet"),
  15638. name: "Maw",
  15639. image: {
  15640. source: "./media/characters/veski/maw.svg"
  15641. }
  15642. },
  15643. },
  15644. [
  15645. {
  15646. name: "Macro",
  15647. height: math.unit(2, "km"),
  15648. default: true
  15649. },
  15650. ]
  15651. ))
  15652. characterMakers.push(() => makeCharacter(
  15653. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15654. {
  15655. front: {
  15656. height: math.unit(5 + 7 / 12, "feet"),
  15657. name: "Front",
  15658. image: {
  15659. source: "./media/characters/isabelle/front.svg",
  15660. extra: 2130 / 1976,
  15661. bottom: 0.05
  15662. }
  15663. },
  15664. },
  15665. [
  15666. {
  15667. name: "Supermicro",
  15668. height: math.unit(10, "micrometers")
  15669. },
  15670. {
  15671. name: "Micro",
  15672. height: math.unit(1, "inch")
  15673. },
  15674. {
  15675. name: "Tiny",
  15676. height: math.unit(5, "inches")
  15677. },
  15678. {
  15679. name: "Standard",
  15680. height: math.unit(5 + 7 / 12, "inches")
  15681. },
  15682. {
  15683. name: "Macro",
  15684. height: math.unit(80, "meters"),
  15685. default: true
  15686. },
  15687. {
  15688. name: "Megamacro",
  15689. height: math.unit(250, "meters")
  15690. },
  15691. {
  15692. name: "Gigamacro",
  15693. height: math.unit(5, "km")
  15694. },
  15695. {
  15696. name: "Cosmic",
  15697. height: math.unit(2.5e6, "miles")
  15698. },
  15699. ]
  15700. ))
  15701. characterMakers.push(() => makeCharacter(
  15702. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15703. {
  15704. front: {
  15705. height: math.unit(6, "feet"),
  15706. weight: math.unit(150, "lb"),
  15707. name: "Front",
  15708. image: {
  15709. source: "./media/characters/hanzo/front.svg",
  15710. extra: 374 / 344,
  15711. bottom: 0.02
  15712. }
  15713. },
  15714. },
  15715. [
  15716. {
  15717. name: "Normal",
  15718. height: math.unit(8, "feet"),
  15719. default: true
  15720. },
  15721. ]
  15722. ))
  15723. characterMakers.push(() => makeCharacter(
  15724. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15725. {
  15726. front: {
  15727. height: math.unit(7, "feet"),
  15728. weight: math.unit(130, "lb"),
  15729. name: "Front",
  15730. image: {
  15731. source: "./media/characters/anna/front.svg",
  15732. extra: 169 / 145,
  15733. bottom: 0.06
  15734. }
  15735. },
  15736. full: {
  15737. height: math.unit(4.96, "feet"),
  15738. weight: math.unit(220, "lb"),
  15739. name: "Full",
  15740. image: {
  15741. source: "./media/characters/anna/full.svg",
  15742. extra: 138 / 114,
  15743. bottom: 0.15
  15744. }
  15745. },
  15746. tongue: {
  15747. height: math.unit(2.53, "feet"),
  15748. name: "Tongue",
  15749. image: {
  15750. source: "./media/characters/anna/tongue.svg"
  15751. }
  15752. },
  15753. },
  15754. [
  15755. {
  15756. name: "Normal",
  15757. height: math.unit(7, "feet"),
  15758. default: true
  15759. },
  15760. ]
  15761. ))
  15762. characterMakers.push(() => makeCharacter(
  15763. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15764. {
  15765. front: {
  15766. height: math.unit(7, "feet"),
  15767. weight: math.unit(150, "lb"),
  15768. name: "Front",
  15769. image: {
  15770. source: "./media/characters/ian-corvid/front.svg",
  15771. extra: 150 / 142,
  15772. bottom: 0.02
  15773. }
  15774. },
  15775. back: {
  15776. height: math.unit(7, "feet"),
  15777. weight: math.unit(150, "lb"),
  15778. name: "Back",
  15779. image: {
  15780. source: "./media/characters/ian-corvid/back.svg",
  15781. extra: 150 / 143,
  15782. bottom: 0.01
  15783. }
  15784. },
  15785. stomping: {
  15786. height: math.unit(7, "feet"),
  15787. weight: math.unit(150, "lb"),
  15788. name: "Stomping",
  15789. image: {
  15790. source: "./media/characters/ian-corvid/stomping.svg",
  15791. extra: 76 / 72
  15792. }
  15793. },
  15794. sitting: {
  15795. height: math.unit(7 / 1.8, "feet"),
  15796. weight: math.unit(150, "lb"),
  15797. name: "Sitting",
  15798. image: {
  15799. source: "./media/characters/ian-corvid/sitting.svg",
  15800. extra: 1400 / 1269,
  15801. bottom: 0.15
  15802. }
  15803. },
  15804. },
  15805. [
  15806. {
  15807. name: "Tiny Microw",
  15808. height: math.unit(1, "inch")
  15809. },
  15810. {
  15811. name: "Microw",
  15812. height: math.unit(6, "inches")
  15813. },
  15814. {
  15815. name: "Crow",
  15816. height: math.unit(7 + 1 / 12, "feet"),
  15817. default: true
  15818. },
  15819. {
  15820. name: "Macrow",
  15821. height: math.unit(176, "feet")
  15822. },
  15823. ]
  15824. ))
  15825. characterMakers.push(() => makeCharacter(
  15826. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15827. {
  15828. front: {
  15829. height: math.unit(5 + 7 / 12, "feet"),
  15830. weight: math.unit(147, "lb"),
  15831. name: "Front",
  15832. image: {
  15833. source: "./media/characters/natalie-kellon/front.svg",
  15834. extra: 1214 / 1141,
  15835. bottom: 0.02
  15836. }
  15837. },
  15838. },
  15839. [
  15840. {
  15841. name: "Micro",
  15842. height: math.unit(1 / 16, "inch")
  15843. },
  15844. {
  15845. name: "Tiny",
  15846. height: math.unit(4, "inches")
  15847. },
  15848. {
  15849. name: "Normal",
  15850. height: math.unit(5 + 7 / 12, "feet"),
  15851. default: true
  15852. },
  15853. {
  15854. name: "Amazon",
  15855. height: math.unit(12, "feet")
  15856. },
  15857. {
  15858. name: "Giantess",
  15859. height: math.unit(160, "meters")
  15860. },
  15861. {
  15862. name: "Titaness",
  15863. height: math.unit(800, "meters")
  15864. },
  15865. ]
  15866. ))
  15867. characterMakers.push(() => makeCharacter(
  15868. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15869. {
  15870. front: {
  15871. height: math.unit(6, "feet"),
  15872. weight: math.unit(150, "lb"),
  15873. name: "Front",
  15874. image: {
  15875. source: "./media/characters/alluria/front.svg",
  15876. extra: 806 / 738,
  15877. bottom: 0.01
  15878. }
  15879. },
  15880. side: {
  15881. height: math.unit(6, "feet"),
  15882. weight: math.unit(150, "lb"),
  15883. name: "Side",
  15884. image: {
  15885. source: "./media/characters/alluria/side.svg",
  15886. extra: 800 / 750,
  15887. }
  15888. },
  15889. back: {
  15890. height: math.unit(6, "feet"),
  15891. weight: math.unit(150, "lb"),
  15892. name: "Back",
  15893. image: {
  15894. source: "./media/characters/alluria/back.svg",
  15895. extra: 806 / 738,
  15896. }
  15897. },
  15898. frontMaid: {
  15899. height: math.unit(6, "feet"),
  15900. weight: math.unit(150, "lb"),
  15901. name: "Front (Maid)",
  15902. image: {
  15903. source: "./media/characters/alluria/front-maid.svg",
  15904. extra: 806 / 738,
  15905. bottom: 0.01
  15906. }
  15907. },
  15908. sideMaid: {
  15909. height: math.unit(6, "feet"),
  15910. weight: math.unit(150, "lb"),
  15911. name: "Side (Maid)",
  15912. image: {
  15913. source: "./media/characters/alluria/side-maid.svg",
  15914. extra: 800 / 750,
  15915. bottom: 0.005
  15916. }
  15917. },
  15918. backMaid: {
  15919. height: math.unit(6, "feet"),
  15920. weight: math.unit(150, "lb"),
  15921. name: "Back (Maid)",
  15922. image: {
  15923. source: "./media/characters/alluria/back-maid.svg",
  15924. extra: 806 / 738,
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Micro",
  15931. height: math.unit(6, "inches"),
  15932. default: true
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15938. {
  15939. front: {
  15940. height: math.unit(6, "feet"),
  15941. weight: math.unit(150, "lb"),
  15942. name: "Front",
  15943. image: {
  15944. source: "./media/characters/kyle/front.svg",
  15945. extra: 1069 / 962,
  15946. bottom: 77.228 / 1727.45
  15947. }
  15948. },
  15949. },
  15950. [
  15951. {
  15952. name: "Macro",
  15953. height: math.unit(150, "feet"),
  15954. default: true
  15955. },
  15956. ]
  15957. ))
  15958. characterMakers.push(() => makeCharacter(
  15959. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15960. {
  15961. front: {
  15962. height: math.unit(6, "feet"),
  15963. weight: math.unit(300, "lb"),
  15964. name: "Front",
  15965. image: {
  15966. source: "./media/characters/duncan/front.svg",
  15967. extra: 1650 / 1482,
  15968. bottom: 0.05
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "Macro",
  15975. height: math.unit(100, "feet"),
  15976. default: true
  15977. },
  15978. ]
  15979. ))
  15980. characterMakers.push(() => makeCharacter(
  15981. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15982. {
  15983. front: {
  15984. height: math.unit(5 + 4 / 12, "feet"),
  15985. weight: math.unit(220, "lb"),
  15986. name: "Front",
  15987. image: {
  15988. source: "./media/characters/memory/front.svg",
  15989. extra: 3641 / 3545,
  15990. bottom: 0.03
  15991. }
  15992. },
  15993. back: {
  15994. height: math.unit(5 + 4 / 12, "feet"),
  15995. weight: math.unit(220, "lb"),
  15996. name: "Back",
  15997. image: {
  15998. source: "./media/characters/memory/back.svg",
  15999. extra: 3641 / 3545,
  16000. bottom: 0.025
  16001. }
  16002. },
  16003. frontSkirt: {
  16004. height: math.unit(5 + 4 / 12, "feet"),
  16005. weight: math.unit(220, "lb"),
  16006. name: "Front (Skirt)",
  16007. image: {
  16008. source: "./media/characters/memory/front-skirt.svg",
  16009. extra: 3641 / 3545,
  16010. bottom: 0.03
  16011. }
  16012. },
  16013. frontDress: {
  16014. height: math.unit(5 + 4 / 12, "feet"),
  16015. weight: math.unit(220, "lb"),
  16016. name: "Front (Dress)",
  16017. image: {
  16018. source: "./media/characters/memory/front-dress.svg",
  16019. extra: 3641 / 3545,
  16020. bottom: 0.03
  16021. }
  16022. },
  16023. },
  16024. [
  16025. {
  16026. name: "Micro",
  16027. height: math.unit(6, "inches"),
  16028. default: true
  16029. },
  16030. {
  16031. name: "Normal",
  16032. height: math.unit(5 + 4 / 12, "feet")
  16033. },
  16034. ]
  16035. ))
  16036. characterMakers.push(() => makeCharacter(
  16037. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16038. {
  16039. front: {
  16040. height: math.unit(4 + 11 / 12, "feet"),
  16041. weight: math.unit(100, "lb"),
  16042. name: "Front",
  16043. image: {
  16044. source: "./media/characters/luno/front.svg",
  16045. extra: 1535 / 1487,
  16046. bottom: 0.03
  16047. }
  16048. },
  16049. },
  16050. [
  16051. {
  16052. name: "Micro",
  16053. height: math.unit(3, "inches")
  16054. },
  16055. {
  16056. name: "Normal",
  16057. height: math.unit(4 + 11 / 12, "feet"),
  16058. default: true
  16059. },
  16060. {
  16061. name: "Macro",
  16062. height: math.unit(300, "feet")
  16063. },
  16064. {
  16065. name: "Megamacro",
  16066. height: math.unit(700, "miles")
  16067. },
  16068. ]
  16069. ))
  16070. characterMakers.push(() => makeCharacter(
  16071. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16072. {
  16073. front: {
  16074. height: math.unit(6 + 2 / 12, "feet"),
  16075. weight: math.unit(170, "lb"),
  16076. name: "Front",
  16077. image: {
  16078. source: "./media/characters/jamesy/front.svg",
  16079. extra: 440 / 382,
  16080. bottom: 0.005
  16081. }
  16082. },
  16083. },
  16084. [
  16085. {
  16086. name: "Micro",
  16087. height: math.unit(3, "inches")
  16088. },
  16089. {
  16090. name: "Normal",
  16091. height: math.unit(6 + 2 / 12, "feet"),
  16092. default: true
  16093. },
  16094. {
  16095. name: "Macro",
  16096. height: math.unit(300, "feet")
  16097. },
  16098. {
  16099. name: "Megamacro",
  16100. height: math.unit(700, "miles")
  16101. },
  16102. ]
  16103. ))
  16104. characterMakers.push(() => makeCharacter(
  16105. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16106. {
  16107. front: {
  16108. height: math.unit(6, "feet"),
  16109. weight: math.unit(160, "lb"),
  16110. name: "Front",
  16111. image: {
  16112. source: "./media/characters/mark/front.svg",
  16113. extra: 3300 / 3100,
  16114. bottom: 136.42 / 3440.47
  16115. }
  16116. },
  16117. },
  16118. [
  16119. {
  16120. name: "Macro",
  16121. height: math.unit(120, "meters")
  16122. },
  16123. {
  16124. name: "Bigger Macro",
  16125. height: math.unit(350, "meters")
  16126. },
  16127. {
  16128. name: "Megamacro",
  16129. height: math.unit(8, "km"),
  16130. default: true
  16131. },
  16132. {
  16133. name: "Continental",
  16134. height: math.unit(4550, "km")
  16135. },
  16136. {
  16137. name: "Planetary",
  16138. height: math.unit(65000, "km")
  16139. },
  16140. ]
  16141. ))
  16142. characterMakers.push(() => makeCharacter(
  16143. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16144. {
  16145. front: {
  16146. height: math.unit(6, "feet"),
  16147. weight: math.unit(400, "lb"),
  16148. name: "Front",
  16149. image: {
  16150. source: "./media/characters/mac/front.svg",
  16151. extra: 1048 / 987.7,
  16152. bottom: 60 / 1107.6,
  16153. }
  16154. },
  16155. },
  16156. [
  16157. {
  16158. name: "Macro",
  16159. height: math.unit(500, "feet"),
  16160. default: true
  16161. },
  16162. ]
  16163. ))
  16164. characterMakers.push(() => makeCharacter(
  16165. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16166. {
  16167. front: {
  16168. height: math.unit(5 + 2 / 12, "feet"),
  16169. weight: math.unit(190, "lb"),
  16170. name: "Front",
  16171. image: {
  16172. source: "./media/characters/bari/front.svg",
  16173. extra: 3156 / 2880,
  16174. bottom: 0.03
  16175. }
  16176. },
  16177. back: {
  16178. height: math.unit(5 + 2 / 12, "feet"),
  16179. weight: math.unit(190, "lb"),
  16180. name: "Back",
  16181. image: {
  16182. source: "./media/characters/bari/back.svg",
  16183. extra: 3260 / 2834,
  16184. bottom: 0.025
  16185. }
  16186. },
  16187. frontPlush: {
  16188. height: math.unit(5 + 2 / 12, "feet"),
  16189. weight: math.unit(190, "lb"),
  16190. name: "Front (Plush)",
  16191. image: {
  16192. source: "./media/characters/bari/front-plush.svg",
  16193. extra: 1112 / 1061,
  16194. bottom: 0.002
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Micro",
  16201. height: math.unit(3, "inches")
  16202. },
  16203. {
  16204. name: "Normal",
  16205. height: math.unit(5 + 2 / 12, "feet"),
  16206. default: true
  16207. },
  16208. {
  16209. name: "Macro",
  16210. height: math.unit(20, "feet")
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16216. {
  16217. front: {
  16218. height: math.unit(6 + 1 / 12, "feet"),
  16219. weight: math.unit(275, "lb"),
  16220. name: "Front",
  16221. image: {
  16222. source: "./media/characters/hunter-misha-raven/front.svg"
  16223. }
  16224. },
  16225. },
  16226. [
  16227. {
  16228. name: "Mortal",
  16229. height: math.unit(6 + 1 / 12, "feet")
  16230. },
  16231. {
  16232. name: "Divine",
  16233. height: math.unit(1.12134e34, "parsecs"),
  16234. default: true
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16240. {
  16241. front: {
  16242. height: math.unit(6 + 3 / 12, "feet"),
  16243. weight: math.unit(220, "lb"),
  16244. name: "Front",
  16245. image: {
  16246. source: "./media/characters/max-calore/front.svg",
  16247. extra: 1700 / 1648,
  16248. bottom: 0.01
  16249. }
  16250. },
  16251. back: {
  16252. height: math.unit(6 + 3 / 12, "feet"),
  16253. weight: math.unit(220, "lb"),
  16254. name: "Back",
  16255. image: {
  16256. source: "./media/characters/max-calore/back.svg",
  16257. extra: 1700 / 1648,
  16258. bottom: 0.01
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Normal",
  16265. height: math.unit(6 + 3 / 12, "feet"),
  16266. default: true
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16272. {
  16273. side: {
  16274. height: math.unit(2 + 8 / 12, "feet"),
  16275. weight: math.unit(99, "lb"),
  16276. name: "Side",
  16277. image: {
  16278. source: "./media/characters/aspen/side.svg",
  16279. extra: 152 / 138,
  16280. bottom: 0.032
  16281. }
  16282. },
  16283. },
  16284. [
  16285. {
  16286. name: "Normal",
  16287. height: math.unit(2 + 8 / 12, "feet"),
  16288. default: true
  16289. },
  16290. ]
  16291. ))
  16292. characterMakers.push(() => makeCharacter(
  16293. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16294. {
  16295. side: {
  16296. height: math.unit(3 + 2 / 12, "feet"),
  16297. weight: math.unit(224, "lb"),
  16298. name: "Side",
  16299. image: {
  16300. source: "./media/characters/sheila-feral-wolf/side.svg",
  16301. extra: 179 / 166,
  16302. bottom: 0.03
  16303. }
  16304. },
  16305. },
  16306. [
  16307. {
  16308. name: "Normal",
  16309. height: math.unit(3 + 2 / 12, "feet"),
  16310. default: true
  16311. },
  16312. ]
  16313. ))
  16314. characterMakers.push(() => makeCharacter(
  16315. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16316. {
  16317. side: {
  16318. height: math.unit(1 + 9 / 12, "feet"),
  16319. weight: math.unit(38, "lb"),
  16320. name: "Side",
  16321. image: {
  16322. source: "./media/characters/michelle/side.svg",
  16323. extra: 147 / 136.7,
  16324. bottom: 0.03
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Normal",
  16331. height: math.unit(1 + 9 / 12, "feet"),
  16332. default: true
  16333. },
  16334. ]
  16335. ))
  16336. characterMakers.push(() => makeCharacter(
  16337. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16338. {
  16339. front: {
  16340. height: math.unit(1 + 1 / 12, "feet"),
  16341. weight: math.unit(18, "lb"),
  16342. name: "Front",
  16343. image: {
  16344. source: "./media/characters/nino/front.svg"
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Normal",
  16351. height: math.unit(1 + 1 / 12, "feet"),
  16352. default: true
  16353. },
  16354. ]
  16355. ))
  16356. characterMakers.push(() => makeCharacter(
  16357. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16358. {
  16359. front: {
  16360. height: math.unit(1, "feet"),
  16361. weight: math.unit(16, "lb"),
  16362. name: "Front",
  16363. image: {
  16364. source: "./media/characters/viola/front.svg"
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Normal",
  16371. height: math.unit(1, "feet"),
  16372. default: true
  16373. },
  16374. ]
  16375. ))
  16376. characterMakers.push(() => makeCharacter(
  16377. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16378. {
  16379. front: {
  16380. height: math.unit(6 + 5 / 12, "feet"),
  16381. weight: math.unit(580, "lb"),
  16382. name: "Front",
  16383. image: {
  16384. source: "./media/characters/atlas/front.svg",
  16385. extra: 298.5 / 290,
  16386. bottom: 0.015
  16387. }
  16388. },
  16389. },
  16390. [
  16391. {
  16392. name: "Normal",
  16393. height: math.unit(6 + 5 / 12, "feet"),
  16394. default: true
  16395. },
  16396. ]
  16397. ))
  16398. characterMakers.push(() => makeCharacter(
  16399. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16400. {
  16401. side: {
  16402. height: math.unit(1 + 10 / 12, "feet"),
  16403. weight: math.unit(25, "lb"),
  16404. name: "Side",
  16405. image: {
  16406. source: "./media/characters/davy/side.svg",
  16407. extra: 200 / 170,
  16408. bottom: 0.01
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Normal",
  16415. height: math.unit(1 + 10 / 12, "feet"),
  16416. default: true
  16417. },
  16418. ]
  16419. ))
  16420. characterMakers.push(() => makeCharacter(
  16421. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16422. {
  16423. side: {
  16424. height: math.unit(4 + 8 / 12, "feet"),
  16425. weight: math.unit(166, "lb"),
  16426. name: "Side",
  16427. image: {
  16428. source: "./media/characters/fiona/side.svg",
  16429. extra: 232 / 220,
  16430. bottom: 0.03
  16431. }
  16432. },
  16433. },
  16434. [
  16435. {
  16436. name: "Normal",
  16437. height: math.unit(4 + 8 / 12, "feet"),
  16438. default: true
  16439. },
  16440. ]
  16441. ))
  16442. characterMakers.push(() => makeCharacter(
  16443. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16444. {
  16445. front: {
  16446. height: math.unit(2, "feet"),
  16447. weight: math.unit(62, "lb"),
  16448. name: "Front",
  16449. image: {
  16450. source: "./media/characters/lyla/front.svg",
  16451. bottom: 0.1
  16452. }
  16453. },
  16454. },
  16455. [
  16456. {
  16457. name: "Normal",
  16458. height: math.unit(2, "feet"),
  16459. default: true
  16460. },
  16461. ]
  16462. ))
  16463. characterMakers.push(() => makeCharacter(
  16464. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16465. {
  16466. side: {
  16467. height: math.unit(1.8, "feet"),
  16468. weight: math.unit(44, "lb"),
  16469. name: "Side",
  16470. image: {
  16471. source: "./media/characters/perseus/side.svg",
  16472. bottom: 0.21
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(1.8, "feet"),
  16480. default: true
  16481. },
  16482. ]
  16483. ))
  16484. characterMakers.push(() => makeCharacter(
  16485. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16486. {
  16487. side: {
  16488. height: math.unit(4 + 2 / 12, "feet"),
  16489. weight: math.unit(20, "lb"),
  16490. name: "Side",
  16491. image: {
  16492. source: "./media/characters/remus/side.svg"
  16493. }
  16494. },
  16495. },
  16496. [
  16497. {
  16498. name: "Normal",
  16499. height: math.unit(4 + 2 / 12, "feet"),
  16500. default: true
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16506. {
  16507. front: {
  16508. height: math.unit(4 + 11 / 12, "feet"),
  16509. weight: math.unit(114, "lb"),
  16510. name: "Front",
  16511. image: {
  16512. source: "./media/characters/raf/front.svg",
  16513. bottom: 20.5 / 1863
  16514. }
  16515. },
  16516. side: {
  16517. height: math.unit(4 + 11 / 12, "feet"),
  16518. weight: math.unit(114, "lb"),
  16519. name: "Side",
  16520. image: {
  16521. source: "./media/characters/raf/side.svg",
  16522. bottom: 22 / 1822
  16523. }
  16524. },
  16525. },
  16526. [
  16527. {
  16528. name: "Micro",
  16529. height: math.unit(2, "inches")
  16530. },
  16531. {
  16532. name: "Normal",
  16533. height: math.unit(4 + 11 / 12, "feet"),
  16534. default: true
  16535. },
  16536. {
  16537. name: "Macro",
  16538. height: math.unit(70, "feet")
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16544. {
  16545. front: {
  16546. height: math.unit(1.5, "meters"),
  16547. weight: math.unit(68, "kg"),
  16548. name: "Front",
  16549. image: {
  16550. source: "./media/characters/liam-einarr/front.svg",
  16551. extra: 2822 / 2666
  16552. }
  16553. },
  16554. back: {
  16555. height: math.unit(1.5, "meters"),
  16556. weight: math.unit(68, "kg"),
  16557. name: "Back",
  16558. image: {
  16559. source: "./media/characters/liam-einarr/back.svg",
  16560. extra: 2822 / 2666,
  16561. bottom: 0.015
  16562. }
  16563. },
  16564. },
  16565. [
  16566. {
  16567. name: "Normal",
  16568. height: math.unit(1.5, "meters"),
  16569. default: true
  16570. },
  16571. {
  16572. name: "Macro",
  16573. height: math.unit(150, "meters")
  16574. },
  16575. {
  16576. name: "Megamacro",
  16577. height: math.unit(35, "km")
  16578. },
  16579. ]
  16580. ))
  16581. characterMakers.push(() => makeCharacter(
  16582. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16583. {
  16584. front: {
  16585. height: math.unit(6, "feet"),
  16586. weight: math.unit(75, "kg"),
  16587. name: "Front",
  16588. image: {
  16589. source: "./media/characters/linda/front.svg",
  16590. extra: 930 / 874,
  16591. bottom: 0.004
  16592. }
  16593. },
  16594. },
  16595. [
  16596. {
  16597. name: "Normal",
  16598. height: math.unit(6, "feet"),
  16599. default: true
  16600. },
  16601. ]
  16602. ))
  16603. characterMakers.push(() => makeCharacter(
  16604. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16605. {
  16606. front: {
  16607. height: math.unit(6 + 8 / 12, "feet"),
  16608. weight: math.unit(220, "lb"),
  16609. name: "Front",
  16610. image: {
  16611. source: "./media/characters/caylex/front.svg",
  16612. extra: 821 / 772,
  16613. bottom: 0.07
  16614. }
  16615. },
  16616. back: {
  16617. height: math.unit(6 + 8 / 12, "feet"),
  16618. weight: math.unit(220, "lb"),
  16619. name: "Back",
  16620. image: {
  16621. source: "./media/characters/caylex/back.svg",
  16622. extra: 821 / 772,
  16623. bottom: 0.022
  16624. }
  16625. },
  16626. hand: {
  16627. height: math.unit(1.25, "feet"),
  16628. name: "Hand",
  16629. image: {
  16630. source: "./media/characters/caylex/hand.svg"
  16631. }
  16632. },
  16633. foot: {
  16634. height: math.unit(1.6, "feet"),
  16635. name: "Foot",
  16636. image: {
  16637. source: "./media/characters/caylex/foot.svg"
  16638. }
  16639. },
  16640. armored: {
  16641. height: math.unit(6 + 8 / 12, "feet"),
  16642. weight: math.unit(250, "lb"),
  16643. name: "Armored",
  16644. image: {
  16645. source: "./media/characters/caylex/armored.svg",
  16646. extra: 1420 / 1310,
  16647. bottom: 0.045
  16648. }
  16649. },
  16650. },
  16651. [
  16652. {
  16653. name: "Normal",
  16654. height: math.unit(6 + 8 / 12, "feet"),
  16655. default: true
  16656. },
  16657. {
  16658. name: "Normal+",
  16659. height: math.unit(12, "feet")
  16660. },
  16661. ]
  16662. ))
  16663. characterMakers.push(() => makeCharacter(
  16664. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16665. {
  16666. front: {
  16667. height: math.unit(7 + 6 / 12, "feet"),
  16668. weight: math.unit(288, "lb"),
  16669. name: "Front",
  16670. image: {
  16671. source: "./media/characters/alana/front.svg",
  16672. extra: 679 / 653,
  16673. bottom: 22.5 / 701
  16674. }
  16675. },
  16676. },
  16677. [
  16678. {
  16679. name: "Normal",
  16680. height: math.unit(7 + 6 / 12, "feet")
  16681. },
  16682. {
  16683. name: "Large",
  16684. height: math.unit(50, "feet")
  16685. },
  16686. {
  16687. name: "Macro",
  16688. height: math.unit(100, "feet"),
  16689. default: true
  16690. },
  16691. {
  16692. name: "Macro+",
  16693. height: math.unit(200, "feet")
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16699. {
  16700. front: {
  16701. height: math.unit(6 + 1 / 12, "feet"),
  16702. weight: math.unit(210, "lb"),
  16703. name: "Front",
  16704. image: {
  16705. source: "./media/characters/hasani/front.svg",
  16706. extra: 244 / 232,
  16707. bottom: 0.01
  16708. }
  16709. },
  16710. back: {
  16711. height: math.unit(6 + 1 / 12, "feet"),
  16712. weight: math.unit(210, "lb"),
  16713. name: "Back",
  16714. image: {
  16715. source: "./media/characters/hasani/back.svg",
  16716. extra: 244 / 232,
  16717. bottom: 0.01
  16718. }
  16719. },
  16720. },
  16721. [
  16722. {
  16723. name: "Normal",
  16724. height: math.unit(6 + 1 / 12, "feet")
  16725. },
  16726. {
  16727. name: "Macro",
  16728. height: math.unit(175, "feet"),
  16729. default: true
  16730. },
  16731. ]
  16732. ))
  16733. characterMakers.push(() => makeCharacter(
  16734. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16735. {
  16736. front: {
  16737. height: math.unit(1.82, "meters"),
  16738. weight: math.unit(140, "lb"),
  16739. name: "Front",
  16740. image: {
  16741. source: "./media/characters/nita/front.svg",
  16742. extra: 2473 / 2363,
  16743. bottom: 0.01
  16744. }
  16745. },
  16746. },
  16747. [
  16748. {
  16749. name: "Normal",
  16750. height: math.unit(1.82, "m")
  16751. },
  16752. {
  16753. name: "Macro",
  16754. height: math.unit(300, "m")
  16755. },
  16756. {
  16757. name: "Mistake Canon",
  16758. height: math.unit(0.5, "miles"),
  16759. default: true
  16760. },
  16761. {
  16762. name: "Big Mistake",
  16763. height: math.unit(13, "miles")
  16764. },
  16765. {
  16766. name: "Playing God",
  16767. height: math.unit(2450, "miles")
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16773. {
  16774. front: {
  16775. height: math.unit(4, "feet"),
  16776. weight: math.unit(120, "lb"),
  16777. name: "Front",
  16778. image: {
  16779. source: "./media/characters/shiriko/front.svg",
  16780. extra: 195 / 188
  16781. }
  16782. },
  16783. },
  16784. [
  16785. {
  16786. name: "Normal",
  16787. height: math.unit(4, "feet"),
  16788. default: true
  16789. },
  16790. ]
  16791. ))
  16792. characterMakers.push(() => makeCharacter(
  16793. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16794. {
  16795. front: {
  16796. height: math.unit(6, "feet"),
  16797. name: "front",
  16798. image: {
  16799. source: "./media/characters/deja/front.svg",
  16800. extra: 926 / 840,
  16801. bottom: 0.07
  16802. }
  16803. },
  16804. },
  16805. [
  16806. {
  16807. name: "Planck Length",
  16808. height: math.unit(1.6e-35, "meters")
  16809. },
  16810. {
  16811. name: "Normal",
  16812. height: math.unit(30.48, "meters"),
  16813. default: true
  16814. },
  16815. {
  16816. name: "Universal",
  16817. height: math.unit(8.8e26, "meters")
  16818. },
  16819. ]
  16820. ))
  16821. characterMakers.push(() => makeCharacter(
  16822. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16823. {
  16824. side: {
  16825. height: math.unit(8, "feet"),
  16826. weight: math.unit(6300, "lb"),
  16827. name: "Side",
  16828. image: {
  16829. source: "./media/characters/anima/side.svg",
  16830. bottom: 0.035
  16831. }
  16832. },
  16833. },
  16834. [
  16835. {
  16836. name: "Normal",
  16837. height: math.unit(8, "feet"),
  16838. default: true
  16839. },
  16840. ]
  16841. ))
  16842. characterMakers.push(() => makeCharacter(
  16843. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16844. {
  16845. front: {
  16846. height: math.unit(8, "feet"),
  16847. weight: math.unit(350, "lb"),
  16848. name: "Front",
  16849. image: {
  16850. source: "./media/characters/bianca/front.svg",
  16851. extra: 234 / 225,
  16852. bottom: 0.03
  16853. }
  16854. },
  16855. },
  16856. [
  16857. {
  16858. name: "Normal",
  16859. height: math.unit(8, "feet"),
  16860. default: true
  16861. },
  16862. ]
  16863. ))
  16864. characterMakers.push(() => makeCharacter(
  16865. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16866. {
  16867. front: {
  16868. height: math.unit(6, "feet"),
  16869. weight: math.unit(150, "lb"),
  16870. name: "Front",
  16871. image: {
  16872. source: "./media/characters/adinia/front.svg",
  16873. extra: 1845 / 1672,
  16874. bottom: 0.02
  16875. }
  16876. },
  16877. back: {
  16878. height: math.unit(6, "feet"),
  16879. weight: math.unit(150, "lb"),
  16880. name: "Back",
  16881. image: {
  16882. source: "./media/characters/adinia/back.svg",
  16883. extra: 1845 / 1672,
  16884. bottom: 0.002
  16885. }
  16886. },
  16887. },
  16888. [
  16889. {
  16890. name: "Normal",
  16891. height: math.unit(11 + 5 / 12, "feet"),
  16892. default: true
  16893. },
  16894. ]
  16895. ))
  16896. characterMakers.push(() => makeCharacter(
  16897. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16898. {
  16899. front: {
  16900. height: math.unit(3, "meters"),
  16901. weight: math.unit(200, "kg"),
  16902. name: "Front",
  16903. image: {
  16904. source: "./media/characters/lykasa/front.svg",
  16905. extra: 1076 / 976,
  16906. bottom: 0.06
  16907. }
  16908. },
  16909. },
  16910. [
  16911. {
  16912. name: "Normal",
  16913. height: math.unit(3, "meters")
  16914. },
  16915. {
  16916. name: "Kaiju",
  16917. height: math.unit(120, "meters"),
  16918. default: true
  16919. },
  16920. {
  16921. name: "Mega Kaiju",
  16922. height: math.unit(240, "km")
  16923. },
  16924. {
  16925. name: "Giga Kaiju",
  16926. height: math.unit(400, "megameters")
  16927. },
  16928. {
  16929. name: "Tera Kaiju",
  16930. height: math.unit(800, "gigameters")
  16931. },
  16932. {
  16933. name: "Kaiju Dragon Goddess",
  16934. height: math.unit(26, "zettaparsecs")
  16935. },
  16936. ]
  16937. ))
  16938. characterMakers.push(() => makeCharacter(
  16939. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16940. {
  16941. side: {
  16942. height: math.unit(283 / 124 * 6, "feet"),
  16943. weight: math.unit(35000, "lb"),
  16944. name: "Side",
  16945. image: {
  16946. source: "./media/characters/malfaren/side.svg",
  16947. extra: 2500 / 1010,
  16948. bottom: 0.01
  16949. }
  16950. },
  16951. front: {
  16952. height: math.unit(22.36, "feet"),
  16953. weight: math.unit(35000, "lb"),
  16954. name: "Front",
  16955. image: {
  16956. source: "./media/characters/malfaren/front.svg",
  16957. extra: 1631 / 1476,
  16958. bottom: 0.01
  16959. }
  16960. },
  16961. maw: {
  16962. height: math.unit(6.9, "feet"),
  16963. name: "Maw",
  16964. image: {
  16965. source: "./media/characters/malfaren/maw.svg"
  16966. }
  16967. },
  16968. },
  16969. [
  16970. {
  16971. name: "Big",
  16972. height: math.unit(283 / 162 * 6, "feet"),
  16973. },
  16974. {
  16975. name: "Bigger",
  16976. height: math.unit(283 / 124 * 6, "feet")
  16977. },
  16978. {
  16979. name: "Massive",
  16980. height: math.unit(283 / 92 * 6, "feet"),
  16981. default: true
  16982. },
  16983. {
  16984. name: "👀💦",
  16985. height: math.unit(283 / 73 * 6, "feet"),
  16986. },
  16987. ]
  16988. ))
  16989. characterMakers.push(() => makeCharacter(
  16990. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16991. {
  16992. front: {
  16993. height: math.unit(1.7, "m"),
  16994. weight: math.unit(70, "kg"),
  16995. name: "Front",
  16996. image: {
  16997. source: "./media/characters/kernel/front.svg",
  16998. extra: 222 / 210,
  16999. bottom: 0.007
  17000. }
  17001. },
  17002. },
  17003. [
  17004. {
  17005. name: "Nano",
  17006. height: math.unit(17, "micrometers")
  17007. },
  17008. {
  17009. name: "Micro",
  17010. height: math.unit(1.7, "mm")
  17011. },
  17012. {
  17013. name: "Small",
  17014. height: math.unit(1.7, "cm")
  17015. },
  17016. {
  17017. name: "Normal",
  17018. height: math.unit(1.7, "m"),
  17019. default: true
  17020. },
  17021. ]
  17022. ))
  17023. characterMakers.push(() => makeCharacter(
  17024. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17025. {
  17026. front: {
  17027. height: math.unit(1.75, "meters"),
  17028. weight: math.unit(65, "kg"),
  17029. name: "Front",
  17030. image: {
  17031. source: "./media/characters/jayne-folest/front.svg",
  17032. extra: 2115 / 2007,
  17033. bottom: 0.02
  17034. }
  17035. },
  17036. back: {
  17037. height: math.unit(1.75, "meters"),
  17038. weight: math.unit(65, "kg"),
  17039. name: "Back",
  17040. image: {
  17041. source: "./media/characters/jayne-folest/back.svg",
  17042. extra: 2115 / 2007,
  17043. bottom: 0.005
  17044. }
  17045. },
  17046. frontClothed: {
  17047. height: math.unit(1.75, "meters"),
  17048. weight: math.unit(65, "kg"),
  17049. name: "Front (Clothed)",
  17050. image: {
  17051. source: "./media/characters/jayne-folest/front-clothed.svg",
  17052. extra: 2115 / 2007,
  17053. bottom: 0.035
  17054. }
  17055. },
  17056. hand: {
  17057. height: math.unit(1 / 1.260, "feet"),
  17058. name: "Hand",
  17059. image: {
  17060. source: "./media/characters/jayne-folest/hand.svg"
  17061. }
  17062. },
  17063. foot: {
  17064. height: math.unit(1 / 0.918, "feet"),
  17065. name: "Foot",
  17066. image: {
  17067. source: "./media/characters/jayne-folest/foot.svg"
  17068. }
  17069. },
  17070. },
  17071. [
  17072. {
  17073. name: "Micro",
  17074. height: math.unit(4, "cm")
  17075. },
  17076. {
  17077. name: "Normal",
  17078. height: math.unit(1.75, "meters")
  17079. },
  17080. {
  17081. name: "Macro",
  17082. height: math.unit(47.5, "meters"),
  17083. default: true
  17084. },
  17085. ]
  17086. ))
  17087. characterMakers.push(() => makeCharacter(
  17088. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17089. {
  17090. front: {
  17091. height: math.unit(180, "cm"),
  17092. weight: math.unit(70, "kg"),
  17093. name: "Front",
  17094. image: {
  17095. source: "./media/characters/algier/front.svg",
  17096. extra: 596 / 572,
  17097. bottom: 0.04
  17098. }
  17099. },
  17100. back: {
  17101. height: math.unit(180, "cm"),
  17102. weight: math.unit(70, "kg"),
  17103. name: "Back",
  17104. image: {
  17105. source: "./media/characters/algier/back.svg",
  17106. extra: 596 / 572,
  17107. bottom: 0.025
  17108. }
  17109. },
  17110. frontdressed: {
  17111. height: math.unit(180, "cm"),
  17112. weight: math.unit(150, "kg"),
  17113. name: "Front-dressed",
  17114. image: {
  17115. source: "./media/characters/algier/front-dressed.svg",
  17116. extra: 596 / 572,
  17117. bottom: 0.038
  17118. }
  17119. },
  17120. },
  17121. [
  17122. {
  17123. name: "Micro",
  17124. height: math.unit(5, "cm")
  17125. },
  17126. {
  17127. name: "Normal",
  17128. height: math.unit(180, "cm"),
  17129. default: true
  17130. },
  17131. {
  17132. name: "Macro",
  17133. height: math.unit(64, "m")
  17134. },
  17135. ]
  17136. ))
  17137. characterMakers.push(() => makeCharacter(
  17138. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17139. {
  17140. upright: {
  17141. height: math.unit(7, "feet"),
  17142. weight: math.unit(300, "lb"),
  17143. name: "Upright",
  17144. image: {
  17145. source: "./media/characters/pretzel/upright.svg",
  17146. extra: 534 / 522,
  17147. bottom: 0.065
  17148. }
  17149. },
  17150. sprawling: {
  17151. height: math.unit(3.75, "feet"),
  17152. weight: math.unit(300, "lb"),
  17153. name: "Sprawling",
  17154. image: {
  17155. source: "./media/characters/pretzel/sprawling.svg",
  17156. extra: 314 / 281,
  17157. bottom: 0.1
  17158. }
  17159. },
  17160. tongue: {
  17161. height: math.unit(2, "feet"),
  17162. name: "Tongue",
  17163. image: {
  17164. source: "./media/characters/pretzel/tongue.svg"
  17165. }
  17166. },
  17167. },
  17168. [
  17169. {
  17170. name: "Normal",
  17171. height: math.unit(7, "feet"),
  17172. default: true
  17173. },
  17174. {
  17175. name: "Oversized",
  17176. height: math.unit(15, "feet")
  17177. },
  17178. {
  17179. name: "Huge",
  17180. height: math.unit(30, "feet")
  17181. },
  17182. {
  17183. name: "Macro",
  17184. height: math.unit(250, "feet")
  17185. },
  17186. ]
  17187. ))
  17188. characterMakers.push(() => makeCharacter(
  17189. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17190. {
  17191. sideFront: {
  17192. height: math.unit(5 + 2 / 12, "feet"),
  17193. weight: math.unit(120, "lb"),
  17194. name: "Front Side",
  17195. image: {
  17196. source: "./media/characters/roxi/side-front.svg",
  17197. extra: 2924 / 2717,
  17198. bottom: 0.08
  17199. }
  17200. },
  17201. sideBack: {
  17202. height: math.unit(5 + 2 / 12, "feet"),
  17203. weight: math.unit(120, "lb"),
  17204. name: "Back Side",
  17205. image: {
  17206. source: "./media/characters/roxi/side-back.svg",
  17207. extra: 2904 / 2693,
  17208. bottom: 0.06
  17209. }
  17210. },
  17211. front: {
  17212. height: math.unit(5 + 2 / 12, "feet"),
  17213. weight: math.unit(120, "lb"),
  17214. name: "Front",
  17215. image: {
  17216. source: "./media/characters/roxi/front.svg",
  17217. extra: 2028 / 1907,
  17218. bottom: 0.01
  17219. }
  17220. },
  17221. frontAlt: {
  17222. height: math.unit(5 + 2 / 12, "feet"),
  17223. weight: math.unit(120, "lb"),
  17224. name: "Front (Alt)",
  17225. image: {
  17226. source: "./media/characters/roxi/front-alt.svg",
  17227. extra: 1828 / 1798,
  17228. bottom: 0.01
  17229. }
  17230. },
  17231. sitting: {
  17232. height: math.unit(2.8, "feet"),
  17233. weight: math.unit(120, "lb"),
  17234. name: "Sitting",
  17235. image: {
  17236. source: "./media/characters/roxi/sitting.svg",
  17237. extra: 2660 / 2462,
  17238. bottom: 0.1
  17239. }
  17240. },
  17241. },
  17242. [
  17243. {
  17244. name: "Normal",
  17245. height: math.unit(5 + 2 / 12, "feet"),
  17246. default: true
  17247. },
  17248. ]
  17249. ))
  17250. characterMakers.push(() => makeCharacter(
  17251. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17252. {
  17253. side: {
  17254. height: math.unit(55, "feet"),
  17255. weight: math.unit(153, "tons"),
  17256. name: "Side",
  17257. image: {
  17258. source: "./media/characters/shadow/side.svg",
  17259. extra: 701 / 628,
  17260. bottom: 0.02
  17261. }
  17262. },
  17263. flying: {
  17264. height: math.unit(145, "feet"),
  17265. weight: math.unit(153, "tons"),
  17266. name: "Flying",
  17267. image: {
  17268. source: "./media/characters/shadow/flying.svg"
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(55, "feet"),
  17276. default: true
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17282. {
  17283. front: {
  17284. height: math.unit(6, "feet"),
  17285. weight: math.unit(200, "lb"),
  17286. name: "Front",
  17287. image: {
  17288. source: "./media/characters/marcie/front.svg",
  17289. extra: 960 / 876,
  17290. bottom: 58 / 1017.87
  17291. }
  17292. },
  17293. },
  17294. [
  17295. {
  17296. name: "Macro",
  17297. height: math.unit(1, "mile"),
  17298. default: true
  17299. },
  17300. ]
  17301. ))
  17302. characterMakers.push(() => makeCharacter(
  17303. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17304. {
  17305. front: {
  17306. height: math.unit(7, "feet"),
  17307. weight: math.unit(200, "lb"),
  17308. name: "Front",
  17309. image: {
  17310. source: "./media/characters/kachina/front.svg",
  17311. extra: 1290.68 / 1119,
  17312. bottom: 36.5 / 1327.18
  17313. }
  17314. },
  17315. },
  17316. [
  17317. {
  17318. name: "Normal",
  17319. height: math.unit(7, "feet"),
  17320. default: true
  17321. },
  17322. ]
  17323. ))
  17324. characterMakers.push(() => makeCharacter(
  17325. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17326. {
  17327. looking: {
  17328. height: math.unit(2, "meters"),
  17329. weight: math.unit(300, "kg"),
  17330. name: "Looking",
  17331. image: {
  17332. source: "./media/characters/kash/looking.svg",
  17333. extra: 474 / 344,
  17334. bottom: 0.03
  17335. }
  17336. },
  17337. side: {
  17338. height: math.unit(2, "meters"),
  17339. weight: math.unit(300, "kg"),
  17340. name: "Side",
  17341. image: {
  17342. source: "./media/characters/kash/side.svg",
  17343. extra: 302 / 251,
  17344. bottom: 0.03
  17345. }
  17346. },
  17347. front: {
  17348. height: math.unit(2, "meters"),
  17349. weight: math.unit(300, "kg"),
  17350. name: "Front",
  17351. image: {
  17352. source: "./media/characters/kash/front.svg",
  17353. extra: 495 / 360,
  17354. bottom: 0.015
  17355. }
  17356. },
  17357. },
  17358. [
  17359. {
  17360. name: "Normal",
  17361. height: math.unit(2, "meters"),
  17362. default: true
  17363. },
  17364. {
  17365. name: "Big",
  17366. height: math.unit(3, "meters")
  17367. },
  17368. {
  17369. name: "Large",
  17370. height: math.unit(5, "meters")
  17371. },
  17372. ]
  17373. ))
  17374. characterMakers.push(() => makeCharacter(
  17375. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17376. {
  17377. feeding: {
  17378. height: math.unit(6.7, "feet"),
  17379. weight: math.unit(350, "lb"),
  17380. name: "Feeding",
  17381. image: {
  17382. source: "./media/characters/lalim/feeding.svg",
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Normal",
  17389. height: math.unit(6.7, "feet"),
  17390. default: true
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17396. {
  17397. front: {
  17398. height: math.unit(9.5, "feet"),
  17399. weight: math.unit(600, "lb"),
  17400. name: "Front",
  17401. image: {
  17402. source: "./media/characters/de'vout/front.svg",
  17403. extra: 1443 / 1328,
  17404. bottom: 0.025
  17405. }
  17406. },
  17407. back: {
  17408. height: math.unit(9.5, "feet"),
  17409. weight: math.unit(600, "lb"),
  17410. name: "Back",
  17411. image: {
  17412. source: "./media/characters/de'vout/back.svg",
  17413. extra: 1443 / 1328
  17414. }
  17415. },
  17416. frontDressed: {
  17417. height: math.unit(9.5, "feet"),
  17418. weight: math.unit(600, "lb"),
  17419. name: "Front (Dressed",
  17420. image: {
  17421. source: "./media/characters/de'vout/front-dressed.svg",
  17422. extra: 1443 / 1328,
  17423. bottom: 0.025
  17424. }
  17425. },
  17426. backDressed: {
  17427. height: math.unit(9.5, "feet"),
  17428. weight: math.unit(600, "lb"),
  17429. name: "Back (Dressed",
  17430. image: {
  17431. source: "./media/characters/de'vout/back-dressed.svg",
  17432. extra: 1443 / 1328
  17433. }
  17434. },
  17435. },
  17436. [
  17437. {
  17438. name: "Normal",
  17439. height: math.unit(9.5, "feet"),
  17440. default: true
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17446. {
  17447. front: {
  17448. height: math.unit(8, "feet"),
  17449. weight: math.unit(225, "lb"),
  17450. name: "Front",
  17451. image: {
  17452. source: "./media/characters/talana/front.svg",
  17453. extra: 1410 / 1300,
  17454. bottom: 0.015
  17455. }
  17456. },
  17457. frontDressed: {
  17458. height: math.unit(8, "feet"),
  17459. weight: math.unit(225, "lb"),
  17460. name: "Front (Dressed",
  17461. image: {
  17462. source: "./media/characters/talana/front-dressed.svg",
  17463. extra: 1410 / 1300,
  17464. bottom: 0.015
  17465. }
  17466. },
  17467. },
  17468. [
  17469. {
  17470. name: "Normal",
  17471. height: math.unit(8, "feet"),
  17472. default: true
  17473. },
  17474. ]
  17475. ))
  17476. characterMakers.push(() => makeCharacter(
  17477. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17478. {
  17479. side: {
  17480. height: math.unit(7.2, "feet"),
  17481. weight: math.unit(150, "lb"),
  17482. name: "Side",
  17483. image: {
  17484. source: "./media/characters/xeauvok/side.svg",
  17485. extra: 1975 / 1523,
  17486. bottom: 0.07
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Normal",
  17493. height: math.unit(7.2, "feet"),
  17494. default: true
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17500. {
  17501. side: {
  17502. height: math.unit(10, "feet"),
  17503. weight: math.unit(900, "kg"),
  17504. name: "Side",
  17505. image: {
  17506. source: "./media/characters/zara/side.svg",
  17507. extra: 504 / 498
  17508. }
  17509. },
  17510. },
  17511. [
  17512. {
  17513. name: "Normal",
  17514. height: math.unit(10, "feet"),
  17515. default: true
  17516. },
  17517. ]
  17518. ))
  17519. characterMakers.push(() => makeCharacter(
  17520. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17521. {
  17522. side: {
  17523. height: math.unit(6, "feet"),
  17524. weight: math.unit(150, "lb"),
  17525. name: "Side",
  17526. image: {
  17527. source: "./media/characters/richard-dragon/side.svg",
  17528. extra: 845 / 340,
  17529. bottom: 0.017
  17530. }
  17531. },
  17532. maw: {
  17533. height: math.unit(2.97, "feet"),
  17534. name: "Maw",
  17535. image: {
  17536. source: "./media/characters/richard-dragon/maw.svg"
  17537. }
  17538. },
  17539. },
  17540. [
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17545. {
  17546. front: {
  17547. height: math.unit(4, "feet"),
  17548. weight: math.unit(100, "lb"),
  17549. name: "Front",
  17550. image: {
  17551. source: "./media/characters/richard-smeargle/front.svg",
  17552. extra: 2952 / 2820,
  17553. bottom: 0.028
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(4, "feet"),
  17561. default: true
  17562. },
  17563. {
  17564. name: "Dynamax",
  17565. height: math.unit(20, "meters")
  17566. },
  17567. ]
  17568. ))
  17569. characterMakers.push(() => makeCharacter(
  17570. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17571. {
  17572. front: {
  17573. height: math.unit(6, "feet"),
  17574. weight: math.unit(110, "lb"),
  17575. name: "Front",
  17576. image: {
  17577. source: "./media/characters/klay/front.svg",
  17578. extra: 962 / 883,
  17579. bottom: 0.04
  17580. }
  17581. },
  17582. back: {
  17583. height: math.unit(6, "feet"),
  17584. weight: math.unit(110, "lb"),
  17585. name: "Back",
  17586. image: {
  17587. source: "./media/characters/klay/back.svg",
  17588. extra: 962 / 883
  17589. }
  17590. },
  17591. beans: {
  17592. height: math.unit(1.15, "feet"),
  17593. name: "Beans",
  17594. image: {
  17595. source: "./media/characters/klay/beans.svg"
  17596. }
  17597. },
  17598. },
  17599. [
  17600. {
  17601. name: "Micro",
  17602. height: math.unit(6, "inches")
  17603. },
  17604. {
  17605. name: "Mini",
  17606. height: math.unit(3, "feet")
  17607. },
  17608. {
  17609. name: "Normal",
  17610. height: math.unit(6, "feet"),
  17611. default: true
  17612. },
  17613. {
  17614. name: "Big",
  17615. height: math.unit(25, "feet")
  17616. },
  17617. {
  17618. name: "Macro",
  17619. height: math.unit(100, "feet")
  17620. },
  17621. {
  17622. name: "Megamacro",
  17623. height: math.unit(400, "feet")
  17624. },
  17625. ]
  17626. ))
  17627. characterMakers.push(() => makeCharacter(
  17628. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17629. {
  17630. front: {
  17631. height: math.unit(6, "feet"),
  17632. weight: math.unit(160, "lb"),
  17633. name: "Front",
  17634. image: {
  17635. source: "./media/characters/marcus/front.svg",
  17636. extra: 734 / 676,
  17637. bottom: 0.03
  17638. }
  17639. },
  17640. },
  17641. [
  17642. {
  17643. name: "Little",
  17644. height: math.unit(6, "feet")
  17645. },
  17646. {
  17647. name: "Normal",
  17648. height: math.unit(110, "feet"),
  17649. default: true
  17650. },
  17651. {
  17652. name: "Macro",
  17653. height: math.unit(250, "feet")
  17654. },
  17655. {
  17656. name: "Megamacro",
  17657. height: math.unit(1000, "feet")
  17658. },
  17659. ]
  17660. ))
  17661. characterMakers.push(() => makeCharacter(
  17662. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17663. {
  17664. front: {
  17665. height: math.unit(7, "feet"),
  17666. weight: math.unit(275, "lb"),
  17667. name: "Front",
  17668. image: {
  17669. source: "./media/characters/claude-delroute/front.svg",
  17670. extra: 230 / 214,
  17671. bottom: 0.007
  17672. }
  17673. },
  17674. side: {
  17675. height: math.unit(7, "feet"),
  17676. weight: math.unit(275, "lb"),
  17677. name: "Side",
  17678. image: {
  17679. source: "./media/characters/claude-delroute/side.svg",
  17680. extra: 222 / 214,
  17681. bottom: 0.01
  17682. }
  17683. },
  17684. back: {
  17685. height: math.unit(7, "feet"),
  17686. weight: math.unit(275, "lb"),
  17687. name: "Back",
  17688. image: {
  17689. source: "./media/characters/claude-delroute/back.svg",
  17690. extra: 230 / 214,
  17691. bottom: 0.015
  17692. }
  17693. },
  17694. maw: {
  17695. height: math.unit(0.6407, "meters"),
  17696. name: "Maw",
  17697. image: {
  17698. source: "./media/characters/claude-delroute/maw.svg"
  17699. }
  17700. },
  17701. },
  17702. [
  17703. {
  17704. name: "Normal",
  17705. height: math.unit(7, "feet"),
  17706. default: true
  17707. },
  17708. {
  17709. name: "Lorge",
  17710. height: math.unit(20, "feet")
  17711. },
  17712. ]
  17713. ))
  17714. characterMakers.push(() => makeCharacter(
  17715. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17716. {
  17717. front: {
  17718. height: math.unit(8 + 4 / 12, "feet"),
  17719. weight: math.unit(600, "lb"),
  17720. name: "Front",
  17721. image: {
  17722. source: "./media/characters/dragonien/front.svg",
  17723. extra: 100 / 94,
  17724. bottom: 3.3 / 103.3445
  17725. }
  17726. },
  17727. back: {
  17728. height: math.unit(8 + 4 / 12, "feet"),
  17729. weight: math.unit(600, "lb"),
  17730. name: "Back",
  17731. image: {
  17732. source: "./media/characters/dragonien/back.svg",
  17733. extra: 776 / 746,
  17734. bottom: 6.4 / 782.0616
  17735. }
  17736. },
  17737. foot: {
  17738. height: math.unit(1.54, "feet"),
  17739. name: "Foot",
  17740. image: {
  17741. source: "./media/characters/dragonien/foot.svg",
  17742. }
  17743. },
  17744. },
  17745. [
  17746. {
  17747. name: "Normal",
  17748. height: math.unit(8 + 4 / 12, "feet"),
  17749. default: true
  17750. },
  17751. {
  17752. name: "Macro",
  17753. height: math.unit(200, "feet")
  17754. },
  17755. {
  17756. name: "Megamacro",
  17757. height: math.unit(1, "mile")
  17758. },
  17759. {
  17760. name: "Gigamacro",
  17761. height: math.unit(1000, "miles")
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17767. {
  17768. front: {
  17769. height: math.unit(5 + 2 / 12, "feet"),
  17770. weight: math.unit(110, "lb"),
  17771. name: "Front",
  17772. image: {
  17773. source: "./media/characters/desta/front.svg",
  17774. extra: 767 / 726,
  17775. bottom: 11.7 / 779
  17776. }
  17777. },
  17778. back: {
  17779. height: math.unit(5 + 2 / 12, "feet"),
  17780. weight: math.unit(110, "lb"),
  17781. name: "Back",
  17782. image: {
  17783. source: "./media/characters/desta/back.svg",
  17784. extra: 777 / 728,
  17785. bottom: 6 / 784
  17786. }
  17787. },
  17788. frontAlt: {
  17789. height: math.unit(5 + 2 / 12, "feet"),
  17790. weight: math.unit(110, "lb"),
  17791. name: "Front",
  17792. image: {
  17793. source: "./media/characters/desta/front-alt.svg",
  17794. extra: 1482 / 1417
  17795. }
  17796. },
  17797. side: {
  17798. height: math.unit(5 + 2 / 12, "feet"),
  17799. weight: math.unit(110, "lb"),
  17800. name: "Side",
  17801. image: {
  17802. source: "./media/characters/desta/side.svg",
  17803. extra: 2579 / 2491,
  17804. bottom: 0.053
  17805. }
  17806. },
  17807. },
  17808. [
  17809. {
  17810. name: "Micro",
  17811. height: math.unit(6, "inches")
  17812. },
  17813. {
  17814. name: "Normal",
  17815. height: math.unit(5 + 2 / 12, "feet"),
  17816. default: true
  17817. },
  17818. {
  17819. name: "Macro",
  17820. height: math.unit(62, "feet")
  17821. },
  17822. {
  17823. name: "Megamacro",
  17824. height: math.unit(1800, "feet")
  17825. },
  17826. ]
  17827. ))
  17828. characterMakers.push(() => makeCharacter(
  17829. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17830. {
  17831. front: {
  17832. height: math.unit(10, "feet"),
  17833. weight: math.unit(700, "lb"),
  17834. name: "Front",
  17835. image: {
  17836. source: "./media/characters/storm-alystar/front.svg",
  17837. extra: 2112 / 1898,
  17838. bottom: 0.034
  17839. }
  17840. },
  17841. },
  17842. [
  17843. {
  17844. name: "Micro",
  17845. height: math.unit(3.5, "inches")
  17846. },
  17847. {
  17848. name: "Normal",
  17849. height: math.unit(10, "feet"),
  17850. default: true
  17851. },
  17852. {
  17853. name: "Macro",
  17854. height: math.unit(400, "feet")
  17855. },
  17856. {
  17857. name: "Deific",
  17858. height: math.unit(60, "miles")
  17859. },
  17860. ]
  17861. ))
  17862. characterMakers.push(() => makeCharacter(
  17863. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17864. {
  17865. front: {
  17866. height: math.unit(2.35, "meters"),
  17867. weight: math.unit(119, "kg"),
  17868. name: "Front",
  17869. image: {
  17870. source: "./media/characters/ilia/front.svg",
  17871. extra: 1285 / 1255,
  17872. bottom: 0.06
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(2.35, "meters")
  17880. },
  17881. {
  17882. name: "Macro",
  17883. height: math.unit(140, "meters"),
  17884. default: true
  17885. },
  17886. {
  17887. name: "Megamacro",
  17888. height: math.unit(100, "miles")
  17889. },
  17890. ]
  17891. ))
  17892. characterMakers.push(() => makeCharacter(
  17893. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17894. {
  17895. front: {
  17896. height: math.unit(6 + 5 / 12, "feet"),
  17897. weight: math.unit(190, "lb"),
  17898. name: "Front",
  17899. image: {
  17900. source: "./media/characters/kingdead/front.svg",
  17901. extra: 1228 / 1177
  17902. }
  17903. },
  17904. },
  17905. [
  17906. {
  17907. name: "Micro",
  17908. height: math.unit(7, "inches")
  17909. },
  17910. {
  17911. name: "Normal",
  17912. height: math.unit(6 + 5 / 12, "feet")
  17913. },
  17914. {
  17915. name: "Macro",
  17916. height: math.unit(150, "feet"),
  17917. default: true
  17918. },
  17919. {
  17920. name: "Megamacro",
  17921. height: math.unit(200, "miles")
  17922. },
  17923. ]
  17924. ))
  17925. characterMakers.push(() => makeCharacter(
  17926. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17927. {
  17928. front: {
  17929. height: math.unit(8, "feet"),
  17930. weight: math.unit(600, "lb"),
  17931. name: "Front",
  17932. image: {
  17933. source: "./media/characters/kyrehx/front.svg",
  17934. extra: 1195 / 1095,
  17935. bottom: 0.034
  17936. }
  17937. },
  17938. },
  17939. [
  17940. {
  17941. name: "Micro",
  17942. height: math.unit(2, "inches")
  17943. },
  17944. {
  17945. name: "Normal",
  17946. height: math.unit(8, "feet"),
  17947. default: true
  17948. },
  17949. {
  17950. name: "Macro",
  17951. height: math.unit(255, "feet")
  17952. },
  17953. ]
  17954. ))
  17955. characterMakers.push(() => makeCharacter(
  17956. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17957. {
  17958. front: {
  17959. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17960. weight: math.unit(184, "lb"),
  17961. name: "Front",
  17962. image: {
  17963. source: "./media/characters/xang/front.svg",
  17964. extra: 845 / 755
  17965. }
  17966. },
  17967. },
  17968. [
  17969. {
  17970. name: "Normal",
  17971. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17972. default: true
  17973. },
  17974. {
  17975. name: "Macro",
  17976. height: math.unit(0.935 * 146, "feet")
  17977. },
  17978. {
  17979. name: "Megamacro",
  17980. height: math.unit(0.935 * 3, "miles")
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17986. {
  17987. frontDressed: {
  17988. height: math.unit(5 + 7 / 12, "feet"),
  17989. weight: math.unit(140, "lb"),
  17990. name: "Front (Dressed)",
  17991. image: {
  17992. source: "./media/characters/doc-weardno/front-dressed.svg",
  17993. extra: 263 / 234
  17994. }
  17995. },
  17996. backDressed: {
  17997. height: math.unit(5 + 7 / 12, "feet"),
  17998. weight: math.unit(140, "lb"),
  17999. name: "Back (Dressed)",
  18000. image: {
  18001. source: "./media/characters/doc-weardno/back-dressed.svg",
  18002. extra: 266 / 238
  18003. }
  18004. },
  18005. front: {
  18006. height: math.unit(5 + 7 / 12, "feet"),
  18007. weight: math.unit(140, "lb"),
  18008. name: "Front",
  18009. image: {
  18010. source: "./media/characters/doc-weardno/front.svg",
  18011. extra: 254 / 233
  18012. }
  18013. },
  18014. },
  18015. [
  18016. {
  18017. name: "Micro",
  18018. height: math.unit(3, "inches")
  18019. },
  18020. {
  18021. name: "Normal",
  18022. height: math.unit(5 + 7 / 12, "feet"),
  18023. default: true
  18024. },
  18025. {
  18026. name: "Macro",
  18027. height: math.unit(25, "feet")
  18028. },
  18029. {
  18030. name: "Megamacro",
  18031. height: math.unit(2, "miles")
  18032. },
  18033. ]
  18034. ))
  18035. characterMakers.push(() => makeCharacter(
  18036. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18037. {
  18038. front: {
  18039. height: math.unit(6 + 2 / 12, "feet"),
  18040. weight: math.unit(153, "lb"),
  18041. name: "Front",
  18042. image: {
  18043. source: "./media/characters/seth-whilst/front.svg",
  18044. bottom: 0.07
  18045. }
  18046. },
  18047. },
  18048. [
  18049. {
  18050. name: "Micro",
  18051. height: math.unit(5, "inches")
  18052. },
  18053. {
  18054. name: "Normal",
  18055. height: math.unit(6 + 2 / 12, "feet"),
  18056. default: true
  18057. },
  18058. ]
  18059. ))
  18060. characterMakers.push(() => makeCharacter(
  18061. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18062. {
  18063. front: {
  18064. height: math.unit(3, "inches"),
  18065. weight: math.unit(8, "grams"),
  18066. name: "Front",
  18067. image: {
  18068. source: "./media/characters/pocket-jabari/front.svg",
  18069. extra: 1024 / 974,
  18070. bottom: 0.039
  18071. }
  18072. },
  18073. },
  18074. [
  18075. {
  18076. name: "Minimicro",
  18077. height: math.unit(8, "mm")
  18078. },
  18079. {
  18080. name: "Micro",
  18081. height: math.unit(3, "inches"),
  18082. default: true
  18083. },
  18084. {
  18085. name: "Normal",
  18086. height: math.unit(3, "feet")
  18087. },
  18088. ]
  18089. ))
  18090. characterMakers.push(() => makeCharacter(
  18091. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18092. {
  18093. front: {
  18094. height: math.unit(15, "feet"),
  18095. weight: math.unit(3280, "lb"),
  18096. name: "Front",
  18097. image: {
  18098. source: "./media/characters/sapphy/front.svg",
  18099. extra: 671 / 577,
  18100. bottom: 0.085
  18101. }
  18102. },
  18103. back: {
  18104. height: math.unit(15, "feet"),
  18105. weight: math.unit(3280, "lb"),
  18106. name: "Back",
  18107. image: {
  18108. source: "./media/characters/sapphy/back.svg",
  18109. extra: 631 / 607,
  18110. bottom: 0.045
  18111. }
  18112. },
  18113. },
  18114. [
  18115. {
  18116. name: "Normal",
  18117. height: math.unit(15, "feet")
  18118. },
  18119. {
  18120. name: "Casual Macro",
  18121. height: math.unit(120, "feet")
  18122. },
  18123. {
  18124. name: "Macro",
  18125. height: math.unit(2150, "feet"),
  18126. default: true
  18127. },
  18128. {
  18129. name: "Megamacro",
  18130. height: math.unit(8, "miles")
  18131. },
  18132. {
  18133. name: "Galaxy Mom",
  18134. height: math.unit(6, "megalightyears")
  18135. },
  18136. ]
  18137. ))
  18138. characterMakers.push(() => makeCharacter(
  18139. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18140. {
  18141. front: {
  18142. height: math.unit(6, "feet"),
  18143. weight: math.unit(170, "lb"),
  18144. name: "Front",
  18145. image: {
  18146. source: "./media/characters/kiro/front.svg",
  18147. extra: 1064 / 1012,
  18148. bottom: 0.052
  18149. }
  18150. },
  18151. },
  18152. [
  18153. {
  18154. name: "Micro",
  18155. height: math.unit(6, "inches")
  18156. },
  18157. {
  18158. name: "Normal",
  18159. height: math.unit(6, "feet"),
  18160. default: true
  18161. },
  18162. {
  18163. name: "Macro",
  18164. height: math.unit(72, "feet")
  18165. },
  18166. ]
  18167. ))
  18168. characterMakers.push(() => makeCharacter(
  18169. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18170. {
  18171. front: {
  18172. height: math.unit(5 + 9 / 12, "feet"),
  18173. weight: math.unit(175, "lb"),
  18174. name: "Front",
  18175. image: {
  18176. source: "./media/characters/irishfox/front.svg",
  18177. extra: 1912 / 1680,
  18178. bottom: 0.02
  18179. }
  18180. },
  18181. },
  18182. [
  18183. {
  18184. name: "Nano",
  18185. height: math.unit(1, "mm")
  18186. },
  18187. {
  18188. name: "Micro",
  18189. height: math.unit(2, "inches")
  18190. },
  18191. {
  18192. name: "Normal",
  18193. height: math.unit(5 + 9 / 12, "feet"),
  18194. default: true
  18195. },
  18196. {
  18197. name: "Macro",
  18198. height: math.unit(45, "feet")
  18199. },
  18200. ]
  18201. ))
  18202. characterMakers.push(() => makeCharacter(
  18203. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18204. {
  18205. front: {
  18206. height: math.unit(6 + 1 / 12, "feet"),
  18207. weight: math.unit(150, "lb"),
  18208. name: "Front",
  18209. image: {
  18210. source: "./media/characters/aronai-sieyes/front.svg",
  18211. extra: 1556 / 1480,
  18212. bottom: 0.015
  18213. }
  18214. },
  18215. side: {
  18216. height: math.unit(6 + 1 / 12, "feet"),
  18217. weight: math.unit(150, "lb"),
  18218. name: "Side",
  18219. image: {
  18220. source: "./media/characters/aronai-sieyes/side.svg",
  18221. extra: 1433 / 1390,
  18222. bottom: 0.0393
  18223. }
  18224. },
  18225. back: {
  18226. height: math.unit(6 + 1 / 12, "feet"),
  18227. weight: math.unit(150, "lb"),
  18228. name: "Back",
  18229. image: {
  18230. source: "./media/characters/aronai-sieyes/back.svg",
  18231. extra: 1544 / 1494,
  18232. bottom: 0.02
  18233. }
  18234. },
  18235. frontClothed: {
  18236. height: math.unit(6 + 1 / 12, "feet"),
  18237. weight: math.unit(150, "lb"),
  18238. name: "Front (Clothed)",
  18239. image: {
  18240. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18241. extra: 1582 / 1527
  18242. }
  18243. },
  18244. feral: {
  18245. height: math.unit(18, "feet"),
  18246. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18247. name: "Feral",
  18248. image: {
  18249. source: "./media/characters/aronai-sieyes/feral.svg",
  18250. extra: 1530 / 1240,
  18251. bottom: 0.035
  18252. }
  18253. },
  18254. },
  18255. [
  18256. {
  18257. name: "Micro",
  18258. height: math.unit(2, "inches")
  18259. },
  18260. {
  18261. name: "Normal",
  18262. height: math.unit(6 + 1 / 12, "feet"),
  18263. default: true
  18264. }
  18265. ]
  18266. ))
  18267. characterMakers.push(() => makeCharacter(
  18268. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18269. {
  18270. front: {
  18271. height: math.unit(12, "feet"),
  18272. weight: math.unit(410, "kg"),
  18273. name: "Front",
  18274. image: {
  18275. source: "./media/characters/xuna/front.svg",
  18276. extra: 2184 / 1980
  18277. }
  18278. },
  18279. side: {
  18280. height: math.unit(12, "feet"),
  18281. weight: math.unit(410, "kg"),
  18282. name: "Side",
  18283. image: {
  18284. source: "./media/characters/xuna/side.svg",
  18285. extra: 2184 / 1980
  18286. }
  18287. },
  18288. back: {
  18289. height: math.unit(12, "feet"),
  18290. weight: math.unit(410, "kg"),
  18291. name: "Back",
  18292. image: {
  18293. source: "./media/characters/xuna/back.svg",
  18294. extra: 2184 / 1980
  18295. }
  18296. },
  18297. },
  18298. [
  18299. {
  18300. name: "Nano glow",
  18301. height: math.unit(10, "nm")
  18302. },
  18303. {
  18304. name: "Micro floof",
  18305. height: math.unit(0.3, "m")
  18306. },
  18307. {
  18308. name: "Huggable softy boi",
  18309. height: math.unit(3.6576, "m"),
  18310. default: true
  18311. },
  18312. {
  18313. name: "Admirable floof",
  18314. height: math.unit(80, "meters")
  18315. },
  18316. {
  18317. name: "Gentle macro",
  18318. height: math.unit(300, "meters")
  18319. },
  18320. {
  18321. name: "Very careful floof",
  18322. height: math.unit(3200, "meters")
  18323. },
  18324. {
  18325. name: "The mega floof",
  18326. height: math.unit(36000, "meters")
  18327. },
  18328. {
  18329. name: "Giga-fur-Wicker",
  18330. height: math.unit(4800000, "meters")
  18331. },
  18332. {
  18333. name: "Licky world",
  18334. height: math.unit(20000000, "meters")
  18335. },
  18336. {
  18337. name: "Floofy cyan sun",
  18338. height: math.unit(1500000000, "meters")
  18339. },
  18340. {
  18341. name: "Milky Wicker",
  18342. height: math.unit(1000000000000000000000, "meters")
  18343. },
  18344. {
  18345. name: "The observing Wicker",
  18346. height: math.unit(999999999999999999999999999, "meters")
  18347. },
  18348. ]
  18349. ))
  18350. characterMakers.push(() => makeCharacter(
  18351. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18352. {
  18353. front: {
  18354. height: math.unit(5 + 9 / 12, "feet"),
  18355. weight: math.unit(150, "lb"),
  18356. name: "Front",
  18357. image: {
  18358. source: "./media/characters/arokha-sieyes/front.svg",
  18359. extra: 1425 / 1284,
  18360. bottom: 0.05
  18361. }
  18362. },
  18363. },
  18364. [
  18365. {
  18366. name: "Normal",
  18367. height: math.unit(5 + 9 / 12, "feet")
  18368. },
  18369. {
  18370. name: "Macro",
  18371. height: math.unit(30, "meters"),
  18372. default: true
  18373. },
  18374. ]
  18375. ))
  18376. characterMakers.push(() => makeCharacter(
  18377. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18378. {
  18379. front: {
  18380. height: math.unit(6, "feet"),
  18381. weight: math.unit(180, "lb"),
  18382. name: "Front",
  18383. image: {
  18384. source: "./media/characters/arokh-sieyes/front.svg",
  18385. extra: 1830 / 1769,
  18386. bottom: 0.01
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(6, "feet")
  18394. },
  18395. {
  18396. name: "Macro",
  18397. height: math.unit(30, "meters"),
  18398. default: true
  18399. },
  18400. ]
  18401. ))
  18402. characterMakers.push(() => makeCharacter(
  18403. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18404. {
  18405. side: {
  18406. height: math.unit(13 + 1 / 12, "feet"),
  18407. weight: math.unit(8.5, "tonnes"),
  18408. name: "Side",
  18409. image: {
  18410. source: "./media/characters/goldeneye/side.svg",
  18411. extra: 1182 / 778,
  18412. bottom: 0.067
  18413. }
  18414. },
  18415. paw: {
  18416. height: math.unit(3.4, "feet"),
  18417. name: "Paw",
  18418. image: {
  18419. source: "./media/characters/goldeneye/paw.svg"
  18420. }
  18421. },
  18422. },
  18423. [
  18424. {
  18425. name: "Normal",
  18426. height: math.unit(13 + 1 / 12, "feet"),
  18427. default: true
  18428. },
  18429. ]
  18430. ))
  18431. characterMakers.push(() => makeCharacter(
  18432. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18433. {
  18434. front: {
  18435. height: math.unit(6 + 1 / 12, "feet"),
  18436. weight: math.unit(210, "lb"),
  18437. name: "Front",
  18438. image: {
  18439. source: "./media/characters/leonardo-lycheborne/front.svg",
  18440. extra: 390 / 365,
  18441. bottom: 0.032
  18442. }
  18443. },
  18444. side: {
  18445. height: math.unit(6 + 1 / 12, "feet"),
  18446. weight: math.unit(210, "lb"),
  18447. name: "Side",
  18448. image: {
  18449. source: "./media/characters/leonardo-lycheborne/side.svg",
  18450. extra: 390 / 365,
  18451. bottom: 0.005
  18452. }
  18453. },
  18454. back: {
  18455. height: math.unit(6 + 1 / 12, "feet"),
  18456. weight: math.unit(210, "lb"),
  18457. name: "Back",
  18458. image: {
  18459. source: "./media/characters/leonardo-lycheborne/back.svg",
  18460. extra: 392 / 366,
  18461. bottom: 0.01
  18462. }
  18463. },
  18464. hand: {
  18465. height: math.unit(1.08, "feet"),
  18466. name: "Hand",
  18467. image: {
  18468. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18469. }
  18470. },
  18471. foot: {
  18472. height: math.unit(1.32, "feet"),
  18473. name: "Foot",
  18474. image: {
  18475. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18476. }
  18477. },
  18478. were: {
  18479. height: math.unit(20, "feet"),
  18480. weight: math.unit(7800, "lb"),
  18481. name: "Were",
  18482. image: {
  18483. source: "./media/characters/leonardo-lycheborne/were.svg",
  18484. extra: 308 / 294,
  18485. bottom: 0.048
  18486. }
  18487. },
  18488. feral: {
  18489. height: math.unit(7.5, "feet"),
  18490. weight: math.unit(600, "lb"),
  18491. name: "Feral",
  18492. image: {
  18493. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18494. extra: 210 / 186,
  18495. bottom: 0.108
  18496. }
  18497. },
  18498. taur: {
  18499. height: math.unit(11, "feet"),
  18500. weight: math.unit(3300, "lb"),
  18501. name: "Taur",
  18502. image: {
  18503. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18504. extra: 320 / 303,
  18505. bottom: 0.025
  18506. }
  18507. },
  18508. barghest: {
  18509. height: math.unit(11, "feet"),
  18510. weight: math.unit(1300, "lb"),
  18511. name: "Barghest",
  18512. image: {
  18513. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18514. extra: 323 / 302,
  18515. bottom: 0.027
  18516. }
  18517. },
  18518. dick: {
  18519. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18520. name: "Dick",
  18521. image: {
  18522. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18523. }
  18524. },
  18525. dickWere: {
  18526. height: math.unit((20) / 3.8, "feet"),
  18527. name: "Dick (Were)",
  18528. image: {
  18529. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18530. }
  18531. },
  18532. },
  18533. [
  18534. {
  18535. name: "Normal",
  18536. height: math.unit(6 + 1 / 12, "feet"),
  18537. default: true
  18538. },
  18539. ]
  18540. ))
  18541. characterMakers.push(() => makeCharacter(
  18542. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18543. {
  18544. front: {
  18545. height: math.unit(10, "feet"),
  18546. weight: math.unit(350, "lb"),
  18547. name: "Front",
  18548. image: {
  18549. source: "./media/characters/jet/front.svg",
  18550. extra: 2050 / 1980,
  18551. bottom: 0.013
  18552. }
  18553. },
  18554. back: {
  18555. height: math.unit(10, "feet"),
  18556. weight: math.unit(350, "lb"),
  18557. name: "Back",
  18558. image: {
  18559. source: "./media/characters/jet/back.svg",
  18560. extra: 2050 / 1980,
  18561. bottom: 0.013
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Micro",
  18568. height: math.unit(6, "inches")
  18569. },
  18570. {
  18571. name: "Normal",
  18572. height: math.unit(10, "feet"),
  18573. default: true
  18574. },
  18575. {
  18576. name: "Macro",
  18577. height: math.unit(100, "feet")
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18583. {
  18584. front: {
  18585. height: math.unit(15, "feet"),
  18586. weight: math.unit(2800, "lb"),
  18587. name: "Front",
  18588. image: {
  18589. source: "./media/characters/tanarath/front.svg",
  18590. extra: 2392 / 2220,
  18591. bottom: 0.03
  18592. }
  18593. },
  18594. back: {
  18595. height: math.unit(15, "feet"),
  18596. weight: math.unit(2800, "lb"),
  18597. name: "Back",
  18598. image: {
  18599. source: "./media/characters/tanarath/back.svg",
  18600. extra: 2392 / 2220,
  18601. bottom: 0.03
  18602. }
  18603. },
  18604. },
  18605. [
  18606. {
  18607. name: "Normal",
  18608. height: math.unit(15, "feet"),
  18609. default: true
  18610. },
  18611. ]
  18612. ))
  18613. characterMakers.push(() => makeCharacter(
  18614. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18615. {
  18616. front: {
  18617. height: math.unit(7 + 1 / 12, "feet"),
  18618. weight: math.unit(175, "lb"),
  18619. name: "Front",
  18620. image: {
  18621. source: "./media/characters/patty-cattybatty/front.svg",
  18622. extra: 908 / 874,
  18623. bottom: 0.025
  18624. }
  18625. },
  18626. },
  18627. [
  18628. {
  18629. name: "Micro",
  18630. height: math.unit(1, "inch")
  18631. },
  18632. {
  18633. name: "Normal",
  18634. height: math.unit(7 + 1 / 12, "feet")
  18635. },
  18636. {
  18637. name: "Mini Macro",
  18638. height: math.unit(155, "feet")
  18639. },
  18640. {
  18641. name: "Macro",
  18642. height: math.unit(1077, "feet")
  18643. },
  18644. {
  18645. name: "Mega Macro",
  18646. height: math.unit(47650, "feet"),
  18647. default: true
  18648. },
  18649. {
  18650. name: "Giga Macro",
  18651. height: math.unit(440, "miles")
  18652. },
  18653. {
  18654. name: "Tera Macro",
  18655. height: math.unit(8700, "miles")
  18656. },
  18657. {
  18658. name: "Planetary Macro",
  18659. height: math.unit(32700, "miles")
  18660. },
  18661. {
  18662. name: "Solar Macro",
  18663. height: math.unit(550000, "miles")
  18664. },
  18665. {
  18666. name: "Celestial Macro",
  18667. height: math.unit(2.5, "AU")
  18668. },
  18669. ]
  18670. ))
  18671. characterMakers.push(() => makeCharacter(
  18672. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18673. {
  18674. front: {
  18675. height: math.unit(4 + 5 / 12, "feet"),
  18676. weight: math.unit(90, "lb"),
  18677. name: "Front",
  18678. image: {
  18679. source: "./media/characters/cappu/front.svg",
  18680. extra: 1247 / 1152,
  18681. bottom: 0.012
  18682. }
  18683. },
  18684. },
  18685. [
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(4 + 5 / 12, "feet"),
  18689. default: true
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18695. {
  18696. frontDressed: {
  18697. height: math.unit(70, "cm"),
  18698. weight: math.unit(6, "kg"),
  18699. name: "Front (Dressed)",
  18700. image: {
  18701. source: "./media/characters/sebi/front-dressed.svg",
  18702. extra: 713.5 / 686.5,
  18703. bottom: 0.003
  18704. }
  18705. },
  18706. front: {
  18707. height: math.unit(70, "cm"),
  18708. weight: math.unit(5, "kg"),
  18709. name: "Front",
  18710. image: {
  18711. source: "./media/characters/sebi/front.svg",
  18712. extra: 713.5 / 686.5,
  18713. bottom: 0.003
  18714. }
  18715. }
  18716. },
  18717. [
  18718. {
  18719. name: "Normal",
  18720. height: math.unit(70, "cm"),
  18721. default: true
  18722. },
  18723. {
  18724. name: "Macro",
  18725. height: math.unit(8, "meters")
  18726. },
  18727. ]
  18728. ))
  18729. characterMakers.push(() => makeCharacter(
  18730. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18731. {
  18732. front: {
  18733. height: math.unit(6, "feet"),
  18734. weight: math.unit(150, "lb"),
  18735. name: "Front",
  18736. image: {
  18737. source: "./media/characters/typhek/front.svg",
  18738. extra: 1948 / 1929,
  18739. bottom: 0.025
  18740. }
  18741. },
  18742. side: {
  18743. height: math.unit(6, "feet"),
  18744. weight: math.unit(150, "lb"),
  18745. name: "Side",
  18746. image: {
  18747. source: "./media/characters/typhek/side.svg",
  18748. extra: 2034 / 2010,
  18749. bottom: 0.003
  18750. }
  18751. },
  18752. back: {
  18753. height: math.unit(6, "feet"),
  18754. weight: math.unit(150, "lb"),
  18755. name: "Back",
  18756. image: {
  18757. source: "./media/characters/typhek/back.svg",
  18758. extra: 2005 / 1978,
  18759. bottom: 0.004
  18760. }
  18761. },
  18762. palm: {
  18763. height: math.unit(1.2, "feet"),
  18764. name: "Palm",
  18765. image: {
  18766. source: "./media/characters/typhek/palm.svg"
  18767. }
  18768. },
  18769. fist: {
  18770. height: math.unit(1.1, "feet"),
  18771. name: "Fist",
  18772. image: {
  18773. source: "./media/characters/typhek/fist.svg"
  18774. }
  18775. },
  18776. foot: {
  18777. height: math.unit(1.57, "feet"),
  18778. name: "Foot",
  18779. image: {
  18780. source: "./media/characters/typhek/foot.svg"
  18781. }
  18782. },
  18783. sole: {
  18784. height: math.unit(2.05, "feet"),
  18785. name: "Sole",
  18786. image: {
  18787. source: "./media/characters/typhek/sole.svg"
  18788. }
  18789. },
  18790. },
  18791. [
  18792. {
  18793. name: "Macro",
  18794. height: math.unit(40, "stories"),
  18795. default: true
  18796. },
  18797. {
  18798. name: "Megamacro",
  18799. height: math.unit(1, "mile")
  18800. },
  18801. {
  18802. name: "Gigamacro",
  18803. height: math.unit(4000, "solarradii")
  18804. },
  18805. {
  18806. name: "Universal",
  18807. height: math.unit(1.1, "universes")
  18808. }
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18813. {
  18814. side: {
  18815. height: math.unit(5 + 7 / 12, "feet"),
  18816. weight: math.unit(150, "lb"),
  18817. name: "Side",
  18818. image: {
  18819. source: "./media/characters/kassy/side.svg",
  18820. extra: 1280 / 1225,
  18821. bottom: 0.002
  18822. }
  18823. },
  18824. front: {
  18825. height: math.unit(5 + 7 / 12, "feet"),
  18826. weight: math.unit(150, "lb"),
  18827. name: "Front",
  18828. image: {
  18829. source: "./media/characters/kassy/front.svg",
  18830. extra: 1280 / 1225,
  18831. bottom: 0.025
  18832. }
  18833. },
  18834. back: {
  18835. height: math.unit(5 + 7 / 12, "feet"),
  18836. weight: math.unit(150, "lb"),
  18837. name: "Back",
  18838. image: {
  18839. source: "./media/characters/kassy/back.svg",
  18840. extra: 1280 / 1225,
  18841. bottom: 0.002
  18842. }
  18843. },
  18844. foot: {
  18845. height: math.unit(1.266, "feet"),
  18846. name: "Foot",
  18847. image: {
  18848. source: "./media/characters/kassy/foot.svg"
  18849. }
  18850. },
  18851. },
  18852. [
  18853. {
  18854. name: "Normal",
  18855. height: math.unit(5 + 7 / 12, "feet")
  18856. },
  18857. {
  18858. name: "Macro",
  18859. height: math.unit(137, "feet"),
  18860. default: true
  18861. },
  18862. {
  18863. name: "Megamacro",
  18864. height: math.unit(1, "mile")
  18865. },
  18866. ]
  18867. ))
  18868. characterMakers.push(() => makeCharacter(
  18869. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18870. {
  18871. front: {
  18872. height: math.unit(6 + 1 / 12, "feet"),
  18873. weight: math.unit(200, "lb"),
  18874. name: "Front",
  18875. image: {
  18876. source: "./media/characters/neil/front.svg",
  18877. extra: 1326 / 1250,
  18878. bottom: 0.023
  18879. }
  18880. },
  18881. },
  18882. [
  18883. {
  18884. name: "Normal",
  18885. height: math.unit(6 + 1 / 12, "feet"),
  18886. default: true
  18887. },
  18888. {
  18889. name: "Macro",
  18890. height: math.unit(200, "feet")
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18896. {
  18897. front: {
  18898. height: math.unit(5 + 9 / 12, "feet"),
  18899. weight: math.unit(190, "lb"),
  18900. name: "Front",
  18901. image: {
  18902. source: "./media/characters/atticus/front.svg",
  18903. extra: 2934 / 2785,
  18904. bottom: 0.025
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Normal",
  18911. height: math.unit(5 + 9 / 12, "feet"),
  18912. default: true
  18913. },
  18914. {
  18915. name: "Macro",
  18916. height: math.unit(180, "feet")
  18917. },
  18918. ]
  18919. ))
  18920. characterMakers.push(() => makeCharacter(
  18921. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18922. {
  18923. side: {
  18924. height: math.unit(9, "feet"),
  18925. weight: math.unit(650, "lb"),
  18926. name: "Side",
  18927. image: {
  18928. source: "./media/characters/milo/side.svg",
  18929. extra: 2644 / 2310,
  18930. bottom: 0.032
  18931. }
  18932. },
  18933. },
  18934. [
  18935. {
  18936. name: "Normal",
  18937. height: math.unit(9, "feet"),
  18938. default: true
  18939. },
  18940. {
  18941. name: "Macro",
  18942. height: math.unit(300, "feet")
  18943. },
  18944. ]
  18945. ))
  18946. characterMakers.push(() => makeCharacter(
  18947. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18948. {
  18949. side: {
  18950. height: math.unit(8, "meters"),
  18951. weight: math.unit(90000, "kg"),
  18952. name: "Side",
  18953. image: {
  18954. source: "./media/characters/ijzer/side.svg",
  18955. extra: 2756 / 1600,
  18956. bottom: 0.01
  18957. }
  18958. },
  18959. },
  18960. [
  18961. {
  18962. name: "Small",
  18963. height: math.unit(3, "meters")
  18964. },
  18965. {
  18966. name: "Normal",
  18967. height: math.unit(8, "meters"),
  18968. default: true
  18969. },
  18970. {
  18971. name: "Normal+",
  18972. height: math.unit(10, "meters")
  18973. },
  18974. {
  18975. name: "Bigger",
  18976. height: math.unit(24, "meters")
  18977. },
  18978. {
  18979. name: "Huge",
  18980. height: math.unit(80, "meters")
  18981. },
  18982. ]
  18983. ))
  18984. characterMakers.push(() => makeCharacter(
  18985. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18986. {
  18987. front: {
  18988. height: math.unit(6 + 2 / 12, "feet"),
  18989. weight: math.unit(153, "lb"),
  18990. name: "Front",
  18991. image: {
  18992. source: "./media/characters/luca-cervicum/front.svg",
  18993. extra: 370 / 327,
  18994. bottom: 0.015
  18995. }
  18996. },
  18997. back: {
  18998. height: math.unit(6 + 2 / 12, "feet"),
  18999. weight: math.unit(153, "lb"),
  19000. name: "Back",
  19001. image: {
  19002. source: "./media/characters/luca-cervicum/back.svg",
  19003. extra: 367 / 333,
  19004. bottom: 0.005
  19005. }
  19006. },
  19007. frontGear: {
  19008. height: math.unit(6 + 2 / 12, "feet"),
  19009. weight: math.unit(173, "lb"),
  19010. name: "Front (Gear)",
  19011. image: {
  19012. source: "./media/characters/luca-cervicum/front-gear.svg",
  19013. extra: 377 / 333,
  19014. bottom: 0.006
  19015. }
  19016. },
  19017. },
  19018. [
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(6 + 2 / 12, "feet"),
  19022. default: true
  19023. },
  19024. ]
  19025. ))
  19026. characterMakers.push(() => makeCharacter(
  19027. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19028. {
  19029. front: {
  19030. height: math.unit(6 + 1 / 12, "feet"),
  19031. weight: math.unit(304, "lb"),
  19032. name: "Front",
  19033. image: {
  19034. source: "./media/characters/oliver/front.svg",
  19035. extra: 157 / 143,
  19036. bottom: 0.08
  19037. }
  19038. },
  19039. },
  19040. [
  19041. {
  19042. name: "Normal",
  19043. height: math.unit(6 + 1 / 12, "feet"),
  19044. default: true
  19045. },
  19046. ]
  19047. ))
  19048. characterMakers.push(() => makeCharacter(
  19049. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19050. {
  19051. front: {
  19052. height: math.unit(5 + 7 / 12, "feet"),
  19053. weight: math.unit(140, "lb"),
  19054. name: "Front",
  19055. image: {
  19056. source: "./media/characters/shane/front.svg",
  19057. extra: 304 / 289,
  19058. bottom: 0.005
  19059. }
  19060. },
  19061. },
  19062. [
  19063. {
  19064. name: "Normal",
  19065. height: math.unit(5 + 7 / 12, "feet"),
  19066. default: true
  19067. },
  19068. ]
  19069. ))
  19070. characterMakers.push(() => makeCharacter(
  19071. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19072. {
  19073. front: {
  19074. height: math.unit(5 + 9 / 12, "feet"),
  19075. weight: math.unit(178, "lb"),
  19076. name: "Front",
  19077. image: {
  19078. source: "./media/characters/shin/front.svg",
  19079. extra: 159 / 151,
  19080. bottom: 0.015
  19081. }
  19082. },
  19083. },
  19084. [
  19085. {
  19086. name: "Normal",
  19087. height: math.unit(5 + 9 / 12, "feet"),
  19088. default: true
  19089. },
  19090. ]
  19091. ))
  19092. characterMakers.push(() => makeCharacter(
  19093. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19094. {
  19095. front: {
  19096. height: math.unit(5 + 10 / 12, "feet"),
  19097. weight: math.unit(168, "lb"),
  19098. name: "Front",
  19099. image: {
  19100. source: "./media/characters/xerxes/front.svg",
  19101. extra: 282 / 260,
  19102. bottom: 0.045
  19103. }
  19104. },
  19105. },
  19106. [
  19107. {
  19108. name: "Normal",
  19109. height: math.unit(5 + 10 / 12, "feet"),
  19110. default: true
  19111. },
  19112. ]
  19113. ))
  19114. characterMakers.push(() => makeCharacter(
  19115. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19116. {
  19117. front: {
  19118. height: math.unit(6 + 7 / 12, "feet"),
  19119. weight: math.unit(208, "lb"),
  19120. name: "Front",
  19121. image: {
  19122. source: "./media/characters/chaska/front.svg",
  19123. extra: 332 / 319,
  19124. bottom: 0.015
  19125. }
  19126. },
  19127. },
  19128. [
  19129. {
  19130. name: "Normal",
  19131. height: math.unit(6 + 7 / 12, "feet"),
  19132. default: true
  19133. },
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19138. {
  19139. front: {
  19140. height: math.unit(5 + 8 / 12, "feet"),
  19141. weight: math.unit(208, "lb"),
  19142. name: "Front",
  19143. image: {
  19144. source: "./media/characters/enuk/front.svg",
  19145. extra: 437 / 406,
  19146. bottom: 0.02
  19147. }
  19148. },
  19149. },
  19150. [
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(5 + 8 / 12, "feet"),
  19154. default: true
  19155. },
  19156. ]
  19157. ))
  19158. characterMakers.push(() => makeCharacter(
  19159. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19160. {
  19161. front: {
  19162. height: math.unit(5 + 10 / 12, "feet"),
  19163. weight: math.unit(252, "lb"),
  19164. name: "Front",
  19165. image: {
  19166. source: "./media/characters/bruun/front.svg",
  19167. extra: 197 / 187,
  19168. bottom: 0.012
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Normal",
  19175. height: math.unit(5 + 10 / 12, "feet"),
  19176. default: true
  19177. },
  19178. ]
  19179. ))
  19180. characterMakers.push(() => makeCharacter(
  19181. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19182. {
  19183. front: {
  19184. height: math.unit(6 + 10 / 12, "feet"),
  19185. weight: math.unit(255, "lb"),
  19186. name: "Front",
  19187. image: {
  19188. source: "./media/characters/alexeev/front.svg",
  19189. extra: 213 / 200,
  19190. bottom: 0.05
  19191. }
  19192. },
  19193. },
  19194. [
  19195. {
  19196. name: "Normal",
  19197. height: math.unit(6 + 10 / 12, "feet"),
  19198. default: true
  19199. },
  19200. ]
  19201. ))
  19202. characterMakers.push(() => makeCharacter(
  19203. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19204. {
  19205. front: {
  19206. height: math.unit(2 + 8 / 12, "feet"),
  19207. weight: math.unit(22, "lb"),
  19208. name: "Front",
  19209. image: {
  19210. source: "./media/characters/evelyn/front.svg",
  19211. extra: 208 / 180
  19212. }
  19213. },
  19214. },
  19215. [
  19216. {
  19217. name: "Normal",
  19218. height: math.unit(2 + 8 / 12, "feet"),
  19219. default: true
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19225. {
  19226. front: {
  19227. height: math.unit(5 + 9 / 12, "feet"),
  19228. weight: math.unit(139, "lb"),
  19229. name: "Front",
  19230. image: {
  19231. source: "./media/characters/inca/front.svg",
  19232. extra: 294 / 291,
  19233. bottom: 0.03
  19234. }
  19235. },
  19236. },
  19237. [
  19238. {
  19239. name: "Normal",
  19240. height: math.unit(5 + 9 / 12, "feet"),
  19241. default: true
  19242. },
  19243. ]
  19244. ))
  19245. characterMakers.push(() => makeCharacter(
  19246. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19247. {
  19248. front: {
  19249. height: math.unit(5 + 1 / 12, "feet"),
  19250. weight: math.unit(84, "lb"),
  19251. name: "Front",
  19252. image: {
  19253. source: "./media/characters/magdalene/front.svg",
  19254. extra: 293 / 273
  19255. }
  19256. },
  19257. },
  19258. [
  19259. {
  19260. name: "Normal",
  19261. height: math.unit(5 + 1 / 12, "feet"),
  19262. default: true
  19263. },
  19264. ]
  19265. ))
  19266. characterMakers.push(() => makeCharacter(
  19267. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19268. {
  19269. front: {
  19270. height: math.unit(6 + 3 / 12, "feet"),
  19271. weight: math.unit(185, "lb"),
  19272. name: "Front",
  19273. image: {
  19274. source: "./media/characters/mera/front.svg",
  19275. extra: 291 / 277,
  19276. bottom: 0.03
  19277. }
  19278. },
  19279. },
  19280. [
  19281. {
  19282. name: "Normal",
  19283. height: math.unit(6 + 3 / 12, "feet"),
  19284. default: true
  19285. },
  19286. ]
  19287. ))
  19288. characterMakers.push(() => makeCharacter(
  19289. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19290. {
  19291. front: {
  19292. height: math.unit(6 + 7 / 12, "feet"),
  19293. weight: math.unit(160, "lb"),
  19294. name: "Front",
  19295. image: {
  19296. source: "./media/characters/ceres/front.svg",
  19297. extra: 1023 / 950,
  19298. bottom: 0.027
  19299. }
  19300. },
  19301. back: {
  19302. height: math.unit(6 + 7 / 12, "feet"),
  19303. weight: math.unit(160, "lb"),
  19304. name: "Back",
  19305. image: {
  19306. source: "./media/characters/ceres/back.svg",
  19307. extra: 1023 / 950
  19308. }
  19309. },
  19310. },
  19311. [
  19312. {
  19313. name: "Normal",
  19314. height: math.unit(6 + 7 / 12, "feet"),
  19315. default: true
  19316. },
  19317. ]
  19318. ))
  19319. characterMakers.push(() => makeCharacter(
  19320. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19321. {
  19322. front: {
  19323. height: math.unit(5 + 10 / 12, "feet"),
  19324. weight: math.unit(150, "lb"),
  19325. name: "Front",
  19326. image: {
  19327. source: "./media/characters/kris/front.svg",
  19328. extra: 885 / 803,
  19329. bottom: 0.03
  19330. }
  19331. },
  19332. },
  19333. [
  19334. {
  19335. name: "Normal",
  19336. height: math.unit(5 + 10 / 12, "feet"),
  19337. default: true
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19343. {
  19344. front: {
  19345. height: math.unit(7, "feet"),
  19346. weight: math.unit(120, "kg"),
  19347. name: "Front",
  19348. image: {
  19349. source: "./media/characters/taluthus/front.svg",
  19350. extra: 903 / 833,
  19351. bottom: 0.015
  19352. }
  19353. },
  19354. },
  19355. [
  19356. {
  19357. name: "Normal",
  19358. height: math.unit(7, "feet"),
  19359. default: true
  19360. },
  19361. {
  19362. name: "Macro",
  19363. height: math.unit(300, "feet")
  19364. },
  19365. ]
  19366. ))
  19367. characterMakers.push(() => makeCharacter(
  19368. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19369. {
  19370. front: {
  19371. height: math.unit(5 + 9 / 12, "feet"),
  19372. weight: math.unit(145, "lb"),
  19373. name: "Front",
  19374. image: {
  19375. source: "./media/characters/dawn/front.svg",
  19376. extra: 2094 / 2016,
  19377. bottom: 0.025
  19378. }
  19379. },
  19380. back: {
  19381. height: math.unit(5 + 9 / 12, "feet"),
  19382. weight: math.unit(160, "lb"),
  19383. name: "Back",
  19384. image: {
  19385. source: "./media/characters/dawn/back.svg",
  19386. extra: 2112 / 2080,
  19387. bottom: 0.005
  19388. }
  19389. },
  19390. },
  19391. [
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(6 + 7 / 12, "feet"),
  19395. default: true
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19401. {
  19402. anthro: {
  19403. height: math.unit(8 + 3 / 12, "feet"),
  19404. weight: math.unit(450, "lb"),
  19405. name: "Anthro",
  19406. image: {
  19407. source: "./media/characters/arador/anthro.svg",
  19408. extra: 1835 / 1718,
  19409. bottom: 0.025
  19410. }
  19411. },
  19412. feral: {
  19413. height: math.unit(4, "feet"),
  19414. weight: math.unit(200, "lb"),
  19415. name: "Feral",
  19416. image: {
  19417. source: "./media/characters/arador/feral.svg",
  19418. extra: 1683 / 1514,
  19419. bottom: 0.07
  19420. }
  19421. },
  19422. },
  19423. [
  19424. {
  19425. name: "Normal",
  19426. height: math.unit(8 + 3 / 12, "feet")
  19427. },
  19428. {
  19429. name: "Macro",
  19430. height: math.unit(82.5, "feet"),
  19431. default: true
  19432. },
  19433. ]
  19434. ))
  19435. characterMakers.push(() => makeCharacter(
  19436. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19437. {
  19438. front: {
  19439. height: math.unit(5 + 10 / 12, "feet"),
  19440. weight: math.unit(125, "lb"),
  19441. name: "Front",
  19442. image: {
  19443. source: "./media/characters/dharsi/front.svg",
  19444. extra: 716 / 630,
  19445. bottom: 0.035
  19446. }
  19447. },
  19448. },
  19449. [
  19450. {
  19451. name: "Nano",
  19452. height: math.unit(100, "nm")
  19453. },
  19454. {
  19455. name: "Micro",
  19456. height: math.unit(2, "inches")
  19457. },
  19458. {
  19459. name: "Normal",
  19460. height: math.unit(5 + 10 / 12, "feet"),
  19461. default: true
  19462. },
  19463. {
  19464. name: "Macro",
  19465. height: math.unit(1000, "feet")
  19466. },
  19467. {
  19468. name: "Megamacro",
  19469. height: math.unit(10, "miles")
  19470. },
  19471. {
  19472. name: "Gigamacro",
  19473. height: math.unit(3000, "miles")
  19474. },
  19475. {
  19476. name: "Teramacro",
  19477. height: math.unit(500000, "miles")
  19478. },
  19479. {
  19480. name: "Teramacro+",
  19481. height: math.unit(30, "galaxies")
  19482. },
  19483. ]
  19484. ))
  19485. characterMakers.push(() => makeCharacter(
  19486. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19487. {
  19488. front: {
  19489. height: math.unit(6, "feet"),
  19490. weight: math.unit(150, "lb"),
  19491. name: "Front",
  19492. image: {
  19493. source: "./media/characters/deathy/front.svg",
  19494. extra: 1552 / 1463,
  19495. bottom: 0.025
  19496. }
  19497. },
  19498. side: {
  19499. height: math.unit(6, "feet"),
  19500. weight: math.unit(150, "lb"),
  19501. name: "Side",
  19502. image: {
  19503. source: "./media/characters/deathy/side.svg",
  19504. extra: 1604 / 1455,
  19505. bottom: 0.025
  19506. }
  19507. },
  19508. back: {
  19509. height: math.unit(6, "feet"),
  19510. weight: math.unit(150, "lb"),
  19511. name: "Back",
  19512. image: {
  19513. source: "./media/characters/deathy/back.svg",
  19514. extra: 1580 / 1463,
  19515. bottom: 0.005
  19516. }
  19517. },
  19518. },
  19519. [
  19520. {
  19521. name: "Micro",
  19522. height: math.unit(5, "millimeters")
  19523. },
  19524. {
  19525. name: "Normal",
  19526. height: math.unit(6 + 5 / 12, "feet"),
  19527. default: true
  19528. },
  19529. ]
  19530. ))
  19531. characterMakers.push(() => makeCharacter(
  19532. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19533. {
  19534. front: {
  19535. height: math.unit(16, "feet"),
  19536. weight: math.unit(4000, "lb"),
  19537. name: "Front",
  19538. image: {
  19539. source: "./media/characters/juniper/front.svg",
  19540. bottom: 0.04
  19541. }
  19542. },
  19543. },
  19544. [
  19545. {
  19546. name: "Normal",
  19547. height: math.unit(16, "feet"),
  19548. default: true
  19549. },
  19550. ]
  19551. ))
  19552. characterMakers.push(() => makeCharacter(
  19553. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19554. {
  19555. front: {
  19556. height: math.unit(6, "feet"),
  19557. weight: math.unit(150, "lb"),
  19558. name: "Front",
  19559. image: {
  19560. source: "./media/characters/hipster/front.svg",
  19561. extra: 1312 / 1209,
  19562. bottom: 0.025
  19563. }
  19564. },
  19565. back: {
  19566. height: math.unit(6, "feet"),
  19567. weight: math.unit(150, "lb"),
  19568. name: "Back",
  19569. image: {
  19570. source: "./media/characters/hipster/back.svg",
  19571. extra: 1281 / 1196,
  19572. bottom: 0.01
  19573. }
  19574. },
  19575. },
  19576. [
  19577. {
  19578. name: "Micro",
  19579. height: math.unit(1, "mm")
  19580. },
  19581. {
  19582. name: "Normal",
  19583. height: math.unit(4, "inches"),
  19584. default: true
  19585. },
  19586. {
  19587. name: "Macro",
  19588. height: math.unit(500, "feet")
  19589. },
  19590. {
  19591. name: "Megamacro",
  19592. height: math.unit(1000, "miles")
  19593. },
  19594. ]
  19595. ))
  19596. characterMakers.push(() => makeCharacter(
  19597. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19598. {
  19599. front: {
  19600. height: math.unit(6, "feet"),
  19601. weight: math.unit(150, "lb"),
  19602. name: "Front",
  19603. image: {
  19604. source: "./media/characters/tendirmuldr/front.svg",
  19605. extra: 1878 / 1772,
  19606. bottom: 0.015
  19607. }
  19608. },
  19609. },
  19610. [
  19611. {
  19612. name: "Megamacro",
  19613. height: math.unit(1500, "miles"),
  19614. default: true
  19615. },
  19616. ]
  19617. ))
  19618. characterMakers.push(() => makeCharacter(
  19619. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19620. {
  19621. front: {
  19622. height: math.unit(14, "feet"),
  19623. weight: math.unit(12000, "lb"),
  19624. name: "Front",
  19625. image: {
  19626. source: "./media/characters/mort/front.svg",
  19627. extra: 365 / 318,
  19628. bottom: 0.01
  19629. }
  19630. },
  19631. side: {
  19632. height: math.unit(14, "feet"),
  19633. weight: math.unit(12000, "lb"),
  19634. name: "Side",
  19635. image: {
  19636. source: "./media/characters/mort/side.svg",
  19637. extra: 365 / 318,
  19638. bottom: 0.052
  19639. },
  19640. default: true
  19641. },
  19642. back: {
  19643. height: math.unit(14, "feet"),
  19644. weight: math.unit(12000, "lb"),
  19645. name: "Back",
  19646. image: {
  19647. source: "./media/characters/mort/back.svg",
  19648. extra: 371 / 332,
  19649. bottom: 0.18
  19650. }
  19651. },
  19652. },
  19653. [
  19654. {
  19655. name: "Normal",
  19656. height: math.unit(14, "feet"),
  19657. default: true
  19658. },
  19659. ]
  19660. ))
  19661. characterMakers.push(() => makeCharacter(
  19662. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19663. {
  19664. front: {
  19665. height: math.unit(8, "feet"),
  19666. weight: math.unit(1, "ton"),
  19667. name: "Front",
  19668. image: {
  19669. source: "./media/characters/lycoa/front.svg",
  19670. extra: 1875 / 1789,
  19671. bottom: 0.022
  19672. }
  19673. },
  19674. back: {
  19675. height: math.unit(8, "feet"),
  19676. weight: math.unit(1, "ton"),
  19677. name: "Back",
  19678. image: {
  19679. source: "./media/characters/lycoa/back.svg",
  19680. extra: 1835 / 1781,
  19681. bottom: 0.03
  19682. }
  19683. },
  19684. head: {
  19685. height: math.unit(2.1, "feet"),
  19686. name: "Head",
  19687. image: {
  19688. source: "./media/characters/lycoa/head.svg"
  19689. }
  19690. },
  19691. tailmaw: {
  19692. height: math.unit(1.9, "feet"),
  19693. name: "Tailmaw",
  19694. image: {
  19695. source: "./media/characters/lycoa/tailmaw.svg"
  19696. }
  19697. },
  19698. tentacles: {
  19699. height: math.unit(2.1, "feet"),
  19700. name: "Tentacles",
  19701. image: {
  19702. source: "./media/characters/lycoa/tentacles.svg"
  19703. }
  19704. },
  19705. dick: {
  19706. height: math.unit(1.73, "feet"),
  19707. name: "Dick",
  19708. image: {
  19709. source: "./media/characters/lycoa/dick.svg"
  19710. }
  19711. },
  19712. },
  19713. [
  19714. {
  19715. name: "Normal",
  19716. height: math.unit(8, "feet"),
  19717. default: true
  19718. },
  19719. {
  19720. name: "Macro",
  19721. height: math.unit(30, "feet")
  19722. },
  19723. ]
  19724. ))
  19725. characterMakers.push(() => makeCharacter(
  19726. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19727. {
  19728. front: {
  19729. height: math.unit(4 + 2 / 12, "feet"),
  19730. weight: math.unit(70, "lb"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/naldara/front.svg",
  19734. extra: 841 / 720,
  19735. bottom: 0.04
  19736. }
  19737. },
  19738. naga: {
  19739. height: math.unit(23, "feet"),
  19740. weight: math.unit(15000, "kg"),
  19741. name: "Naga",
  19742. image: {
  19743. source: "./media/characters/naldara/naga.svg",
  19744. extra: 3290 / 2959,
  19745. bottom: 124 / 3432
  19746. }
  19747. },
  19748. },
  19749. [
  19750. {
  19751. name: "Normal",
  19752. height: math.unit(4 + 2 / 12, "feet"),
  19753. default: true
  19754. },
  19755. ]
  19756. ))
  19757. characterMakers.push(() => makeCharacter(
  19758. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19759. {
  19760. front: {
  19761. height: math.unit(13 + 7 / 12, "feet"),
  19762. weight: math.unit(1500, "lb"),
  19763. name: "Front",
  19764. image: {
  19765. source: "./media/characters/briar/front.svg",
  19766. extra: 626 / 596,
  19767. bottom: 0.08
  19768. }
  19769. },
  19770. },
  19771. [
  19772. {
  19773. name: "Normal",
  19774. height: math.unit(13 + 7 / 12, "feet"),
  19775. default: true
  19776. },
  19777. ]
  19778. ))
  19779. characterMakers.push(() => makeCharacter(
  19780. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19781. {
  19782. side: {
  19783. height: math.unit(10, "feet"),
  19784. weight: math.unit(500, "lb"),
  19785. name: "Side",
  19786. image: {
  19787. source: "./media/characters/vanguard/side.svg",
  19788. extra: 502 / 425,
  19789. bottom: 0.087
  19790. }
  19791. },
  19792. },
  19793. [
  19794. {
  19795. name: "Normal",
  19796. height: math.unit(10, "feet"),
  19797. default: true
  19798. },
  19799. ]
  19800. ))
  19801. characterMakers.push(() => makeCharacter(
  19802. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19803. {
  19804. front: {
  19805. height: math.unit(7.5, "feet"),
  19806. weight: math.unit(2, "lb"),
  19807. name: "Front",
  19808. image: {
  19809. source: "./media/characters/artemis/front.svg",
  19810. extra: 1192 / 1075,
  19811. bottom: 0.07
  19812. }
  19813. },
  19814. frontNsfw: {
  19815. height: math.unit(7.5, "feet"),
  19816. weight: math.unit(2, "lb"),
  19817. name: "Front (NSFW)",
  19818. image: {
  19819. source: "./media/characters/artemis/front-nsfw.svg",
  19820. extra: 1192 / 1075,
  19821. bottom: 0.07
  19822. }
  19823. },
  19824. frontNsfwer: {
  19825. height: math.unit(7.5, "feet"),
  19826. weight: math.unit(2, "lb"),
  19827. name: "Front (NSFW-er)",
  19828. image: {
  19829. source: "./media/characters/artemis/front-nsfwer.svg",
  19830. extra: 1192 / 1075,
  19831. bottom: 0.07
  19832. }
  19833. },
  19834. side: {
  19835. height: math.unit(7.5, "feet"),
  19836. weight: math.unit(2, "lb"),
  19837. name: "Side",
  19838. image: {
  19839. source: "./media/characters/artemis/side.svg",
  19840. extra: 1192 / 1075,
  19841. bottom: 0.07
  19842. }
  19843. },
  19844. sideNsfw: {
  19845. height: math.unit(7.5, "feet"),
  19846. weight: math.unit(2, "lb"),
  19847. name: "Side (NSFW)",
  19848. image: {
  19849. source: "./media/characters/artemis/side-nsfw.svg",
  19850. extra: 1192 / 1075,
  19851. bottom: 0.07
  19852. }
  19853. },
  19854. sideNsfwer: {
  19855. height: math.unit(7.5, "feet"),
  19856. weight: math.unit(2, "lb"),
  19857. name: "Side (NSFW-er)",
  19858. image: {
  19859. source: "./media/characters/artemis/side-nsfwer.svg",
  19860. extra: 1192 / 1075,
  19861. bottom: 0.07
  19862. }
  19863. },
  19864. maw: {
  19865. height: math.unit(1.1, "feet"),
  19866. name: "Maw",
  19867. image: {
  19868. source: "./media/characters/artemis/maw.svg"
  19869. }
  19870. },
  19871. stomach: {
  19872. height: math.unit(0.95, "feet"),
  19873. name: "Stomach",
  19874. image: {
  19875. source: "./media/characters/artemis/stomach.svg"
  19876. }
  19877. },
  19878. dickCanine: {
  19879. height: math.unit(1, "feet"),
  19880. name: "Dick (Canine)",
  19881. image: {
  19882. source: "./media/characters/artemis/dick-canine.svg"
  19883. }
  19884. },
  19885. dickEquine: {
  19886. height: math.unit(0.85, "feet"),
  19887. name: "Dick (Equine)",
  19888. image: {
  19889. source: "./media/characters/artemis/dick-equine.svg"
  19890. }
  19891. },
  19892. dickExotic: {
  19893. height: math.unit(0.85, "feet"),
  19894. name: "Dick (Exotic)",
  19895. image: {
  19896. source: "./media/characters/artemis/dick-exotic.svg"
  19897. }
  19898. },
  19899. },
  19900. [
  19901. {
  19902. name: "Normal",
  19903. height: math.unit(7.5, "feet"),
  19904. default: true
  19905. },
  19906. {
  19907. name: "Enlarged",
  19908. height: math.unit(12, "feet")
  19909. },
  19910. ]
  19911. ))
  19912. characterMakers.push(() => makeCharacter(
  19913. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19914. {
  19915. front: {
  19916. height: math.unit(5 + 3 / 12, "feet"),
  19917. weight: math.unit(160, "lb"),
  19918. name: "Front",
  19919. image: {
  19920. source: "./media/characters/kira/front.svg",
  19921. extra: 906 / 786,
  19922. bottom: 0.01
  19923. }
  19924. },
  19925. back: {
  19926. height: math.unit(5 + 3 / 12, "feet"),
  19927. weight: math.unit(160, "lb"),
  19928. name: "Back",
  19929. image: {
  19930. source: "./media/characters/kira/back.svg",
  19931. extra: 882 / 757,
  19932. bottom: 0.005
  19933. }
  19934. },
  19935. frontDressed: {
  19936. height: math.unit(5 + 3 / 12, "feet"),
  19937. weight: math.unit(160, "lb"),
  19938. name: "Front (Dressed)",
  19939. image: {
  19940. source: "./media/characters/kira/front-dressed.svg",
  19941. extra: 906 / 786,
  19942. bottom: 0.01
  19943. }
  19944. },
  19945. beans: {
  19946. height: math.unit(0.92, "feet"),
  19947. name: "Beans",
  19948. image: {
  19949. source: "./media/characters/kira/beans.svg"
  19950. }
  19951. },
  19952. },
  19953. [
  19954. {
  19955. name: "Normal",
  19956. height: math.unit(5 + 3 / 12, "feet"),
  19957. default: true
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19963. {
  19964. front: {
  19965. height: math.unit(5 + 4 / 12, "feet"),
  19966. weight: math.unit(145, "lb"),
  19967. name: "Front",
  19968. image: {
  19969. source: "./media/characters/scramble/front.svg",
  19970. extra: 763 / 727,
  19971. bottom: 0.05
  19972. }
  19973. },
  19974. back: {
  19975. height: math.unit(5 + 4 / 12, "feet"),
  19976. weight: math.unit(145, "lb"),
  19977. name: "Back",
  19978. image: {
  19979. source: "./media/characters/scramble/back.svg",
  19980. extra: 826 / 737,
  19981. bottom: 0.002
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(5 + 4 / 12, "feet"),
  19989. default: true
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19995. {
  19996. side: {
  19997. height: math.unit(6 + 2 / 12, "feet"),
  19998. weight: math.unit(190, "lb"),
  19999. name: "Side",
  20000. image: {
  20001. source: "./media/characters/biscuit/side.svg",
  20002. extra: 858 / 791,
  20003. bottom: 0.044
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(6 + 2 / 12, "feet"),
  20011. default: true
  20012. },
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20017. {
  20018. front: {
  20019. height: math.unit(5 + 2 / 12, "feet"),
  20020. weight: math.unit(120, "lb"),
  20021. name: "Front",
  20022. image: {
  20023. source: "./media/characters/poffin/front.svg",
  20024. extra: 786 / 680,
  20025. bottom: 0.005
  20026. }
  20027. },
  20028. },
  20029. [
  20030. {
  20031. name: "Normal",
  20032. height: math.unit(5 + 2 / 12, "feet"),
  20033. default: true
  20034. },
  20035. ]
  20036. ))
  20037. characterMakers.push(() => makeCharacter(
  20038. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20039. {
  20040. front: {
  20041. height: math.unit(6 + 3 / 12, "feet"),
  20042. weight: math.unit(519, "lb"),
  20043. name: "Front",
  20044. image: {
  20045. source: "./media/characters/dhari/front.svg",
  20046. extra: 1048 / 946,
  20047. bottom: 0.015
  20048. }
  20049. },
  20050. back: {
  20051. height: math.unit(6 + 3 / 12, "feet"),
  20052. weight: math.unit(519, "lb"),
  20053. name: "Back",
  20054. image: {
  20055. source: "./media/characters/dhari/back.svg",
  20056. extra: 1048 / 931,
  20057. bottom: 0.005
  20058. }
  20059. },
  20060. frontDressed: {
  20061. height: math.unit(6 + 3 / 12, "feet"),
  20062. weight: math.unit(519, "lb"),
  20063. name: "Front (Dressed)",
  20064. image: {
  20065. source: "./media/characters/dhari/front-dressed.svg",
  20066. extra: 1713 / 1546,
  20067. bottom: 0.02
  20068. }
  20069. },
  20070. backDressed: {
  20071. height: math.unit(6 + 3 / 12, "feet"),
  20072. weight: math.unit(519, "lb"),
  20073. name: "Back (Dressed)",
  20074. image: {
  20075. source: "./media/characters/dhari/back-dressed.svg",
  20076. extra: 1699 / 1537,
  20077. bottom: 0.01
  20078. }
  20079. },
  20080. maw: {
  20081. height: math.unit(0.95, "feet"),
  20082. name: "Maw",
  20083. image: {
  20084. source: "./media/characters/dhari/maw.svg"
  20085. }
  20086. },
  20087. wereFront: {
  20088. height: math.unit(12 + 8 / 12, "feet"),
  20089. weight: math.unit(4000, "lb"),
  20090. name: "Front (Were)",
  20091. image: {
  20092. source: "./media/characters/dhari/were-front.svg",
  20093. extra: 1065 / 969,
  20094. bottom: 0.015
  20095. }
  20096. },
  20097. wereBack: {
  20098. height: math.unit(12 + 8 / 12, "feet"),
  20099. weight: math.unit(4000, "lb"),
  20100. name: "Back (Were)",
  20101. image: {
  20102. source: "./media/characters/dhari/were-back.svg",
  20103. extra: 1065 / 969,
  20104. bottom: 0.012
  20105. }
  20106. },
  20107. wereMaw: {
  20108. height: math.unit(0.625, "meters"),
  20109. name: "Maw (Were)",
  20110. image: {
  20111. source: "./media/characters/dhari/were-maw.svg"
  20112. }
  20113. },
  20114. },
  20115. [
  20116. {
  20117. name: "Normal",
  20118. height: math.unit(6 + 3 / 12, "feet"),
  20119. default: true
  20120. },
  20121. ]
  20122. ))
  20123. characterMakers.push(() => makeCharacter(
  20124. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20125. {
  20126. anthro: {
  20127. height: math.unit(5 + 7 / 12, "feet"),
  20128. weight: math.unit(175, "lb"),
  20129. name: "Anthro",
  20130. image: {
  20131. source: "./media/characters/rena-dyne/anthro.svg",
  20132. extra: 1849 / 1785,
  20133. bottom: 0.005
  20134. }
  20135. },
  20136. taur: {
  20137. height: math.unit(15 + 6 / 12, "feet"),
  20138. weight: math.unit(8000, "lb"),
  20139. name: "Taur",
  20140. image: {
  20141. source: "./media/characters/rena-dyne/taur.svg",
  20142. extra: 2315 / 2234,
  20143. bottom: 0.033
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Normal",
  20150. height: math.unit(5 + 7 / 12, "feet"),
  20151. default: true
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20157. {
  20158. front: {
  20159. height: math.unit(8, "feet"),
  20160. weight: math.unit(600, "lb"),
  20161. name: "Front",
  20162. image: {
  20163. source: "./media/characters/weremeep/front.svg",
  20164. extra: 967 / 862,
  20165. bottom: 0.01
  20166. }
  20167. },
  20168. },
  20169. [
  20170. {
  20171. name: "Normal",
  20172. height: math.unit(8, "feet"),
  20173. default: true
  20174. },
  20175. {
  20176. name: "Lorg",
  20177. height: math.unit(12, "feet")
  20178. },
  20179. {
  20180. name: "Oh Lawd She Comin'",
  20181. height: math.unit(20, "feet")
  20182. },
  20183. ]
  20184. ))
  20185. characterMakers.push(() => makeCharacter(
  20186. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20187. {
  20188. front: {
  20189. height: math.unit(4, "feet"),
  20190. weight: math.unit(90, "lb"),
  20191. name: "Front",
  20192. image: {
  20193. source: "./media/characters/reza/front.svg",
  20194. extra: 1183 / 1111,
  20195. bottom: 0.017
  20196. }
  20197. },
  20198. back: {
  20199. height: math.unit(4, "feet"),
  20200. weight: math.unit(90, "lb"),
  20201. name: "Back",
  20202. image: {
  20203. source: "./media/characters/reza/back.svg",
  20204. extra: 1183 / 1111,
  20205. bottom: 0.01
  20206. }
  20207. },
  20208. drake: {
  20209. height: math.unit(30, "feet"),
  20210. weight: math.unit(246960, "lb"),
  20211. name: "Drake",
  20212. image: {
  20213. source: "./media/characters/reza/drake.svg",
  20214. extra: 2350 / 2024,
  20215. bottom: 60.7 / 2403
  20216. }
  20217. },
  20218. },
  20219. [
  20220. {
  20221. name: "Normal",
  20222. height: math.unit(4, "feet"),
  20223. default: true
  20224. },
  20225. ]
  20226. ))
  20227. characterMakers.push(() => makeCharacter(
  20228. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20229. {
  20230. side: {
  20231. height: math.unit(15, "feet"),
  20232. weight: math.unit(14, "tons"),
  20233. name: "Side",
  20234. image: {
  20235. source: "./media/characters/athea/side.svg",
  20236. extra: 960 / 540,
  20237. bottom: 0.003
  20238. }
  20239. },
  20240. sitting: {
  20241. height: math.unit(6 * 2.85, "feet"),
  20242. weight: math.unit(14, "tons"),
  20243. name: "Sitting",
  20244. image: {
  20245. source: "./media/characters/athea/sitting.svg",
  20246. extra: 621 / 581,
  20247. bottom: 0.075
  20248. }
  20249. },
  20250. maw: {
  20251. height: math.unit(7.59498031496063, "feet"),
  20252. name: "Maw",
  20253. image: {
  20254. source: "./media/characters/athea/maw.svg"
  20255. }
  20256. },
  20257. },
  20258. [
  20259. {
  20260. name: "Lap Cat",
  20261. height: math.unit(2.5, "feet")
  20262. },
  20263. {
  20264. name: "Minimacro",
  20265. height: math.unit(15, "feet"),
  20266. default: true
  20267. },
  20268. {
  20269. name: "Macro",
  20270. height: math.unit(120, "feet")
  20271. },
  20272. {
  20273. name: "Macro+",
  20274. height: math.unit(640, "feet")
  20275. },
  20276. {
  20277. name: "Colossus",
  20278. height: math.unit(2.2, "miles")
  20279. },
  20280. ]
  20281. ))
  20282. characterMakers.push(() => makeCharacter(
  20283. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20284. {
  20285. front: {
  20286. height: math.unit(8 + 8 / 12, "feet"),
  20287. weight: math.unit(130, "kg"),
  20288. name: "Front",
  20289. image: {
  20290. source: "./media/characters/seroko/front.svg",
  20291. extra: 1385 / 1280,
  20292. bottom: 0.025
  20293. }
  20294. },
  20295. back: {
  20296. height: math.unit(8 + 8 / 12, "feet"),
  20297. weight: math.unit(130, "kg"),
  20298. name: "Back",
  20299. image: {
  20300. source: "./media/characters/seroko/back.svg",
  20301. extra: 1369 / 1238,
  20302. bottom: 0.018
  20303. }
  20304. },
  20305. frontDressed: {
  20306. height: math.unit(8 + 8 / 12, "feet"),
  20307. weight: math.unit(130, "kg"),
  20308. name: "Front (Dressed)",
  20309. image: {
  20310. source: "./media/characters/seroko/front-dressed.svg",
  20311. extra: 1366 / 1275,
  20312. bottom: 0.03
  20313. }
  20314. },
  20315. },
  20316. [
  20317. {
  20318. name: "Normal",
  20319. height: math.unit(8 + 8 / 12, "feet"),
  20320. default: true
  20321. },
  20322. ]
  20323. ))
  20324. characterMakers.push(() => makeCharacter(
  20325. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20326. {
  20327. front: {
  20328. height: math.unit(5.5, "feet"),
  20329. weight: math.unit(160, "lb"),
  20330. name: "Front",
  20331. image: {
  20332. source: "./media/characters/quatzi/front.svg",
  20333. extra: 2346 / 2242,
  20334. bottom: 0.015
  20335. }
  20336. },
  20337. },
  20338. [
  20339. {
  20340. name: "Normal",
  20341. height: math.unit(5.5, "feet"),
  20342. default: true
  20343. },
  20344. {
  20345. name: "Big",
  20346. height: math.unit(7.7, "feet")
  20347. },
  20348. ]
  20349. ))
  20350. characterMakers.push(() => makeCharacter(
  20351. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20352. {
  20353. front: {
  20354. height: math.unit(5 + 11 / 12, "feet"),
  20355. weight: math.unit(180, "lb"),
  20356. name: "Front",
  20357. image: {
  20358. source: "./media/characters/sen/front.svg",
  20359. extra: 1321 / 1254,
  20360. bottom: 0.015
  20361. }
  20362. },
  20363. side: {
  20364. height: math.unit(5 + 11 / 12, "feet"),
  20365. weight: math.unit(180, "lb"),
  20366. name: "Side",
  20367. image: {
  20368. source: "./media/characters/sen/side.svg",
  20369. extra: 1321 / 1254,
  20370. bottom: 0.007
  20371. }
  20372. },
  20373. back: {
  20374. height: math.unit(5 + 11 / 12, "feet"),
  20375. weight: math.unit(180, "lb"),
  20376. name: "Back",
  20377. image: {
  20378. source: "./media/characters/sen/back.svg",
  20379. extra: 1321 / 1254
  20380. }
  20381. },
  20382. },
  20383. [
  20384. {
  20385. name: "Normal",
  20386. height: math.unit(5 + 11 / 12, "feet"),
  20387. default: true
  20388. },
  20389. ]
  20390. ))
  20391. characterMakers.push(() => makeCharacter(
  20392. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20393. {
  20394. front: {
  20395. height: math.unit(166.6, "cm"),
  20396. weight: math.unit(66.6, "kg"),
  20397. name: "Front",
  20398. image: {
  20399. source: "./media/characters/fruity/front.svg",
  20400. extra: 1510 / 1386,
  20401. bottom: 0.04
  20402. }
  20403. },
  20404. back: {
  20405. height: math.unit(166.6, "cm"),
  20406. weight: math.unit(66.6, "lb"),
  20407. name: "Back",
  20408. image: {
  20409. source: "./media/characters/fruity/back.svg",
  20410. extra: 1563 / 1435,
  20411. bottom: 0.005
  20412. }
  20413. },
  20414. },
  20415. [
  20416. {
  20417. name: "Normal",
  20418. height: math.unit(166.6, "cm"),
  20419. default: true
  20420. },
  20421. {
  20422. name: "Demonic",
  20423. height: math.unit(166.6, "feet")
  20424. },
  20425. ]
  20426. ))
  20427. characterMakers.push(() => makeCharacter(
  20428. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20429. {
  20430. side: {
  20431. height: math.unit(10, "feet"),
  20432. weight: math.unit(500, "lb"),
  20433. name: "Side",
  20434. image: {
  20435. source: "./media/characters/zost/side.svg",
  20436. extra: 966 / 880,
  20437. bottom: 0.075
  20438. }
  20439. },
  20440. mawFront: {
  20441. height: math.unit(1.08, "meters"),
  20442. name: "Maw (Front)",
  20443. image: {
  20444. source: "./media/characters/zost/maw-front.svg"
  20445. }
  20446. },
  20447. mawSide: {
  20448. height: math.unit(2.66, "feet"),
  20449. name: "Maw (Side)",
  20450. image: {
  20451. source: "./media/characters/zost/maw-side.svg"
  20452. }
  20453. },
  20454. },
  20455. [
  20456. {
  20457. name: "Normal",
  20458. height: math.unit(10, "feet"),
  20459. default: true
  20460. },
  20461. ]
  20462. ))
  20463. characterMakers.push(() => makeCharacter(
  20464. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20465. {
  20466. front: {
  20467. height: math.unit(5 + 4 / 12, "feet"),
  20468. weight: math.unit(120, "lb"),
  20469. name: "Front",
  20470. image: {
  20471. source: "./media/characters/luci/front.svg",
  20472. extra: 1985 / 1884,
  20473. bottom: 0.04
  20474. }
  20475. },
  20476. back: {
  20477. height: math.unit(5 + 4 / 12, "feet"),
  20478. weight: math.unit(120, "lb"),
  20479. name: "Back",
  20480. image: {
  20481. source: "./media/characters/luci/back.svg",
  20482. extra: 1892 / 1791,
  20483. bottom: 0.002
  20484. }
  20485. },
  20486. },
  20487. [
  20488. {
  20489. name: "Normal",
  20490. height: math.unit(5 + 4 / 12, "feet"),
  20491. default: true
  20492. },
  20493. ]
  20494. ))
  20495. characterMakers.push(() => makeCharacter(
  20496. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20497. {
  20498. front: {
  20499. height: math.unit(1500, "feet"),
  20500. weight: math.unit(3.8e6, "tons"),
  20501. name: "Front",
  20502. image: {
  20503. source: "./media/characters/2th/front.svg",
  20504. extra: 3489 / 3350,
  20505. bottom: 0.1
  20506. }
  20507. },
  20508. foot: {
  20509. height: math.unit(461, "feet"),
  20510. name: "Foot",
  20511. image: {
  20512. source: "./media/characters/2th/foot.svg"
  20513. }
  20514. },
  20515. },
  20516. [
  20517. {
  20518. name: "\"Micro\"",
  20519. height: math.unit(15 + 7 / 12, "feet")
  20520. },
  20521. {
  20522. name: "Normal",
  20523. height: math.unit(1500, "feet"),
  20524. default: true
  20525. },
  20526. {
  20527. name: "Macro",
  20528. height: math.unit(5000, "feet")
  20529. },
  20530. {
  20531. name: "Megamacro",
  20532. height: math.unit(15, "miles")
  20533. },
  20534. {
  20535. name: "Gigamacro",
  20536. height: math.unit(4000, "miles")
  20537. },
  20538. {
  20539. name: "Galactic",
  20540. height: math.unit(50, "AU")
  20541. },
  20542. ]
  20543. ))
  20544. characterMakers.push(() => makeCharacter(
  20545. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20546. {
  20547. front: {
  20548. height: math.unit(5 + 6 / 12, "feet"),
  20549. weight: math.unit(220, "lb"),
  20550. name: "Front",
  20551. image: {
  20552. source: "./media/characters/amethyst/front.svg",
  20553. extra: 2078 / 2040,
  20554. bottom: 0.045
  20555. }
  20556. },
  20557. back: {
  20558. height: math.unit(5 + 6 / 12, "feet"),
  20559. weight: math.unit(220, "lb"),
  20560. name: "Back",
  20561. image: {
  20562. source: "./media/characters/amethyst/back.svg",
  20563. extra: 2021 / 1989,
  20564. bottom: 0.02
  20565. }
  20566. },
  20567. },
  20568. [
  20569. {
  20570. name: "Normal",
  20571. height: math.unit(5 + 6 / 12, "feet"),
  20572. default: true
  20573. },
  20574. ]
  20575. ))
  20576. characterMakers.push(() => makeCharacter(
  20577. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20578. {
  20579. front: {
  20580. height: math.unit(4 + 11 / 12, "feet"),
  20581. weight: math.unit(120, "lb"),
  20582. name: "Front",
  20583. image: {
  20584. source: "./media/characters/yumi-akiyama/front.svg",
  20585. extra: 1327 / 1235,
  20586. bottom: 0.02
  20587. }
  20588. },
  20589. back: {
  20590. height: math.unit(4 + 11 / 12, "feet"),
  20591. weight: math.unit(120, "lb"),
  20592. name: "Back",
  20593. image: {
  20594. source: "./media/characters/yumi-akiyama/back.svg",
  20595. extra: 1287 / 1245,
  20596. bottom: 0.002
  20597. }
  20598. },
  20599. },
  20600. [
  20601. {
  20602. name: "Galactic",
  20603. height: math.unit(50, "galaxies"),
  20604. default: true
  20605. },
  20606. {
  20607. name: "Universal",
  20608. height: math.unit(100, "universes")
  20609. },
  20610. ]
  20611. ))
  20612. characterMakers.push(() => makeCharacter(
  20613. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20614. {
  20615. front: {
  20616. height: math.unit(8, "feet"),
  20617. weight: math.unit(500, "lb"),
  20618. name: "Front",
  20619. image: {
  20620. source: "./media/characters/rifter-yrmori/front.svg",
  20621. extra: 1180 / 1125,
  20622. bottom: 0.02
  20623. }
  20624. },
  20625. back: {
  20626. height: math.unit(8, "feet"),
  20627. weight: math.unit(500, "lb"),
  20628. name: "Back",
  20629. image: {
  20630. source: "./media/characters/rifter-yrmori/back.svg",
  20631. extra: 1190 / 1145,
  20632. bottom: 0.001
  20633. }
  20634. },
  20635. wings: {
  20636. height: math.unit(7.75, "feet"),
  20637. weight: math.unit(500, "lb"),
  20638. name: "Wings",
  20639. image: {
  20640. source: "./media/characters/rifter-yrmori/wings.svg",
  20641. extra: 1357 / 1285
  20642. }
  20643. },
  20644. maw: {
  20645. height: math.unit(0.8, "feet"),
  20646. name: "Maw",
  20647. image: {
  20648. source: "./media/characters/rifter-yrmori/maw.svg"
  20649. }
  20650. },
  20651. mawfront: {
  20652. height: math.unit(1.45, "feet"),
  20653. name: "Maw (Front)",
  20654. image: {
  20655. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20656. }
  20657. },
  20658. },
  20659. [
  20660. {
  20661. name: "Normal",
  20662. height: math.unit(8, "feet"),
  20663. default: true
  20664. },
  20665. {
  20666. name: "Macro",
  20667. height: math.unit(42, "meters")
  20668. },
  20669. ]
  20670. ))
  20671. characterMakers.push(() => makeCharacter(
  20672. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20673. {
  20674. were: {
  20675. height: math.unit(25 + 6 / 12, "feet"),
  20676. weight: math.unit(10000, "lb"),
  20677. name: "Were",
  20678. image: {
  20679. source: "./media/characters/tahajin/were.svg",
  20680. extra: 801 / 770,
  20681. bottom: 0.042
  20682. }
  20683. },
  20684. aquatic: {
  20685. height: math.unit(6 + 4 / 12, "feet"),
  20686. weight: math.unit(160, "lb"),
  20687. name: "Aquatic",
  20688. image: {
  20689. source: "./media/characters/tahajin/aquatic.svg",
  20690. extra: 572 / 542,
  20691. bottom: 0.04
  20692. }
  20693. },
  20694. chow: {
  20695. height: math.unit(8 + 11 / 12, "feet"),
  20696. weight: math.unit(450, "lb"),
  20697. name: "Chow",
  20698. image: {
  20699. source: "./media/characters/tahajin/chow.svg",
  20700. extra: 660 / 640,
  20701. bottom: 0.015
  20702. }
  20703. },
  20704. demiNaga: {
  20705. height: math.unit(6 + 8 / 12, "feet"),
  20706. weight: math.unit(300, "lb"),
  20707. name: "Demi Naga",
  20708. image: {
  20709. source: "./media/characters/tahajin/demi-naga.svg",
  20710. extra: 643 / 615,
  20711. bottom: 0.1
  20712. }
  20713. },
  20714. data: {
  20715. height: math.unit(5, "inches"),
  20716. weight: math.unit(0.1, "lb"),
  20717. name: "Data",
  20718. image: {
  20719. source: "./media/characters/tahajin/data.svg"
  20720. }
  20721. },
  20722. fluu: {
  20723. height: math.unit(5 + 7 / 12, "feet"),
  20724. weight: math.unit(140, "lb"),
  20725. name: "Fluu",
  20726. image: {
  20727. source: "./media/characters/tahajin/fluu.svg",
  20728. extra: 628 / 592,
  20729. bottom: 0.02
  20730. }
  20731. },
  20732. starWarrior: {
  20733. height: math.unit(4 + 5 / 12, "feet"),
  20734. weight: math.unit(50, "lb"),
  20735. name: "Star Warrior",
  20736. image: {
  20737. source: "./media/characters/tahajin/star-warrior.svg"
  20738. }
  20739. },
  20740. },
  20741. [
  20742. {
  20743. name: "Normal",
  20744. height: math.unit(25 + 6 / 12, "feet"),
  20745. default: true
  20746. },
  20747. ]
  20748. ))
  20749. characterMakers.push(() => makeCharacter(
  20750. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20751. {
  20752. front: {
  20753. height: math.unit(8, "feet"),
  20754. weight: math.unit(350, "lb"),
  20755. name: "Front",
  20756. image: {
  20757. source: "./media/characters/gabira/front.svg",
  20758. extra: 608 / 580,
  20759. bottom: 0.03
  20760. }
  20761. },
  20762. back: {
  20763. height: math.unit(8, "feet"),
  20764. weight: math.unit(350, "lb"),
  20765. name: "Back",
  20766. image: {
  20767. source: "./media/characters/gabira/back.svg",
  20768. extra: 608 / 580,
  20769. bottom: 0.03
  20770. }
  20771. },
  20772. },
  20773. [
  20774. {
  20775. name: "Normal",
  20776. height: math.unit(8, "feet"),
  20777. default: true
  20778. },
  20779. ]
  20780. ))
  20781. characterMakers.push(() => makeCharacter(
  20782. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20783. {
  20784. front: {
  20785. height: math.unit(5 + 3 / 12, "feet"),
  20786. weight: math.unit(137, "lb"),
  20787. name: "Front",
  20788. image: {
  20789. source: "./media/characters/sasha-katraine/front.svg",
  20790. bottom: 0.045
  20791. }
  20792. },
  20793. },
  20794. [
  20795. {
  20796. name: "Micro",
  20797. height: math.unit(5, "inches")
  20798. },
  20799. {
  20800. name: "Normal",
  20801. height: math.unit(5 + 3 / 12, "feet"),
  20802. default: true
  20803. },
  20804. ]
  20805. ))
  20806. characterMakers.push(() => makeCharacter(
  20807. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20808. {
  20809. side: {
  20810. height: math.unit(4, "inches"),
  20811. weight: math.unit(200, "grams"),
  20812. name: "Side",
  20813. image: {
  20814. source: "./media/characters/der/side.svg",
  20815. extra: 719 / 400,
  20816. bottom: 30.6 / 749.9187
  20817. }
  20818. },
  20819. },
  20820. [
  20821. {
  20822. name: "Micro",
  20823. height: math.unit(4, "inches"),
  20824. default: true
  20825. },
  20826. ]
  20827. ))
  20828. characterMakers.push(() => makeCharacter(
  20829. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20830. {
  20831. side: {
  20832. height: math.unit(30, "meters"),
  20833. weight: math.unit(700, "tonnes"),
  20834. name: "Side",
  20835. image: {
  20836. source: "./media/characters/fixerdragon/side.svg",
  20837. extra: (1293.0514 - 116.03) / 1106.86,
  20838. bottom: 116.03 / 1293.0514
  20839. }
  20840. },
  20841. },
  20842. [
  20843. {
  20844. name: "Planck",
  20845. height: math.unit(1.6e-35, "meters")
  20846. },
  20847. {
  20848. name: "Micro",
  20849. height: math.unit(0.4, "meters")
  20850. },
  20851. {
  20852. name: "Normal",
  20853. height: math.unit(30, "meters"),
  20854. default: true
  20855. },
  20856. {
  20857. name: "Megamacro",
  20858. height: math.unit(1.2, "megameters")
  20859. },
  20860. {
  20861. name: "Teramacro",
  20862. height: math.unit(130, "terameters")
  20863. },
  20864. {
  20865. name: "Yottamacro",
  20866. height: math.unit(6200, "yottameters")
  20867. },
  20868. ]
  20869. ));
  20870. characterMakers.push(() => makeCharacter(
  20871. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20872. {
  20873. front: {
  20874. height: math.unit(8, "feet"),
  20875. weight: math.unit(250, "lb"),
  20876. name: "Front",
  20877. image: {
  20878. source: "./media/characters/kite/front.svg",
  20879. extra: 2796 / 2659,
  20880. bottom: 0.002
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Normal",
  20887. height: math.unit(8, "feet"),
  20888. default: true
  20889. },
  20890. {
  20891. name: "Macro",
  20892. height: math.unit(360, "feet")
  20893. },
  20894. {
  20895. name: "Megamacro",
  20896. height: math.unit(1500, "feet")
  20897. },
  20898. ]
  20899. ))
  20900. characterMakers.push(() => makeCharacter(
  20901. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20902. {
  20903. front: {
  20904. height: math.unit(5 + 10 / 12, "feet"),
  20905. weight: math.unit(150, "lb"),
  20906. name: "Front",
  20907. image: {
  20908. source: "./media/characters/poojawa-vynar/front.svg",
  20909. extra: (1506.1547 - 55) / 1356.6,
  20910. bottom: 55 / 1506.1547
  20911. }
  20912. },
  20913. frontTailless: {
  20914. height: math.unit(5 + 10 / 12, "feet"),
  20915. weight: math.unit(150, "lb"),
  20916. name: "Front (Tailless)",
  20917. image: {
  20918. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20919. extra: (1506.1547 - 55) / 1356.6,
  20920. bottom: 55 / 1506.1547
  20921. }
  20922. },
  20923. },
  20924. [
  20925. {
  20926. name: "Normal",
  20927. height: math.unit(5 + 10 / 12, "feet"),
  20928. default: true
  20929. },
  20930. ]
  20931. ))
  20932. characterMakers.push(() => makeCharacter(
  20933. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20934. {
  20935. front: {
  20936. height: math.unit(293, "meters"),
  20937. weight: math.unit(70400, "tons"),
  20938. name: "Front",
  20939. image: {
  20940. source: "./media/characters/violette/front.svg",
  20941. extra: 1227 / 1180,
  20942. bottom: 0.005
  20943. }
  20944. },
  20945. back: {
  20946. height: math.unit(293, "meters"),
  20947. weight: math.unit(70400, "tons"),
  20948. name: "Back",
  20949. image: {
  20950. source: "./media/characters/violette/back.svg",
  20951. extra: 1227 / 1180,
  20952. bottom: 0.005
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Macro",
  20959. height: math.unit(293, "meters"),
  20960. default: true
  20961. },
  20962. ]
  20963. ))
  20964. characterMakers.push(() => makeCharacter(
  20965. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20966. {
  20967. front: {
  20968. height: math.unit(1050, "feet"),
  20969. weight: math.unit(200000, "tons"),
  20970. name: "Front",
  20971. image: {
  20972. source: "./media/characters/alessandra/front.svg",
  20973. extra: 960 / 912,
  20974. bottom: 0.06
  20975. }
  20976. },
  20977. },
  20978. [
  20979. {
  20980. name: "Macro",
  20981. height: math.unit(1050, "feet")
  20982. },
  20983. {
  20984. name: "Macro+",
  20985. height: math.unit(900, "meters"),
  20986. default: true
  20987. },
  20988. ]
  20989. ))
  20990. characterMakers.push(() => makeCharacter(
  20991. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20992. {
  20993. front: {
  20994. height: math.unit(5, "feet"),
  20995. weight: math.unit(187, "lb"),
  20996. name: "Front",
  20997. image: {
  20998. source: "./media/characters/person/front.svg",
  20999. extra: 3087 / 2945,
  21000. bottom: 91 / 3181
  21001. }
  21002. },
  21003. },
  21004. [
  21005. {
  21006. name: "Micro",
  21007. height: math.unit(3, "inches")
  21008. },
  21009. {
  21010. name: "Normal",
  21011. height: math.unit(5, "feet"),
  21012. default: true
  21013. },
  21014. {
  21015. name: "Macro",
  21016. height: math.unit(90, "feet")
  21017. },
  21018. {
  21019. name: "Max Size",
  21020. height: math.unit(280, "feet")
  21021. },
  21022. ]
  21023. ))
  21024. characterMakers.push(() => makeCharacter(
  21025. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21026. {
  21027. front: {
  21028. height: math.unit(4.5, "meters"),
  21029. weight: math.unit(3200, "lb"),
  21030. name: "Front",
  21031. image: {
  21032. source: "./media/characters/ty/front.svg",
  21033. extra: 1038 / 960,
  21034. bottom: 31.156 / 1068
  21035. }
  21036. },
  21037. back: {
  21038. height: math.unit(4.5, "meters"),
  21039. weight: math.unit(3200, "lb"),
  21040. name: "Back",
  21041. image: {
  21042. source: "./media/characters/ty/back.svg",
  21043. extra: 1044 / 966,
  21044. bottom: 7.48 / 1049
  21045. }
  21046. },
  21047. },
  21048. [
  21049. {
  21050. name: "Normal",
  21051. height: math.unit(4.5, "meters"),
  21052. default: true
  21053. },
  21054. ]
  21055. ))
  21056. characterMakers.push(() => makeCharacter(
  21057. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21058. {
  21059. front: {
  21060. height: math.unit(5 + 4 / 12, "feet"),
  21061. weight: math.unit(115, "lb"),
  21062. name: "Front",
  21063. image: {
  21064. source: "./media/characters/rocky/front.svg",
  21065. extra: 1012 / 975,
  21066. bottom: 54 / 1066
  21067. }
  21068. },
  21069. },
  21070. [
  21071. {
  21072. name: "Normal",
  21073. height: math.unit(5 + 4 / 12, "feet"),
  21074. default: true
  21075. },
  21076. ]
  21077. ))
  21078. characterMakers.push(() => makeCharacter(
  21079. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21080. {
  21081. upright: {
  21082. height: math.unit(6, "meters"),
  21083. weight: math.unit(4000, "kg"),
  21084. name: "Upright",
  21085. image: {
  21086. source: "./media/characters/ruin/upright.svg",
  21087. extra: 668 / 661,
  21088. bottom: 42 / 799.8396
  21089. }
  21090. },
  21091. },
  21092. [
  21093. {
  21094. name: "Normal",
  21095. height: math.unit(6, "meters"),
  21096. default: true
  21097. },
  21098. ]
  21099. ))
  21100. characterMakers.push(() => makeCharacter(
  21101. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21102. {
  21103. front: {
  21104. height: math.unit(5, "feet"),
  21105. weight: math.unit(106, "lb"),
  21106. name: "Front",
  21107. image: {
  21108. source: "./media/characters/robin/front.svg",
  21109. extra: 862 / 799,
  21110. bottom: 42.4 / 914.8856
  21111. }
  21112. },
  21113. },
  21114. [
  21115. {
  21116. name: "Normal",
  21117. height: math.unit(5, "feet"),
  21118. default: true
  21119. },
  21120. ]
  21121. ))
  21122. characterMakers.push(() => makeCharacter(
  21123. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21124. {
  21125. side: {
  21126. height: math.unit(3, "feet"),
  21127. weight: math.unit(225, "lb"),
  21128. name: "Side",
  21129. image: {
  21130. source: "./media/characters/saian/side.svg",
  21131. extra: 566 / 356,
  21132. bottom: 79.7 / 643
  21133. }
  21134. },
  21135. maw: {
  21136. height: math.unit(2.85, "feet"),
  21137. name: "Maw",
  21138. image: {
  21139. source: "./media/characters/saian/maw.svg"
  21140. }
  21141. },
  21142. },
  21143. [
  21144. {
  21145. name: "Normal",
  21146. height: math.unit(3, "feet"),
  21147. default: true
  21148. },
  21149. ]
  21150. ))
  21151. characterMakers.push(() => makeCharacter(
  21152. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21153. {
  21154. side: {
  21155. height: math.unit(8, "feet"),
  21156. weight: math.unit(300, "lb"),
  21157. name: "Side",
  21158. image: {
  21159. source: "./media/characters/equus-silvermane/side.svg",
  21160. extra: 2176 / 2050,
  21161. bottom: 65.7 / 2245
  21162. }
  21163. },
  21164. front: {
  21165. height: math.unit(8, "feet"),
  21166. weight: math.unit(300, "lb"),
  21167. name: "Front",
  21168. image: {
  21169. source: "./media/characters/equus-silvermane/front.svg",
  21170. extra: 4633 / 4400,
  21171. bottom: 71.3 / 4706.915
  21172. }
  21173. },
  21174. sideStepping: {
  21175. height: math.unit(8, "feet"),
  21176. weight: math.unit(300, "lb"),
  21177. name: "Side (Stepping)",
  21178. image: {
  21179. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21180. extra: 1968 / 1860,
  21181. bottom: 16.4 / 1989
  21182. }
  21183. },
  21184. },
  21185. [
  21186. {
  21187. name: "Normal",
  21188. height: math.unit(8, "feet")
  21189. },
  21190. {
  21191. name: "Minimacro",
  21192. height: math.unit(75, "feet"),
  21193. default: true
  21194. },
  21195. {
  21196. name: "Macro",
  21197. height: math.unit(150, "feet")
  21198. },
  21199. {
  21200. name: "Macro+",
  21201. height: math.unit(1000, "feet")
  21202. },
  21203. {
  21204. name: "Megamacro",
  21205. height: math.unit(1, "mile")
  21206. },
  21207. ]
  21208. ))
  21209. characterMakers.push(() => makeCharacter(
  21210. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21211. {
  21212. side: {
  21213. height: math.unit(20, "feet"),
  21214. weight: math.unit(30000, "kg"),
  21215. name: "Side",
  21216. image: {
  21217. source: "./media/characters/windar/side.svg",
  21218. extra: 1491 / 1248,
  21219. bottom: 82.56 / 1568
  21220. }
  21221. },
  21222. },
  21223. [
  21224. {
  21225. name: "Normal",
  21226. height: math.unit(20, "feet"),
  21227. default: true
  21228. },
  21229. ]
  21230. ))
  21231. characterMakers.push(() => makeCharacter(
  21232. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21233. {
  21234. side: {
  21235. height: math.unit(15.66, "feet"),
  21236. weight: math.unit(150, "lb"),
  21237. name: "Side",
  21238. image: {
  21239. source: "./media/characters/melody/side.svg",
  21240. extra: 1097 / 944,
  21241. bottom: 11.8 / 1109
  21242. }
  21243. },
  21244. sideOutfit: {
  21245. height: math.unit(15.66, "feet"),
  21246. weight: math.unit(150, "lb"),
  21247. name: "Side (Outfit)",
  21248. image: {
  21249. source: "./media/characters/melody/side-outfit.svg",
  21250. extra: 1097 / 944,
  21251. bottom: 11.8 / 1109
  21252. }
  21253. },
  21254. },
  21255. [
  21256. {
  21257. name: "Normal",
  21258. height: math.unit(15.66, "feet"),
  21259. default: true
  21260. },
  21261. ]
  21262. ))
  21263. characterMakers.push(() => makeCharacter(
  21264. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21265. {
  21266. front: {
  21267. height: math.unit(8, "feet"),
  21268. weight: math.unit(325, "lb"),
  21269. name: "Front",
  21270. image: {
  21271. source: "./media/characters/windera/front.svg",
  21272. extra: 3180 / 2845,
  21273. bottom: 178 / 3365
  21274. }
  21275. },
  21276. },
  21277. [
  21278. {
  21279. name: "Normal",
  21280. height: math.unit(8, "feet"),
  21281. default: true
  21282. },
  21283. ]
  21284. ))
  21285. characterMakers.push(() => makeCharacter(
  21286. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21287. {
  21288. front: {
  21289. height: math.unit(28.75, "feet"),
  21290. weight: math.unit(2000, "kg"),
  21291. name: "Front",
  21292. image: {
  21293. source: "./media/characters/sonear/front.svg",
  21294. extra: 1041.1 / 964.9,
  21295. bottom: 53.7 / 1096.6
  21296. }
  21297. },
  21298. },
  21299. [
  21300. {
  21301. name: "Normal",
  21302. height: math.unit(28.75, "feet"),
  21303. default: true
  21304. },
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21309. {
  21310. side: {
  21311. height: math.unit(25.5, "feet"),
  21312. weight: math.unit(23000, "kg"),
  21313. name: "Side",
  21314. image: {
  21315. source: "./media/characters/kanara/side.svg"
  21316. }
  21317. },
  21318. },
  21319. [
  21320. {
  21321. name: "Normal",
  21322. height: math.unit(25.5, "feet"),
  21323. default: true
  21324. },
  21325. ]
  21326. ))
  21327. characterMakers.push(() => makeCharacter(
  21328. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21329. {
  21330. side: {
  21331. height: math.unit(10, "feet"),
  21332. weight: math.unit(1000, "kg"),
  21333. name: "Side",
  21334. image: {
  21335. source: "./media/characters/ereus/side.svg",
  21336. extra: 1157 / 959,
  21337. bottom: 153 / 1312.5
  21338. }
  21339. },
  21340. },
  21341. [
  21342. {
  21343. name: "Normal",
  21344. height: math.unit(10, "feet"),
  21345. default: true
  21346. },
  21347. ]
  21348. ))
  21349. characterMakers.push(() => makeCharacter(
  21350. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21351. {
  21352. side: {
  21353. height: math.unit(4.5, "feet"),
  21354. weight: math.unit(500, "lb"),
  21355. name: "Side",
  21356. image: {
  21357. source: "./media/characters/e-ter/side.svg",
  21358. extra: 1550 / 1248,
  21359. bottom: 146 / 1694
  21360. }
  21361. },
  21362. },
  21363. [
  21364. {
  21365. name: "Normal",
  21366. height: math.unit(4.5, "feet"),
  21367. default: true
  21368. },
  21369. ]
  21370. ))
  21371. characterMakers.push(() => makeCharacter(
  21372. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21373. {
  21374. side: {
  21375. height: math.unit(9.7, "feet"),
  21376. weight: math.unit(4000, "kg"),
  21377. name: "Side",
  21378. image: {
  21379. source: "./media/characters/yamie/side.svg"
  21380. }
  21381. },
  21382. },
  21383. [
  21384. {
  21385. name: "Normal",
  21386. height: math.unit(9.7, "feet"),
  21387. default: true
  21388. },
  21389. ]
  21390. ))
  21391. characterMakers.push(() => makeCharacter(
  21392. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21393. {
  21394. front: {
  21395. height: math.unit(50, "feet"),
  21396. weight: math.unit(50000, "kg"),
  21397. name: "Front",
  21398. image: {
  21399. source: "./media/characters/anders/front.svg",
  21400. extra: 570 / 539,
  21401. bottom: 14.7 / 586.7
  21402. }
  21403. },
  21404. },
  21405. [
  21406. {
  21407. name: "Large",
  21408. height: math.unit(50, "feet")
  21409. },
  21410. {
  21411. name: "Macro",
  21412. height: math.unit(2000, "feet"),
  21413. default: true
  21414. },
  21415. {
  21416. name: "Megamacro",
  21417. height: math.unit(12, "miles")
  21418. },
  21419. ]
  21420. ))
  21421. characterMakers.push(() => makeCharacter(
  21422. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21423. {
  21424. front: {
  21425. height: math.unit(7 + 2 / 12, "feet"),
  21426. weight: math.unit(300, "lb"),
  21427. name: "Front",
  21428. image: {
  21429. source: "./media/characters/reban/front.svg",
  21430. extra: 516 / 487,
  21431. bottom: 42.82 / 558.356
  21432. }
  21433. },
  21434. dick: {
  21435. height: math.unit(7 / 5, "feet"),
  21436. name: "Dick",
  21437. image: {
  21438. source: "./media/characters/reban/dick.svg"
  21439. }
  21440. },
  21441. },
  21442. [
  21443. {
  21444. name: "Natural Height",
  21445. height: math.unit(7 + 2 / 12, "feet")
  21446. },
  21447. {
  21448. name: "Macro",
  21449. height: math.unit(500, "feet"),
  21450. default: true
  21451. },
  21452. {
  21453. name: "Canon Height",
  21454. height: math.unit(50, "AU")
  21455. },
  21456. ]
  21457. ))
  21458. characterMakers.push(() => makeCharacter(
  21459. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21460. {
  21461. front: {
  21462. height: math.unit(6, "feet"),
  21463. weight: math.unit(150, "lb"),
  21464. name: "Front",
  21465. image: {
  21466. source: "./media/characters/terrance-keayes/front.svg",
  21467. extra: 1.005,
  21468. bottom: 151 / 1615
  21469. }
  21470. },
  21471. side: {
  21472. height: math.unit(6, "feet"),
  21473. weight: math.unit(150, "lb"),
  21474. name: "Side",
  21475. image: {
  21476. source: "./media/characters/terrance-keayes/side.svg",
  21477. extra: 1.005,
  21478. bottom: 129.4 / 1544
  21479. }
  21480. },
  21481. back: {
  21482. height: math.unit(6, "feet"),
  21483. weight: math.unit(150, "lb"),
  21484. name: "Back",
  21485. image: {
  21486. source: "./media/characters/terrance-keayes/back.svg",
  21487. extra: 1.005,
  21488. bottom: 58.4 / 1557.3
  21489. }
  21490. },
  21491. dick: {
  21492. height: math.unit(6 * 0.208, "feet"),
  21493. name: "Dick",
  21494. image: {
  21495. source: "./media/characters/terrance-keayes/dick.svg"
  21496. }
  21497. },
  21498. },
  21499. [
  21500. {
  21501. name: "Canon Height",
  21502. height: math.unit(35, "miles"),
  21503. default: true
  21504. },
  21505. ]
  21506. ))
  21507. characterMakers.push(() => makeCharacter(
  21508. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21509. {
  21510. front: {
  21511. height: math.unit(6, "feet"),
  21512. weight: math.unit(150, "lb"),
  21513. name: "Front",
  21514. image: {
  21515. source: "./media/characters/ofelia/front.svg",
  21516. extra: 546 / 541,
  21517. bottom: 39 / 583
  21518. }
  21519. },
  21520. back: {
  21521. height: math.unit(6, "feet"),
  21522. weight: math.unit(150, "lb"),
  21523. name: "Back",
  21524. image: {
  21525. source: "./media/characters/ofelia/back.svg",
  21526. extra: 564 / 559.5,
  21527. bottom: 8.69 / 573.02
  21528. }
  21529. },
  21530. maw: {
  21531. height: math.unit(1, "feet"),
  21532. name: "Maw",
  21533. image: {
  21534. source: "./media/characters/ofelia/maw.svg"
  21535. }
  21536. },
  21537. foot: {
  21538. height: math.unit(1.949, "feet"),
  21539. name: "Foot",
  21540. image: {
  21541. source: "./media/characters/ofelia/foot.svg"
  21542. }
  21543. },
  21544. },
  21545. [
  21546. {
  21547. name: "Canon Height",
  21548. height: math.unit(2000, "miles"),
  21549. default: true
  21550. },
  21551. ]
  21552. ))
  21553. characterMakers.push(() => makeCharacter(
  21554. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21555. {
  21556. front: {
  21557. height: math.unit(6, "feet"),
  21558. weight: math.unit(150, "lb"),
  21559. name: "Front",
  21560. image: {
  21561. source: "./media/characters/samuel/front.svg",
  21562. extra: 265 / 258,
  21563. bottom: 2 / 266.1566
  21564. }
  21565. },
  21566. },
  21567. [
  21568. {
  21569. name: "Macro",
  21570. height: math.unit(100, "feet"),
  21571. default: true
  21572. },
  21573. {
  21574. name: "Full Size",
  21575. height: math.unit(1000, "miles")
  21576. },
  21577. ]
  21578. ))
  21579. characterMakers.push(() => makeCharacter(
  21580. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21581. {
  21582. front: {
  21583. height: math.unit(6, "feet"),
  21584. weight: math.unit(300, "lb"),
  21585. name: "Front",
  21586. image: {
  21587. source: "./media/characters/beishir-kiel/front.svg",
  21588. extra: 569 / 547,
  21589. bottom: 41.9 / 609
  21590. }
  21591. },
  21592. maw: {
  21593. height: math.unit(6 * 0.202, "feet"),
  21594. name: "Maw",
  21595. image: {
  21596. source: "./media/characters/beishir-kiel/maw.svg"
  21597. }
  21598. },
  21599. },
  21600. [
  21601. {
  21602. name: "Macro",
  21603. height: math.unit(300, "feet"),
  21604. default: true
  21605. },
  21606. ]
  21607. ))
  21608. characterMakers.push(() => makeCharacter(
  21609. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21610. {
  21611. front: {
  21612. height: math.unit(5 + 8 / 12, "feet"),
  21613. weight: math.unit(120, "lb"),
  21614. name: "Front",
  21615. image: {
  21616. source: "./media/characters/logan-grey/front.svg",
  21617. extra: 2539 / 2393,
  21618. bottom: 97.6 / 2636.37
  21619. }
  21620. },
  21621. frontAlt: {
  21622. height: math.unit(5 + 8 / 12, "feet"),
  21623. weight: math.unit(120, "lb"),
  21624. name: "Front (Alt)",
  21625. image: {
  21626. source: "./media/characters/logan-grey/front-alt.svg",
  21627. extra: 958 / 893,
  21628. bottom: 15 / 970.768
  21629. }
  21630. },
  21631. back: {
  21632. height: math.unit(5 + 8 / 12, "feet"),
  21633. weight: math.unit(120, "lb"),
  21634. name: "Back",
  21635. image: {
  21636. source: "./media/characters/logan-grey/back.svg",
  21637. extra: 958 / 893,
  21638. bottom: 2.1881 / 970.9788
  21639. }
  21640. },
  21641. dick: {
  21642. height: math.unit(1.437, "feet"),
  21643. name: "Dick",
  21644. image: {
  21645. source: "./media/characters/logan-grey/dick.svg"
  21646. }
  21647. },
  21648. },
  21649. [
  21650. {
  21651. name: "Normal",
  21652. height: math.unit(5 + 8 / 12, "feet")
  21653. },
  21654. {
  21655. name: "The 500 Foot Femboy",
  21656. height: math.unit(500, "feet"),
  21657. default: true
  21658. },
  21659. {
  21660. name: "Megmacro",
  21661. height: math.unit(20, "miles")
  21662. },
  21663. ]
  21664. ))
  21665. characterMakers.push(() => makeCharacter(
  21666. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21667. {
  21668. front: {
  21669. height: math.unit(8 + 2 / 12, "feet"),
  21670. weight: math.unit(275, "lb"),
  21671. name: "Front",
  21672. image: {
  21673. source: "./media/characters/draganta/front.svg",
  21674. extra: 1177 / 1135,
  21675. bottom: 33.46 / 1212.1
  21676. }
  21677. },
  21678. },
  21679. [
  21680. {
  21681. name: "Normal",
  21682. height: math.unit(8 + 6 / 12, "feet"),
  21683. default: true
  21684. },
  21685. {
  21686. name: "Macro",
  21687. height: math.unit(150, "feet")
  21688. },
  21689. {
  21690. name: "Megamacro",
  21691. height: math.unit(1000, "miles")
  21692. },
  21693. ]
  21694. ))
  21695. characterMakers.push(() => makeCharacter(
  21696. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21697. {
  21698. front: {
  21699. height: math.unit(1.72, "m"),
  21700. weight: math.unit(80, "lb"),
  21701. name: "Front",
  21702. image: {
  21703. source: "./media/characters/voski/front.svg",
  21704. extra: 2076.22 / 2022.4,
  21705. bottom: 102.7 / 2177.3866
  21706. }
  21707. },
  21708. frontNsfw: {
  21709. height: math.unit(1.72, "m"),
  21710. weight: math.unit(80, "lb"),
  21711. name: "Front (NSFW)",
  21712. image: {
  21713. source: "./media/characters/voski/front-nsfw.svg",
  21714. extra: 2076.22 / 2022.4,
  21715. bottom: 102.7 / 2177.3866
  21716. }
  21717. },
  21718. back: {
  21719. height: math.unit(1.72, "m"),
  21720. weight: math.unit(80, "lb"),
  21721. name: "Back",
  21722. image: {
  21723. source: "./media/characters/voski/back.svg",
  21724. extra: 2104 / 2051,
  21725. bottom: 10.45 / 2113.63
  21726. }
  21727. },
  21728. },
  21729. [
  21730. {
  21731. name: "Normal",
  21732. height: math.unit(1.72, "m")
  21733. },
  21734. {
  21735. name: "Macro",
  21736. height: math.unit(55, "m"),
  21737. default: true
  21738. },
  21739. {
  21740. name: "Macro+",
  21741. height: math.unit(300, "m")
  21742. },
  21743. {
  21744. name: "Macro++",
  21745. height: math.unit(700, "m")
  21746. },
  21747. {
  21748. name: "Macro+++",
  21749. height: math.unit(4500, "m")
  21750. },
  21751. {
  21752. name: "Macro++++",
  21753. height: math.unit(45, "km")
  21754. },
  21755. {
  21756. name: "Macro+++++",
  21757. height: math.unit(1220, "km")
  21758. },
  21759. ]
  21760. ))
  21761. characterMakers.push(() => makeCharacter(
  21762. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21763. {
  21764. front: {
  21765. height: math.unit(2.3, "m"),
  21766. weight: math.unit(304, "kg"),
  21767. name: "Front",
  21768. image: {
  21769. source: "./media/characters/icowom-lee/front.svg",
  21770. extra: 985 / 955,
  21771. bottom: 25.4 / 1012
  21772. }
  21773. },
  21774. fronttentacles: {
  21775. height: math.unit(2.3, "m"),
  21776. weight: math.unit(304, "kg"),
  21777. name: "Front-tentacles",
  21778. image: {
  21779. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21780. extra: 985 / 955,
  21781. bottom: 25.4 / 1012
  21782. }
  21783. },
  21784. back: {
  21785. height: math.unit(2.3, "m"),
  21786. weight: math.unit(304, "kg"),
  21787. name: "Back",
  21788. image: {
  21789. source: "./media/characters/icowom-lee/back.svg",
  21790. extra: 975 / 954,
  21791. bottom: 9.5 / 985
  21792. }
  21793. },
  21794. backtentacles: {
  21795. height: math.unit(2.3, "m"),
  21796. weight: math.unit(304, "kg"),
  21797. name: "Back-tentacles",
  21798. image: {
  21799. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21800. extra: 975 / 954,
  21801. bottom: 9.5 / 985
  21802. }
  21803. },
  21804. frontDressed: {
  21805. height: math.unit(2.3, "m"),
  21806. weight: math.unit(304, "kg"),
  21807. name: "Front (Dressed)",
  21808. image: {
  21809. source: "./media/characters/icowom-lee/front-dressed.svg",
  21810. extra: 3076 / 2933,
  21811. bottom: 51.4 / 3125.1889
  21812. }
  21813. },
  21814. rump: {
  21815. height: math.unit(0.776, "meters"),
  21816. name: "Rump",
  21817. image: {
  21818. source: "./media/characters/icowom-lee/rump.svg"
  21819. }
  21820. },
  21821. genitals: {
  21822. height: math.unit(0.78, "meters"),
  21823. name: "Genitals",
  21824. image: {
  21825. source: "./media/characters/icowom-lee/genitals.svg"
  21826. }
  21827. },
  21828. },
  21829. [
  21830. {
  21831. name: "Normal",
  21832. height: math.unit(2.3, "meters"),
  21833. default: true
  21834. },
  21835. {
  21836. name: "Macro",
  21837. height: math.unit(94, "meters"),
  21838. default: true
  21839. },
  21840. ]
  21841. ))
  21842. characterMakers.push(() => makeCharacter(
  21843. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21844. {
  21845. front: {
  21846. height: math.unit(22, "meters"),
  21847. weight: math.unit(21000, "kg"),
  21848. name: "Front",
  21849. image: {
  21850. source: "./media/characters/shock-diamond/front.svg",
  21851. extra: 2204 / 2053,
  21852. bottom: 65 / 2239.47
  21853. }
  21854. },
  21855. frontNude: {
  21856. height: math.unit(22, "meters"),
  21857. weight: math.unit(21000, "kg"),
  21858. name: "Front (Nude)",
  21859. image: {
  21860. source: "./media/characters/shock-diamond/front-nude.svg",
  21861. extra: 2514 / 2285,
  21862. bottom: 13 / 2527.56
  21863. }
  21864. },
  21865. },
  21866. [
  21867. {
  21868. name: "Normal",
  21869. height: math.unit(3, "meters")
  21870. },
  21871. {
  21872. name: "Macro",
  21873. height: math.unit(22, "meters"),
  21874. default: true
  21875. },
  21876. ]
  21877. ))
  21878. characterMakers.push(() => makeCharacter(
  21879. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21880. {
  21881. front: {
  21882. height: math.unit(5 + 4 / 12, "feet"),
  21883. weight: math.unit(120, "lb"),
  21884. name: "Front",
  21885. image: {
  21886. source: "./media/characters/rory/front.svg",
  21887. extra: 589 / 556,
  21888. bottom: 45.7 / 635.76
  21889. }
  21890. },
  21891. frontNude: {
  21892. height: math.unit(5 + 4 / 12, "feet"),
  21893. weight: math.unit(120, "lb"),
  21894. name: "Front (Nude)",
  21895. image: {
  21896. source: "./media/characters/rory/front-nude.svg",
  21897. extra: 589 / 556,
  21898. bottom: 45.7 / 635.76
  21899. }
  21900. },
  21901. side: {
  21902. height: math.unit(5 + 4 / 12, "feet"),
  21903. weight: math.unit(120, "lb"),
  21904. name: "Side",
  21905. image: {
  21906. source: "./media/characters/rory/side.svg",
  21907. extra: 597 / 564,
  21908. bottom: 55 / 653
  21909. }
  21910. },
  21911. back: {
  21912. height: math.unit(5 + 4 / 12, "feet"),
  21913. weight: math.unit(120, "lb"),
  21914. name: "Back",
  21915. image: {
  21916. source: "./media/characters/rory/back.svg",
  21917. extra: 620 / 585,
  21918. bottom: 8.86 / 630.43
  21919. }
  21920. },
  21921. dick: {
  21922. height: math.unit(0.86, "feet"),
  21923. name: "Dick",
  21924. image: {
  21925. source: "./media/characters/rory/dick.svg"
  21926. }
  21927. },
  21928. },
  21929. [
  21930. {
  21931. name: "Normal",
  21932. height: math.unit(5 + 4 / 12, "feet"),
  21933. default: true
  21934. },
  21935. {
  21936. name: "Macro",
  21937. height: math.unit(100, "feet")
  21938. },
  21939. {
  21940. name: "Macro+",
  21941. height: math.unit(140, "feet")
  21942. },
  21943. {
  21944. name: "Macro++",
  21945. height: math.unit(300, "feet")
  21946. },
  21947. ]
  21948. ))
  21949. characterMakers.push(() => makeCharacter(
  21950. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21951. {
  21952. front: {
  21953. height: math.unit(5 + 9 / 12, "feet"),
  21954. weight: math.unit(190, "lb"),
  21955. name: "Front",
  21956. image: {
  21957. source: "./media/characters/sprisk/front.svg",
  21958. extra: 1225 / 1180,
  21959. bottom: 42.7 / 1266.4
  21960. }
  21961. },
  21962. frontNsfw: {
  21963. height: math.unit(5 + 9 / 12, "feet"),
  21964. weight: math.unit(190, "lb"),
  21965. name: "Front (NSFW)",
  21966. image: {
  21967. source: "./media/characters/sprisk/front-nsfw.svg",
  21968. extra: 1225 / 1180,
  21969. bottom: 42.7 / 1266.4
  21970. }
  21971. },
  21972. back: {
  21973. height: math.unit(5 + 9 / 12, "feet"),
  21974. weight: math.unit(190, "lb"),
  21975. name: "Back",
  21976. image: {
  21977. source: "./media/characters/sprisk/back.svg",
  21978. extra: 1247 / 1200,
  21979. bottom: 5.6 / 1253.04
  21980. }
  21981. },
  21982. },
  21983. [
  21984. {
  21985. name: "Tiny",
  21986. height: math.unit(2, "inches")
  21987. },
  21988. {
  21989. name: "Normal",
  21990. height: math.unit(5 + 9 / 12, "feet"),
  21991. default: true
  21992. },
  21993. {
  21994. name: "Mini Macro",
  21995. height: math.unit(18, "feet")
  21996. },
  21997. {
  21998. name: "Macro",
  21999. height: math.unit(100, "feet")
  22000. },
  22001. {
  22002. name: "MACRO",
  22003. height: math.unit(50, "miles")
  22004. },
  22005. {
  22006. name: "M A C R O",
  22007. height: math.unit(300, "miles")
  22008. },
  22009. ]
  22010. ))
  22011. characterMakers.push(() => makeCharacter(
  22012. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22013. {
  22014. side: {
  22015. height: math.unit(15.6, "meters"),
  22016. weight: math.unit(700000, "kg"),
  22017. name: "Side",
  22018. image: {
  22019. source: "./media/characters/bunsen/side.svg",
  22020. extra: 1644 / 358
  22021. }
  22022. },
  22023. foot: {
  22024. height: math.unit(1.611 * 1644 / 358, "meter"),
  22025. name: "Foot",
  22026. image: {
  22027. source: "./media/characters/bunsen/foot.svg"
  22028. }
  22029. },
  22030. },
  22031. [
  22032. {
  22033. name: "Small",
  22034. height: math.unit(10, "feet")
  22035. },
  22036. {
  22037. name: "Normal",
  22038. height: math.unit(15.6, "meters"),
  22039. default: true
  22040. },
  22041. ]
  22042. ))
  22043. characterMakers.push(() => makeCharacter(
  22044. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22045. {
  22046. front: {
  22047. height: math.unit(4 + 11 / 12, "feet"),
  22048. weight: math.unit(140, "lb"),
  22049. name: "Front",
  22050. image: {
  22051. source: "./media/characters/sesh/front.svg",
  22052. extra: 3420 / 3231,
  22053. bottom: 72 / 3949.5
  22054. }
  22055. },
  22056. },
  22057. [
  22058. {
  22059. name: "Normal",
  22060. height: math.unit(4 + 11 / 12, "feet")
  22061. },
  22062. {
  22063. name: "Grown",
  22064. height: math.unit(15, "feet"),
  22065. default: true
  22066. },
  22067. {
  22068. name: "Macro",
  22069. height: math.unit(1500, "feet")
  22070. },
  22071. {
  22072. name: "Megamacro",
  22073. height: math.unit(30, "miles")
  22074. },
  22075. {
  22076. name: "Continental",
  22077. height: math.unit(3000, "miles")
  22078. },
  22079. {
  22080. name: "Gravity Mass",
  22081. height: math.unit(300000, "miles")
  22082. },
  22083. {
  22084. name: "Planet Buster",
  22085. height: math.unit(30000000, "miles")
  22086. },
  22087. {
  22088. name: "Big",
  22089. height: math.unit(3000000000, "miles")
  22090. },
  22091. ]
  22092. ))
  22093. characterMakers.push(() => makeCharacter(
  22094. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22095. {
  22096. front: {
  22097. height: math.unit(9, "feet"),
  22098. weight: math.unit(350, "lb"),
  22099. name: "Front",
  22100. image: {
  22101. source: "./media/characters/pepper/front.svg",
  22102. extra: 1448 / 1312,
  22103. bottom: 9.4 / 1457.88
  22104. }
  22105. },
  22106. back: {
  22107. height: math.unit(9, "feet"),
  22108. weight: math.unit(350, "lb"),
  22109. name: "Back",
  22110. image: {
  22111. source: "./media/characters/pepper/back.svg",
  22112. extra: 1423 / 1300,
  22113. bottom: 4.6 / 1429
  22114. }
  22115. },
  22116. maw: {
  22117. height: math.unit(0.932, "feet"),
  22118. name: "Maw",
  22119. image: {
  22120. source: "./media/characters/pepper/maw.svg"
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(9, "feet"),
  22128. default: true
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22134. {
  22135. front: {
  22136. height: math.unit(6, "feet"),
  22137. weight: math.unit(150, "lb"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/maelstrom/front.svg",
  22141. extra: 2100 / 1883,
  22142. bottom: 94 / 2196.7
  22143. }
  22144. },
  22145. },
  22146. [
  22147. {
  22148. name: "Less Kaiju",
  22149. height: math.unit(200, "feet")
  22150. },
  22151. {
  22152. name: "Kaiju",
  22153. height: math.unit(400, "feet"),
  22154. default: true
  22155. },
  22156. {
  22157. name: "Kaiju-er",
  22158. height: math.unit(600, "feet")
  22159. },
  22160. ]
  22161. ))
  22162. characterMakers.push(() => makeCharacter(
  22163. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22164. {
  22165. front: {
  22166. height: math.unit(6 + 5 / 12, "feet"),
  22167. weight: math.unit(180, "lb"),
  22168. name: "Front",
  22169. image: {
  22170. source: "./media/characters/lexir/front.svg",
  22171. extra: 180 / 172,
  22172. bottom: 12 / 192
  22173. }
  22174. },
  22175. back: {
  22176. height: math.unit(6 + 5 / 12, "feet"),
  22177. weight: math.unit(180, "lb"),
  22178. name: "Back",
  22179. image: {
  22180. source: "./media/characters/lexir/back.svg",
  22181. extra: 183.84 / 175.5,
  22182. bottom: 3.1 / 187
  22183. }
  22184. },
  22185. },
  22186. [
  22187. {
  22188. name: "Very Smal",
  22189. height: math.unit(1, "nm")
  22190. },
  22191. {
  22192. name: "Normal",
  22193. height: math.unit(6 + 5 / 12, "feet"),
  22194. default: true
  22195. },
  22196. {
  22197. name: "Macro",
  22198. height: math.unit(1, "mile")
  22199. },
  22200. {
  22201. name: "Megamacro",
  22202. height: math.unit(50, "miles")
  22203. },
  22204. ]
  22205. ))
  22206. characterMakers.push(() => makeCharacter(
  22207. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22208. {
  22209. front: {
  22210. height: math.unit(1.5, "meters"),
  22211. weight: math.unit(100, "lb"),
  22212. name: "Front",
  22213. image: {
  22214. source: "./media/characters/maksio/front.svg",
  22215. extra: 1549 / 1531,
  22216. bottom: 123.7 / 1674.5429
  22217. }
  22218. },
  22219. back: {
  22220. height: math.unit(1.5, "meters"),
  22221. weight: math.unit(100, "lb"),
  22222. name: "Back",
  22223. image: {
  22224. source: "./media/characters/maksio/back.svg",
  22225. extra: 1541 / 1509,
  22226. bottom: 97 / 1639
  22227. }
  22228. },
  22229. hand: {
  22230. height: math.unit(0.621, "feet"),
  22231. name: "Hand",
  22232. image: {
  22233. source: "./media/characters/maksio/hand.svg"
  22234. }
  22235. },
  22236. foot: {
  22237. height: math.unit(1.611, "feet"),
  22238. name: "Foot",
  22239. image: {
  22240. source: "./media/characters/maksio/foot.svg"
  22241. }
  22242. },
  22243. },
  22244. [
  22245. {
  22246. name: "Shrunken",
  22247. height: math.unit(10, "cm")
  22248. },
  22249. {
  22250. name: "Normal",
  22251. height: math.unit(150, "cm"),
  22252. default: true
  22253. },
  22254. ]
  22255. ))
  22256. characterMakers.push(() => makeCharacter(
  22257. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22258. {
  22259. front: {
  22260. height: math.unit(100, "feet"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/erza-bear/front.svg",
  22264. extra: 2449 / 2390,
  22265. bottom: 46 / 2494
  22266. }
  22267. },
  22268. back: {
  22269. height: math.unit(100, "feet"),
  22270. name: "Back",
  22271. image: {
  22272. source: "./media/characters/erza-bear/back.svg",
  22273. extra: 2489 / 2430,
  22274. bottom: 85.4 / 2480
  22275. }
  22276. },
  22277. tail: {
  22278. height: math.unit(42, "feet"),
  22279. name: "Tail",
  22280. image: {
  22281. source: "./media/characters/erza-bear/tail.svg"
  22282. }
  22283. },
  22284. tongue: {
  22285. height: math.unit(8, "feet"),
  22286. name: "Tongue",
  22287. image: {
  22288. source: "./media/characters/erza-bear/tongue.svg"
  22289. }
  22290. },
  22291. dick: {
  22292. height: math.unit(10.5, "feet"),
  22293. name: "Dick",
  22294. image: {
  22295. source: "./media/characters/erza-bear/dick.svg"
  22296. }
  22297. },
  22298. dickVertical: {
  22299. height: math.unit(16.9, "feet"),
  22300. name: "Dick (Vertical)",
  22301. image: {
  22302. source: "./media/characters/erza-bear/dick-vertical.svg"
  22303. }
  22304. },
  22305. },
  22306. [
  22307. {
  22308. name: "Macro",
  22309. height: math.unit(100, "feet"),
  22310. default: true
  22311. },
  22312. ]
  22313. ))
  22314. characterMakers.push(() => makeCharacter(
  22315. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22316. {
  22317. front: {
  22318. height: math.unit(172, "cm"),
  22319. weight: math.unit(73, "kg"),
  22320. name: "Front",
  22321. image: {
  22322. source: "./media/characters/violet-flor/front.svg",
  22323. extra: 1530 / 1442,
  22324. bottom: 61.9 / 1588.8
  22325. }
  22326. },
  22327. back: {
  22328. height: math.unit(180, "cm"),
  22329. weight: math.unit(73, "kg"),
  22330. name: "Back",
  22331. image: {
  22332. source: "./media/characters/violet-flor/back.svg",
  22333. extra: 1692 / 1630,
  22334. bottom: 20 / 1712
  22335. }
  22336. },
  22337. },
  22338. [
  22339. {
  22340. name: "Normal",
  22341. height: math.unit(172, "cm"),
  22342. default: true
  22343. },
  22344. ]
  22345. ))
  22346. characterMakers.push(() => makeCharacter(
  22347. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22348. {
  22349. front: {
  22350. height: math.unit(6, "feet"),
  22351. weight: math.unit(220, "lb"),
  22352. name: "Front",
  22353. image: {
  22354. source: "./media/characters/lynn-rhea/front.svg",
  22355. extra: 310 / 273
  22356. }
  22357. },
  22358. back: {
  22359. height: math.unit(6, "feet"),
  22360. weight: math.unit(220, "lb"),
  22361. name: "Back",
  22362. image: {
  22363. source: "./media/characters/lynn-rhea/back.svg",
  22364. extra: 310 / 273
  22365. }
  22366. },
  22367. dicks: {
  22368. height: math.unit(0.9, "feet"),
  22369. name: "Dicks",
  22370. image: {
  22371. source: "./media/characters/lynn-rhea/dicks.svg"
  22372. }
  22373. },
  22374. slit: {
  22375. height: math.unit(0.4, "feet"),
  22376. name: "Slit",
  22377. image: {
  22378. source: "./media/characters/lynn-rhea/slit.svg"
  22379. }
  22380. },
  22381. },
  22382. [
  22383. {
  22384. name: "Micro",
  22385. height: math.unit(1, "inch")
  22386. },
  22387. {
  22388. name: "Macro",
  22389. height: math.unit(60, "feet"),
  22390. default: true
  22391. },
  22392. {
  22393. name: "Megamacro",
  22394. height: math.unit(2, "miles")
  22395. },
  22396. {
  22397. name: "Gigamacro",
  22398. height: math.unit(3, "earths")
  22399. },
  22400. {
  22401. name: "Galactic",
  22402. height: math.unit(0.8, "galaxies")
  22403. },
  22404. ]
  22405. ))
  22406. characterMakers.push(() => makeCharacter(
  22407. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22408. {
  22409. front: {
  22410. height: math.unit(1600, "feet"),
  22411. weight: math.unit(85758785169, "kg"),
  22412. name: "Front",
  22413. image: {
  22414. source: "./media/characters/valathos/front.svg",
  22415. extra: 1451 / 1339
  22416. }
  22417. },
  22418. },
  22419. [
  22420. {
  22421. name: "Macro",
  22422. height: math.unit(1600, "feet"),
  22423. default: true
  22424. },
  22425. ]
  22426. ))
  22427. characterMakers.push(() => makeCharacter(
  22428. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22429. {
  22430. front: {
  22431. height: math.unit(7 + 5 / 12, "feet"),
  22432. weight: math.unit(300, "lb"),
  22433. name: "Front",
  22434. image: {
  22435. source: "./media/characters/azula/front.svg",
  22436. extra: 3208 / 2880,
  22437. bottom: 80.2 / 3277
  22438. }
  22439. },
  22440. back: {
  22441. height: math.unit(7 + 5 / 12, "feet"),
  22442. weight: math.unit(300, "lb"),
  22443. name: "Back",
  22444. image: {
  22445. source: "./media/characters/azula/back.svg",
  22446. extra: 3169 / 2822,
  22447. bottom: 150.6 / 3321
  22448. }
  22449. },
  22450. },
  22451. [
  22452. {
  22453. name: "Normal",
  22454. height: math.unit(7 + 5 / 12, "feet"),
  22455. default: true
  22456. },
  22457. {
  22458. name: "Big",
  22459. height: math.unit(20, "feet")
  22460. },
  22461. ]
  22462. ))
  22463. characterMakers.push(() => makeCharacter(
  22464. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22465. {
  22466. front: {
  22467. height: math.unit(5 + 1 / 12, "feet"),
  22468. weight: math.unit(110, "lb"),
  22469. name: "Front",
  22470. image: {
  22471. source: "./media/characters/rupert/front.svg",
  22472. extra: 1549 / 1495,
  22473. bottom: 54.2 / 1604.4
  22474. }
  22475. },
  22476. },
  22477. [
  22478. {
  22479. name: "Normal",
  22480. height: math.unit(5 + 1 / 12, "feet"),
  22481. default: true
  22482. },
  22483. ]
  22484. ))
  22485. characterMakers.push(() => makeCharacter(
  22486. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22487. {
  22488. front: {
  22489. height: math.unit(8 + 4 / 12, "feet"),
  22490. weight: math.unit(350, "lb"),
  22491. name: "Front",
  22492. image: {
  22493. source: "./media/characters/sheera-castellar/front.svg",
  22494. extra: 1957 / 1894,
  22495. bottom: 26.97 / 1975.017
  22496. }
  22497. },
  22498. side: {
  22499. height: math.unit(8 + 4 / 12, "feet"),
  22500. weight: math.unit(350, "lb"),
  22501. name: "Side",
  22502. image: {
  22503. source: "./media/characters/sheera-castellar/side.svg",
  22504. extra: 1957 / 1894
  22505. }
  22506. },
  22507. back: {
  22508. height: math.unit(8 + 4 / 12, "feet"),
  22509. weight: math.unit(350, "lb"),
  22510. name: "Back",
  22511. image: {
  22512. source: "./media/characters/sheera-castellar/back.svg",
  22513. extra: 1957 / 1894
  22514. }
  22515. },
  22516. angled: {
  22517. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22518. weight: math.unit(350, "lb"),
  22519. name: "Angled",
  22520. image: {
  22521. source: "./media/characters/sheera-castellar/angled.svg",
  22522. extra: 1807 / 1707,
  22523. bottom: 68 / 1875
  22524. }
  22525. },
  22526. genitals: {
  22527. height: math.unit(2.2, "feet"),
  22528. name: "Genitals",
  22529. image: {
  22530. source: "./media/characters/sheera-castellar/genitals.svg"
  22531. }
  22532. },
  22533. },
  22534. [
  22535. {
  22536. name: "Normal",
  22537. height: math.unit(8 + 4 / 12, "feet")
  22538. },
  22539. {
  22540. name: "Macro",
  22541. height: math.unit(150, "feet"),
  22542. default: true
  22543. },
  22544. {
  22545. name: "Macro+",
  22546. height: math.unit(800, "feet")
  22547. },
  22548. ]
  22549. ))
  22550. characterMakers.push(() => makeCharacter(
  22551. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22552. {
  22553. front: {
  22554. height: math.unit(6, "feet"),
  22555. weight: math.unit(150, "lb"),
  22556. name: "Front",
  22557. image: {
  22558. source: "./media/characters/jaipur/front.svg",
  22559. extra: 3860 / 3731,
  22560. bottom: 287 / 4140
  22561. }
  22562. },
  22563. back: {
  22564. height: math.unit(6, "feet"),
  22565. weight: math.unit(150, "lb"),
  22566. name: "Back",
  22567. image: {
  22568. source: "./media/characters/jaipur/back.svg",
  22569. extra: 4060 / 3930,
  22570. bottom: 151 / 4200
  22571. }
  22572. },
  22573. },
  22574. [
  22575. {
  22576. name: "Normal",
  22577. height: math.unit(1.85, "meters"),
  22578. default: true
  22579. },
  22580. {
  22581. name: "Macro",
  22582. height: math.unit(150, "meters")
  22583. },
  22584. {
  22585. name: "Macro+",
  22586. height: math.unit(0.5, "miles")
  22587. },
  22588. {
  22589. name: "Macro++",
  22590. height: math.unit(2.5, "miles")
  22591. },
  22592. {
  22593. name: "Macro+++",
  22594. height: math.unit(12, "miles")
  22595. },
  22596. {
  22597. name: "Macro++++",
  22598. height: math.unit(120, "miles")
  22599. },
  22600. {
  22601. name: "Macro+++++",
  22602. height: math.unit(1200, "miles")
  22603. },
  22604. ]
  22605. ))
  22606. characterMakers.push(() => makeCharacter(
  22607. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22608. {
  22609. front: {
  22610. height: math.unit(6, "feet"),
  22611. weight: math.unit(150, "lb"),
  22612. name: "Front",
  22613. image: {
  22614. source: "./media/characters/sheila-wolf/front.svg",
  22615. extra: 1931 / 1808,
  22616. bottom: 29.5 / 1960
  22617. }
  22618. },
  22619. dick: {
  22620. height: math.unit(1.464, "feet"),
  22621. name: "Dick",
  22622. image: {
  22623. source: "./media/characters/sheila-wolf/dick.svg"
  22624. }
  22625. },
  22626. muzzle: {
  22627. height: math.unit(0.513, "feet"),
  22628. name: "Muzzle",
  22629. image: {
  22630. source: "./media/characters/sheila-wolf/muzzle.svg"
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Macro",
  22637. height: math.unit(70, "feet"),
  22638. default: true
  22639. },
  22640. ]
  22641. ))
  22642. characterMakers.push(() => makeCharacter(
  22643. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22644. {
  22645. front: {
  22646. height: math.unit(32, "meters"),
  22647. weight: math.unit(300000, "kg"),
  22648. name: "Front",
  22649. image: {
  22650. source: "./media/characters/almor/front.svg",
  22651. extra: 1408 / 1322,
  22652. bottom: 94.6 / 1506.5
  22653. }
  22654. },
  22655. },
  22656. [
  22657. {
  22658. name: "Macro",
  22659. height: math.unit(32, "meters"),
  22660. default: true
  22661. },
  22662. ]
  22663. ))
  22664. characterMakers.push(() => makeCharacter(
  22665. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22666. {
  22667. front: {
  22668. height: math.unit(7, "feet"),
  22669. weight: math.unit(200, "lb"),
  22670. name: "Front",
  22671. image: {
  22672. source: "./media/characters/silver/front.svg",
  22673. extra: 472.1 / 450.5,
  22674. bottom: 26.5 / 499.424
  22675. }
  22676. },
  22677. },
  22678. [
  22679. {
  22680. name: "Normal",
  22681. height: math.unit(7, "feet"),
  22682. default: true
  22683. },
  22684. {
  22685. name: "Macro",
  22686. height: math.unit(800, "feet")
  22687. },
  22688. {
  22689. name: "Megamacro",
  22690. height: math.unit(250, "miles")
  22691. },
  22692. ]
  22693. ))
  22694. characterMakers.push(() => makeCharacter(
  22695. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22696. {
  22697. front: {
  22698. height: math.unit(6, "feet"),
  22699. weight: math.unit(150, "lb"),
  22700. name: "Front",
  22701. image: {
  22702. source: "./media/characters/pliskin/front.svg",
  22703. extra: 1469 / 1359,
  22704. bottom: 70 / 1540
  22705. }
  22706. },
  22707. },
  22708. [
  22709. {
  22710. name: "Micro",
  22711. height: math.unit(3, "inches")
  22712. },
  22713. {
  22714. name: "Normal",
  22715. height: math.unit(5 + 11 / 12, "feet"),
  22716. default: true
  22717. },
  22718. {
  22719. name: "Macro",
  22720. height: math.unit(120, "feet")
  22721. },
  22722. ]
  22723. ))
  22724. characterMakers.push(() => makeCharacter(
  22725. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22726. {
  22727. front: {
  22728. height: math.unit(6, "feet"),
  22729. weight: math.unit(150, "lb"),
  22730. name: "Front",
  22731. image: {
  22732. source: "./media/characters/sammy/front.svg",
  22733. extra: 1193 / 1089,
  22734. bottom: 30.5 / 1226
  22735. }
  22736. },
  22737. },
  22738. [
  22739. {
  22740. name: "Macro",
  22741. height: math.unit(1700, "feet"),
  22742. default: true
  22743. },
  22744. {
  22745. name: "Examacro",
  22746. height: math.unit(2.5e9, "lightyears")
  22747. },
  22748. ]
  22749. ))
  22750. characterMakers.push(() => makeCharacter(
  22751. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22752. {
  22753. front: {
  22754. height: math.unit(21, "meters"),
  22755. weight: math.unit(12, "tonnes"),
  22756. name: "Front",
  22757. image: {
  22758. source: "./media/characters/kuru/front.svg",
  22759. extra: 4301 / 3785,
  22760. bottom: 371.3 / 4691
  22761. }
  22762. },
  22763. },
  22764. [
  22765. {
  22766. name: "Macro",
  22767. height: math.unit(21, "meters"),
  22768. default: true
  22769. },
  22770. ]
  22771. ))
  22772. characterMakers.push(() => makeCharacter(
  22773. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22774. {
  22775. front: {
  22776. height: math.unit(23, "meters"),
  22777. weight: math.unit(12.2, "tonnes"),
  22778. name: "Front",
  22779. image: {
  22780. source: "./media/characters/rakka/front.svg",
  22781. extra: 4670 / 4169,
  22782. bottom: 301 / 4968.7
  22783. }
  22784. },
  22785. },
  22786. [
  22787. {
  22788. name: "Macro",
  22789. height: math.unit(23, "meters"),
  22790. default: true
  22791. },
  22792. ]
  22793. ))
  22794. characterMakers.push(() => makeCharacter(
  22795. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22796. {
  22797. front: {
  22798. height: math.unit(6, "feet"),
  22799. weight: math.unit(150, "lb"),
  22800. name: "Front",
  22801. image: {
  22802. source: "./media/characters/rhys-feline/front.svg",
  22803. extra: 2488 / 2308,
  22804. bottom: 35.67 / 2519.19
  22805. }
  22806. },
  22807. },
  22808. [
  22809. {
  22810. name: "Really Small",
  22811. height: math.unit(1, "nm")
  22812. },
  22813. {
  22814. name: "Micro",
  22815. height: math.unit(4, "inches")
  22816. },
  22817. {
  22818. name: "Normal",
  22819. height: math.unit(4 + 10 / 12, "feet"),
  22820. default: true
  22821. },
  22822. {
  22823. name: "Macro",
  22824. height: math.unit(100, "feet")
  22825. },
  22826. {
  22827. name: "Megamacto",
  22828. height: math.unit(50, "miles")
  22829. },
  22830. ]
  22831. ))
  22832. characterMakers.push(() => makeCharacter(
  22833. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22834. {
  22835. side: {
  22836. height: math.unit(30, "feet"),
  22837. weight: math.unit(35000, "kg"),
  22838. name: "Side",
  22839. image: {
  22840. source: "./media/characters/alydar/side.svg",
  22841. extra: 234 / 222,
  22842. bottom: 6.5 / 241
  22843. }
  22844. },
  22845. front: {
  22846. height: math.unit(30, "feet"),
  22847. weight: math.unit(35000, "kg"),
  22848. name: "Front",
  22849. image: {
  22850. source: "./media/characters/alydar/front.svg",
  22851. extra: 223.37 / 210.2,
  22852. bottom: 22.3 / 246.76
  22853. }
  22854. },
  22855. top: {
  22856. height: math.unit(64.54, "feet"),
  22857. weight: math.unit(35000, "kg"),
  22858. name: "Top",
  22859. image: {
  22860. source: "./media/characters/alydar/top.svg"
  22861. }
  22862. },
  22863. anthro: {
  22864. height: math.unit(30, "feet"),
  22865. weight: math.unit(9000, "kg"),
  22866. name: "Anthro",
  22867. image: {
  22868. source: "./media/characters/alydar/anthro.svg",
  22869. extra: 432 / 421,
  22870. bottom: 7.18 / 440
  22871. }
  22872. },
  22873. maw: {
  22874. height: math.unit(11.693, "feet"),
  22875. name: "Maw",
  22876. image: {
  22877. source: "./media/characters/alydar/maw.svg"
  22878. }
  22879. },
  22880. head: {
  22881. height: math.unit(11.693, "feet"),
  22882. name: "Head",
  22883. image: {
  22884. source: "./media/characters/alydar/head.svg"
  22885. }
  22886. },
  22887. headAlt: {
  22888. height: math.unit(12.861, "feet"),
  22889. name: "Head (Alt)",
  22890. image: {
  22891. source: "./media/characters/alydar/head-alt.svg"
  22892. }
  22893. },
  22894. wing: {
  22895. height: math.unit(20.712, "feet"),
  22896. name: "Wing",
  22897. image: {
  22898. source: "./media/characters/alydar/wing.svg"
  22899. }
  22900. },
  22901. wingFeather: {
  22902. height: math.unit(9.662, "feet"),
  22903. name: "Wing Feather",
  22904. image: {
  22905. source: "./media/characters/alydar/wing-feather.svg"
  22906. }
  22907. },
  22908. countourFeather: {
  22909. height: math.unit(4.154, "feet"),
  22910. name: "Contour Feather",
  22911. image: {
  22912. source: "./media/characters/alydar/contour-feather.svg"
  22913. }
  22914. },
  22915. },
  22916. [
  22917. {
  22918. name: "Diplomatic",
  22919. height: math.unit(13, "feet"),
  22920. default: true
  22921. },
  22922. {
  22923. name: "Small",
  22924. height: math.unit(30, "feet")
  22925. },
  22926. {
  22927. name: "Normal",
  22928. height: math.unit(95, "feet"),
  22929. default: true
  22930. },
  22931. {
  22932. name: "Large",
  22933. height: math.unit(285, "feet")
  22934. },
  22935. {
  22936. name: "Incomprehensible",
  22937. height: math.unit(450, "megameters")
  22938. },
  22939. ]
  22940. ))
  22941. characterMakers.push(() => makeCharacter(
  22942. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22943. {
  22944. side: {
  22945. height: math.unit(11, "feet"),
  22946. weight: math.unit(1750, "kg"),
  22947. name: "Side",
  22948. image: {
  22949. source: "./media/characters/selicia/side.svg",
  22950. extra: 440 / 396,
  22951. bottom: 24.8 / 465.979
  22952. }
  22953. },
  22954. maw: {
  22955. height: math.unit(4.665, "feet"),
  22956. name: "Maw",
  22957. image: {
  22958. source: "./media/characters/selicia/maw.svg"
  22959. }
  22960. },
  22961. },
  22962. [
  22963. {
  22964. name: "Normal",
  22965. height: math.unit(11, "feet"),
  22966. default: true
  22967. },
  22968. ]
  22969. ))
  22970. characterMakers.push(() => makeCharacter(
  22971. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22972. {
  22973. side: {
  22974. height: math.unit(2 + 6 / 12, "feet"),
  22975. weight: math.unit(30, "lb"),
  22976. name: "Side",
  22977. image: {
  22978. source: "./media/characters/layla/side.svg",
  22979. extra: 244 / 188,
  22980. bottom: 18.2 / 262.1
  22981. }
  22982. },
  22983. back: {
  22984. height: math.unit(2 + 6 / 12, "feet"),
  22985. weight: math.unit(30, "lb"),
  22986. name: "Back",
  22987. image: {
  22988. source: "./media/characters/layla/back.svg",
  22989. extra: 308 / 241.5,
  22990. bottom: 8.9 / 316.8
  22991. }
  22992. },
  22993. cumming: {
  22994. height: math.unit(2 + 6 / 12, "feet"),
  22995. weight: math.unit(30, "lb"),
  22996. name: "Cumming",
  22997. image: {
  22998. source: "./media/characters/layla/cumming.svg",
  22999. extra: 342 / 279,
  23000. bottom: 595 / 938
  23001. }
  23002. },
  23003. dickFlaccid: {
  23004. height: math.unit(2.595, "feet"),
  23005. name: "Flaccid Genitals",
  23006. image: {
  23007. source: "./media/characters/layla/dick-flaccid.svg"
  23008. }
  23009. },
  23010. dickErect: {
  23011. height: math.unit(2.359, "feet"),
  23012. name: "Erect Genitals",
  23013. image: {
  23014. source: "./media/characters/layla/dick-erect.svg"
  23015. }
  23016. },
  23017. },
  23018. [
  23019. {
  23020. name: "Micro",
  23021. height: math.unit(1, "inch")
  23022. },
  23023. {
  23024. name: "Small",
  23025. height: math.unit(1, "foot")
  23026. },
  23027. {
  23028. name: "Normal",
  23029. height: math.unit(2 + 6 / 12, "feet"),
  23030. default: true
  23031. },
  23032. {
  23033. name: "Macro",
  23034. height: math.unit(200, "feet")
  23035. },
  23036. {
  23037. name: "Megamacro",
  23038. height: math.unit(1000, "miles")
  23039. },
  23040. {
  23041. name: "Planetary",
  23042. height: math.unit(8000, "miles")
  23043. },
  23044. {
  23045. name: "True Layla",
  23046. height: math.unit(200000 * 7, "multiverses")
  23047. },
  23048. ]
  23049. ))
  23050. characterMakers.push(() => makeCharacter(
  23051. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23052. {
  23053. back: {
  23054. height: math.unit(10.5, "feet"),
  23055. weight: math.unit(800, "lb"),
  23056. name: "Back",
  23057. image: {
  23058. source: "./media/characters/knox/back.svg",
  23059. extra: 1486 / 1089,
  23060. bottom: 107 / 1601.4
  23061. }
  23062. },
  23063. side: {
  23064. height: math.unit(10.5, "feet"),
  23065. weight: math.unit(800, "lb"),
  23066. name: "Side",
  23067. image: {
  23068. source: "./media/characters/knox/side.svg",
  23069. extra: 244 / 218,
  23070. bottom: 14 / 260
  23071. }
  23072. },
  23073. },
  23074. [
  23075. {
  23076. name: "Compact",
  23077. height: math.unit(10.5, "feet"),
  23078. default: true
  23079. },
  23080. {
  23081. name: "Dynamax",
  23082. height: math.unit(210, "feet")
  23083. },
  23084. {
  23085. name: "Full Macro",
  23086. height: math.unit(850, "feet")
  23087. },
  23088. ]
  23089. ))
  23090. characterMakers.push(() => makeCharacter(
  23091. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23092. {
  23093. front: {
  23094. height: math.unit(6, "feet"),
  23095. weight: math.unit(152, "lb"),
  23096. name: "Front",
  23097. image: {
  23098. source: "./media/characters/shin-pikachu/front.svg",
  23099. extra: 1574 / 1480,
  23100. bottom: 53.3 / 1626
  23101. }
  23102. },
  23103. hand: {
  23104. height: math.unit(1.055, "feet"),
  23105. name: "Hand",
  23106. image: {
  23107. source: "./media/characters/shin-pikachu/hand.svg"
  23108. }
  23109. },
  23110. foot: {
  23111. height: math.unit(1.1, "feet"),
  23112. name: "Foot",
  23113. image: {
  23114. source: "./media/characters/shin-pikachu/foot.svg"
  23115. }
  23116. },
  23117. collar: {
  23118. height: math.unit(0.386, "feet"),
  23119. name: "Collar",
  23120. image: {
  23121. source: "./media/characters/shin-pikachu/collar.svg"
  23122. }
  23123. },
  23124. },
  23125. [
  23126. {
  23127. name: "Smallest",
  23128. height: math.unit(0.5, "inches")
  23129. },
  23130. {
  23131. name: "Micro",
  23132. height: math.unit(6, "inches")
  23133. },
  23134. {
  23135. name: "Normal",
  23136. height: math.unit(6, "feet"),
  23137. default: true
  23138. },
  23139. {
  23140. name: "Macro",
  23141. height: math.unit(150, "feet")
  23142. },
  23143. ]
  23144. ))
  23145. characterMakers.push(() => makeCharacter(
  23146. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23147. {
  23148. front: {
  23149. height: math.unit(28, "feet"),
  23150. weight: math.unit(10500, "lb"),
  23151. name: "Front",
  23152. image: {
  23153. source: "./media/characters/kayda/front.svg",
  23154. extra: 1536 / 1428,
  23155. bottom: 68.7 / 1603
  23156. }
  23157. },
  23158. back: {
  23159. height: math.unit(28, "feet"),
  23160. weight: math.unit(10500, "lb"),
  23161. name: "Back",
  23162. image: {
  23163. source: "./media/characters/kayda/back.svg",
  23164. extra: 1557 / 1464,
  23165. bottom: 39.5 / 1597.49
  23166. }
  23167. },
  23168. dick: {
  23169. height: math.unit(3.858, "feet"),
  23170. name: "Dick",
  23171. image: {
  23172. source: "./media/characters/kayda/dick.svg"
  23173. }
  23174. },
  23175. },
  23176. [
  23177. {
  23178. name: "Macro",
  23179. height: math.unit(28, "feet"),
  23180. default: true
  23181. },
  23182. ]
  23183. ))
  23184. characterMakers.push(() => makeCharacter(
  23185. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23186. {
  23187. front: {
  23188. height: math.unit(10 + 11 / 12, "feet"),
  23189. weight: math.unit(1400, "lb"),
  23190. name: "Front",
  23191. image: {
  23192. source: "./media/characters/brian/front.svg",
  23193. extra: 737 / 692,
  23194. bottom: 55.4 / 785
  23195. }
  23196. },
  23197. },
  23198. [
  23199. {
  23200. name: "Normal",
  23201. height: math.unit(10 + 11 / 12, "feet"),
  23202. default: true
  23203. },
  23204. ]
  23205. ))
  23206. characterMakers.push(() => makeCharacter(
  23207. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23208. {
  23209. front: {
  23210. height: math.unit(5 + 8 / 12, "feet"),
  23211. weight: math.unit(140, "lb"),
  23212. name: "Front",
  23213. image: {
  23214. source: "./media/characters/khemri/front.svg",
  23215. extra: 4780 / 4059,
  23216. bottom: 80.1 / 4859.25
  23217. }
  23218. },
  23219. },
  23220. [
  23221. {
  23222. name: "Micro",
  23223. height: math.unit(6, "inches")
  23224. },
  23225. {
  23226. name: "Normal",
  23227. height: math.unit(5 + 8 / 12, "feet"),
  23228. default: true
  23229. },
  23230. ]
  23231. ))
  23232. characterMakers.push(() => makeCharacter(
  23233. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23234. {
  23235. front: {
  23236. height: math.unit(13, "feet"),
  23237. weight: math.unit(1700, "lb"),
  23238. name: "Front",
  23239. image: {
  23240. source: "./media/characters/felix-braveheart/front.svg",
  23241. extra: 1222 / 1157,
  23242. bottom: 53.2 / 1280
  23243. }
  23244. },
  23245. back: {
  23246. height: math.unit(13, "feet"),
  23247. weight: math.unit(1700, "lb"),
  23248. name: "Back",
  23249. image: {
  23250. source: "./media/characters/felix-braveheart/back.svg",
  23251. extra: 1277 / 1203,
  23252. bottom: 50.2 / 1327
  23253. }
  23254. },
  23255. feral: {
  23256. height: math.unit(6, "feet"),
  23257. weight: math.unit(400, "lb"),
  23258. name: "Feral",
  23259. image: {
  23260. source: "./media/characters/felix-braveheart/feral.svg",
  23261. extra: 682 / 625,
  23262. bottom: 6.9 / 688
  23263. }
  23264. },
  23265. },
  23266. [
  23267. {
  23268. name: "Normal",
  23269. height: math.unit(13, "feet"),
  23270. default: true
  23271. },
  23272. ]
  23273. ))
  23274. characterMakers.push(() => makeCharacter(
  23275. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23276. {
  23277. side: {
  23278. height: math.unit(5 + 11 / 12, "feet"),
  23279. weight: math.unit(1400, "lb"),
  23280. name: "Side",
  23281. image: {
  23282. source: "./media/characters/shadow-blade/side.svg",
  23283. extra: 1726 / 1267,
  23284. bottom: 58.4 / 1785
  23285. }
  23286. },
  23287. },
  23288. [
  23289. {
  23290. name: "Normal",
  23291. height: math.unit(5 + 11 / 12, "feet"),
  23292. default: true
  23293. },
  23294. ]
  23295. ))
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23298. {
  23299. front: {
  23300. height: math.unit(1 + 6 / 12, "feet"),
  23301. weight: math.unit(25, "lb"),
  23302. name: "Front",
  23303. image: {
  23304. source: "./media/characters/karla-halldor/front.svg",
  23305. extra: 1459 / 1383,
  23306. bottom: 12 / 1472
  23307. }
  23308. },
  23309. },
  23310. [
  23311. {
  23312. name: "Normal",
  23313. height: math.unit(1 + 6 / 12, "feet"),
  23314. default: true
  23315. },
  23316. ]
  23317. ))
  23318. characterMakers.push(() => makeCharacter(
  23319. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23320. {
  23321. front: {
  23322. height: math.unit(6 + 2 / 12, "feet"),
  23323. weight: math.unit(160, "lb"),
  23324. name: "Front",
  23325. image: {
  23326. source: "./media/characters/ariam/front.svg",
  23327. extra: 714 / 617,
  23328. bottom: 23.4 / 737,
  23329. }
  23330. },
  23331. squatting: {
  23332. height: math.unit(4.1, "feet"),
  23333. weight: math.unit(160, "lb"),
  23334. name: "Squatting",
  23335. image: {
  23336. source: "./media/characters/ariam/squatting.svg",
  23337. extra: 2617 / 2112,
  23338. bottom: 61.2 / 2681,
  23339. }
  23340. },
  23341. },
  23342. [
  23343. {
  23344. name: "Normal",
  23345. height: math.unit(6 + 2 / 12, "feet"),
  23346. default: true
  23347. },
  23348. {
  23349. name: "Normal+",
  23350. height: math.unit(4, "meters")
  23351. },
  23352. {
  23353. name: "Macro",
  23354. height: math.unit(50, "meters")
  23355. },
  23356. {
  23357. name: "Macro+",
  23358. height: math.unit(100, "meters")
  23359. },
  23360. {
  23361. name: "Megamacro",
  23362. height: math.unit(20, "km")
  23363. },
  23364. ]
  23365. ))
  23366. characterMakers.push(() => makeCharacter(
  23367. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23368. {
  23369. front: {
  23370. height: math.unit(1.67, "meters"),
  23371. weight: math.unit(140, "lb"),
  23372. name: "Front",
  23373. image: {
  23374. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23375. extra: 438 / 410,
  23376. bottom: 0.75 / 439
  23377. }
  23378. },
  23379. },
  23380. [
  23381. {
  23382. name: "Shrunken",
  23383. height: math.unit(7.6, "cm")
  23384. },
  23385. {
  23386. name: "Human Scale",
  23387. height: math.unit(1.67, "meters")
  23388. },
  23389. {
  23390. name: "Wolxi Scale",
  23391. height: math.unit(36.7, "meters"),
  23392. default: true
  23393. },
  23394. ]
  23395. ))
  23396. characterMakers.push(() => makeCharacter(
  23397. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23398. {
  23399. front: {
  23400. height: math.unit(1.73, "meters"),
  23401. weight: math.unit(240, "lb"),
  23402. name: "Front",
  23403. image: {
  23404. source: "./media/characters/izue-two-mothers/front.svg",
  23405. extra: 469 / 437,
  23406. bottom: 1.24 / 470.6
  23407. }
  23408. },
  23409. },
  23410. [
  23411. {
  23412. name: "Shrunken",
  23413. height: math.unit(7.86, "cm")
  23414. },
  23415. {
  23416. name: "Human Scale",
  23417. height: math.unit(1.73, "meters")
  23418. },
  23419. {
  23420. name: "Wolxi Scale",
  23421. height: math.unit(38, "meters"),
  23422. default: true
  23423. },
  23424. ]
  23425. ))
  23426. characterMakers.push(() => makeCharacter(
  23427. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23428. {
  23429. front: {
  23430. height: math.unit(1.55, "meters"),
  23431. weight: math.unit(120, "lb"),
  23432. name: "Front",
  23433. image: {
  23434. source: "./media/characters/teeku-love-shack/front.svg",
  23435. extra: 387 / 362,
  23436. bottom: 1.51 / 388
  23437. }
  23438. },
  23439. },
  23440. [
  23441. {
  23442. name: "Shrunken",
  23443. height: math.unit(7, "cm")
  23444. },
  23445. {
  23446. name: "Human Scale",
  23447. height: math.unit(1.55, "meters")
  23448. },
  23449. {
  23450. name: "Wolxi Scale",
  23451. height: math.unit(34.1, "meters"),
  23452. default: true
  23453. },
  23454. ]
  23455. ))
  23456. characterMakers.push(() => makeCharacter(
  23457. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23458. {
  23459. front: {
  23460. height: math.unit(1.83, "meters"),
  23461. weight: math.unit(135, "lb"),
  23462. name: "Front",
  23463. image: {
  23464. source: "./media/characters/dejma-the-red/front.svg",
  23465. extra: 480 / 458,
  23466. bottom: 1.8 / 482
  23467. }
  23468. },
  23469. },
  23470. [
  23471. {
  23472. name: "Shrunken",
  23473. height: math.unit(8.3, "cm")
  23474. },
  23475. {
  23476. name: "Human Scale",
  23477. height: math.unit(1.83, "meters")
  23478. },
  23479. {
  23480. name: "Wolxi Scale",
  23481. height: math.unit(40, "meters"),
  23482. default: true
  23483. },
  23484. ]
  23485. ))
  23486. characterMakers.push(() => makeCharacter(
  23487. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23488. {
  23489. front: {
  23490. height: math.unit(1.78, "meters"),
  23491. weight: math.unit(65, "kg"),
  23492. name: "Front",
  23493. image: {
  23494. source: "./media/characters/aki/front.svg",
  23495. extra: 452 / 415
  23496. }
  23497. },
  23498. frontNsfw: {
  23499. height: math.unit(1.78, "meters"),
  23500. weight: math.unit(65, "kg"),
  23501. name: "Front (NSFW)",
  23502. image: {
  23503. source: "./media/characters/aki/front-nsfw.svg",
  23504. extra: 452 / 415
  23505. }
  23506. },
  23507. back: {
  23508. height: math.unit(1.78, "meters"),
  23509. weight: math.unit(65, "kg"),
  23510. name: "Back",
  23511. image: {
  23512. source: "./media/characters/aki/back.svg",
  23513. extra: 452 / 415
  23514. }
  23515. },
  23516. rump: {
  23517. height: math.unit(2.05, "feet"),
  23518. name: "Rump",
  23519. image: {
  23520. source: "./media/characters/aki/rump.svg"
  23521. }
  23522. },
  23523. dick: {
  23524. height: math.unit(0.95, "feet"),
  23525. name: "Dick",
  23526. image: {
  23527. source: "./media/characters/aki/dick.svg"
  23528. }
  23529. },
  23530. },
  23531. [
  23532. {
  23533. name: "Micro",
  23534. height: math.unit(15, "cm")
  23535. },
  23536. {
  23537. name: "Normal",
  23538. height: math.unit(178, "cm"),
  23539. default: true
  23540. },
  23541. {
  23542. name: "Macro",
  23543. height: math.unit(214, "m")
  23544. },
  23545. {
  23546. name: "Macro+",
  23547. height: math.unit(534, "m")
  23548. },
  23549. ]
  23550. ))
  23551. characterMakers.push(() => makeCharacter(
  23552. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23553. {
  23554. front: {
  23555. height: math.unit(5 + 5 / 12, "feet"),
  23556. weight: math.unit(120, "lb"),
  23557. name: "Front",
  23558. image: {
  23559. source: "./media/characters/ari/front.svg",
  23560. extra: 714.5 / 682,
  23561. bottom: 8 / 722.5
  23562. }
  23563. },
  23564. },
  23565. [
  23566. {
  23567. name: "Normal",
  23568. height: math.unit(5 + 5 / 12, "feet")
  23569. },
  23570. {
  23571. name: "Macro",
  23572. height: math.unit(100, "feet"),
  23573. default: true
  23574. },
  23575. {
  23576. name: "Megamacro",
  23577. height: math.unit(100, "miles")
  23578. },
  23579. {
  23580. name: "Gigamacro",
  23581. height: math.unit(80000, "miles")
  23582. },
  23583. ]
  23584. ))
  23585. characterMakers.push(() => makeCharacter(
  23586. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23587. {
  23588. side: {
  23589. height: math.unit(9, "feet"),
  23590. weight: math.unit(400, "kg"),
  23591. name: "Side",
  23592. image: {
  23593. source: "./media/characters/bolt/side.svg",
  23594. extra: 1126 / 896,
  23595. bottom: 60 / 1187.3,
  23596. }
  23597. },
  23598. },
  23599. [
  23600. {
  23601. name: "Micro",
  23602. height: math.unit(5, "inches")
  23603. },
  23604. {
  23605. name: "Normal",
  23606. height: math.unit(9, "feet"),
  23607. default: true
  23608. },
  23609. {
  23610. name: "Macro",
  23611. height: math.unit(700, "feet")
  23612. },
  23613. {
  23614. name: "Max Size",
  23615. height: math.unit(1.52e22, "yottameters")
  23616. },
  23617. ]
  23618. ))
  23619. characterMakers.push(() => makeCharacter(
  23620. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23621. {
  23622. front: {
  23623. height: math.unit(4.53, "meters"),
  23624. weight: math.unit(3, "tons"),
  23625. name: "Front",
  23626. image: {
  23627. source: "./media/characters/draekon-sylviar/front.svg",
  23628. extra: 1228 / 1068,
  23629. bottom: 41 / 1270
  23630. }
  23631. },
  23632. tail: {
  23633. height: math.unit(1.772, "meter"),
  23634. name: "Tail",
  23635. image: {
  23636. source: "./media/characters/draekon-sylviar/tail.svg"
  23637. }
  23638. },
  23639. head: {
  23640. height: math.unit(1.331, "meter"),
  23641. name: "Head",
  23642. image: {
  23643. source: "./media/characters/draekon-sylviar/head.svg"
  23644. }
  23645. },
  23646. hand: {
  23647. height: math.unit(0.564, "meter"),
  23648. name: "Hand",
  23649. image: {
  23650. source: "./media/characters/draekon-sylviar/hand.svg"
  23651. }
  23652. },
  23653. foot: {
  23654. height: math.unit(0.621, "meter"),
  23655. name: "Foot",
  23656. image: {
  23657. source: "./media/characters/draekon-sylviar/foot.svg",
  23658. bottom: 32 / 324
  23659. }
  23660. },
  23661. dick: {
  23662. height: math.unit(61, "cm"),
  23663. name: "Dick",
  23664. image: {
  23665. source: "./media/characters/draekon-sylviar/dick.svg"
  23666. }
  23667. },
  23668. dickseparated: {
  23669. height: math.unit(61, "cm"),
  23670. name: "Dick-separated",
  23671. image: {
  23672. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23673. }
  23674. },
  23675. },
  23676. [
  23677. {
  23678. name: "Small",
  23679. height: math.unit(4.53 / 2, "meters"),
  23680. default: true
  23681. },
  23682. {
  23683. name: "Normal",
  23684. height: math.unit(4.53, "meters"),
  23685. default: true
  23686. },
  23687. {
  23688. name: "Large",
  23689. height: math.unit(4.53 * 2, "meters"),
  23690. },
  23691. ]
  23692. ))
  23693. characterMakers.push(() => makeCharacter(
  23694. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23695. {
  23696. front: {
  23697. height: math.unit(6 + 2 / 12, "feet"),
  23698. weight: math.unit(180, "lb"),
  23699. name: "Front",
  23700. image: {
  23701. source: "./media/characters/brawler/front.svg",
  23702. extra: 3301 / 3027,
  23703. bottom: 138 / 3439
  23704. }
  23705. },
  23706. },
  23707. [
  23708. {
  23709. name: "Normal",
  23710. height: math.unit(6 + 2 / 12, "feet"),
  23711. default: true
  23712. },
  23713. ]
  23714. ))
  23715. characterMakers.push(() => makeCharacter(
  23716. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23717. {
  23718. front: {
  23719. height: math.unit(11, "feet"),
  23720. weight: math.unit(1000, "lb"),
  23721. name: "Front",
  23722. image: {
  23723. source: "./media/characters/alex/front.svg",
  23724. bottom: 44.5 / 620
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Micro",
  23731. height: math.unit(5, "inches")
  23732. },
  23733. {
  23734. name: "Normal",
  23735. height: math.unit(11, "feet"),
  23736. default: true
  23737. },
  23738. {
  23739. name: "Macro",
  23740. height: math.unit(9.5e9, "feet")
  23741. },
  23742. {
  23743. name: "Max Size",
  23744. height: math.unit(1.4e283, "yottameters")
  23745. },
  23746. ]
  23747. ))
  23748. characterMakers.push(() => makeCharacter(
  23749. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23750. {
  23751. female: {
  23752. height: math.unit(29.9, "m"),
  23753. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23754. name: "Female",
  23755. image: {
  23756. source: "./media/characters/zenari/female.svg",
  23757. extra: 3281.6 / 3217,
  23758. bottom: 72.2 / 3353
  23759. }
  23760. },
  23761. male: {
  23762. height: math.unit(27.7, "m"),
  23763. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23764. name: "Male",
  23765. image: {
  23766. source: "./media/characters/zenari/male.svg",
  23767. extra: 3008 / 2991,
  23768. bottom: 54.6 / 3069
  23769. }
  23770. },
  23771. },
  23772. [
  23773. {
  23774. name: "Macro",
  23775. height: math.unit(29.7, "meters"),
  23776. default: true
  23777. },
  23778. ]
  23779. ))
  23780. characterMakers.push(() => makeCharacter(
  23781. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23782. {
  23783. female: {
  23784. height: math.unit(23.8, "m"),
  23785. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23786. name: "Female",
  23787. image: {
  23788. source: "./media/characters/mactarian/female.svg",
  23789. extra: 2662 / 2569,
  23790. bottom: 73 / 2736
  23791. }
  23792. },
  23793. male: {
  23794. height: math.unit(23.8, "m"),
  23795. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23796. name: "Male",
  23797. image: {
  23798. source: "./media/characters/mactarian/male.svg",
  23799. extra: 2673 / 2600,
  23800. bottom: 76 / 2750
  23801. }
  23802. },
  23803. },
  23804. [
  23805. {
  23806. name: "Macro",
  23807. height: math.unit(23.8, "meters"),
  23808. default: true
  23809. },
  23810. ]
  23811. ))
  23812. characterMakers.push(() => makeCharacter(
  23813. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23814. {
  23815. female: {
  23816. height: math.unit(19.3, "m"),
  23817. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23818. name: "Female",
  23819. image: {
  23820. source: "./media/characters/umok/female.svg",
  23821. extra: 2186 / 2078,
  23822. bottom: 87 / 2277
  23823. }
  23824. },
  23825. male: {
  23826. height: math.unit(19.5, "m"),
  23827. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23828. name: "Male",
  23829. image: {
  23830. source: "./media/characters/umok/male.svg",
  23831. extra: 2233 / 2140,
  23832. bottom: 24.4 / 2258
  23833. }
  23834. },
  23835. },
  23836. [
  23837. {
  23838. name: "Macro",
  23839. height: math.unit(19.3, "meters"),
  23840. default: true
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23846. {
  23847. female: {
  23848. height: math.unit(26.15, "m"),
  23849. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23850. name: "Female",
  23851. image: {
  23852. source: "./media/characters/joraxian/female.svg",
  23853. extra: 2912 / 2824,
  23854. bottom: 36 / 2956
  23855. }
  23856. },
  23857. male: {
  23858. height: math.unit(25.4, "m"),
  23859. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23860. name: "Male",
  23861. image: {
  23862. source: "./media/characters/joraxian/male.svg",
  23863. extra: 2877 / 2721,
  23864. bottom: 82 / 2967
  23865. }
  23866. },
  23867. },
  23868. [
  23869. {
  23870. name: "Macro",
  23871. height: math.unit(26.15, "meters"),
  23872. default: true
  23873. },
  23874. ]
  23875. ))
  23876. characterMakers.push(() => makeCharacter(
  23877. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23878. {
  23879. female: {
  23880. height: math.unit(21.6, "m"),
  23881. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23882. name: "Female",
  23883. image: {
  23884. source: "./media/characters/sthara/female.svg",
  23885. extra: 2516 / 2347,
  23886. bottom: 21.5 / 2537
  23887. }
  23888. },
  23889. male: {
  23890. height: math.unit(24, "m"),
  23891. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23892. name: "Male",
  23893. image: {
  23894. source: "./media/characters/sthara/male.svg",
  23895. extra: 2732 / 2607,
  23896. bottom: 23 / 2732
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Macro",
  23903. height: math.unit(21.6, "meters"),
  23904. default: true
  23905. },
  23906. ]
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23910. {
  23911. front: {
  23912. height: math.unit(6 + 4 / 12, "feet"),
  23913. weight: math.unit(175, "lb"),
  23914. name: "Front",
  23915. image: {
  23916. source: "./media/characters/luka-bryzant/front.svg",
  23917. extra: 311 / 289,
  23918. bottom: 4 / 315
  23919. }
  23920. },
  23921. back: {
  23922. height: math.unit(6 + 4 / 12, "feet"),
  23923. weight: math.unit(175, "lb"),
  23924. name: "Back",
  23925. image: {
  23926. source: "./media/characters/luka-bryzant/back.svg",
  23927. extra: 311 / 289,
  23928. bottom: 3.8 / 313.7
  23929. }
  23930. },
  23931. },
  23932. [
  23933. {
  23934. name: "Micro",
  23935. height: math.unit(10, "inches")
  23936. },
  23937. {
  23938. name: "Normal",
  23939. height: math.unit(6 + 4 / 12, "feet"),
  23940. default: true
  23941. },
  23942. {
  23943. name: "Large",
  23944. height: math.unit(12, "feet")
  23945. },
  23946. ]
  23947. ))
  23948. characterMakers.push(() => makeCharacter(
  23949. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23950. {
  23951. front: {
  23952. height: math.unit(5 + 7 / 12, "feet"),
  23953. weight: math.unit(185, "lb"),
  23954. name: "Front",
  23955. image: {
  23956. source: "./media/characters/aman-aquila/front.svg",
  23957. extra: 1013 / 976,
  23958. bottom: 45.6 / 1057
  23959. }
  23960. },
  23961. side: {
  23962. height: math.unit(5 + 7 / 12, "feet"),
  23963. weight: math.unit(185, "lb"),
  23964. name: "Side",
  23965. image: {
  23966. source: "./media/characters/aman-aquila/side.svg",
  23967. extra: 1054 / 1011,
  23968. bottom: 15 / 1070
  23969. }
  23970. },
  23971. back: {
  23972. height: math.unit(5 + 7 / 12, "feet"),
  23973. weight: math.unit(185, "lb"),
  23974. name: "Back",
  23975. image: {
  23976. source: "./media/characters/aman-aquila/back.svg",
  23977. extra: 1026 / 970,
  23978. bottom: 12 / 1039
  23979. }
  23980. },
  23981. head: {
  23982. height: math.unit(1.211, "feet"),
  23983. name: "Head",
  23984. image: {
  23985. source: "./media/characters/aman-aquila/head.svg",
  23986. }
  23987. },
  23988. },
  23989. [
  23990. {
  23991. name: "Minimicro",
  23992. height: math.unit(0.057, "inches")
  23993. },
  23994. {
  23995. name: "Micro",
  23996. height: math.unit(7, "inches")
  23997. },
  23998. {
  23999. name: "Mini",
  24000. height: math.unit(3 + 7 / 12, "feet")
  24001. },
  24002. {
  24003. name: "Normal",
  24004. height: math.unit(5 + 7 / 12, "feet"),
  24005. default: true
  24006. },
  24007. {
  24008. name: "Macro",
  24009. height: math.unit(157 + 7 / 12, "feet")
  24010. },
  24011. {
  24012. name: "Megamacro",
  24013. height: math.unit(1557 + 7 / 12, "feet")
  24014. },
  24015. {
  24016. name: "Gigamacro",
  24017. height: math.unit(15557 + 7 / 12, "feet")
  24018. },
  24019. ]
  24020. ))
  24021. characterMakers.push(() => makeCharacter(
  24022. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24023. {
  24024. front: {
  24025. height: math.unit(3 + 2 / 12, "inches"),
  24026. weight: math.unit(0.3, "ounces"),
  24027. name: "Front",
  24028. image: {
  24029. source: "./media/characters/hiphae/front.svg",
  24030. extra: 1931 / 1683,
  24031. bottom: 24 / 1955
  24032. }
  24033. },
  24034. },
  24035. [
  24036. {
  24037. name: "Normal",
  24038. height: math.unit(3 + 1 / 2, "inches"),
  24039. default: true
  24040. },
  24041. ]
  24042. ))
  24043. characterMakers.push(() => makeCharacter(
  24044. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24045. {
  24046. front: {
  24047. height: math.unit(5 + 10 / 12, "feet"),
  24048. weight: math.unit(165, "lb"),
  24049. name: "Front",
  24050. image: {
  24051. source: "./media/characters/nicky/front.svg",
  24052. extra: 3144 / 2886,
  24053. bottom: 45.6 / 3192
  24054. }
  24055. },
  24056. back: {
  24057. height: math.unit(5 + 10 / 12, "feet"),
  24058. weight: math.unit(165, "lb"),
  24059. name: "Back",
  24060. image: {
  24061. source: "./media/characters/nicky/back.svg",
  24062. extra: 3055 / 2804,
  24063. bottom: 28.4 / 3087
  24064. }
  24065. },
  24066. frontclothed: {
  24067. height: math.unit(5 + 10 / 12, "feet"),
  24068. weight: math.unit(165, "lb"),
  24069. name: "Front-clothed",
  24070. image: {
  24071. source: "./media/characters/nicky/front-clothed.svg",
  24072. extra: 3184.9 / 2926.9,
  24073. bottom: 86.5 / 3239.9
  24074. }
  24075. },
  24076. foot: {
  24077. height: math.unit(1.16, "feet"),
  24078. name: "Foot",
  24079. image: {
  24080. source: "./media/characters/nicky/foot.svg"
  24081. }
  24082. },
  24083. feet: {
  24084. height: math.unit(1.34, "feet"),
  24085. name: "Feet",
  24086. image: {
  24087. source: "./media/characters/nicky/feet.svg"
  24088. }
  24089. },
  24090. maw: {
  24091. height: math.unit(0.9, "feet"),
  24092. name: "Maw",
  24093. image: {
  24094. source: "./media/characters/nicky/maw.svg"
  24095. }
  24096. },
  24097. },
  24098. [
  24099. {
  24100. name: "Normal",
  24101. height: math.unit(5 + 10 / 12, "feet"),
  24102. default: true
  24103. },
  24104. {
  24105. name: "Macro",
  24106. height: math.unit(60, "feet")
  24107. },
  24108. {
  24109. name: "Megamacro",
  24110. height: math.unit(1, "mile")
  24111. },
  24112. ]
  24113. ))
  24114. characterMakers.push(() => makeCharacter(
  24115. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24116. {
  24117. side: {
  24118. height: math.unit(10, "feet"),
  24119. weight: math.unit(600, "lb"),
  24120. name: "Side",
  24121. image: {
  24122. source: "./media/characters/blair/side.svg",
  24123. bottom: 16.6 / 475,
  24124. extra: 458 / 431
  24125. }
  24126. },
  24127. },
  24128. [
  24129. {
  24130. name: "Micro",
  24131. height: math.unit(8, "inches")
  24132. },
  24133. {
  24134. name: "Normal",
  24135. height: math.unit(10, "feet"),
  24136. default: true
  24137. },
  24138. {
  24139. name: "Macro",
  24140. height: math.unit(180, "feet")
  24141. },
  24142. ]
  24143. ))
  24144. characterMakers.push(() => makeCharacter(
  24145. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24146. {
  24147. front: {
  24148. height: math.unit(5 + 4 / 12, "feet"),
  24149. weight: math.unit(125, "lb"),
  24150. name: "Front",
  24151. image: {
  24152. source: "./media/characters/fisher/front.svg",
  24153. extra: 444 / 390,
  24154. bottom: 2 / 444.8
  24155. }
  24156. },
  24157. },
  24158. [
  24159. {
  24160. name: "Micro",
  24161. height: math.unit(4, "inches")
  24162. },
  24163. {
  24164. name: "Normal",
  24165. height: math.unit(5 + 4 / 12, "feet"),
  24166. default: true
  24167. },
  24168. {
  24169. name: "Macro",
  24170. height: math.unit(100, "feet")
  24171. },
  24172. ]
  24173. ))
  24174. characterMakers.push(() => makeCharacter(
  24175. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24176. {
  24177. front: {
  24178. height: math.unit(6.71, "feet"),
  24179. weight: math.unit(200, "lb"),
  24180. capacity: math.unit(1000000, "people"),
  24181. name: "Front",
  24182. image: {
  24183. source: "./media/characters/gliss/front.svg",
  24184. extra: 2347 / 2231,
  24185. bottom: 113 / 2462
  24186. }
  24187. },
  24188. hammerspaceSize: {
  24189. height: math.unit(6.71 * 717, "feet"),
  24190. weight: math.unit(200, "lb"),
  24191. capacity: math.unit(1000000, "people"),
  24192. name: "Hammerspace Size",
  24193. image: {
  24194. source: "./media/characters/gliss/front.svg",
  24195. extra: 2347 / 2231,
  24196. bottom: 113 / 2462
  24197. }
  24198. },
  24199. },
  24200. [
  24201. {
  24202. name: "Normal",
  24203. height: math.unit(6.71, "feet"),
  24204. default: true
  24205. },
  24206. ]
  24207. ))
  24208. characterMakers.push(() => makeCharacter(
  24209. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24210. {
  24211. side: {
  24212. height: math.unit(1.44, "m"),
  24213. weight: math.unit(80, "kg"),
  24214. name: "Side",
  24215. image: {
  24216. source: "./media/characters/dune-anderson/side.svg",
  24217. bottom: 49 / 1426
  24218. }
  24219. },
  24220. },
  24221. [
  24222. {
  24223. name: "Wolf-sized",
  24224. height: math.unit(1.44, "meters")
  24225. },
  24226. {
  24227. name: "Normal",
  24228. height: math.unit(5.05, "meters"),
  24229. default: true
  24230. },
  24231. {
  24232. name: "Big",
  24233. height: math.unit(14.4, "meters")
  24234. },
  24235. {
  24236. name: "Huge",
  24237. height: math.unit(144, "meters")
  24238. },
  24239. ]
  24240. ))
  24241. characterMakers.push(() => makeCharacter(
  24242. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24243. {
  24244. front: {
  24245. height: math.unit(7, "feet"),
  24246. weight: math.unit(425, "lb"),
  24247. name: "Front",
  24248. image: {
  24249. source: "./media/characters/hind/front.svg",
  24250. extra: 2091 / 1860,
  24251. bottom: 129 / 2220
  24252. }
  24253. },
  24254. back: {
  24255. height: math.unit(7, "feet"),
  24256. weight: math.unit(425, "lb"),
  24257. name: "Back",
  24258. image: {
  24259. source: "./media/characters/hind/back.svg",
  24260. extra: 2091 / 1860,
  24261. bottom: 24.6 / 2309
  24262. }
  24263. },
  24264. tail: {
  24265. height: math.unit(2.8, "feet"),
  24266. name: "Tail",
  24267. image: {
  24268. source: "./media/characters/hind/tail.svg"
  24269. }
  24270. },
  24271. head: {
  24272. height: math.unit(2.55, "feet"),
  24273. name: "Head",
  24274. image: {
  24275. source: "./media/characters/hind/head.svg"
  24276. }
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "XS",
  24282. height: math.unit(0.7, "feet")
  24283. },
  24284. {
  24285. name: "Normal",
  24286. height: math.unit(7, "feet"),
  24287. default: true
  24288. },
  24289. {
  24290. name: "XL",
  24291. height: math.unit(70, "feet")
  24292. },
  24293. ]
  24294. ))
  24295. characterMakers.push(() => makeCharacter(
  24296. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24297. {
  24298. front: {
  24299. height: math.unit(6, "feet"),
  24300. weight: math.unit(150, "lb"),
  24301. name: "Front",
  24302. image: {
  24303. source: "./media/characters/dylan-skaven/front.svg",
  24304. extra: 2318 / 2063,
  24305. bottom: 93.4 / 2410
  24306. }
  24307. },
  24308. },
  24309. [
  24310. {
  24311. name: "Nano",
  24312. height: math.unit(1, "mm")
  24313. },
  24314. {
  24315. name: "Micro",
  24316. height: math.unit(1, "cm")
  24317. },
  24318. {
  24319. name: "Normal",
  24320. height: math.unit(2.1, "meters"),
  24321. default: true
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24327. {
  24328. front: {
  24329. height: math.unit(7 + 5 / 12, "feet"),
  24330. weight: math.unit(357, "lb"),
  24331. name: "Front",
  24332. image: {
  24333. source: "./media/characters/solex-draconov/front.svg",
  24334. extra: 1993 / 1865,
  24335. bottom: 117 / 2111
  24336. }
  24337. },
  24338. },
  24339. [
  24340. {
  24341. name: "Natural Height",
  24342. height: math.unit(7 + 5 / 12, "feet"),
  24343. default: true
  24344. },
  24345. {
  24346. name: "Macro",
  24347. height: math.unit(350, "feet")
  24348. },
  24349. {
  24350. name: "Macro+",
  24351. height: math.unit(1000, "feet")
  24352. },
  24353. {
  24354. name: "Megamacro",
  24355. height: math.unit(20, "km")
  24356. },
  24357. {
  24358. name: "Megamacro+",
  24359. height: math.unit(1000, "km")
  24360. },
  24361. {
  24362. name: "Gigamacro",
  24363. height: math.unit(2.5, "Gm")
  24364. },
  24365. {
  24366. name: "Teramacro",
  24367. height: math.unit(15, "Tm")
  24368. },
  24369. {
  24370. name: "Galactic",
  24371. height: math.unit(30, "Zm")
  24372. },
  24373. {
  24374. name: "Universal",
  24375. height: math.unit(21000, "Ym")
  24376. },
  24377. {
  24378. name: "Omniversal",
  24379. height: math.unit(9.861e50, "Ym")
  24380. },
  24381. {
  24382. name: "Existential",
  24383. height: math.unit(1e300, "meters")
  24384. },
  24385. ]
  24386. ))
  24387. characterMakers.push(() => makeCharacter(
  24388. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24389. {
  24390. side: {
  24391. height: math.unit(25, "feet"),
  24392. weight: math.unit(90000, "lb"),
  24393. name: "Side",
  24394. image: {
  24395. source: "./media/characters/mandarax/side.svg",
  24396. extra: 614 / 332,
  24397. bottom: 55 / 630
  24398. }
  24399. },
  24400. head: {
  24401. height: math.unit(11.4, "feet"),
  24402. name: "Head",
  24403. image: {
  24404. source: "./media/characters/mandarax/head.svg"
  24405. }
  24406. },
  24407. belly: {
  24408. height: math.unit(33, "feet"),
  24409. name: "Belly",
  24410. capacity: math.unit(500, "people"),
  24411. image: {
  24412. source: "./media/characters/mandarax/belly.svg"
  24413. }
  24414. },
  24415. dick: {
  24416. height: math.unit(8.46, "feet"),
  24417. name: "Dick",
  24418. image: {
  24419. source: "./media/characters/mandarax/dick.svg"
  24420. }
  24421. },
  24422. top: {
  24423. height: math.unit(28, "meters"),
  24424. name: "Top",
  24425. image: {
  24426. source: "./media/characters/mandarax/top.svg"
  24427. }
  24428. },
  24429. },
  24430. [
  24431. {
  24432. name: "Normal",
  24433. height: math.unit(25, "feet"),
  24434. default: true
  24435. },
  24436. ]
  24437. ))
  24438. characterMakers.push(() => makeCharacter(
  24439. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24440. {
  24441. front: {
  24442. height: math.unit(5, "feet"),
  24443. weight: math.unit(90, "lb"),
  24444. name: "Front",
  24445. image: {
  24446. source: "./media/characters/pixil/front.svg",
  24447. extra: 2000 / 1618,
  24448. bottom: 12.3 / 2011
  24449. }
  24450. },
  24451. },
  24452. [
  24453. {
  24454. name: "Normal",
  24455. height: math.unit(5, "feet"),
  24456. default: true
  24457. },
  24458. {
  24459. name: "Megamacro",
  24460. height: math.unit(10, "miles"),
  24461. },
  24462. ]
  24463. ))
  24464. characterMakers.push(() => makeCharacter(
  24465. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24466. {
  24467. front: {
  24468. height: math.unit(7 + 2 / 12, "feet"),
  24469. weight: math.unit(200, "lb"),
  24470. name: "Front",
  24471. image: {
  24472. source: "./media/characters/angel/front.svg",
  24473. extra: 1830 / 1737,
  24474. bottom: 22.6 / 1854,
  24475. }
  24476. },
  24477. },
  24478. [
  24479. {
  24480. name: "Normal",
  24481. height: math.unit(7 + 2 / 12, "feet"),
  24482. default: true
  24483. },
  24484. {
  24485. name: "Macro",
  24486. height: math.unit(1000, "feet")
  24487. },
  24488. {
  24489. name: "Megamacro",
  24490. height: math.unit(2, "miles")
  24491. },
  24492. {
  24493. name: "Gigamacro",
  24494. height: math.unit(20, "earths")
  24495. },
  24496. ]
  24497. ))
  24498. characterMakers.push(() => makeCharacter(
  24499. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24500. {
  24501. front: {
  24502. height: math.unit(5, "feet"),
  24503. weight: math.unit(180, "lb"),
  24504. name: "Front",
  24505. image: {
  24506. source: "./media/characters/mekana/front.svg",
  24507. extra: 1671 / 1605,
  24508. bottom: 3.5 / 1691
  24509. }
  24510. },
  24511. side: {
  24512. height: math.unit(5, "feet"),
  24513. weight: math.unit(180, "lb"),
  24514. name: "Side",
  24515. image: {
  24516. source: "./media/characters/mekana/side.svg",
  24517. extra: 1671 / 1605,
  24518. bottom: 3.5 / 1691
  24519. }
  24520. },
  24521. back: {
  24522. height: math.unit(5, "feet"),
  24523. weight: math.unit(180, "lb"),
  24524. name: "Back",
  24525. image: {
  24526. source: "./media/characters/mekana/back.svg",
  24527. extra: 1671 / 1605,
  24528. bottom: 3.5 / 1691
  24529. }
  24530. },
  24531. },
  24532. [
  24533. {
  24534. name: "Normal",
  24535. height: math.unit(5, "feet"),
  24536. default: true
  24537. },
  24538. ]
  24539. ))
  24540. characterMakers.push(() => makeCharacter(
  24541. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24542. {
  24543. front: {
  24544. height: math.unit(4 + 6 / 12, "feet"),
  24545. weight: math.unit(80, "lb"),
  24546. name: "Front",
  24547. image: {
  24548. source: "./media/characters/pixie/front.svg",
  24549. extra: 1924 / 1825,
  24550. bottom: 22.4 / 1946
  24551. }
  24552. },
  24553. },
  24554. [
  24555. {
  24556. name: "Normal",
  24557. height: math.unit(4 + 6 / 12, "feet"),
  24558. default: true
  24559. },
  24560. {
  24561. name: "Macro",
  24562. height: math.unit(40, "feet")
  24563. },
  24564. ]
  24565. ))
  24566. characterMakers.push(() => makeCharacter(
  24567. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24568. {
  24569. front: {
  24570. height: math.unit(2.1, "meters"),
  24571. weight: math.unit(200, "lb"),
  24572. name: "Front",
  24573. image: {
  24574. source: "./media/characters/the-lascivious/front.svg",
  24575. extra: 1 / 0.893,
  24576. bottom: 3.5 / 573.7
  24577. }
  24578. },
  24579. },
  24580. [
  24581. {
  24582. name: "Human Scale",
  24583. height: math.unit(2.1, "meters")
  24584. },
  24585. {
  24586. name: "Wolxi Scale",
  24587. height: math.unit(46.2, "m"),
  24588. default: true
  24589. },
  24590. {
  24591. name: "Boinker of Buildings",
  24592. height: math.unit(10, "km")
  24593. },
  24594. {
  24595. name: "Shagger of Skyscrapers",
  24596. height: math.unit(40, "km")
  24597. },
  24598. {
  24599. name: "Banger of Boroughs",
  24600. height: math.unit(4000, "km")
  24601. },
  24602. {
  24603. name: "Screwer of States",
  24604. height: math.unit(100000, "km")
  24605. },
  24606. {
  24607. name: "Pounder of Planets",
  24608. height: math.unit(2000000, "km")
  24609. },
  24610. ]
  24611. ))
  24612. characterMakers.push(() => makeCharacter(
  24613. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24614. {
  24615. front: {
  24616. height: math.unit(6, "feet"),
  24617. weight: math.unit(150, "lb"),
  24618. name: "Front",
  24619. image: {
  24620. source: "./media/characters/aj/front.svg",
  24621. extra: 2039 / 1562,
  24622. bottom: 40 / 2079
  24623. }
  24624. },
  24625. },
  24626. [
  24627. {
  24628. name: "Normal",
  24629. height: math.unit(11 + 6 / 12, "feet"),
  24630. default: true
  24631. },
  24632. {
  24633. name: "Megamacro",
  24634. height: math.unit(60, "megameters")
  24635. },
  24636. ]
  24637. ))
  24638. characterMakers.push(() => makeCharacter(
  24639. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24640. {
  24641. side: {
  24642. height: math.unit(31 + 8 / 12, "feet"),
  24643. weight: math.unit(75000, "kg"),
  24644. name: "Side",
  24645. image: {
  24646. source: "./media/characters/koros/side.svg",
  24647. extra: 1442 / 1297,
  24648. bottom: 122.7 / 1562
  24649. }
  24650. },
  24651. dicksKingsCrown: {
  24652. height: math.unit(6, "feet"),
  24653. name: "Dicks (King's Crown)",
  24654. image: {
  24655. source: "./media/characters/koros/dicks-kings-crown.svg"
  24656. }
  24657. },
  24658. dicksTailSet: {
  24659. height: math.unit(3, "feet"),
  24660. name: "Dicks (Tail Set)",
  24661. image: {
  24662. source: "./media/characters/koros/dicks-tail-set.svg"
  24663. }
  24664. },
  24665. dickCumming: {
  24666. height: math.unit(7.98, "feet"),
  24667. name: "Dick (Cumming)",
  24668. image: {
  24669. source: "./media/characters/koros/dick-cumming.svg"
  24670. }
  24671. },
  24672. dicksBack: {
  24673. height: math.unit(5.9, "feet"),
  24674. name: "Dicks (Back)",
  24675. image: {
  24676. source: "./media/characters/koros/dicks-back.svg"
  24677. }
  24678. },
  24679. dicksFront: {
  24680. height: math.unit(3.72, "feet"),
  24681. name: "Dicks (Front)",
  24682. image: {
  24683. source: "./media/characters/koros/dicks-front.svg"
  24684. }
  24685. },
  24686. dicksPeeking: {
  24687. height: math.unit(3.0, "feet"),
  24688. name: "Dicks (Peeking)",
  24689. image: {
  24690. source: "./media/characters/koros/dicks-peeking.svg"
  24691. }
  24692. },
  24693. eye: {
  24694. height: math.unit(1.7, "feet"),
  24695. name: "Eye",
  24696. image: {
  24697. source: "./media/characters/koros/eye.svg"
  24698. }
  24699. },
  24700. headFront: {
  24701. height: math.unit(11.69, "feet"),
  24702. name: "Head (Front)",
  24703. image: {
  24704. source: "./media/characters/koros/head-front.svg"
  24705. }
  24706. },
  24707. headSide: {
  24708. height: math.unit(14, "feet"),
  24709. name: "Head (Side)",
  24710. image: {
  24711. source: "./media/characters/koros/head-side.svg"
  24712. }
  24713. },
  24714. leg: {
  24715. height: math.unit(17, "feet"),
  24716. name: "Leg",
  24717. image: {
  24718. source: "./media/characters/koros/leg.svg"
  24719. }
  24720. },
  24721. mawSide: {
  24722. height: math.unit(12.8, "feet"),
  24723. name: "Maw (Side)",
  24724. image: {
  24725. source: "./media/characters/koros/maw-side.svg"
  24726. }
  24727. },
  24728. mawSpitting: {
  24729. height: math.unit(17, "feet"),
  24730. name: "Maw (Spitting)",
  24731. image: {
  24732. source: "./media/characters/koros/maw-spitting.svg"
  24733. }
  24734. },
  24735. slit: {
  24736. height: math.unit(2.8, "feet"),
  24737. name: "Slit",
  24738. image: {
  24739. source: "./media/characters/koros/slit.svg"
  24740. }
  24741. },
  24742. stomach: {
  24743. height: math.unit(6.8, "feet"),
  24744. capacity: math.unit(20, "people"),
  24745. name: "Stomach",
  24746. image: {
  24747. source: "./media/characters/koros/stomach.svg"
  24748. }
  24749. },
  24750. wingspanBottom: {
  24751. height: math.unit(114, "feet"),
  24752. name: "Wingspan (Bottom)",
  24753. image: {
  24754. source: "./media/characters/koros/wingspan-bottom.svg"
  24755. }
  24756. },
  24757. wingspanTop: {
  24758. height: math.unit(104, "feet"),
  24759. name: "Wingspan (Top)",
  24760. image: {
  24761. source: "./media/characters/koros/wingspan-top.svg"
  24762. }
  24763. },
  24764. },
  24765. [
  24766. {
  24767. name: "Normal",
  24768. height: math.unit(31 + 8 / 12, "feet"),
  24769. default: true
  24770. },
  24771. ]
  24772. ))
  24773. characterMakers.push(() => makeCharacter(
  24774. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24775. {
  24776. front: {
  24777. height: math.unit(18 + 5 / 12, "feet"),
  24778. weight: math.unit(3750, "kg"),
  24779. name: "Front",
  24780. image: {
  24781. source: "./media/characters/vexx/front.svg",
  24782. extra: 426 / 396,
  24783. bottom: 31.5 / 458
  24784. }
  24785. },
  24786. maw: {
  24787. height: math.unit(6, "feet"),
  24788. name: "Maw",
  24789. image: {
  24790. source: "./media/characters/vexx/maw.svg"
  24791. }
  24792. },
  24793. },
  24794. [
  24795. {
  24796. name: "Normal",
  24797. height: math.unit(18 + 5 / 12, "feet"),
  24798. default: true
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24804. {
  24805. front: {
  24806. height: math.unit(17 + 6 / 12, "feet"),
  24807. weight: math.unit(150, "lb"),
  24808. name: "Front",
  24809. image: {
  24810. source: "./media/characters/baadra/front.svg",
  24811. extra: 3137 / 2890,
  24812. bottom: 168.4 / 3305
  24813. }
  24814. },
  24815. back: {
  24816. height: math.unit(17 + 6 / 12, "feet"),
  24817. weight: math.unit(150, "lb"),
  24818. name: "Back",
  24819. image: {
  24820. source: "./media/characters/baadra/back.svg",
  24821. extra: 3142 / 2890,
  24822. bottom: 220 / 3371
  24823. }
  24824. },
  24825. head: {
  24826. height: math.unit(5.45, "feet"),
  24827. name: "Head",
  24828. image: {
  24829. source: "./media/characters/baadra/head.svg"
  24830. }
  24831. },
  24832. headAngry: {
  24833. height: math.unit(4.95, "feet"),
  24834. name: "Head (Angry)",
  24835. image: {
  24836. source: "./media/characters/baadra/head-angry.svg"
  24837. }
  24838. },
  24839. headOpen: {
  24840. height: math.unit(6, "feet"),
  24841. name: "Head (Open)",
  24842. image: {
  24843. source: "./media/characters/baadra/head-open.svg"
  24844. }
  24845. },
  24846. },
  24847. [
  24848. {
  24849. name: "Normal",
  24850. height: math.unit(17 + 6 / 12, "feet"),
  24851. default: true
  24852. },
  24853. ]
  24854. ))
  24855. characterMakers.push(() => makeCharacter(
  24856. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24857. {
  24858. front: {
  24859. height: math.unit(7 + 3 / 12, "feet"),
  24860. weight: math.unit(180, "lb"),
  24861. name: "Front",
  24862. image: {
  24863. source: "./media/characters/juri/front.svg",
  24864. extra: 1401 / 1237,
  24865. bottom: 18.5 / 1418
  24866. }
  24867. },
  24868. side: {
  24869. height: math.unit(7 + 3 / 12, "feet"),
  24870. weight: math.unit(180, "lb"),
  24871. name: "Side",
  24872. image: {
  24873. source: "./media/characters/juri/side.svg",
  24874. extra: 1424 / 1242,
  24875. bottom: 18.5 / 1447
  24876. }
  24877. },
  24878. sitting: {
  24879. height: math.unit(6, "feet"),
  24880. weight: math.unit(180, "lb"),
  24881. name: "Sitting",
  24882. image: {
  24883. source: "./media/characters/juri/sitting.svg",
  24884. extra: 1270 / 1143,
  24885. bottom: 100 / 1343
  24886. }
  24887. },
  24888. back: {
  24889. height: math.unit(7 + 3 / 12, "feet"),
  24890. weight: math.unit(180, "lb"),
  24891. name: "Back",
  24892. image: {
  24893. source: "./media/characters/juri/back.svg",
  24894. extra: 1377 / 1240,
  24895. bottom: 23.7 / 1405
  24896. }
  24897. },
  24898. maw: {
  24899. height: math.unit(2.8, "feet"),
  24900. name: "Maw",
  24901. image: {
  24902. source: "./media/characters/juri/maw.svg"
  24903. }
  24904. },
  24905. stomach: {
  24906. height: math.unit(0.89, "feet"),
  24907. capacity: math.unit(4, "liters"),
  24908. name: "Stomach",
  24909. image: {
  24910. source: "./media/characters/juri/stomach.svg"
  24911. }
  24912. },
  24913. },
  24914. [
  24915. {
  24916. name: "Normal",
  24917. height: math.unit(7 + 3 / 12, "feet"),
  24918. default: true
  24919. },
  24920. ]
  24921. ))
  24922. characterMakers.push(() => makeCharacter(
  24923. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24924. {
  24925. fox: {
  24926. height: math.unit(5 + 6 / 12, "feet"),
  24927. weight: math.unit(140, "lb"),
  24928. name: "Fox",
  24929. image: {
  24930. source: "./media/characters/maxene-sita/fox.svg",
  24931. extra: 146 / 138,
  24932. bottom: 2.1 / 148.19
  24933. }
  24934. },
  24935. foxLaying: {
  24936. height: math.unit(1.70, "feet"),
  24937. weight: math.unit(140, "lb"),
  24938. name: "Fox (Laying)",
  24939. image: {
  24940. source: "./media/characters/maxene-sita/fox-laying.svg",
  24941. extra: 910 / 572,
  24942. bottom: 71 / 981
  24943. }
  24944. },
  24945. kitsune: {
  24946. height: math.unit(10, "feet"),
  24947. weight: math.unit(800, "lb"),
  24948. name: "Kitsune",
  24949. image: {
  24950. source: "./media/characters/maxene-sita/kitsune.svg",
  24951. extra: 185 / 176,
  24952. bottom: 4.7 / 189.9
  24953. }
  24954. },
  24955. hellhound: {
  24956. height: math.unit(10, "feet"),
  24957. weight: math.unit(700, "lb"),
  24958. name: "Hellhound",
  24959. image: {
  24960. source: "./media/characters/maxene-sita/hellhound.svg",
  24961. extra: 1600 / 1545,
  24962. bottom: 81 / 1681
  24963. }
  24964. },
  24965. },
  24966. [
  24967. {
  24968. name: "Normal",
  24969. height: math.unit(5 + 6 / 12, "feet"),
  24970. default: true
  24971. },
  24972. ]
  24973. ))
  24974. characterMakers.push(() => makeCharacter(
  24975. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24976. {
  24977. front: {
  24978. height: math.unit(3 + 4 / 12, "feet"),
  24979. weight: math.unit(70, "lb"),
  24980. name: "Front",
  24981. image: {
  24982. source: "./media/characters/maia/front.svg",
  24983. extra: 227 / 219.5,
  24984. bottom: 40 / 267
  24985. }
  24986. },
  24987. back: {
  24988. height: math.unit(3 + 4 / 12, "feet"),
  24989. weight: math.unit(70, "lb"),
  24990. name: "Back",
  24991. image: {
  24992. source: "./media/characters/maia/back.svg",
  24993. extra: 237 / 225
  24994. }
  24995. },
  24996. },
  24997. [
  24998. {
  24999. name: "Normal",
  25000. height: math.unit(3 + 4 / 12, "feet"),
  25001. default: true
  25002. },
  25003. ]
  25004. ))
  25005. characterMakers.push(() => makeCharacter(
  25006. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25007. {
  25008. front: {
  25009. height: math.unit(5 + 10 / 12, "feet"),
  25010. weight: math.unit(197, "lb"),
  25011. name: "Front",
  25012. image: {
  25013. source: "./media/characters/jabaro/front.svg",
  25014. extra: 225 / 216,
  25015. bottom: 5.06 / 230
  25016. }
  25017. },
  25018. back: {
  25019. height: math.unit(5 + 10 / 12, "feet"),
  25020. weight: math.unit(197, "lb"),
  25021. name: "Back",
  25022. image: {
  25023. source: "./media/characters/jabaro/back.svg",
  25024. extra: 225 / 219,
  25025. bottom: 1.9 / 227
  25026. }
  25027. },
  25028. },
  25029. [
  25030. {
  25031. name: "Normal",
  25032. height: math.unit(5 + 10 / 12, "feet"),
  25033. default: true
  25034. },
  25035. ]
  25036. ))
  25037. characterMakers.push(() => makeCharacter(
  25038. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25039. {
  25040. front: {
  25041. height: math.unit(5 + 8 / 12, "feet"),
  25042. weight: math.unit(139, "lb"),
  25043. name: "Front",
  25044. image: {
  25045. source: "./media/characters/risa/front.svg",
  25046. extra: 270 / 260,
  25047. bottom: 11.2 / 282
  25048. }
  25049. },
  25050. back: {
  25051. height: math.unit(5 + 8 / 12, "feet"),
  25052. weight: math.unit(139, "lb"),
  25053. name: "Back",
  25054. image: {
  25055. source: "./media/characters/risa/back.svg",
  25056. extra: 264 / 255,
  25057. bottom: 4 / 268
  25058. }
  25059. },
  25060. },
  25061. [
  25062. {
  25063. name: "Normal",
  25064. height: math.unit(5 + 8 / 12, "feet"),
  25065. default: true
  25066. },
  25067. ]
  25068. ))
  25069. characterMakers.push(() => makeCharacter(
  25070. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25071. {
  25072. front: {
  25073. height: math.unit(2 + 11 / 12, "feet"),
  25074. weight: math.unit(30, "lb"),
  25075. name: "Front",
  25076. image: {
  25077. source: "./media/characters/weatley/front.svg",
  25078. bottom: 10.7 / 414,
  25079. extra: 403.5 / 362
  25080. }
  25081. },
  25082. back: {
  25083. height: math.unit(2 + 11 / 12, "feet"),
  25084. weight: math.unit(30, "lb"),
  25085. name: "Back",
  25086. image: {
  25087. source: "./media/characters/weatley/back.svg",
  25088. bottom: 10.7 / 414,
  25089. extra: 403.5 / 362
  25090. }
  25091. },
  25092. },
  25093. [
  25094. {
  25095. name: "Normal",
  25096. height: math.unit(2 + 11 / 12, "feet"),
  25097. default: true
  25098. },
  25099. ]
  25100. ))
  25101. characterMakers.push(() => makeCharacter(
  25102. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25103. {
  25104. front: {
  25105. height: math.unit(5 + 2 / 12, "feet"),
  25106. weight: math.unit(50, "kg"),
  25107. name: "Front",
  25108. image: {
  25109. source: "./media/characters/mercury-crescent/front.svg",
  25110. extra: 1088 / 1033,
  25111. bottom: 18.9 / 1109
  25112. }
  25113. },
  25114. },
  25115. [
  25116. {
  25117. name: "Normal",
  25118. height: math.unit(5 + 2 / 12, "feet"),
  25119. default: true
  25120. },
  25121. ]
  25122. ))
  25123. characterMakers.push(() => makeCharacter(
  25124. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25125. {
  25126. front: {
  25127. height: math.unit(2, "feet"),
  25128. weight: math.unit(15, "kg"),
  25129. name: "Front",
  25130. image: {
  25131. source: "./media/characters/diamond-jones/front.svg",
  25132. bottom: 16 / 568
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Normal",
  25139. height: math.unit(2, "feet"),
  25140. default: true
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25146. {
  25147. front: {
  25148. height: math.unit(3, "feet"),
  25149. weight: math.unit(30, "kg"),
  25150. name: "Front",
  25151. image: {
  25152. source: "./media/characters/sweet-bit/front.svg",
  25153. extra: 675 / 567,
  25154. bottom: 27.7 / 703
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Normal",
  25161. height: math.unit(3, "feet"),
  25162. default: true
  25163. },
  25164. ]
  25165. ))
  25166. characterMakers.push(() => makeCharacter(
  25167. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25168. {
  25169. side: {
  25170. height: math.unit(9.178, "feet"),
  25171. weight: math.unit(500, "lb"),
  25172. name: "Side",
  25173. image: {
  25174. source: "./media/characters/umbrazen/side.svg",
  25175. extra: 1730 / 1473,
  25176. bottom: 34.6 / 1765
  25177. }
  25178. },
  25179. },
  25180. [
  25181. {
  25182. name: "Normal",
  25183. height: math.unit(9.178, "feet"),
  25184. default: true
  25185. },
  25186. ]
  25187. ))
  25188. characterMakers.push(() => makeCharacter(
  25189. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25190. {
  25191. front: {
  25192. height: math.unit(10, "feet"),
  25193. weight: math.unit(750, "lb"),
  25194. name: "Front",
  25195. image: {
  25196. source: "./media/characters/arlist/front.svg",
  25197. extra: 961 / 778,
  25198. bottom: 6.2 / 986
  25199. }
  25200. },
  25201. },
  25202. [
  25203. {
  25204. name: "Normal",
  25205. height: math.unit(10, "feet"),
  25206. default: true
  25207. },
  25208. ]
  25209. ))
  25210. characterMakers.push(() => makeCharacter(
  25211. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25212. {
  25213. front: {
  25214. height: math.unit(5 + 1 / 12, "feet"),
  25215. weight: math.unit(110, "lb"),
  25216. name: "Front",
  25217. image: {
  25218. source: "./media/characters/aradel/front.svg",
  25219. extra: 324 / 303,
  25220. bottom: 3.6 / 329.4
  25221. }
  25222. },
  25223. },
  25224. [
  25225. {
  25226. name: "Normal",
  25227. height: math.unit(5 + 1 / 12, "feet"),
  25228. default: true
  25229. },
  25230. ]
  25231. ))
  25232. characterMakers.push(() => makeCharacter(
  25233. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25234. {
  25235. front: {
  25236. height: math.unit(3 + 8 / 12, "feet"),
  25237. weight: math.unit(50, "lb"),
  25238. name: "Front",
  25239. image: {
  25240. source: "./media/characters/serryn/front.svg",
  25241. extra: 1792 / 1656,
  25242. bottom: 43.5 / 1840
  25243. }
  25244. },
  25245. },
  25246. [
  25247. {
  25248. name: "Normal",
  25249. height: math.unit(3 + 8 / 12, "feet"),
  25250. default: true
  25251. },
  25252. ]
  25253. ))
  25254. characterMakers.push(() => makeCharacter(
  25255. { name: "Xavier Thyme" },
  25256. {
  25257. front: {
  25258. height: math.unit(7 + 10 / 12, "feet"),
  25259. weight: math.unit(255, "lb"),
  25260. name: "Front",
  25261. image: {
  25262. source: "./media/characters/xavier-thyme/front.svg",
  25263. extra: 3733 / 3642,
  25264. bottom: 131 / 3869
  25265. }
  25266. },
  25267. frontRaven: {
  25268. height: math.unit(7 + 10 / 12, "feet"),
  25269. weight: math.unit(255, "lb"),
  25270. name: "Front (Raven)",
  25271. image: {
  25272. source: "./media/characters/xavier-thyme/front-raven.svg",
  25273. extra: 4385 / 3642,
  25274. bottom: 131 / 4517
  25275. }
  25276. },
  25277. },
  25278. [
  25279. {
  25280. name: "Normal",
  25281. height: math.unit(7 + 10 / 12, "feet"),
  25282. default: true
  25283. },
  25284. ]
  25285. ))
  25286. characterMakers.push(() => makeCharacter(
  25287. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25288. {
  25289. front: {
  25290. height: math.unit(1.6, "m"),
  25291. weight: math.unit(50, "kg"),
  25292. name: "Front",
  25293. image: {
  25294. source: "./media/characters/kiki/front.svg",
  25295. extra: 4682 / 3610,
  25296. bottom: 115 / 4777
  25297. }
  25298. },
  25299. },
  25300. [
  25301. {
  25302. name: "Normal",
  25303. height: math.unit(1.6, "meters"),
  25304. default: true
  25305. },
  25306. ]
  25307. ))
  25308. characterMakers.push(() => makeCharacter(
  25309. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25310. {
  25311. front: {
  25312. height: math.unit(50, "m"),
  25313. weight: math.unit(500, "tonnes"),
  25314. name: "Front",
  25315. image: {
  25316. source: "./media/characters/ryoko/front.svg",
  25317. extra: 4632 / 3926,
  25318. bottom: 193 / 4823
  25319. }
  25320. },
  25321. },
  25322. [
  25323. {
  25324. name: "Normal",
  25325. height: math.unit(50, "meters"),
  25326. default: true
  25327. },
  25328. ]
  25329. ))
  25330. characterMakers.push(() => makeCharacter(
  25331. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25332. {
  25333. front: {
  25334. height: math.unit(30, "m"),
  25335. weight: math.unit(22, "tonnes"),
  25336. name: "Front",
  25337. image: {
  25338. source: "./media/characters/elio/front.svg",
  25339. extra: 4582 / 3720,
  25340. bottom: 236 / 4828
  25341. }
  25342. },
  25343. },
  25344. [
  25345. {
  25346. name: "Normal",
  25347. height: math.unit(30, "meters"),
  25348. default: true
  25349. },
  25350. ]
  25351. ))
  25352. characterMakers.push(() => makeCharacter(
  25353. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25354. {
  25355. front: {
  25356. height: math.unit(6 + 3 / 12, "feet"),
  25357. weight: math.unit(120, "lb"),
  25358. name: "Front",
  25359. image: {
  25360. source: "./media/characters/azura/front.svg",
  25361. extra: 1149 / 1135,
  25362. bottom: 45 / 1194
  25363. }
  25364. },
  25365. frontClothed: {
  25366. height: math.unit(6 + 3 / 12, "feet"),
  25367. weight: math.unit(120, "lb"),
  25368. name: "Front (Clothed)",
  25369. image: {
  25370. source: "./media/characters/azura/front-clothed.svg",
  25371. extra: 1149 / 1135,
  25372. bottom: 45 / 1194
  25373. }
  25374. },
  25375. },
  25376. [
  25377. {
  25378. name: "Normal",
  25379. height: math.unit(6 + 3 / 12, "feet"),
  25380. default: true
  25381. },
  25382. {
  25383. name: "Macro",
  25384. height: math.unit(20 + 6 / 12, "feet")
  25385. },
  25386. {
  25387. name: "Megamacro",
  25388. height: math.unit(12, "miles")
  25389. },
  25390. {
  25391. name: "Gigamacro",
  25392. height: math.unit(10000, "miles")
  25393. },
  25394. {
  25395. name: "Teramacro",
  25396. height: math.unit(900000, "miles")
  25397. },
  25398. ]
  25399. ))
  25400. characterMakers.push(() => makeCharacter(
  25401. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25402. {
  25403. front: {
  25404. height: math.unit(12, "feet"),
  25405. weight: math.unit(1, "ton"),
  25406. capacity: math.unit(660000, "gallons"),
  25407. name: "Front",
  25408. image: {
  25409. source: "./media/characters/zeus/front.svg",
  25410. extra: 5005 / 4717,
  25411. bottom: 363 / 5388
  25412. }
  25413. },
  25414. },
  25415. [
  25416. {
  25417. name: "Normal",
  25418. height: math.unit(12, "feet")
  25419. },
  25420. {
  25421. name: "Preferred Size",
  25422. height: math.unit(0.5, "miles"),
  25423. default: true
  25424. },
  25425. {
  25426. name: "Giga Horse",
  25427. height: math.unit(300, "miles")
  25428. },
  25429. {
  25430. name: "Riding Planets",
  25431. height: math.unit(30, "megameters")
  25432. },
  25433. {
  25434. name: "Cosmic Giant",
  25435. height: math.unit(3, "zettameters")
  25436. },
  25437. {
  25438. name: "Breeding God",
  25439. height: math.unit(9.92e22, "yottameters")
  25440. },
  25441. ]
  25442. ))
  25443. characterMakers.push(() => makeCharacter(
  25444. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25445. {
  25446. side: {
  25447. height: math.unit(9, "feet"),
  25448. weight: math.unit(1500, "kg"),
  25449. name: "Side",
  25450. image: {
  25451. source: "./media/characters/fang/side.svg",
  25452. extra: 924 / 866,
  25453. bottom: 47.5 / 972.3
  25454. }
  25455. },
  25456. },
  25457. [
  25458. {
  25459. name: "Normal",
  25460. height: math.unit(9, "feet"),
  25461. default: true
  25462. },
  25463. {
  25464. name: "Macro",
  25465. height: math.unit(75 + 6 / 12, "feet")
  25466. },
  25467. {
  25468. name: "Teramacro",
  25469. height: math.unit(50000, "miles")
  25470. },
  25471. ]
  25472. ))
  25473. characterMakers.push(() => makeCharacter(
  25474. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25475. {
  25476. front: {
  25477. height: math.unit(10, "feet"),
  25478. weight: math.unit(2, "tons"),
  25479. name: "Front",
  25480. image: {
  25481. source: "./media/characters/rekhit/front.svg",
  25482. extra: 2796 / 2590,
  25483. bottom: 225 / 3022
  25484. }
  25485. },
  25486. },
  25487. [
  25488. {
  25489. name: "Normal",
  25490. height: math.unit(10, "feet"),
  25491. default: true
  25492. },
  25493. {
  25494. name: "Macro",
  25495. height: math.unit(500, "feet")
  25496. },
  25497. ]
  25498. ))
  25499. characterMakers.push(() => makeCharacter(
  25500. { name: "Dahlia Verrick" },
  25501. {
  25502. front: {
  25503. height: math.unit(7 + 6.451 / 12, "feet"),
  25504. weight: math.unit(310, "lb"),
  25505. name: "Front",
  25506. image: {
  25507. source: "./media/characters/dahlia-verrick/front.svg",
  25508. extra: 1488 / 1365,
  25509. bottom: 6.2 / 1495
  25510. }
  25511. },
  25512. back: {
  25513. height: math.unit(7 + 6.451 / 12, "feet"),
  25514. weight: math.unit(310, "lb"),
  25515. name: "Back",
  25516. image: {
  25517. source: "./media/characters/dahlia-verrick/back.svg",
  25518. extra: 1472 / 1351,
  25519. bottom: 5.28 / 1477
  25520. }
  25521. },
  25522. frontBusiness: {
  25523. height: math.unit(7 + 6.451 / 12, "feet"),
  25524. weight: math.unit(200, "lb"),
  25525. name: "Front (Business)",
  25526. image: {
  25527. source: "./media/characters/dahlia-verrick/front-business.svg",
  25528. extra: 1478 / 1381,
  25529. bottom: 5.5 / 1484
  25530. }
  25531. },
  25532. frontCasual: {
  25533. height: math.unit(7 + 6.451 / 12, "feet"),
  25534. weight: math.unit(200, "lb"),
  25535. name: "Front (Casual)",
  25536. image: {
  25537. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25538. extra: 1478 / 1381,
  25539. bottom: 5.5 / 1484
  25540. }
  25541. },
  25542. },
  25543. [
  25544. {
  25545. name: "Travel-Sized",
  25546. height: math.unit(7.45, "inches")
  25547. },
  25548. {
  25549. name: "Normal",
  25550. height: math.unit(7 + 6.451 / 12, "feet"),
  25551. default: true
  25552. },
  25553. {
  25554. name: "Hitting the Town",
  25555. height: math.unit(37 + 8 / 12, "feet")
  25556. },
  25557. {
  25558. name: "Stomp in the Suburbs",
  25559. height: math.unit(964 + 9.728 / 12, "feet")
  25560. },
  25561. {
  25562. name: "Sit on the City",
  25563. height: math.unit(61747 + 10.592 / 12, "feet")
  25564. },
  25565. {
  25566. name: "Glomp the Globe",
  25567. height: math.unit(252919327 + 4.832 / 12, "feet")
  25568. },
  25569. ]
  25570. ))
  25571. characterMakers.push(() => makeCharacter(
  25572. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25573. {
  25574. front: {
  25575. height: math.unit(6 + 4 / 12, "feet"),
  25576. weight: math.unit(320, "lb"),
  25577. name: "Front",
  25578. image: {
  25579. source: "./media/characters/balina-mahigan/front.svg",
  25580. extra: 447 / 428,
  25581. bottom: 18 / 466
  25582. }
  25583. },
  25584. back: {
  25585. height: math.unit(6 + 4 / 12, "feet"),
  25586. weight: math.unit(320, "lb"),
  25587. name: "Back",
  25588. image: {
  25589. source: "./media/characters/balina-mahigan/back.svg",
  25590. extra: 445 / 428,
  25591. bottom: 4.07 / 448
  25592. }
  25593. },
  25594. arm: {
  25595. height: math.unit(1.88, "feet"),
  25596. name: "Arm",
  25597. image: {
  25598. source: "./media/characters/balina-mahigan/arm.svg"
  25599. }
  25600. },
  25601. backPort: {
  25602. height: math.unit(0.685, "feet"),
  25603. name: "Back Port",
  25604. image: {
  25605. source: "./media/characters/balina-mahigan/back-port.svg"
  25606. }
  25607. },
  25608. hoofpaw: {
  25609. height: math.unit(1.41, "feet"),
  25610. name: "Hoofpaw",
  25611. image: {
  25612. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25613. }
  25614. },
  25615. leftHandBack: {
  25616. height: math.unit(0.938, "feet"),
  25617. name: "Left Hand (Back)",
  25618. image: {
  25619. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25620. }
  25621. },
  25622. leftHandFront: {
  25623. height: math.unit(0.938, "feet"),
  25624. name: "Left Hand (Front)",
  25625. image: {
  25626. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25627. }
  25628. },
  25629. rightHandBack: {
  25630. height: math.unit(0.95, "feet"),
  25631. name: "Right Hand (Back)",
  25632. image: {
  25633. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25634. }
  25635. },
  25636. rightHandFront: {
  25637. height: math.unit(0.95, "feet"),
  25638. name: "Right Hand (Front)",
  25639. image: {
  25640. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25641. }
  25642. },
  25643. },
  25644. [
  25645. {
  25646. name: "Normal",
  25647. height: math.unit(6 + 4 / 12, "feet"),
  25648. default: true
  25649. },
  25650. ]
  25651. ))
  25652. characterMakers.push(() => makeCharacter(
  25653. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25654. {
  25655. front: {
  25656. height: math.unit(6, "feet"),
  25657. weight: math.unit(320, "lb"),
  25658. name: "Front",
  25659. image: {
  25660. source: "./media/characters/balina-mejeri/front.svg",
  25661. extra: 517 / 488,
  25662. bottom: 44.2 / 561
  25663. }
  25664. },
  25665. },
  25666. [
  25667. {
  25668. name: "Normal",
  25669. height: math.unit(6 + 4 / 12, "feet")
  25670. },
  25671. {
  25672. name: "Business",
  25673. height: math.unit(155, "feet"),
  25674. default: true
  25675. },
  25676. ]
  25677. ))
  25678. characterMakers.push(() => makeCharacter(
  25679. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25680. {
  25681. kneeling: {
  25682. height: math.unit(6 + 4 / 12, "feet"),
  25683. weight: math.unit(300 * 20, "lb"),
  25684. name: "Kneeling",
  25685. image: {
  25686. source: "./media/characters/balbarian/kneeling.svg",
  25687. extra: 922 / 862,
  25688. bottom: 42.4 / 965
  25689. }
  25690. },
  25691. },
  25692. [
  25693. {
  25694. name: "Normal",
  25695. height: math.unit(6 + 4 / 12, "feet")
  25696. },
  25697. {
  25698. name: "Treasured",
  25699. height: math.unit(18 + 9 / 12, "feet"),
  25700. default: true
  25701. },
  25702. {
  25703. name: "Macro",
  25704. height: math.unit(900, "feet")
  25705. },
  25706. ]
  25707. ))
  25708. characterMakers.push(() => makeCharacter(
  25709. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25710. {
  25711. front: {
  25712. height: math.unit(6 + 4 / 12, "feet"),
  25713. weight: math.unit(325, "lb"),
  25714. name: "Front",
  25715. image: {
  25716. source: "./media/characters/balina-amarini/front.svg",
  25717. extra: 415 / 403,
  25718. bottom: 19 / 433.4
  25719. }
  25720. },
  25721. back: {
  25722. height: math.unit(6 + 4 / 12, "feet"),
  25723. weight: math.unit(325, "lb"),
  25724. name: "Back",
  25725. image: {
  25726. source: "./media/characters/balina-amarini/back.svg",
  25727. extra: 415 / 403,
  25728. bottom: 13.5 / 432
  25729. }
  25730. },
  25731. overdrive: {
  25732. height: math.unit(6 + 4 / 12, "feet"),
  25733. weight: math.unit(400, "lb"),
  25734. name: "Overdrive",
  25735. image: {
  25736. source: "./media/characters/balina-amarini/overdrive.svg",
  25737. extra: 269 / 259,
  25738. bottom: 12 / 282
  25739. }
  25740. },
  25741. },
  25742. [
  25743. {
  25744. name: "Boom",
  25745. height: math.unit(9 + 10 / 12, "feet"),
  25746. default: true
  25747. },
  25748. {
  25749. name: "Macro",
  25750. height: math.unit(280, "feet")
  25751. },
  25752. ]
  25753. ))
  25754. characterMakers.push(() => makeCharacter(
  25755. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25756. {
  25757. goddess: {
  25758. height: math.unit(600, "feet"),
  25759. weight: math.unit(2000000, "tons"),
  25760. name: "Goddess",
  25761. image: {
  25762. source: "./media/characters/lady-kubwa/goddess.svg",
  25763. extra: 1240.5 / 1223,
  25764. bottom: 22 / 1263
  25765. }
  25766. },
  25767. goddesser: {
  25768. height: math.unit(900, "feet"),
  25769. weight: math.unit(20000000, "lb"),
  25770. name: "Goddess-er",
  25771. image: {
  25772. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25773. extra: 899 / 888,
  25774. bottom: 12.6 / 912
  25775. }
  25776. },
  25777. },
  25778. [
  25779. {
  25780. name: "Macro",
  25781. height: math.unit(600, "feet"),
  25782. default: true
  25783. },
  25784. {
  25785. name: "Megamacro",
  25786. height: math.unit(250, "miles")
  25787. },
  25788. ]
  25789. ))
  25790. characterMakers.push(() => makeCharacter(
  25791. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25792. {
  25793. front: {
  25794. height: math.unit(7 + 7 / 12, "feet"),
  25795. weight: math.unit(250, "lb"),
  25796. name: "Front",
  25797. image: {
  25798. source: "./media/characters/tala-grovehorn/front.svg",
  25799. extra: 2636 / 2525,
  25800. bottom: 147 / 2781
  25801. }
  25802. },
  25803. back: {
  25804. height: math.unit(7 + 7 / 12, "feet"),
  25805. weight: math.unit(250, "lb"),
  25806. name: "Back",
  25807. image: {
  25808. source: "./media/characters/tala-grovehorn/back.svg",
  25809. extra: 2635 / 2539,
  25810. bottom: 100 / 2732.8
  25811. }
  25812. },
  25813. mouth: {
  25814. height: math.unit(1.15, "feet"),
  25815. name: "Mouth",
  25816. image: {
  25817. source: "./media/characters/tala-grovehorn/mouth.svg"
  25818. }
  25819. },
  25820. dick: {
  25821. height: math.unit(2.36, "feet"),
  25822. name: "Dick",
  25823. image: {
  25824. source: "./media/characters/tala-grovehorn/dick.svg"
  25825. }
  25826. },
  25827. slit: {
  25828. height: math.unit(0.61, "feet"),
  25829. name: "Slit",
  25830. image: {
  25831. source: "./media/characters/tala-grovehorn/slit.svg"
  25832. }
  25833. },
  25834. },
  25835. [
  25836. ]
  25837. ))
  25838. characterMakers.push(() => makeCharacter(
  25839. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25840. {
  25841. front: {
  25842. height: math.unit(7 + 7 / 12, "feet"),
  25843. weight: math.unit(225, "lb"),
  25844. name: "Front",
  25845. image: {
  25846. source: "./media/characters/epona/front.svg",
  25847. extra: 2445 / 2290,
  25848. bottom: 251 / 2696
  25849. }
  25850. },
  25851. back: {
  25852. height: math.unit(7 + 7 / 12, "feet"),
  25853. weight: math.unit(225, "lb"),
  25854. name: "Back",
  25855. image: {
  25856. source: "./media/characters/epona/back.svg",
  25857. extra: 2546 / 2408,
  25858. bottom: 44 / 2589
  25859. }
  25860. },
  25861. genitals: {
  25862. height: math.unit(1.5, "feet"),
  25863. name: "Genitals",
  25864. image: {
  25865. source: "./media/characters/epona/genitals.svg"
  25866. }
  25867. },
  25868. },
  25869. [
  25870. {
  25871. name: "Normal",
  25872. height: math.unit(7 + 7 / 12, "feet"),
  25873. default: true
  25874. },
  25875. ]
  25876. ))
  25877. characterMakers.push(() => makeCharacter(
  25878. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25879. {
  25880. front: {
  25881. height: math.unit(7, "feet"),
  25882. weight: math.unit(518, "lb"),
  25883. name: "Front",
  25884. image: {
  25885. source: "./media/characters/avia-bloodbourn/front.svg",
  25886. extra: 1466 / 1350,
  25887. bottom: 65 / 1527
  25888. }
  25889. },
  25890. },
  25891. [
  25892. ]
  25893. ))
  25894. characterMakers.push(() => makeCharacter(
  25895. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25896. {
  25897. front: {
  25898. height: math.unit(9.35, "feet"),
  25899. weight: math.unit(600, "lb"),
  25900. name: "Front",
  25901. image: {
  25902. source: "./media/characters/amera/front.svg",
  25903. extra: 891 / 818,
  25904. bottom: 30 / 922.7
  25905. }
  25906. },
  25907. back: {
  25908. height: math.unit(9.35, "feet"),
  25909. weight: math.unit(600, "lb"),
  25910. name: "Back",
  25911. image: {
  25912. source: "./media/characters/amera/back.svg",
  25913. extra: 876 / 824,
  25914. bottom: 6.8 / 884
  25915. }
  25916. },
  25917. dick: {
  25918. height: math.unit(2.14, "feet"),
  25919. name: "Dick",
  25920. image: {
  25921. source: "./media/characters/amera/dick.svg"
  25922. }
  25923. },
  25924. },
  25925. [
  25926. {
  25927. name: "Normal",
  25928. height: math.unit(9.35, "feet"),
  25929. default: true
  25930. },
  25931. ]
  25932. ))
  25933. characterMakers.push(() => makeCharacter(
  25934. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25935. {
  25936. kneeling: {
  25937. height: math.unit(3 + 4 / 12, "feet"),
  25938. weight: math.unit(90, "lb"),
  25939. name: "Kneeling",
  25940. image: {
  25941. source: "./media/characters/rosewen/kneeling.svg",
  25942. extra: 1835 / 1571,
  25943. bottom: 27.7 / 1862
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Normal",
  25950. height: math.unit(3 + 4 / 12, "feet"),
  25951. default: true
  25952. },
  25953. ]
  25954. ))
  25955. characterMakers.push(() => makeCharacter(
  25956. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25957. {
  25958. front: {
  25959. height: math.unit(5 + 10 / 12, "feet"),
  25960. weight: math.unit(200, "lb"),
  25961. name: "Front",
  25962. image: {
  25963. source: "./media/characters/sabah/front.svg",
  25964. extra: 849 / 763,
  25965. bottom: 33.9 / 881
  25966. }
  25967. },
  25968. },
  25969. [
  25970. {
  25971. name: "Normal",
  25972. height: math.unit(5 + 10 / 12, "feet"),
  25973. default: true
  25974. },
  25975. ]
  25976. ))
  25977. characterMakers.push(() => makeCharacter(
  25978. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25979. {
  25980. front: {
  25981. height: math.unit(3 + 5 / 12, "feet"),
  25982. weight: math.unit(40, "kg"),
  25983. name: "Front",
  25984. image: {
  25985. source: "./media/characters/purple-flame/front.svg",
  25986. extra: 1577 / 1412,
  25987. bottom: 97 / 1694
  25988. }
  25989. },
  25990. frontDressed: {
  25991. height: math.unit(3 + 5 / 12, "feet"),
  25992. weight: math.unit(40, "kg"),
  25993. name: "Front (Dressed)",
  25994. image: {
  25995. source: "./media/characters/purple-flame/front-dressed.svg",
  25996. extra: 1577 / 1412,
  25997. bottom: 97 / 1694
  25998. }
  25999. },
  26000. headphones: {
  26001. height: math.unit(0.85, "feet"),
  26002. name: "Headphones",
  26003. image: {
  26004. source: "./media/characters/purple-flame/headphones.svg"
  26005. }
  26006. },
  26007. },
  26008. [
  26009. {
  26010. name: "Really Small",
  26011. height: math.unit(5, "cm")
  26012. },
  26013. {
  26014. name: "Micro",
  26015. height: math.unit(1 + 5 / 12, "feet")
  26016. },
  26017. {
  26018. name: "Normal",
  26019. height: math.unit(3 + 5 / 12, "feet"),
  26020. default: true
  26021. },
  26022. {
  26023. name: "Minimacro",
  26024. height: math.unit(125, "feet")
  26025. },
  26026. {
  26027. name: "Macro",
  26028. height: math.unit(0.5, "miles")
  26029. },
  26030. {
  26031. name: "Megamacro",
  26032. height: math.unit(50, "miles")
  26033. },
  26034. {
  26035. name: "Gigantic",
  26036. height: math.unit(750, "miles")
  26037. },
  26038. {
  26039. name: "Planetary",
  26040. height: math.unit(15000, "miles")
  26041. },
  26042. ]
  26043. ))
  26044. characterMakers.push(() => makeCharacter(
  26045. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26046. {
  26047. front: {
  26048. height: math.unit(14, "feet"),
  26049. weight: math.unit(959, "lb"),
  26050. name: "Front",
  26051. image: {
  26052. source: "./media/characters/arsenal/front.svg",
  26053. extra: 2357 / 2157,
  26054. bottom: 93 / 2458
  26055. }
  26056. },
  26057. },
  26058. [
  26059. {
  26060. name: "Normal",
  26061. height: math.unit(14, "feet"),
  26062. default: true
  26063. },
  26064. ]
  26065. ))
  26066. characterMakers.push(() => makeCharacter(
  26067. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26068. {
  26069. front: {
  26070. height: math.unit(6, "feet"),
  26071. weight: math.unit(150, "lb"),
  26072. name: "Front",
  26073. image: {
  26074. source: "./media/characters/adira/front.svg",
  26075. extra: 1078 / 1029,
  26076. bottom: 87 / 1166
  26077. }
  26078. },
  26079. },
  26080. [
  26081. {
  26082. name: "Micro",
  26083. height: math.unit(4, "inches"),
  26084. default: true
  26085. },
  26086. {
  26087. name: "Macro",
  26088. height: math.unit(50, "feet")
  26089. },
  26090. ]
  26091. ))
  26092. characterMakers.push(() => makeCharacter(
  26093. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26094. {
  26095. front: {
  26096. height: math.unit(16, "feet"),
  26097. weight: math.unit(1000, "lb"),
  26098. name: "Front",
  26099. image: {
  26100. source: "./media/characters/grim/front.svg",
  26101. extra: 622 / 614,
  26102. bottom: 18.1 / 642
  26103. }
  26104. },
  26105. back: {
  26106. height: math.unit(16, "feet"),
  26107. weight: math.unit(1000, "lb"),
  26108. name: "Back",
  26109. image: {
  26110. source: "./media/characters/grim/back.svg",
  26111. extra: 610.6 / 602,
  26112. bottom: 40.8 / 652
  26113. }
  26114. },
  26115. hunched: {
  26116. height: math.unit(9.75, "feet"),
  26117. weight: math.unit(1000, "lb"),
  26118. name: "Hunched",
  26119. image: {
  26120. source: "./media/characters/grim/hunched.svg",
  26121. extra: 304 / 297,
  26122. bottom: 35.4 / 394
  26123. }
  26124. },
  26125. },
  26126. [
  26127. {
  26128. name: "Normal",
  26129. height: math.unit(16, "feet"),
  26130. default: true
  26131. },
  26132. ]
  26133. ))
  26134. characterMakers.push(() => makeCharacter(
  26135. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26136. {
  26137. front: {
  26138. height: math.unit(2.3, "meters"),
  26139. weight: math.unit(300, "lb"),
  26140. name: "Front",
  26141. image: {
  26142. source: "./media/characters/sinja/front-sfw.svg",
  26143. extra: 1393 / 1294,
  26144. bottom: 70 / 1463
  26145. }
  26146. },
  26147. frontNsfw: {
  26148. height: math.unit(2.3, "meters"),
  26149. weight: math.unit(300, "lb"),
  26150. name: "Front (NSFW)",
  26151. image: {
  26152. source: "./media/characters/sinja/front-nsfw.svg",
  26153. extra: 1393 / 1294,
  26154. bottom: 70 / 1463
  26155. }
  26156. },
  26157. back: {
  26158. height: math.unit(2.3, "meters"),
  26159. weight: math.unit(300, "lb"),
  26160. name: "Back",
  26161. image: {
  26162. source: "./media/characters/sinja/back.svg",
  26163. extra: 1393 / 1294,
  26164. bottom: 70 / 1463
  26165. }
  26166. },
  26167. head: {
  26168. height: math.unit(1.771, "feet"),
  26169. name: "Head",
  26170. image: {
  26171. source: "./media/characters/sinja/head.svg"
  26172. }
  26173. },
  26174. slit: {
  26175. height: math.unit(0.8, "feet"),
  26176. name: "Slit",
  26177. image: {
  26178. source: "./media/characters/sinja/slit.svg"
  26179. }
  26180. },
  26181. },
  26182. [
  26183. {
  26184. name: "Normal",
  26185. height: math.unit(2.3, "meters")
  26186. },
  26187. {
  26188. name: "Macro",
  26189. height: math.unit(91, "meters"),
  26190. default: true
  26191. },
  26192. {
  26193. name: "Megamacro",
  26194. height: math.unit(91440, "meters")
  26195. },
  26196. {
  26197. name: "Gigamacro",
  26198. height: math.unit(60960000, "meters")
  26199. },
  26200. {
  26201. name: "Teramacro",
  26202. height: math.unit(9144000000, "meters")
  26203. },
  26204. ]
  26205. ))
  26206. characterMakers.push(() => makeCharacter(
  26207. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26208. {
  26209. front: {
  26210. height: math.unit(1.7, "meters"),
  26211. weight: math.unit(130, "lb"),
  26212. name: "Front",
  26213. image: {
  26214. source: "./media/characters/kyu/front.svg",
  26215. extra: 415 / 395,
  26216. bottom: 5 / 420
  26217. }
  26218. },
  26219. head: {
  26220. height: math.unit(1.75, "feet"),
  26221. name: "Head",
  26222. image: {
  26223. source: "./media/characters/kyu/head.svg"
  26224. }
  26225. },
  26226. foot: {
  26227. height: math.unit(0.81, "feet"),
  26228. name: "Foot",
  26229. image: {
  26230. source: "./media/characters/kyu/foot.svg"
  26231. }
  26232. },
  26233. },
  26234. [
  26235. {
  26236. name: "Normal",
  26237. height: math.unit(1.7, "meters")
  26238. },
  26239. {
  26240. name: "Macro",
  26241. height: math.unit(131, "feet"),
  26242. default: true
  26243. },
  26244. {
  26245. name: "Megamacro",
  26246. height: math.unit(91440, "meters")
  26247. },
  26248. {
  26249. name: "Gigamacro",
  26250. height: math.unit(60960000, "meters")
  26251. },
  26252. {
  26253. name: "Teramacro",
  26254. height: math.unit(9144000000, "meters")
  26255. },
  26256. ]
  26257. ))
  26258. characterMakers.push(() => makeCharacter(
  26259. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26260. {
  26261. front: {
  26262. height: math.unit(7 + 1 / 12, "feet"),
  26263. weight: math.unit(250, "lb"),
  26264. name: "Front",
  26265. image: {
  26266. source: "./media/characters/joey/front.svg",
  26267. extra: 1791 / 1537,
  26268. bottom: 28 / 1816
  26269. }
  26270. },
  26271. },
  26272. [
  26273. {
  26274. name: "Micro",
  26275. height: math.unit(3, "inches")
  26276. },
  26277. {
  26278. name: "Normal",
  26279. height: math.unit(7 + 1 / 12, "feet"),
  26280. default: true
  26281. },
  26282. ]
  26283. ))
  26284. characterMakers.push(() => makeCharacter(
  26285. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26286. {
  26287. front: {
  26288. height: math.unit(165, "cm"),
  26289. weight: math.unit(140, "lb"),
  26290. name: "Front",
  26291. image: {
  26292. source: "./media/characters/sam-evans/front.svg",
  26293. extra: 3417 / 3230,
  26294. bottom: 41.3 / 3417
  26295. }
  26296. },
  26297. frontSixTails: {
  26298. height: math.unit(165, "cm"),
  26299. weight: math.unit(140, "lb"),
  26300. name: "Front-six-tails",
  26301. image: {
  26302. source: "./media/characters/sam-evans/front-six-tails.svg",
  26303. extra: 3417 / 3230,
  26304. bottom: 41.3 / 3417
  26305. }
  26306. },
  26307. back: {
  26308. height: math.unit(165, "cm"),
  26309. weight: math.unit(140, "lb"),
  26310. name: "Back",
  26311. image: {
  26312. source: "./media/characters/sam-evans/back.svg",
  26313. extra: 3227 / 3032,
  26314. bottom: 6.8 / 3234
  26315. }
  26316. },
  26317. face: {
  26318. height: math.unit(0.68, "feet"),
  26319. name: "Face",
  26320. image: {
  26321. source: "./media/characters/sam-evans/face.svg"
  26322. }
  26323. },
  26324. },
  26325. [
  26326. {
  26327. name: "Normal",
  26328. height: math.unit(165, "cm"),
  26329. default: true
  26330. },
  26331. {
  26332. name: "Macro",
  26333. height: math.unit(100, "meters")
  26334. },
  26335. {
  26336. name: "Macro+",
  26337. height: math.unit(800, "meters")
  26338. },
  26339. {
  26340. name: "Macro++",
  26341. height: math.unit(3, "km")
  26342. },
  26343. {
  26344. name: "Macro+++",
  26345. height: math.unit(30, "km")
  26346. },
  26347. ]
  26348. ))
  26349. characterMakers.push(() => makeCharacter(
  26350. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26351. {
  26352. front: {
  26353. height: math.unit(10, "feet"),
  26354. weight: math.unit(750, "lb"),
  26355. name: "Front",
  26356. image: {
  26357. source: "./media/characters/juliet-a/front.svg",
  26358. extra: 1766 / 1720,
  26359. bottom: 43 / 1809
  26360. }
  26361. },
  26362. back: {
  26363. height: math.unit(10, "feet"),
  26364. weight: math.unit(750, "lb"),
  26365. name: "Back",
  26366. image: {
  26367. source: "./media/characters/juliet-a/back.svg",
  26368. extra: 1781 / 1734,
  26369. bottom: 35 / 1810,
  26370. }
  26371. },
  26372. },
  26373. [
  26374. {
  26375. name: "Normal",
  26376. height: math.unit(10, "feet"),
  26377. default: true
  26378. },
  26379. {
  26380. name: "Dragon Form",
  26381. height: math.unit(250, "feet")
  26382. },
  26383. {
  26384. name: "Macro",
  26385. height: math.unit(1000, "feet")
  26386. },
  26387. {
  26388. name: "Megamacro",
  26389. height: math.unit(10000, "feet")
  26390. }
  26391. ]
  26392. ))
  26393. characterMakers.push(() => makeCharacter(
  26394. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26395. {
  26396. regular: {
  26397. height: math.unit(7 + 3 / 12, "feet"),
  26398. weight: math.unit(260, "lb"),
  26399. name: "Regular",
  26400. image: {
  26401. source: "./media/characters/wild/regular.svg",
  26402. extra: 97.45 / 92,
  26403. bottom: 6.8 / 104.3
  26404. }
  26405. },
  26406. biggums: {
  26407. height: math.unit(8 + 6 / 12, "feet"),
  26408. weight: math.unit(425, "lb"),
  26409. name: "Biggums",
  26410. image: {
  26411. source: "./media/characters/wild/biggums.svg",
  26412. extra: 97.45 / 92,
  26413. bottom: 7.5 / 132.34
  26414. }
  26415. },
  26416. mawRegular: {
  26417. height: math.unit(1.24, "feet"),
  26418. name: "Maw (Regular)",
  26419. image: {
  26420. source: "./media/characters/wild/maw.svg"
  26421. }
  26422. },
  26423. mawBiggums: {
  26424. height: math.unit(1.47, "feet"),
  26425. name: "Maw (Biggums)",
  26426. image: {
  26427. source: "./media/characters/wild/maw.svg"
  26428. }
  26429. },
  26430. },
  26431. [
  26432. {
  26433. name: "Normal",
  26434. height: math.unit(7 + 3 / 12, "feet"),
  26435. default: true
  26436. },
  26437. ]
  26438. ))
  26439. characterMakers.push(() => makeCharacter(
  26440. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26441. {
  26442. front: {
  26443. height: math.unit(2.5, "meters"),
  26444. weight: math.unit(200, "kg"),
  26445. name: "Front",
  26446. image: {
  26447. source: "./media/characters/vidar/front.svg",
  26448. extra: 2994 / 2795,
  26449. bottom: 56 / 3061
  26450. }
  26451. },
  26452. back: {
  26453. height: math.unit(2.5, "meters"),
  26454. weight: math.unit(200, "kg"),
  26455. name: "Back",
  26456. image: {
  26457. source: "./media/characters/vidar/back.svg",
  26458. extra: 3131 / 2928,
  26459. bottom: 13.5 / 3141.5
  26460. }
  26461. },
  26462. feral: {
  26463. height: math.unit(2.5, "meters"),
  26464. weight: math.unit(2000, "kg"),
  26465. name: "Feral",
  26466. image: {
  26467. source: "./media/characters/vidar/feral.svg",
  26468. extra: 2790 / 1765,
  26469. bottom: 6 / 2796
  26470. }
  26471. },
  26472. },
  26473. [
  26474. {
  26475. name: "Normal",
  26476. height: math.unit(2.5, "meters"),
  26477. default: true
  26478. },
  26479. {
  26480. name: "Macro",
  26481. height: math.unit(100, "meters")
  26482. },
  26483. ]
  26484. ))
  26485. characterMakers.push(() => makeCharacter(
  26486. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26487. {
  26488. front: {
  26489. height: math.unit(5 + 9 / 12, "feet"),
  26490. weight: math.unit(120, "lb"),
  26491. name: "Front",
  26492. image: {
  26493. source: "./media/characters/ash/front.svg",
  26494. extra: 2189 / 1961,
  26495. bottom: 5.2 / 2194
  26496. }
  26497. },
  26498. },
  26499. [
  26500. {
  26501. name: "Normal",
  26502. height: math.unit(5 + 9 / 12, "feet"),
  26503. default: true
  26504. },
  26505. ]
  26506. ))
  26507. characterMakers.push(() => makeCharacter(
  26508. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26509. {
  26510. front: {
  26511. height: math.unit(9, "feet"),
  26512. weight: math.unit(10000, "lb"),
  26513. name: "Front",
  26514. image: {
  26515. source: "./media/characters/gygabite/front.svg",
  26516. bottom: 31.7 / 537.8,
  26517. extra: 505 / 370
  26518. }
  26519. },
  26520. },
  26521. [
  26522. {
  26523. name: "Normal",
  26524. height: math.unit(9, "feet"),
  26525. default: true
  26526. },
  26527. ]
  26528. ))
  26529. characterMakers.push(() => makeCharacter(
  26530. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26531. {
  26532. front: {
  26533. height: math.unit(12, "feet"),
  26534. weight: math.unit(35000, "lb"),
  26535. name: "Front",
  26536. image: {
  26537. source: "./media/characters/p0tat0/front.svg",
  26538. extra: 1065 / 921,
  26539. bottom: 55.7 / 1121.25
  26540. }
  26541. },
  26542. },
  26543. [
  26544. {
  26545. name: "Normal",
  26546. height: math.unit(12, "feet"),
  26547. default: true
  26548. },
  26549. ]
  26550. ))
  26551. characterMakers.push(() => makeCharacter(
  26552. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26553. {
  26554. side: {
  26555. height: math.unit(6.5, "feet"),
  26556. weight: math.unit(800, "lb"),
  26557. name: "Side",
  26558. image: {
  26559. source: "./media/characters/dusk/side.svg",
  26560. extra: 615 / 373,
  26561. bottom: 53 / 664
  26562. }
  26563. },
  26564. sitting: {
  26565. height: math.unit(7, "feet"),
  26566. weight: math.unit(800, "lb"),
  26567. name: "Sitting",
  26568. image: {
  26569. source: "./media/characters/dusk/sitting.svg",
  26570. extra: 753 / 425,
  26571. bottom: 33 / 774
  26572. }
  26573. },
  26574. head: {
  26575. height: math.unit(6.1, "feet"),
  26576. name: "Head",
  26577. image: {
  26578. source: "./media/characters/dusk/head.svg"
  26579. }
  26580. },
  26581. },
  26582. [
  26583. {
  26584. name: "Normal",
  26585. height: math.unit(7, "feet"),
  26586. default: true
  26587. },
  26588. ]
  26589. ))
  26590. characterMakers.push(() => makeCharacter(
  26591. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26592. {
  26593. front: {
  26594. height: math.unit(15, "feet"),
  26595. weight: math.unit(7000, "lb"),
  26596. name: "Front",
  26597. image: {
  26598. source: "./media/characters/jay-direwolf/front.svg",
  26599. extra: 1810 / 1732,
  26600. bottom: 66 / 1892
  26601. }
  26602. },
  26603. },
  26604. [
  26605. {
  26606. name: "Normal",
  26607. height: math.unit(15, "feet"),
  26608. default: true
  26609. },
  26610. ]
  26611. ))
  26612. characterMakers.push(() => makeCharacter(
  26613. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26614. {
  26615. front: {
  26616. height: math.unit(4 + 9 / 12, "feet"),
  26617. weight: math.unit(130, "lb"),
  26618. name: "Front",
  26619. image: {
  26620. source: "./media/characters/anchovie/front.svg",
  26621. extra: 382 / 350,
  26622. bottom: 25 / 409
  26623. }
  26624. },
  26625. back: {
  26626. height: math.unit(4 + 9 / 12, "feet"),
  26627. weight: math.unit(130, "lb"),
  26628. name: "Back",
  26629. image: {
  26630. source: "./media/characters/anchovie/back.svg",
  26631. extra: 385 / 352,
  26632. bottom: 16.6 / 402
  26633. }
  26634. },
  26635. frontDressed: {
  26636. height: math.unit(4 + 9 / 12, "feet"),
  26637. weight: math.unit(130, "lb"),
  26638. name: "Front (Dressed)",
  26639. image: {
  26640. source: "./media/characters/anchovie/front-dressed.svg",
  26641. extra: 382 / 350,
  26642. bottom: 25 / 409
  26643. }
  26644. },
  26645. backDressed: {
  26646. height: math.unit(4 + 9 / 12, "feet"),
  26647. weight: math.unit(130, "lb"),
  26648. name: "Back (Dressed)",
  26649. image: {
  26650. source: "./media/characters/anchovie/back-dressed.svg",
  26651. extra: 385 / 352,
  26652. bottom: 16.6 / 402
  26653. }
  26654. },
  26655. },
  26656. [
  26657. {
  26658. name: "Micro",
  26659. height: math.unit(6.4, "inches")
  26660. },
  26661. {
  26662. name: "Normal",
  26663. height: math.unit(4 + 9 / 12, "feet"),
  26664. default: true
  26665. },
  26666. ]
  26667. ))
  26668. characterMakers.push(() => makeCharacter(
  26669. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26670. {
  26671. front: {
  26672. height: math.unit(2, "meters"),
  26673. weight: math.unit(180, "lb"),
  26674. name: "Front",
  26675. image: {
  26676. source: "./media/characters/acidrenamon/front.svg",
  26677. extra: 987 / 890,
  26678. bottom: 22.8 / 1009
  26679. }
  26680. },
  26681. back: {
  26682. height: math.unit(2, "meters"),
  26683. weight: math.unit(180, "lb"),
  26684. name: "Back",
  26685. image: {
  26686. source: "./media/characters/acidrenamon/back.svg",
  26687. extra: 983 / 891,
  26688. bottom: 8.4 / 992
  26689. }
  26690. },
  26691. head: {
  26692. height: math.unit(1.92, "feet"),
  26693. name: "Head",
  26694. image: {
  26695. source: "./media/characters/acidrenamon/head.svg"
  26696. }
  26697. },
  26698. rump: {
  26699. height: math.unit(1.72, "feet"),
  26700. name: "Rump",
  26701. image: {
  26702. source: "./media/characters/acidrenamon/rump.svg"
  26703. }
  26704. },
  26705. tail: {
  26706. height: math.unit(4.2, "feet"),
  26707. name: "Tail",
  26708. image: {
  26709. source: "./media/characters/acidrenamon/tail.svg"
  26710. }
  26711. },
  26712. },
  26713. [
  26714. {
  26715. name: "Normal",
  26716. height: math.unit(2, "meters"),
  26717. default: true
  26718. },
  26719. {
  26720. name: "Minimacro",
  26721. height: math.unit(7, "meters")
  26722. },
  26723. {
  26724. name: "Macro",
  26725. height: math.unit(200, "meters")
  26726. },
  26727. {
  26728. name: "Gigamacro",
  26729. height: math.unit(0.2, "earths")
  26730. },
  26731. ]
  26732. ))
  26733. characterMakers.push(() => makeCharacter(
  26734. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26735. {
  26736. front: {
  26737. height: math.unit(6, "feet"),
  26738. weight: math.unit(150, "lb"),
  26739. name: "Front",
  26740. image: {
  26741. source: "./media/characters/kenzie-lee/front.svg",
  26742. extra: 1525 / 1465,
  26743. bottom: 45 / 1570
  26744. }
  26745. },
  26746. side: {
  26747. height: math.unit(6, "feet"),
  26748. weight: math.unit(150, "lb"),
  26749. name: "Side",
  26750. image: {
  26751. source: "./media/characters/kenzie-lee/side.svg",
  26752. extra: 5505 / 5383,
  26753. bottom: 60 / 5573
  26754. }
  26755. },
  26756. },
  26757. [
  26758. {
  26759. name: "Normal",
  26760. height: math.unit(152, "feet"),
  26761. default: true
  26762. },
  26763. {
  26764. name: "Megamacro",
  26765. height: math.unit(7, "miles")
  26766. },
  26767. {
  26768. name: "Gigamacro",
  26769. height: math.unit(8000, "miles")
  26770. },
  26771. ]
  26772. ))
  26773. characterMakers.push(() => makeCharacter(
  26774. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26775. {
  26776. side: {
  26777. height: math.unit(6, "feet"),
  26778. weight: math.unit(150, "lb"),
  26779. name: "Side",
  26780. image: {
  26781. source: "./media/characters/withers/side.svg",
  26782. extra: 1830 / 1728,
  26783. bottom: 96 / 1927
  26784. }
  26785. },
  26786. front: {
  26787. height: math.unit(6, "feet"),
  26788. weight: math.unit(150, "lb"),
  26789. name: "Front",
  26790. image: {
  26791. source: "./media/characters/withers/front.svg",
  26792. extra: 1514 / 1438,
  26793. bottom: 118 / 1632
  26794. }
  26795. },
  26796. },
  26797. [
  26798. {
  26799. name: "Macro",
  26800. height: math.unit(168, "feet"),
  26801. default: true
  26802. },
  26803. {
  26804. name: "Megamacro",
  26805. height: math.unit(15, "miles")
  26806. }
  26807. ]
  26808. ))
  26809. characterMakers.push(() => makeCharacter(
  26810. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26811. {
  26812. front: {
  26813. height: math.unit(6 + 7 / 12, "feet"),
  26814. weight: math.unit(250, "lb"),
  26815. name: "Front",
  26816. image: {
  26817. source: "./media/characters/nemoskii/front.svg",
  26818. extra: 2270 / 1734,
  26819. bottom: 86 / 2354
  26820. }
  26821. },
  26822. back: {
  26823. height: math.unit(6 + 7 / 12, "feet"),
  26824. weight: math.unit(250, "lb"),
  26825. name: "Back",
  26826. image: {
  26827. source: "./media/characters/nemoskii/back.svg",
  26828. extra: 1845 / 1788,
  26829. bottom: 10.5 / 1852
  26830. }
  26831. },
  26832. head: {
  26833. height: math.unit(1.31, "feet"),
  26834. name: "Head",
  26835. image: {
  26836. source: "./media/characters/nemoskii/head.svg"
  26837. }
  26838. },
  26839. },
  26840. [
  26841. {
  26842. name: "Normal",
  26843. height: math.unit(6 + 7 / 12, "feet"),
  26844. default: true
  26845. },
  26846. ]
  26847. ))
  26848. characterMakers.push(() => makeCharacter(
  26849. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26850. {
  26851. front: {
  26852. height: math.unit(1, "mile"),
  26853. weight: math.unit(265261.9, "lb"),
  26854. name: "Front",
  26855. image: {
  26856. source: "./media/characters/shui/front.svg",
  26857. extra: 1633 / 1564,
  26858. bottom: 91.5 / 1726
  26859. }
  26860. },
  26861. },
  26862. [
  26863. {
  26864. name: "Macro",
  26865. height: math.unit(1, "mile"),
  26866. default: true
  26867. },
  26868. ]
  26869. ))
  26870. characterMakers.push(() => makeCharacter(
  26871. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26872. {
  26873. front: {
  26874. height: math.unit(12 + 6 / 12, "feet"),
  26875. weight: math.unit(1342, "lb"),
  26876. name: "Front",
  26877. image: {
  26878. source: "./media/characters/arokh-takakura/front.svg",
  26879. extra: 1089 / 1043,
  26880. bottom: 77.4 / 1176.7
  26881. }
  26882. },
  26883. back: {
  26884. height: math.unit(12 + 6 / 12, "feet"),
  26885. weight: math.unit(1342, "lb"),
  26886. name: "Back",
  26887. image: {
  26888. source: "./media/characters/arokh-takakura/back.svg",
  26889. extra: 1046 / 1019,
  26890. bottom: 102 / 1150
  26891. }
  26892. },
  26893. },
  26894. [
  26895. {
  26896. name: "Big",
  26897. height: math.unit(12 + 6 / 12, "feet"),
  26898. default: true
  26899. },
  26900. ]
  26901. ))
  26902. characterMakers.push(() => makeCharacter(
  26903. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26904. {
  26905. front: {
  26906. height: math.unit(5 + 6 / 12, "feet"),
  26907. weight: math.unit(150, "lb"),
  26908. name: "Front",
  26909. image: {
  26910. source: "./media/characters/theo/front.svg",
  26911. extra: 1184 / 1131,
  26912. bottom: 7.4 / 1191
  26913. }
  26914. },
  26915. },
  26916. [
  26917. {
  26918. name: "Micro",
  26919. height: math.unit(5, "inches")
  26920. },
  26921. {
  26922. name: "Normal",
  26923. height: math.unit(5 + 6 / 12, "feet"),
  26924. default: true
  26925. },
  26926. ]
  26927. ))
  26928. characterMakers.push(() => makeCharacter(
  26929. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26930. {
  26931. front: {
  26932. height: math.unit(5 + 9 / 12, "feet"),
  26933. weight: math.unit(130, "lb"),
  26934. name: "Front",
  26935. image: {
  26936. source: "./media/characters/cecelia-swift/front.svg",
  26937. extra: 502 / 484,
  26938. bottom: 23 / 523
  26939. }
  26940. },
  26941. back: {
  26942. height: math.unit(5 + 9 / 12, "feet"),
  26943. weight: math.unit(130, "lb"),
  26944. name: "Back",
  26945. image: {
  26946. source: "./media/characters/cecelia-swift/back.svg",
  26947. extra: 499 / 485,
  26948. bottom: 12 / 511
  26949. }
  26950. },
  26951. head: {
  26952. height: math.unit(0.90, "feet"),
  26953. name: "Head",
  26954. image: {
  26955. source: "./media/characters/cecelia-swift/head.svg"
  26956. }
  26957. },
  26958. rump: {
  26959. height: math.unit(1.75, "feet"),
  26960. name: "Rump",
  26961. image: {
  26962. source: "./media/characters/cecelia-swift/rump.svg"
  26963. }
  26964. },
  26965. },
  26966. [
  26967. {
  26968. name: "Normal",
  26969. height: math.unit(5 + 9 / 12, "feet"),
  26970. default: true
  26971. },
  26972. {
  26973. name: "Big",
  26974. height: math.unit(50, "feet")
  26975. },
  26976. {
  26977. name: "Macro",
  26978. height: math.unit(100, "feet")
  26979. },
  26980. {
  26981. name: "Macro+",
  26982. height: math.unit(500, "feet")
  26983. },
  26984. {
  26985. name: "Macro++",
  26986. height: math.unit(1000, "feet")
  26987. },
  26988. ]
  26989. ))
  26990. characterMakers.push(() => makeCharacter(
  26991. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26992. {
  26993. front: {
  26994. height: math.unit(6, "feet"),
  26995. weight: math.unit(150, "lb"),
  26996. name: "Front",
  26997. image: {
  26998. source: "./media/characters/kaunan/front.svg",
  26999. extra: 2890 / 2523,
  27000. bottom: 49 / 2939
  27001. }
  27002. },
  27003. },
  27004. [
  27005. {
  27006. name: "Macro",
  27007. height: math.unit(150, "feet"),
  27008. default: true
  27009. },
  27010. ]
  27011. ))
  27012. characterMakers.push(() => makeCharacter(
  27013. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27014. {
  27015. front: {
  27016. height: math.unit(175, "cm"),
  27017. weight: math.unit(60, "kg"),
  27018. name: "Front",
  27019. image: {
  27020. source: "./media/characters/fei/front.svg",
  27021. extra: 2581 / 2400,
  27022. bottom: 82.2 / 2663
  27023. }
  27024. },
  27025. },
  27026. [
  27027. {
  27028. name: "Mortal",
  27029. height: math.unit(175, "cm")
  27030. },
  27031. {
  27032. name: "Normal",
  27033. height: math.unit(3500, "m"),
  27034. default: true
  27035. },
  27036. {
  27037. name: "Stroll",
  27038. height: math.unit(17.5, "km")
  27039. },
  27040. {
  27041. name: "Showoff",
  27042. height: math.unit(175, "km")
  27043. },
  27044. ]
  27045. ))
  27046. characterMakers.push(() => makeCharacter(
  27047. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27048. {
  27049. front: {
  27050. height: math.unit(7, "feet"),
  27051. weight: math.unit(1000, "kg"),
  27052. name: "Front",
  27053. image: {
  27054. source: "./media/characters/edrax/front.svg",
  27055. extra: 2838 / 2550,
  27056. bottom: 130 / 2968
  27057. }
  27058. },
  27059. },
  27060. [
  27061. {
  27062. name: "Small",
  27063. height: math.unit(7, "feet")
  27064. },
  27065. {
  27066. name: "Normal",
  27067. height: math.unit(1500, "meters")
  27068. },
  27069. {
  27070. name: "Mega",
  27071. height: math.unit(12000000, "km"),
  27072. default: true
  27073. },
  27074. {
  27075. name: "Megamacro",
  27076. height: math.unit(10600000, "lightyears")
  27077. },
  27078. {
  27079. name: "Hypermacro",
  27080. height: math.unit(256, "yottameters")
  27081. },
  27082. ]
  27083. ))
  27084. characterMakers.push(() => makeCharacter(
  27085. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27086. {
  27087. front: {
  27088. height: math.unit(10, "feet"),
  27089. weight: math.unit(750, "lb"),
  27090. name: "Front",
  27091. image: {
  27092. source: "./media/characters/clove/front.svg",
  27093. extra: 2031 / 1860,
  27094. bottom: 47.8 / 2080
  27095. }
  27096. },
  27097. back: {
  27098. height: math.unit(10, "feet"),
  27099. weight: math.unit(750, "lb"),
  27100. name: "Back",
  27101. image: {
  27102. source: "./media/characters/clove/back.svg",
  27103. extra: 2025 / 1859,
  27104. bottom: 46 / 2071
  27105. }
  27106. },
  27107. },
  27108. [
  27109. {
  27110. name: "Normal",
  27111. height: math.unit(10, "feet"),
  27112. default: true
  27113. },
  27114. ]
  27115. ))
  27116. characterMakers.push(() => makeCharacter(
  27117. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27118. {
  27119. front: {
  27120. height: math.unit(4, "feet"),
  27121. weight: math.unit(50, "lb"),
  27122. name: "Front",
  27123. image: {
  27124. source: "./media/characters/alex-rabbit/front.svg",
  27125. extra: 507 / 458,
  27126. bottom: 18.5 / 527
  27127. }
  27128. },
  27129. back: {
  27130. height: math.unit(4, "feet"),
  27131. weight: math.unit(50, "lb"),
  27132. name: "Back",
  27133. image: {
  27134. source: "./media/characters/alex-rabbit/back.svg",
  27135. extra: 502 / 460,
  27136. bottom: 18.9 / 521
  27137. }
  27138. },
  27139. },
  27140. [
  27141. {
  27142. name: "Normal",
  27143. height: math.unit(4, "feet"),
  27144. default: true
  27145. },
  27146. ]
  27147. ))
  27148. characterMakers.push(() => makeCharacter(
  27149. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27150. {
  27151. front: {
  27152. height: math.unit(1 + 3 / 12, "feet"),
  27153. weight: math.unit(80, "lb"),
  27154. name: "Front",
  27155. image: {
  27156. source: "./media/characters/zander-rose/front.svg",
  27157. extra: 916 / 797,
  27158. bottom: 17 / 933
  27159. }
  27160. },
  27161. back: {
  27162. height: math.unit(1 + 3 / 12, "feet"),
  27163. weight: math.unit(80, "lb"),
  27164. name: "Back",
  27165. image: {
  27166. source: "./media/characters/zander-rose/back.svg",
  27167. extra: 903 / 779,
  27168. bottom: 31 / 934
  27169. }
  27170. },
  27171. },
  27172. [
  27173. {
  27174. name: "Normal",
  27175. height: math.unit(1 + 3 / 12, "feet"),
  27176. default: true
  27177. },
  27178. ]
  27179. ))
  27180. characterMakers.push(() => makeCharacter(
  27181. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27182. {
  27183. anthro: {
  27184. height: math.unit(6, "feet"),
  27185. weight: math.unit(150, "lb"),
  27186. name: "Anthro",
  27187. image: {
  27188. source: "./media/characters/razz/anthro.svg",
  27189. extra: 1437 / 1343,
  27190. bottom: 48 / 1485
  27191. }
  27192. },
  27193. feral: {
  27194. height: math.unit(6, "feet"),
  27195. weight: math.unit(150, "lb"),
  27196. name: "Feral",
  27197. image: {
  27198. source: "./media/characters/razz/feral.svg",
  27199. extra: 2569 / 1385,
  27200. bottom: 95 / 2664
  27201. }
  27202. },
  27203. },
  27204. [
  27205. {
  27206. name: "Normal",
  27207. height: math.unit(6, "feet"),
  27208. default: true
  27209. },
  27210. ]
  27211. ))
  27212. characterMakers.push(() => makeCharacter(
  27213. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27214. {
  27215. front: {
  27216. height: math.unit(9 + 4 / 12, "feet"),
  27217. weight: math.unit(500, "lb"),
  27218. name: "Front",
  27219. image: {
  27220. source: "./media/characters/morrigan/front.svg",
  27221. extra: 2707 / 2579,
  27222. bottom: 156 / 2863
  27223. }
  27224. },
  27225. },
  27226. [
  27227. {
  27228. name: "Normal",
  27229. height: math.unit(9 + 4 / 12, "feet"),
  27230. default: true
  27231. },
  27232. ]
  27233. ))
  27234. characterMakers.push(() => makeCharacter(
  27235. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27236. {
  27237. front: {
  27238. height: math.unit(5, "stories"),
  27239. weight: math.unit(4000, "lb"),
  27240. name: "Front",
  27241. image: {
  27242. source: "./media/characters/jenene/front.svg",
  27243. extra: 1780 / 1710,
  27244. bottom: 57 / 1837
  27245. }
  27246. },
  27247. },
  27248. [
  27249. {
  27250. name: "Normal",
  27251. height: math.unit(5, "stories"),
  27252. default: true
  27253. },
  27254. ]
  27255. ))
  27256. characterMakers.push(() => makeCharacter(
  27257. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27258. {
  27259. front: {
  27260. height: math.unit(6, "feet"),
  27261. weight: math.unit(150, "lb"),
  27262. name: "Front",
  27263. image: {
  27264. source: "./media/characters/vix-archaser/front.svg",
  27265. extra: 2767 / 2562,
  27266. bottom: 36 / 2803
  27267. }
  27268. },
  27269. },
  27270. [
  27271. {
  27272. name: "Micro",
  27273. height: math.unit(1, "foot")
  27274. },
  27275. {
  27276. name: "Normal",
  27277. height: math.unit(6 + 5 / 12, "feet")
  27278. },
  27279. {
  27280. name: "Minimacro",
  27281. height: math.unit(500, "feet")
  27282. },
  27283. {
  27284. name: "Macro",
  27285. height: math.unit(4, "miles")
  27286. },
  27287. {
  27288. name: "Megamacro",
  27289. height: math.unit(250, "miles"),
  27290. default: true
  27291. },
  27292. {
  27293. name: "Gigamacro",
  27294. height: math.unit(1, "universe")
  27295. },
  27296. {
  27297. name: "Endgame",
  27298. height: math.unit(100, "multiverses")
  27299. }
  27300. ]
  27301. ))
  27302. characterMakers.push(() => makeCharacter(
  27303. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27304. {
  27305. taurSfw: {
  27306. height: math.unit(10, "meters"),
  27307. weight: math.unit(17500, "kg"),
  27308. name: "Taur",
  27309. image: {
  27310. source: "./media/characters/faey/taur-sfw.svg",
  27311. extra: 1200 / 968,
  27312. bottom: 41 / 1241
  27313. }
  27314. },
  27315. chestmaw: {
  27316. height: math.unit(2.01, "meters"),
  27317. name: "Chestmaw",
  27318. image: {
  27319. source: "./media/characters/faey/chestmaw.svg"
  27320. }
  27321. },
  27322. foot: {
  27323. height: math.unit(2.43, "meters"),
  27324. name: "Foot",
  27325. image: {
  27326. source: "./media/characters/faey/foot.svg"
  27327. }
  27328. },
  27329. jaws: {
  27330. height: math.unit(1.66, "meters"),
  27331. name: "Jaws",
  27332. image: {
  27333. source: "./media/characters/faey/jaws.svg"
  27334. }
  27335. },
  27336. tongues: {
  27337. height: math.unit(2.01, "meters"),
  27338. name: "Tongues",
  27339. image: {
  27340. source: "./media/characters/faey/tongues.svg"
  27341. }
  27342. },
  27343. },
  27344. [
  27345. {
  27346. name: "Small",
  27347. height: math.unit(10, "meters"),
  27348. default: true
  27349. },
  27350. {
  27351. name: "Big",
  27352. height: math.unit(500000, "km")
  27353. },
  27354. ]
  27355. ))
  27356. characterMakers.push(() => makeCharacter(
  27357. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27358. {
  27359. front: {
  27360. height: math.unit(7, "feet"),
  27361. weight: math.unit(275, "lb"),
  27362. name: "Front",
  27363. image: {
  27364. source: "./media/characters/roku/front.svg",
  27365. extra: 903 / 878,
  27366. bottom: 37 / 940
  27367. }
  27368. },
  27369. },
  27370. [
  27371. {
  27372. name: "Normal",
  27373. height: math.unit(7, "feet"),
  27374. default: true
  27375. },
  27376. {
  27377. name: "Macro",
  27378. height: math.unit(500, "feet")
  27379. },
  27380. {
  27381. name: "Megamacro",
  27382. height: math.unit(200, "miles")
  27383. },
  27384. ]
  27385. ))
  27386. characterMakers.push(() => makeCharacter(
  27387. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27388. {
  27389. front: {
  27390. height: math.unit(6 + 2 / 12, "feet"),
  27391. weight: math.unit(150, "lb"),
  27392. name: "Front",
  27393. image: {
  27394. source: "./media/characters/lira/front.svg",
  27395. extra: 1727 / 1605,
  27396. bottom: 26 / 1753
  27397. }
  27398. },
  27399. back: {
  27400. height: math.unit(6 + 2 / 12, "feet"),
  27401. weight: math.unit(150, "lb"),
  27402. name: "Back",
  27403. image: {
  27404. source: "./media/characters/lira/back.svg",
  27405. extra: 1713 / 159,
  27406. bottom: 20 / 1733
  27407. }
  27408. },
  27409. hand: {
  27410. height: math.unit(0.75, "feet"),
  27411. name: "Hand",
  27412. image: {
  27413. source: "./media/characters/lira/hand.svg"
  27414. }
  27415. },
  27416. maw: {
  27417. height: math.unit(0.65, "feet"),
  27418. name: "Maw",
  27419. image: {
  27420. source: "./media/characters/lira/maw.svg"
  27421. }
  27422. },
  27423. pawDigi: {
  27424. height: math.unit(1.6, "feet"),
  27425. name: "Paw Digi",
  27426. image: {
  27427. source: "./media/characters/lira/paw-digi.svg"
  27428. }
  27429. },
  27430. pawPlanti: {
  27431. height: math.unit(1.4, "feet"),
  27432. name: "Paw Planti",
  27433. image: {
  27434. source: "./media/characters/lira/paw-planti.svg"
  27435. }
  27436. },
  27437. },
  27438. [
  27439. {
  27440. name: "Normal",
  27441. height: math.unit(6 + 2 / 12, "feet"),
  27442. default: true
  27443. },
  27444. {
  27445. name: "Macro",
  27446. height: math.unit(100, "feet")
  27447. },
  27448. {
  27449. name: "Macro²",
  27450. height: math.unit(1600, "feet")
  27451. },
  27452. {
  27453. name: "Planetary",
  27454. height: math.unit(20, "earths")
  27455. },
  27456. ]
  27457. ))
  27458. characterMakers.push(() => makeCharacter(
  27459. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27460. {
  27461. front: {
  27462. height: math.unit(6, "feet"),
  27463. weight: math.unit(150, "lb"),
  27464. name: "Front",
  27465. image: {
  27466. source: "./media/characters/hadjet/front.svg",
  27467. extra: 1480 / 1346,
  27468. bottom: 26 / 1506
  27469. }
  27470. },
  27471. frontNsfw: {
  27472. height: math.unit(6, "feet"),
  27473. weight: math.unit(150, "lb"),
  27474. name: "Front (NSFW)",
  27475. image: {
  27476. source: "./media/characters/hadjet/front-nsfw.svg",
  27477. extra: 1440 / 1358,
  27478. bottom: 52 / 1492
  27479. }
  27480. },
  27481. },
  27482. [
  27483. {
  27484. name: "Macro",
  27485. height: math.unit(10, "stories"),
  27486. default: true
  27487. },
  27488. {
  27489. name: "Megamacro",
  27490. height: math.unit(1.5, "miles")
  27491. },
  27492. {
  27493. name: "Megamacro+",
  27494. height: math.unit(5, "miles")
  27495. },
  27496. ]
  27497. ))
  27498. characterMakers.push(() => makeCharacter(
  27499. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27500. {
  27501. side: {
  27502. height: math.unit(106, "feet"),
  27503. weight: math.unit(500, "tonnes"),
  27504. name: "Side",
  27505. image: {
  27506. source: "./media/characters/kodran/side.svg",
  27507. extra: 553 / 480,
  27508. bottom: 33 / 586
  27509. }
  27510. },
  27511. front: {
  27512. height: math.unit(132, "feet"),
  27513. weight: math.unit(500, "tonnes"),
  27514. name: "Front",
  27515. image: {
  27516. source: "./media/characters/kodran/front.svg",
  27517. extra: 667 / 643,
  27518. bottom: 42 / 709
  27519. }
  27520. },
  27521. flying: {
  27522. height: math.unit(350, "feet"),
  27523. weight: math.unit(500, "tonnes"),
  27524. name: "Flying",
  27525. image: {
  27526. source: "./media/characters/kodran/flying.svg"
  27527. }
  27528. },
  27529. foot: {
  27530. height: math.unit(33, "feet"),
  27531. name: "Foot",
  27532. image: {
  27533. source: "./media/characters/kodran/foot.svg"
  27534. }
  27535. },
  27536. footFront: {
  27537. height: math.unit(19, "feet"),
  27538. name: "Foot (Front)",
  27539. image: {
  27540. source: "./media/characters/kodran/foot-front.svg",
  27541. extra: 261 / 261,
  27542. bottom: 91 / 352
  27543. }
  27544. },
  27545. headFront: {
  27546. height: math.unit(53, "feet"),
  27547. name: "Head (Front)",
  27548. image: {
  27549. source: "./media/characters/kodran/head-front.svg"
  27550. }
  27551. },
  27552. headSide: {
  27553. height: math.unit(65, "feet"),
  27554. name: "Head (Side)",
  27555. image: {
  27556. source: "./media/characters/kodran/head-side.svg"
  27557. }
  27558. },
  27559. throat: {
  27560. height: math.unit(79, "feet"),
  27561. name: "Throat",
  27562. image: {
  27563. source: "./media/characters/kodran/throat.svg"
  27564. }
  27565. },
  27566. },
  27567. [
  27568. {
  27569. name: "Large",
  27570. height: math.unit(106, "feet"),
  27571. default: true
  27572. },
  27573. ]
  27574. ))
  27575. characterMakers.push(() => makeCharacter(
  27576. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27577. {
  27578. side: {
  27579. height: math.unit(11, "feet"),
  27580. weight: math.unit(150, "lb"),
  27581. name: "Side",
  27582. image: {
  27583. source: "./media/characters/pyxaron/side.svg",
  27584. extra: 305 / 195,
  27585. bottom: 17 / 322
  27586. }
  27587. },
  27588. },
  27589. [
  27590. {
  27591. name: "Normal",
  27592. height: math.unit(11, "feet"),
  27593. default: true
  27594. },
  27595. ]
  27596. ))
  27597. characterMakers.push(() => makeCharacter(
  27598. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27599. {
  27600. front: {
  27601. height: math.unit(6, "feet"),
  27602. weight: math.unit(150, "lb"),
  27603. name: "Front",
  27604. image: {
  27605. source: "./media/characters/meep/front.svg",
  27606. extra: 88 / 80,
  27607. bottom: 6 / 94
  27608. }
  27609. },
  27610. },
  27611. [
  27612. {
  27613. name: "Fun Sized",
  27614. height: math.unit(2, "inches"),
  27615. default: true
  27616. },
  27617. {
  27618. name: "Friend Sized",
  27619. height: math.unit(8, "inches")
  27620. },
  27621. ]
  27622. ))
  27623. characterMakers.push(() => makeCharacter(
  27624. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27625. {
  27626. front: {
  27627. height: math.unit(15, "feet"),
  27628. weight: math.unit(2500, "lb"),
  27629. name: "Front",
  27630. image: {
  27631. source: "./media/characters/holly-rabbit/front.svg",
  27632. extra: 1433 / 1233,
  27633. bottom: 125 / 1558
  27634. }
  27635. },
  27636. dick: {
  27637. height: math.unit(4.6, "feet"),
  27638. name: "Dick",
  27639. image: {
  27640. source: "./media/characters/holly-rabbit/dick.svg"
  27641. }
  27642. },
  27643. },
  27644. [
  27645. {
  27646. name: "Normal",
  27647. height: math.unit(15, "feet"),
  27648. default: true
  27649. },
  27650. {
  27651. name: "Macro",
  27652. height: math.unit(250, "feet")
  27653. },
  27654. {
  27655. name: "Macro+",
  27656. height: math.unit(2500, "feet")
  27657. },
  27658. ]
  27659. ))
  27660. characterMakers.push(() => makeCharacter(
  27661. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27662. {
  27663. front: {
  27664. height: math.unit(3.02, "meters"),
  27665. weight: math.unit(500, "kg"),
  27666. name: "Front",
  27667. image: {
  27668. source: "./media/characters/drena/front.svg",
  27669. extra: 282 / 243,
  27670. bottom: 8 / 290
  27671. }
  27672. },
  27673. side: {
  27674. height: math.unit(3.02, "meters"),
  27675. weight: math.unit(500, "kg"),
  27676. name: "Side",
  27677. image: {
  27678. source: "./media/characters/drena/side.svg",
  27679. extra: 280 / 245,
  27680. bottom: 10 / 290
  27681. }
  27682. },
  27683. back: {
  27684. height: math.unit(3.02, "meters"),
  27685. weight: math.unit(500, "kg"),
  27686. name: "Back",
  27687. image: {
  27688. source: "./media/characters/drena/back.svg",
  27689. extra: 278 / 243,
  27690. bottom: 2 / 280
  27691. }
  27692. },
  27693. foot: {
  27694. height: math.unit(0.75, "meters"),
  27695. name: "Foot",
  27696. image: {
  27697. source: "./media/characters/drena/foot.svg"
  27698. }
  27699. },
  27700. maw: {
  27701. height: math.unit(0.82, "meters"),
  27702. name: "Maw",
  27703. image: {
  27704. source: "./media/characters/drena/maw.svg"
  27705. }
  27706. },
  27707. rump: {
  27708. height: math.unit(0.93, "meters"),
  27709. name: "Rump",
  27710. image: {
  27711. source: "./media/characters/drena/rump.svg"
  27712. }
  27713. },
  27714. },
  27715. [
  27716. {
  27717. name: "Normal",
  27718. height: math.unit(3.02, "meters"),
  27719. default: true
  27720. },
  27721. ]
  27722. ))
  27723. characterMakers.push(() => makeCharacter(
  27724. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27725. {
  27726. front: {
  27727. height: math.unit(6 + 4 / 12, "feet"),
  27728. weight: math.unit(250, "lb"),
  27729. name: "Front",
  27730. image: {
  27731. source: "./media/characters/remmyzilla/front.svg",
  27732. extra: 4033 / 3588,
  27733. bottom: 123 / 4156
  27734. }
  27735. },
  27736. back: {
  27737. height: math.unit(6 + 4 / 12, "feet"),
  27738. weight: math.unit(250, "lb"),
  27739. name: "Back",
  27740. image: {
  27741. source: "./media/characters/remmyzilla/back.svg",
  27742. extra: 2687 / 2555,
  27743. bottom: 48 / 2735
  27744. }
  27745. },
  27746. frontFancy: {
  27747. height: math.unit(6 + 4 / 12, "feet"),
  27748. weight: math.unit(250, "lb"),
  27749. name: "Front (Fancy)",
  27750. image: {
  27751. source: "./media/characters/remmyzilla/front-fancy.svg",
  27752. extra: 4119 / 3419,
  27753. bottom: 237 / 4356
  27754. }
  27755. },
  27756. paw: {
  27757. height: math.unit(1.73, "feet"),
  27758. name: "Paw",
  27759. image: {
  27760. source: "./media/characters/remmyzilla/paw.svg"
  27761. }
  27762. },
  27763. maw: {
  27764. height: math.unit(1.73, "feet"),
  27765. name: "Maw",
  27766. image: {
  27767. source: "./media/characters/remmyzilla/maw.svg"
  27768. }
  27769. },
  27770. },
  27771. [
  27772. {
  27773. name: "Normal",
  27774. height: math.unit(6 + 4 / 12, "feet")
  27775. },
  27776. {
  27777. name: "Minimacro",
  27778. height: math.unit(12 + 8 / 12, "feet")
  27779. },
  27780. {
  27781. name: "Normal",
  27782. height: math.unit(640, "feet"),
  27783. default: true
  27784. },
  27785. {
  27786. name: "Megamacro",
  27787. height: math.unit(6400, "feet")
  27788. },
  27789. {
  27790. name: "Gigamacro",
  27791. height: math.unit(64000, "miles")
  27792. },
  27793. ]
  27794. ))
  27795. characterMakers.push(() => makeCharacter(
  27796. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27797. {
  27798. front: {
  27799. height: math.unit(2.5, "meters"),
  27800. weight: math.unit(300, "lb"),
  27801. name: "Front",
  27802. image: {
  27803. source: "./media/characters/lawrence/front.svg",
  27804. extra: 357 / 335,
  27805. bottom: 30 / 387
  27806. }
  27807. },
  27808. back: {
  27809. height: math.unit(2.5, "meters"),
  27810. weight: math.unit(300, "lb"),
  27811. name: "Back",
  27812. image: {
  27813. source: "./media/characters/lawrence/back.svg",
  27814. extra: 357 / 338,
  27815. bottom: 16 / 373
  27816. }
  27817. },
  27818. head: {
  27819. height: math.unit(0.9, "meter"),
  27820. name: "Head",
  27821. image: {
  27822. source: "./media/characters/lawrence/head.svg"
  27823. }
  27824. },
  27825. maw: {
  27826. height: math.unit(0.7, "meter"),
  27827. name: "Maw",
  27828. image: {
  27829. source: "./media/characters/lawrence/maw.svg"
  27830. }
  27831. },
  27832. footBottom: {
  27833. height: math.unit(0.5, "meter"),
  27834. name: "Foot (Bottom)",
  27835. image: {
  27836. source: "./media/characters/lawrence/foot-bottom.svg"
  27837. }
  27838. },
  27839. footTop: {
  27840. height: math.unit(0.5, "meter"),
  27841. name: "Foot (Top)",
  27842. image: {
  27843. source: "./media/characters/lawrence/foot-top.svg"
  27844. }
  27845. },
  27846. },
  27847. [
  27848. {
  27849. name: "Normal",
  27850. height: math.unit(2.5, "meters"),
  27851. default: true
  27852. },
  27853. {
  27854. name: "Macro",
  27855. height: math.unit(95, "meters")
  27856. },
  27857. {
  27858. name: "Megamacro",
  27859. height: math.unit(150, "km")
  27860. },
  27861. ]
  27862. ))
  27863. characterMakers.push(() => makeCharacter(
  27864. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27865. {
  27866. front: {
  27867. height: math.unit(4.2, "meters"),
  27868. name: "Front",
  27869. image: {
  27870. source: "./media/characters/sydney/front.svg",
  27871. extra: 1323 / 1277,
  27872. bottom: 111 / 1434
  27873. }
  27874. },
  27875. },
  27876. [
  27877. {
  27878. name: "Normal",
  27879. height: math.unit(4.2, "meters"),
  27880. default: true
  27881. },
  27882. ]
  27883. ))
  27884. characterMakers.push(() => makeCharacter(
  27885. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27886. {
  27887. back: {
  27888. height: math.unit(201, "feet"),
  27889. name: "Back",
  27890. image: {
  27891. source: "./media/characters/jessica/back.svg",
  27892. extra: 273 / 259,
  27893. bottom: 7 / 280
  27894. }
  27895. },
  27896. },
  27897. [
  27898. {
  27899. name: "Normal",
  27900. height: math.unit(201, "feet"),
  27901. default: true
  27902. },
  27903. {
  27904. name: "Megamacro",
  27905. height: math.unit(8, "miles")
  27906. },
  27907. ]
  27908. ))
  27909. characterMakers.push(() => makeCharacter(
  27910. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27911. {
  27912. side: {
  27913. height: math.unit(320, "cm"),
  27914. name: "Side",
  27915. image: {
  27916. source: "./media/characters/victoria/side.svg",
  27917. extra: 778 / 346,
  27918. bottom: 56 / 834
  27919. }
  27920. },
  27921. maw: {
  27922. height: math.unit(5.9, "feet"),
  27923. name: "Maw",
  27924. image: {
  27925. source: "./media/characters/victoria/maw.svg"
  27926. }
  27927. },
  27928. },
  27929. [
  27930. {
  27931. name: "Normal",
  27932. height: math.unit(320, "cm"),
  27933. default: true
  27934. },
  27935. ]
  27936. ))
  27937. characterMakers.push(() => makeCharacter(
  27938. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27939. {
  27940. front: {
  27941. height: math.unit(5 + 6 / 12, "feet"),
  27942. name: "Front",
  27943. image: {
  27944. source: "./media/characters/cat/front.svg",
  27945. extra: 1374 / 1257,
  27946. bottom: 59 / 1433
  27947. }
  27948. },
  27949. back: {
  27950. height: math.unit(5 + 6 / 12, "feet"),
  27951. name: "Back",
  27952. image: {
  27953. source: "./media/characters/cat/back.svg",
  27954. extra: 1337 / 1226,
  27955. bottom: 34 / 1371
  27956. }
  27957. },
  27958. taur: {
  27959. height: math.unit(7, "feet"),
  27960. name: "Taur",
  27961. image: {
  27962. source: "./media/characters/cat/taur.svg",
  27963. extra: 1345 / 1231,
  27964. bottom: 66 / 1411
  27965. }
  27966. },
  27967. lucario: {
  27968. height: math.unit(4, "feet"),
  27969. name: "Lucario",
  27970. image: {
  27971. source: "./media/characters/cat/lucario.svg",
  27972. extra: 1470 / 1318,
  27973. bottom: 65 / 1535
  27974. }
  27975. },
  27976. megaLucario: {
  27977. height: math.unit(4, "feet"),
  27978. name: "Mega Lucario",
  27979. image: {
  27980. source: "./media/characters/cat/mega-lucario.svg",
  27981. extra: 1515 / 1319,
  27982. bottom: 63 / 1578
  27983. }
  27984. },
  27985. nickit: {
  27986. height: math.unit(2, "feet"),
  27987. name: "Nickit",
  27988. image: {
  27989. source: "./media/characters/cat/nickit.svg",
  27990. extra: 1980 / 1585,
  27991. bottom: 102 / 2082
  27992. }
  27993. },
  27994. lopunnyFront: {
  27995. height: math.unit(5, "feet"),
  27996. name: "Lopunny (Front)",
  27997. image: {
  27998. source: "./media/characters/cat/lopunny-front.svg",
  27999. extra: 1782 / 1469,
  28000. bottom: 38 / 1820
  28001. }
  28002. },
  28003. lopunnyBack: {
  28004. height: math.unit(5, "feet"),
  28005. name: "Lopunny (Back)",
  28006. image: {
  28007. source: "./media/characters/cat/lopunny-back.svg",
  28008. extra: 1660 / 1490,
  28009. bottom: 25 / 1685
  28010. }
  28011. },
  28012. },
  28013. [
  28014. {
  28015. name: "Really small",
  28016. height: math.unit(1, "nm")
  28017. },
  28018. {
  28019. name: "Micro",
  28020. height: math.unit(5, "inches")
  28021. },
  28022. {
  28023. name: "Normal",
  28024. height: math.unit(5 + 6 / 12, "feet"),
  28025. default: true
  28026. },
  28027. {
  28028. name: "Macro",
  28029. height: math.unit(50, "feet")
  28030. },
  28031. {
  28032. name: "Macro+",
  28033. height: math.unit(150, "feet")
  28034. },
  28035. {
  28036. name: "Megamacro",
  28037. height: math.unit(100, "miles")
  28038. },
  28039. ]
  28040. ))
  28041. characterMakers.push(() => makeCharacter(
  28042. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28043. {
  28044. front: {
  28045. height: math.unit(63.4, "meters"),
  28046. weight: math.unit(3.28349e+6, "kilograms"),
  28047. name: "Front",
  28048. image: {
  28049. source: "./media/characters/kirina-violet/front.svg",
  28050. extra: 2812 / 2725,
  28051. bottom: 0 / 2812
  28052. }
  28053. },
  28054. back: {
  28055. height: math.unit(63.4, "meters"),
  28056. weight: math.unit(3.28349e+6, "kilograms"),
  28057. name: "Back",
  28058. image: {
  28059. source: "./media/characters/kirina-violet/back.svg",
  28060. extra: 2812 / 2725,
  28061. bottom: 0 / 2812
  28062. }
  28063. },
  28064. mouth: {
  28065. height: math.unit(4.35, "meters"),
  28066. name: "Mouth",
  28067. image: {
  28068. source: "./media/characters/kirina-violet/mouth.svg"
  28069. }
  28070. },
  28071. paw: {
  28072. height: math.unit(5.6, "meters"),
  28073. name: "Paw",
  28074. image: {
  28075. source: "./media/characters/kirina-violet/paw.svg"
  28076. }
  28077. },
  28078. tail: {
  28079. height: math.unit(18, "meters"),
  28080. name: "Tail",
  28081. image: {
  28082. source: "./media/characters/kirina-violet/tail.svg"
  28083. }
  28084. },
  28085. },
  28086. [
  28087. {
  28088. name: "Macro",
  28089. height: math.unit(63.4, "meters"),
  28090. default: true
  28091. },
  28092. ]
  28093. ))
  28094. characterMakers.push(() => makeCharacter(
  28095. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28096. {
  28097. front: {
  28098. height: math.unit(60, "feet"),
  28099. name: "Front",
  28100. image: {
  28101. source: "./media/characters/cat-gigachu/front.svg",
  28102. extra: 1024 / 780,
  28103. bottom: 23 / 1047
  28104. }
  28105. },
  28106. back: {
  28107. height: math.unit(60, "feet"),
  28108. name: "Back",
  28109. image: {
  28110. source: "./media/characters/cat-gigachu/back.svg",
  28111. extra: 1024 / 780,
  28112. bottom: 23 / 1047
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Dynamax",
  28119. height: math.unit(60, "feet"),
  28120. default: true
  28121. },
  28122. ]
  28123. ))
  28124. characterMakers.push(() => makeCharacter(
  28125. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28126. {
  28127. front: {
  28128. height: math.unit(6, "feet"),
  28129. weight: math.unit(150, "lb"),
  28130. name: "Front",
  28131. image: {
  28132. source: "./media/characters/sfaiyan/front.svg",
  28133. extra: 999 / 978,
  28134. bottom: 5 / 1004
  28135. }
  28136. },
  28137. },
  28138. [
  28139. {
  28140. name: "Normal",
  28141. height: math.unit(1.82, "meters")
  28142. },
  28143. {
  28144. name: "Giant",
  28145. height: math.unit(2.27, "km"),
  28146. default: true
  28147. },
  28148. ]
  28149. ))
  28150. characterMakers.push(() => makeCharacter(
  28151. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28152. {
  28153. front: {
  28154. height: math.unit(179, "cm"),
  28155. weight: math.unit(100, "kg"),
  28156. name: "Front",
  28157. image: {
  28158. source: "./media/characters/raunehkeli/front.svg",
  28159. extra: 1934 / 1926,
  28160. bottom: 0 / 1934
  28161. }
  28162. },
  28163. },
  28164. [
  28165. {
  28166. name: "Normal",
  28167. height: math.unit(179, "cm")
  28168. },
  28169. {
  28170. name: "Maximum",
  28171. height: math.unit(575, "meters"),
  28172. default: true
  28173. },
  28174. ]
  28175. ))
  28176. characterMakers.push(() => makeCharacter(
  28177. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28178. {
  28179. front: {
  28180. height: math.unit(6, "feet"),
  28181. weight: math.unit(150, "lb"),
  28182. name: "Front",
  28183. image: {
  28184. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28185. extra: 2625 / 2518,
  28186. bottom: 60 / 2685
  28187. }
  28188. },
  28189. },
  28190. [
  28191. {
  28192. name: "Normal",
  28193. height: math.unit(6 + 2 / 12, "feet"),
  28194. default: true
  28195. },
  28196. {
  28197. name: "Macro",
  28198. height: math.unit(1180, "feet")
  28199. },
  28200. ]
  28201. ))
  28202. characterMakers.push(() => makeCharacter(
  28203. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28204. {
  28205. front: {
  28206. height: math.unit(5 + 6 / 12, "feet"),
  28207. weight: math.unit(108, "lb"),
  28208. name: "Front",
  28209. image: {
  28210. source: "./media/characters/lilith-zott/front.svg",
  28211. extra: 2510 / 2238,
  28212. bottom: 100 / 2610
  28213. }
  28214. },
  28215. frontDressed: {
  28216. height: math.unit(5 + 6 / 12, "feet"),
  28217. weight: math.unit(108, "lb"),
  28218. name: "Front (Dressed)",
  28219. image: {
  28220. source: "./media/characters/lilith-zott/front-dressed.svg",
  28221. extra: 2510 / 2238,
  28222. bottom: 100 / 2610
  28223. }
  28224. },
  28225. },
  28226. [
  28227. {
  28228. name: "Normal",
  28229. height: math.unit(5 + 6 / 12, "feet")
  28230. },
  28231. {
  28232. name: "Macro",
  28233. height: math.unit(200, "feet"),
  28234. default: true
  28235. },
  28236. {
  28237. name: "Macro+",
  28238. height: math.unit(1030, "feet")
  28239. },
  28240. ]
  28241. ))
  28242. characterMakers.push(() => makeCharacter(
  28243. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28244. {
  28245. front: {
  28246. height: math.unit(6, "feet"),
  28247. weight: math.unit(150, "lb"),
  28248. name: "Front",
  28249. image: {
  28250. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28251. extra: 2567 / 2435,
  28252. bottom: 39 / 2606
  28253. }
  28254. },
  28255. frontSuper: {
  28256. height: math.unit(6, "feet"),
  28257. name: "Front (Super)",
  28258. image: {
  28259. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28260. extra: 2567 / 2435,
  28261. bottom: 39 / 2606
  28262. }
  28263. },
  28264. },
  28265. [
  28266. {
  28267. name: "Normal",
  28268. height: math.unit(5 + 10 / 12, "feet")
  28269. },
  28270. {
  28271. name: "Macro",
  28272. height: math.unit(220, "feet"),
  28273. default: true
  28274. },
  28275. {
  28276. name: "Macro+",
  28277. height: math.unit(1100, "feet")
  28278. },
  28279. ]
  28280. ))
  28281. characterMakers.push(() => makeCharacter(
  28282. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28283. {
  28284. front: {
  28285. height: math.unit(100, "miles"),
  28286. name: "Front",
  28287. image: {
  28288. source: "./media/characters/sona/front.svg",
  28289. extra: 2433 / 2201,
  28290. bottom: 53 / 2486
  28291. }
  28292. },
  28293. foot: {
  28294. height: math.unit(16.1, "miles"),
  28295. name: "Foot",
  28296. image: {
  28297. source: "./media/characters/sona/foot.svg"
  28298. }
  28299. },
  28300. },
  28301. [
  28302. {
  28303. name: "Macro",
  28304. height: math.unit(100, "miles"),
  28305. default: true
  28306. },
  28307. ]
  28308. ))
  28309. characterMakers.push(() => makeCharacter(
  28310. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28311. {
  28312. front: {
  28313. height: math.unit(6, "feet"),
  28314. weight: math.unit(150, "lb"),
  28315. name: "Front",
  28316. image: {
  28317. source: "./media/characters/bailey/front.svg",
  28318. extra: 1778 / 1724,
  28319. bottom: 30 / 1808
  28320. }
  28321. },
  28322. },
  28323. [
  28324. {
  28325. name: "Micro",
  28326. height: math.unit(4, "inches")
  28327. },
  28328. {
  28329. name: "Normal",
  28330. height: math.unit(5 + 5 / 12, "feet"),
  28331. default: true
  28332. },
  28333. {
  28334. name: "Macro",
  28335. height: math.unit(250, "feet")
  28336. },
  28337. {
  28338. name: "Megamacro",
  28339. height: math.unit(100, "miles")
  28340. },
  28341. ]
  28342. ))
  28343. characterMakers.push(() => makeCharacter(
  28344. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28345. {
  28346. front: {
  28347. height: math.unit(5 + 2 / 12, "feet"),
  28348. weight: math.unit(120, "lb"),
  28349. name: "Front",
  28350. image: {
  28351. source: "./media/characters/snaps/front.svg",
  28352. extra: 2370 / 2177,
  28353. bottom: 48 / 2418
  28354. }
  28355. },
  28356. back: {
  28357. height: math.unit(5 + 2 / 12, "feet"),
  28358. weight: math.unit(120, "lb"),
  28359. name: "Back",
  28360. image: {
  28361. source: "./media/characters/snaps/back.svg",
  28362. extra: 2408 / 2258,
  28363. bottom: 15 / 2423
  28364. }
  28365. },
  28366. },
  28367. [
  28368. {
  28369. name: "Micro",
  28370. height: math.unit(9, "inches")
  28371. },
  28372. {
  28373. name: "Normal",
  28374. height: math.unit(5 + 2 / 12, "feet"),
  28375. default: true
  28376. },
  28377. {
  28378. name: "Mini Macro",
  28379. height: math.unit(10, "feet")
  28380. },
  28381. ]
  28382. ))
  28383. characterMakers.push(() => makeCharacter(
  28384. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28385. {
  28386. front: {
  28387. height: math.unit(1.8, "meters"),
  28388. weight: math.unit(85, "kg"),
  28389. name: "Front",
  28390. image: {
  28391. source: "./media/characters/azteck/front.svg",
  28392. extra: 2815 / 2625,
  28393. bottom: 89 / 2904
  28394. }
  28395. },
  28396. back: {
  28397. height: math.unit(1.8, "meters"),
  28398. weight: math.unit(85, "kg"),
  28399. name: "Back",
  28400. image: {
  28401. source: "./media/characters/azteck/back.svg",
  28402. extra: 2856 / 2648,
  28403. bottom: 85 / 2941
  28404. }
  28405. },
  28406. frontDressed: {
  28407. height: math.unit(1.8, "meters"),
  28408. weight: math.unit(85, "kg"),
  28409. name: "Front (Dressed)",
  28410. image: {
  28411. source: "./media/characters/azteck/front-dressed.svg",
  28412. extra: 2147 / 2003,
  28413. bottom: 68 / 2215
  28414. }
  28415. },
  28416. head: {
  28417. height: math.unit(0.47, "meters"),
  28418. weight: math.unit(85, "kg"),
  28419. name: "Head",
  28420. image: {
  28421. source: "./media/characters/azteck/head.svg"
  28422. }
  28423. },
  28424. },
  28425. [
  28426. {
  28427. name: "Bite sized",
  28428. height: math.unit(16, "cm")
  28429. },
  28430. {
  28431. name: "Normal",
  28432. height: math.unit(1.8, "meters"),
  28433. default: true
  28434. },
  28435. ]
  28436. ))
  28437. characterMakers.push(() => makeCharacter(
  28438. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28439. {
  28440. front: {
  28441. height: math.unit(6, "feet"),
  28442. weight: math.unit(150, "lb"),
  28443. name: "Front",
  28444. image: {
  28445. source: "./media/characters/pidge/front.svg",
  28446. extra: 620 / 588,
  28447. bottom: 9 / 629
  28448. }
  28449. },
  28450. back: {
  28451. height: math.unit(6, "feet"),
  28452. weight: math.unit(150, "lb"),
  28453. name: "Back",
  28454. image: {
  28455. source: "./media/characters/pidge/back.svg",
  28456. extra: 620 / 588,
  28457. bottom: 9 / 629
  28458. }
  28459. },
  28460. },
  28461. [
  28462. {
  28463. name: "Macro",
  28464. height: math.unit(1, "mile"),
  28465. default: true
  28466. },
  28467. ]
  28468. ))
  28469. characterMakers.push(() => makeCharacter(
  28470. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28471. {
  28472. front: {
  28473. height: math.unit(6, "feet"),
  28474. weight: math.unit(150, "lb"),
  28475. name: "Front",
  28476. image: {
  28477. source: "./media/characters/en/front.svg",
  28478. extra: 1697 / 1563,
  28479. bottom: 103 / 1800
  28480. }
  28481. },
  28482. back: {
  28483. height: math.unit(6, "feet"),
  28484. weight: math.unit(150, "lb"),
  28485. name: "Back",
  28486. image: {
  28487. source: "./media/characters/en/back.svg",
  28488. extra: 1700 / 1570,
  28489. bottom: 51 / 1751
  28490. }
  28491. },
  28492. frontDressed: {
  28493. height: math.unit(6, "feet"),
  28494. weight: math.unit(150, "lb"),
  28495. name: "Front (Dressed)",
  28496. image: {
  28497. source: "./media/characters/en/front-dressed.svg",
  28498. extra: 1697 / 1563,
  28499. bottom: 103 / 1800
  28500. }
  28501. },
  28502. backDressed: {
  28503. height: math.unit(6, "feet"),
  28504. weight: math.unit(150, "lb"),
  28505. name: "Back (Dressed)",
  28506. image: {
  28507. source: "./media/characters/en/back-dressed.svg",
  28508. extra: 1700 / 1570,
  28509. bottom: 51 / 1751
  28510. }
  28511. },
  28512. },
  28513. [
  28514. {
  28515. name: "Macro",
  28516. height: math.unit(210, "feet"),
  28517. default: true
  28518. },
  28519. ]
  28520. ))
  28521. characterMakers.push(() => makeCharacter(
  28522. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28523. {
  28524. front: {
  28525. height: math.unit(6, "feet"),
  28526. weight: math.unit(150, "lb"),
  28527. name: "Front",
  28528. image: {
  28529. source: "./media/characters/haze-orris/front.svg",
  28530. extra: 3975 / 3525,
  28531. bottom: 137 / 4112
  28532. }
  28533. },
  28534. },
  28535. [
  28536. {
  28537. name: "Micro",
  28538. height: math.unit(150, "mm"),
  28539. default: true
  28540. },
  28541. ]
  28542. ))
  28543. characterMakers.push(() => makeCharacter(
  28544. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28545. {
  28546. front: {
  28547. height: math.unit(6, "feet"),
  28548. weight: math.unit(150, "lb"),
  28549. name: "Front",
  28550. image: {
  28551. source: "./media/characters/casselene-yaro/front.svg",
  28552. extra: 4721 / 4541,
  28553. bottom: 82 / 4803
  28554. }
  28555. },
  28556. back: {
  28557. height: math.unit(6, "feet"),
  28558. weight: math.unit(150, "lb"),
  28559. name: "Back",
  28560. image: {
  28561. source: "./media/characters/casselene-yaro/back.svg",
  28562. extra: 4569 / 4377,
  28563. bottom: 69 / 4638
  28564. }
  28565. },
  28566. frontDressed: {
  28567. height: math.unit(6, "feet"),
  28568. weight: math.unit(150, "lb"),
  28569. name: "Front-dressed",
  28570. image: {
  28571. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28572. extra: 4721 / 4541,
  28573. bottom: 82 / 4803
  28574. }
  28575. },
  28576. },
  28577. [
  28578. {
  28579. name: "Macro",
  28580. height: math.unit(190, "feet"),
  28581. default: true
  28582. },
  28583. ]
  28584. ))
  28585. characterMakers.push(() => makeCharacter(
  28586. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28587. {
  28588. front: {
  28589. height: math.unit(6, "feet"),
  28590. weight: math.unit(150, "lb"),
  28591. name: "Front",
  28592. image: {
  28593. source: "./media/characters/myra-rue-delore/front.svg",
  28594. extra: 1340 / 1308,
  28595. bottom: 67 / 1407
  28596. }
  28597. },
  28598. back: {
  28599. height: math.unit(6, "feet"),
  28600. weight: math.unit(150, "lb"),
  28601. name: "Back",
  28602. image: {
  28603. source: "./media/characters/myra-rue-delore/back.svg",
  28604. extra: 1341 / 1310,
  28605. bottom: 40 / 1381
  28606. }
  28607. },
  28608. frontDressed: {
  28609. height: math.unit(6, "feet"),
  28610. weight: math.unit(150, "lb"),
  28611. name: "Front (Dressed)",
  28612. image: {
  28613. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28614. extra: 1340 / 1308,
  28615. bottom: 67 / 1407
  28616. }
  28617. },
  28618. },
  28619. [
  28620. {
  28621. name: "Macro",
  28622. height: math.unit(150, "feet"),
  28623. default: true
  28624. },
  28625. ]
  28626. ))
  28627. characterMakers.push(() => makeCharacter(
  28628. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28629. {
  28630. front: {
  28631. height: math.unit(10, "feet"),
  28632. weight: math.unit(15015, "lb"),
  28633. name: "Front",
  28634. image: {
  28635. source: "./media/characters/fem!plat/front.svg",
  28636. extra: 2799 / 2604,
  28637. bottom: 149 / 2948
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Normal",
  28644. height: math.unit(10, "feet"),
  28645. default: true
  28646. },
  28647. {
  28648. name: "Macro",
  28649. height: math.unit(100, "feet")
  28650. },
  28651. {
  28652. name: "Megamacro",
  28653. height: math.unit(1000, "feet")
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28659. {
  28660. front: {
  28661. height: math.unit(15 + 5 / 12, "feet"),
  28662. weight: math.unit(4600, "lb"),
  28663. name: "Front",
  28664. image: {
  28665. source: "./media/characters/neapolitan-ananassa/front.svg",
  28666. extra: 2903 / 2736,
  28667. bottom: 0 / 2903
  28668. }
  28669. },
  28670. side: {
  28671. height: math.unit(15 + 5 / 12, "feet"),
  28672. weight: math.unit(4600, "lb"),
  28673. name: "Side",
  28674. image: {
  28675. source: "./media/characters/neapolitan-ananassa/side.svg",
  28676. extra: 2925 / 2719,
  28677. bottom: 0 / 2925
  28678. }
  28679. },
  28680. back: {
  28681. height: math.unit(15 + 5 / 12, "feet"),
  28682. weight: math.unit(4600, "lb"),
  28683. name: "Back",
  28684. image: {
  28685. source: "./media/characters/neapolitan-ananassa/back.svg",
  28686. extra: 2903 / 2736,
  28687. bottom: 0 / 2903
  28688. }
  28689. },
  28690. },
  28691. [
  28692. {
  28693. name: "Normal",
  28694. height: math.unit(15 + 5 / 12, "feet"),
  28695. default: true
  28696. },
  28697. {
  28698. name: "Post-Millenium",
  28699. height: math.unit(35 + 5 / 12, "feet")
  28700. },
  28701. {
  28702. name: "Post-Era",
  28703. height: math.unit(450 + 5 / 12, "feet")
  28704. },
  28705. ]
  28706. ))
  28707. characterMakers.push(() => makeCharacter(
  28708. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28709. {
  28710. front: {
  28711. height: math.unit(300, "meters"),
  28712. weight: math.unit(125000, "tonnes"),
  28713. name: "Front",
  28714. image: {
  28715. source: "./media/characters/pazuzu/front.svg",
  28716. extra: 877 / 794,
  28717. bottom: 47 / 924
  28718. }
  28719. },
  28720. },
  28721. [
  28722. {
  28723. name: "Macro",
  28724. height: math.unit(300, "meters"),
  28725. default: true
  28726. },
  28727. ]
  28728. ))
  28729. characterMakers.push(() => makeCharacter(
  28730. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28731. {
  28732. side: {
  28733. height: math.unit(10 + 7 / 12, "feet"),
  28734. weight: math.unit(2.5, "tons"),
  28735. name: "Side",
  28736. image: {
  28737. source: "./media/characters/aasha/side.svg",
  28738. extra: 1345 / 1245,
  28739. bottom: 111 / 1456
  28740. }
  28741. },
  28742. back: {
  28743. height: math.unit(10 + 7 / 12, "feet"),
  28744. weight: math.unit(2.5, "tons"),
  28745. name: "Back",
  28746. image: {
  28747. source: "./media/characters/aasha/back.svg",
  28748. extra: 1133 / 1057,
  28749. bottom: 257 / 1390
  28750. }
  28751. },
  28752. },
  28753. [
  28754. {
  28755. name: "Normal",
  28756. height: math.unit(10 + 7 / 12, "feet"),
  28757. default: true
  28758. },
  28759. ]
  28760. ))
  28761. characterMakers.push(() => makeCharacter(
  28762. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28763. {
  28764. front: {
  28765. height: math.unit(6 + 3 / 12, "feet"),
  28766. name: "Front",
  28767. image: {
  28768. source: "./media/characters/nevan/front.svg",
  28769. extra: 704 / 704,
  28770. bottom: 28 / 732
  28771. }
  28772. },
  28773. back: {
  28774. height: math.unit(6 + 3 / 12, "feet"),
  28775. name: "Back",
  28776. image: {
  28777. source: "./media/characters/nevan/back.svg",
  28778. extra: 714 / 714,
  28779. bottom: 21 / 735
  28780. }
  28781. },
  28782. frontFlaccid: {
  28783. height: math.unit(6 + 3 / 12, "feet"),
  28784. name: "Front (Flaccid)",
  28785. image: {
  28786. source: "./media/characters/nevan/front-flaccid.svg",
  28787. extra: 704 / 704,
  28788. bottom: 28 / 732
  28789. }
  28790. },
  28791. frontErect: {
  28792. height: math.unit(6 + 3 / 12, "feet"),
  28793. name: "Front (Erect)",
  28794. image: {
  28795. source: "./media/characters/nevan/front-erect.svg",
  28796. extra: 704 / 704,
  28797. bottom: 28 / 732
  28798. }
  28799. },
  28800. backFlaccid: {
  28801. height: math.unit(6 + 3 / 12, "feet"),
  28802. name: "Back (Flaccid)",
  28803. image: {
  28804. source: "./media/characters/nevan/back-flaccid.svg",
  28805. extra: 714 / 714,
  28806. bottom: 21 / 735
  28807. }
  28808. },
  28809. },
  28810. [
  28811. {
  28812. name: "Normal",
  28813. height: math.unit(6 + 3 / 12, "feet"),
  28814. default: true
  28815. },
  28816. ]
  28817. ))
  28818. characterMakers.push(() => makeCharacter(
  28819. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28820. {
  28821. front: {
  28822. height: math.unit(4, "feet"),
  28823. name: "Front",
  28824. image: {
  28825. source: "./media/characters/arhan/front.svg",
  28826. extra: 3368 / 3133,
  28827. bottom: 0 / 3368
  28828. }
  28829. },
  28830. side: {
  28831. height: math.unit(4, "feet"),
  28832. name: "Side",
  28833. image: {
  28834. source: "./media/characters/arhan/side.svg",
  28835. extra: 3347 / 3105,
  28836. bottom: 0 / 3347
  28837. }
  28838. },
  28839. tongue: {
  28840. height: math.unit(1.42, "feet"),
  28841. name: "Tongue",
  28842. image: {
  28843. source: "./media/characters/arhan/tongue.svg"
  28844. }
  28845. },
  28846. head: {
  28847. height: math.unit(0.85, "feet"),
  28848. name: "Head",
  28849. image: {
  28850. source: "./media/characters/arhan/head.svg"
  28851. }
  28852. },
  28853. },
  28854. [
  28855. {
  28856. name: "Normal",
  28857. height: math.unit(4, "feet"),
  28858. default: true
  28859. },
  28860. ]
  28861. ))
  28862. characterMakers.push(() => makeCharacter(
  28863. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28864. {
  28865. front: {
  28866. height: math.unit(5 + 7.5 / 12, "feet"),
  28867. weight: math.unit(120, "lb"),
  28868. name: "Front",
  28869. image: {
  28870. source: "./media/characters/digi-duncan/front.svg",
  28871. extra: 330 / 326,
  28872. bottom: 16 / 346
  28873. }
  28874. },
  28875. side: {
  28876. height: math.unit(5 + 7.5 / 12, "feet"),
  28877. weight: math.unit(120, "lb"),
  28878. name: "Side",
  28879. image: {
  28880. source: "./media/characters/digi-duncan/side.svg",
  28881. extra: 341 / 337,
  28882. bottom: 1 / 342
  28883. }
  28884. },
  28885. back: {
  28886. height: math.unit(5 + 7.5 / 12, "feet"),
  28887. weight: math.unit(120, "lb"),
  28888. name: "Back",
  28889. image: {
  28890. source: "./media/characters/digi-duncan/back.svg",
  28891. extra: 330 / 326,
  28892. bottom: 12 / 342
  28893. }
  28894. },
  28895. },
  28896. [
  28897. {
  28898. name: "Speck",
  28899. height: math.unit(0.25, "mm")
  28900. },
  28901. {
  28902. name: "Micro",
  28903. height: math.unit(5, "mm")
  28904. },
  28905. {
  28906. name: "Tiny",
  28907. height: math.unit(0.5, "inches"),
  28908. default: true
  28909. },
  28910. {
  28911. name: "Human",
  28912. height: math.unit(5 + 7.5 / 12, "feet")
  28913. },
  28914. {
  28915. name: "Minigiant",
  28916. height: math.unit(8 + 5.25, "feet")
  28917. },
  28918. {
  28919. name: "Giant",
  28920. height: math.unit(2000, "feet")
  28921. },
  28922. {
  28923. name: "Mega",
  28924. height: math.unit(371.1, "miles")
  28925. },
  28926. ]
  28927. ))
  28928. characterMakers.push(() => makeCharacter(
  28929. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28930. {
  28931. front: {
  28932. height: math.unit(2, "meters"),
  28933. weight: math.unit(350, "kg"),
  28934. name: "Front",
  28935. image: {
  28936. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28937. extra: 898 / 838,
  28938. bottom: 9 / 907
  28939. }
  28940. },
  28941. },
  28942. [
  28943. {
  28944. name: "Micro",
  28945. height: math.unit(8, "meters")
  28946. },
  28947. {
  28948. name: "Normal",
  28949. height: math.unit(50, "meters"),
  28950. default: true
  28951. },
  28952. {
  28953. name: "Macro",
  28954. height: math.unit(500, "meters")
  28955. },
  28956. ]
  28957. ))
  28958. characterMakers.push(() => makeCharacter(
  28959. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28960. {
  28961. front: {
  28962. height: math.unit(6 + 6 / 12, "feet"),
  28963. name: "Front",
  28964. image: {
  28965. source: "./media/characters/khardesh/front.svg",
  28966. extra: 888 / 797,
  28967. bottom: 25 / 913
  28968. }
  28969. },
  28970. },
  28971. [
  28972. {
  28973. name: "Normal",
  28974. height: math.unit(6 + 6 / 12, "feet"),
  28975. default: true
  28976. },
  28977. {
  28978. name: "Normal+",
  28979. height: math.unit(4, "meters")
  28980. },
  28981. {
  28982. name: "Macro",
  28983. height: math.unit(50, "meters")
  28984. },
  28985. {
  28986. name: "Macro+",
  28987. height: math.unit(100, "meters")
  28988. },
  28989. {
  28990. name: "Megamacro",
  28991. height: math.unit(20, "km")
  28992. },
  28993. ]
  28994. ))
  28995. characterMakers.push(() => makeCharacter(
  28996. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28997. {
  28998. front: {
  28999. height: math.unit(6, "feet"),
  29000. weight: math.unit(150, "lb"),
  29001. name: "Front",
  29002. image: {
  29003. source: "./media/characters/kosho/front.svg",
  29004. extra: 1847 / 1847,
  29005. bottom: 86 / 1933
  29006. }
  29007. },
  29008. },
  29009. [
  29010. {
  29011. name: "Second-stage micro",
  29012. height: math.unit(0.5, "inches")
  29013. },
  29014. {
  29015. name: "First-stage micro",
  29016. height: math.unit(6, "inches")
  29017. },
  29018. {
  29019. name: "Normal",
  29020. height: math.unit(6, "feet"),
  29021. default: true
  29022. },
  29023. {
  29024. name: "First-stage macro",
  29025. height: math.unit(72, "feet")
  29026. },
  29027. {
  29028. name: "Second-stage macro",
  29029. height: math.unit(864, "feet")
  29030. },
  29031. ]
  29032. ))
  29033. characterMakers.push(() => makeCharacter(
  29034. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29035. {
  29036. normal: {
  29037. height: math.unit(4 + 6 / 12, "feet"),
  29038. name: "Normal",
  29039. image: {
  29040. source: "./media/characters/hydra/normal.svg",
  29041. extra: 2833 / 2634,
  29042. bottom: 68 / 2901
  29043. }
  29044. },
  29045. smol: {
  29046. height: math.unit(0.705, "inches"),
  29047. name: "Smol",
  29048. image: {
  29049. source: "./media/characters/hydra/smol.svg",
  29050. extra: 2715 / 2540,
  29051. bottom: 0 / 2715
  29052. }
  29053. },
  29054. },
  29055. [
  29056. {
  29057. name: "Normal",
  29058. height: math.unit(4 + 6 / 12, "feet"),
  29059. default: true
  29060. }
  29061. ]
  29062. ))
  29063. characterMakers.push(() => makeCharacter(
  29064. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29065. {
  29066. front: {
  29067. height: math.unit(0.6, "cm"),
  29068. name: "Front",
  29069. image: {
  29070. source: "./media/characters/daz/front.svg",
  29071. extra: 1682 / 1164,
  29072. bottom: 42 / 1724
  29073. }
  29074. },
  29075. },
  29076. [
  29077. {
  29078. name: "Normal",
  29079. height: math.unit(0.6, "cm"),
  29080. default: true
  29081. },
  29082. ]
  29083. ))
  29084. characterMakers.push(() => makeCharacter(
  29085. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29086. {
  29087. front: {
  29088. height: math.unit(6, "feet"),
  29089. weight: math.unit(235, "lb"),
  29090. name: "Front",
  29091. image: {
  29092. source: "./media/characters/theo-pangolin/front.svg",
  29093. extra: 1996 / 1969,
  29094. bottom: 115 / 2111
  29095. }
  29096. },
  29097. back: {
  29098. height: math.unit(6, "feet"),
  29099. weight: math.unit(235, "lb"),
  29100. name: "Back",
  29101. image: {
  29102. source: "./media/characters/theo-pangolin/back.svg",
  29103. extra: 1979 / 1979,
  29104. bottom: 40 / 2019
  29105. }
  29106. },
  29107. feral: {
  29108. height: math.unit(2, "feet"),
  29109. weight: math.unit(30, "lb"),
  29110. name: "Feral",
  29111. image: {
  29112. source: "./media/characters/theo-pangolin/feral.svg",
  29113. extra: 803 / 791,
  29114. bottom: 181 / 984
  29115. }
  29116. },
  29117. footFive: {
  29118. height: math.unit(1.43, "feet"),
  29119. name: "Foot (Five Toes)",
  29120. image: {
  29121. source: "./media/characters/theo-pangolin/foot-five.svg"
  29122. }
  29123. },
  29124. footFour: {
  29125. height: math.unit(1.43, "feet"),
  29126. name: "Foot (Four Toes)",
  29127. image: {
  29128. source: "./media/characters/theo-pangolin/foot-four.svg"
  29129. }
  29130. },
  29131. handFour: {
  29132. height: math.unit(0.81, "feet"),
  29133. name: "Hand (Four Fingers)",
  29134. image: {
  29135. source: "./media/characters/theo-pangolin/hand-four.svg"
  29136. }
  29137. },
  29138. handThree: {
  29139. height: math.unit(0.81, "feet"),
  29140. name: "Hand (Three Fingers)",
  29141. image: {
  29142. source: "./media/characters/theo-pangolin/hand-three.svg"
  29143. }
  29144. },
  29145. headFront: {
  29146. height: math.unit(1.37, "feet"),
  29147. name: "Head (Front)",
  29148. image: {
  29149. source: "./media/characters/theo-pangolin/head-front.svg"
  29150. }
  29151. },
  29152. headSide: {
  29153. height: math.unit(1.43, "feet"),
  29154. name: "Head (Side)",
  29155. image: {
  29156. source: "./media/characters/theo-pangolin/head-side.svg"
  29157. }
  29158. },
  29159. tongue: {
  29160. height: math.unit(2.29, "feet"),
  29161. name: "Tongue",
  29162. image: {
  29163. source: "./media/characters/theo-pangolin/tongue.svg"
  29164. }
  29165. },
  29166. },
  29167. [
  29168. {
  29169. name: "Normal",
  29170. height: math.unit(6, "feet")
  29171. },
  29172. {
  29173. name: "Macro",
  29174. height: math.unit(400, "feet"),
  29175. default: true
  29176. },
  29177. ]
  29178. ))
  29179. characterMakers.push(() => makeCharacter(
  29180. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29181. {
  29182. front: {
  29183. height: math.unit(6, "inches"),
  29184. weight: math.unit(0.036, "kg"),
  29185. name: "Front",
  29186. image: {
  29187. source: "./media/characters/renée/front.svg",
  29188. extra: 900 / 886,
  29189. bottom: 8 / 908
  29190. }
  29191. },
  29192. },
  29193. [
  29194. {
  29195. name: "Nano",
  29196. height: math.unit(1, "nm")
  29197. },
  29198. {
  29199. name: "Micro",
  29200. height: math.unit(1, "mm")
  29201. },
  29202. {
  29203. name: "Normal",
  29204. height: math.unit(6, "inches")
  29205. },
  29206. {
  29207. name: "Macro",
  29208. height: math.unit(2000, "feet"),
  29209. default: true
  29210. },
  29211. {
  29212. name: "Megamacro",
  29213. height: math.unit(2, "km")
  29214. },
  29215. {
  29216. name: "Gigamacro",
  29217. height: math.unit(2000, "km")
  29218. },
  29219. {
  29220. name: "Teramacro",
  29221. height: math.unit(250000, "km")
  29222. },
  29223. ]
  29224. ))
  29225. characterMakers.push(() => makeCharacter(
  29226. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29227. {
  29228. front: {
  29229. height: math.unit(4, "meters"),
  29230. weight: math.unit(150, "kg"),
  29231. name: "Front",
  29232. image: {
  29233. source: "./media/characters/caledvwlch/front.svg",
  29234. extra: 1760 / 1551,
  29235. bottom: 28 / 1788
  29236. }
  29237. },
  29238. side: {
  29239. height: math.unit(4, "meters"),
  29240. weight: math.unit(150, "kg"),
  29241. name: "Side",
  29242. image: {
  29243. source: "./media/characters/caledvwlch/side.svg",
  29244. extra: 1605 / 1536,
  29245. bottom: 31 / 1636
  29246. }
  29247. },
  29248. back: {
  29249. height: math.unit(4, "meters"),
  29250. weight: math.unit(150, "kg"),
  29251. name: "Back",
  29252. image: {
  29253. source: "./media/characters/caledvwlch/back.svg",
  29254. extra: 1635 / 1565,
  29255. bottom: 27 / 1662
  29256. }
  29257. },
  29258. },
  29259. [
  29260. {
  29261. name: "\"Incognito\"",
  29262. height: math.unit(4, "meters")
  29263. },
  29264. {
  29265. name: "Small rampage",
  29266. height: math.unit(600, "meters")
  29267. },
  29268. {
  29269. name: "Mega",
  29270. height: math.unit(30, "km")
  29271. },
  29272. {
  29273. name: "Home-size",
  29274. height: math.unit(50, "km"),
  29275. default: true
  29276. },
  29277. {
  29278. name: "Giga",
  29279. height: math.unit(300, "km")
  29280. },
  29281. {
  29282. name: "Lounging",
  29283. height: math.unit(11000, "km")
  29284. },
  29285. {
  29286. name: "Planet snacking",
  29287. height: math.unit(2000000, "km")
  29288. },
  29289. ]
  29290. ))
  29291. characterMakers.push(() => makeCharacter(
  29292. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29293. {
  29294. front: {
  29295. height: math.unit(6, "feet"),
  29296. weight: math.unit(215, "lb"),
  29297. name: "Front",
  29298. image: {
  29299. source: "./media/characters/sapphire-svell/front.svg",
  29300. extra: 495 / 455,
  29301. bottom: 20 / 515
  29302. }
  29303. },
  29304. back: {
  29305. height: math.unit(6, "feet"),
  29306. weight: math.unit(216, "lb"),
  29307. name: "Back",
  29308. image: {
  29309. source: "./media/characters/sapphire-svell/back.svg",
  29310. extra: 497 / 477,
  29311. bottom: 7 / 504
  29312. }
  29313. },
  29314. maw: {
  29315. height: math.unit(1.57, "feet"),
  29316. name: "Maw",
  29317. image: {
  29318. source: "./media/characters/sapphire-svell/maw.svg"
  29319. }
  29320. },
  29321. foot: {
  29322. height: math.unit(1.07, "feet"),
  29323. name: "Foot",
  29324. image: {
  29325. source: "./media/characters/sapphire-svell/foot.svg"
  29326. }
  29327. },
  29328. toering: {
  29329. height: math.unit(1.7, "inch"),
  29330. name: "Toering",
  29331. image: {
  29332. source: "./media/characters/sapphire-svell/toering.svg"
  29333. }
  29334. },
  29335. },
  29336. [
  29337. {
  29338. name: "Normal",
  29339. height: math.unit(300, "feet"),
  29340. default: true
  29341. },
  29342. {
  29343. name: "Augmented",
  29344. height: math.unit(1250, "feet")
  29345. },
  29346. {
  29347. name: "Unleashed",
  29348. height: math.unit(3000, "feet")
  29349. },
  29350. ]
  29351. ))
  29352. characterMakers.push(() => makeCharacter(
  29353. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29354. {
  29355. side: {
  29356. height: math.unit(2 + 3 / 12, "feet"),
  29357. weight: math.unit(110, "lb"),
  29358. name: "Side",
  29359. image: {
  29360. source: "./media/characters/glitch-flux/side.svg",
  29361. extra: 997 / 805,
  29362. bottom: 20 / 1017
  29363. }
  29364. },
  29365. },
  29366. [
  29367. {
  29368. name: "Normal",
  29369. height: math.unit(2 + 3 / 12, "feet"),
  29370. default: true
  29371. },
  29372. ]
  29373. ))
  29374. characterMakers.push(() => makeCharacter(
  29375. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29376. {
  29377. front: {
  29378. height: math.unit(4, "meters"),
  29379. name: "Front",
  29380. image: {
  29381. source: "./media/characters/mid/front.svg",
  29382. extra: 507 / 476,
  29383. bottom: 17 / 524
  29384. }
  29385. },
  29386. back: {
  29387. height: math.unit(4, "meters"),
  29388. name: "Back",
  29389. image: {
  29390. source: "./media/characters/mid/back.svg",
  29391. extra: 519 / 487,
  29392. bottom: 7 / 526
  29393. }
  29394. },
  29395. stuck: {
  29396. height: math.unit(2.2, "meters"),
  29397. name: "Stuck",
  29398. image: {
  29399. source: "./media/characters/mid/stuck.svg",
  29400. extra: 1951 / 1869,
  29401. bottom: 88 / 2039
  29402. }
  29403. }
  29404. },
  29405. [
  29406. {
  29407. name: "Normal",
  29408. height: math.unit(4, "meters"),
  29409. default: true
  29410. },
  29411. {
  29412. name: "Big",
  29413. height: math.unit(10, "meters")
  29414. },
  29415. {
  29416. name: "Macro",
  29417. height: math.unit(800, "meters")
  29418. },
  29419. {
  29420. name: "Megamacro",
  29421. height: math.unit(100, "km")
  29422. },
  29423. {
  29424. name: "Overgrown",
  29425. height: math.unit(1, "parsec")
  29426. },
  29427. ]
  29428. ))
  29429. characterMakers.push(() => makeCharacter(
  29430. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29431. {
  29432. front: {
  29433. height: math.unit(2.5, "meters"),
  29434. weight: math.unit(225, "kg"),
  29435. name: "Front",
  29436. image: {
  29437. source: "./media/characters/iris/front.svg",
  29438. extra: 3348 / 3251,
  29439. bottom: 205 / 3553
  29440. }
  29441. },
  29442. maw: {
  29443. height: math.unit(0.56, "meter"),
  29444. name: "Maw",
  29445. image: {
  29446. source: "./media/characters/iris/maw.svg"
  29447. }
  29448. },
  29449. },
  29450. [
  29451. {
  29452. name: "Mewter cat",
  29453. height: math.unit(1.2, "meters")
  29454. },
  29455. {
  29456. name: "Minimacro",
  29457. height: math.unit(2.5, "meters"),
  29458. default: true
  29459. },
  29460. {
  29461. name: "Macro",
  29462. height: math.unit(180, "meters")
  29463. },
  29464. {
  29465. name: "Megamacro",
  29466. height: math.unit(2746, "meters")
  29467. },
  29468. ]
  29469. ))
  29470. characterMakers.push(() => makeCharacter(
  29471. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29472. {
  29473. front: {
  29474. height: math.unit(6, "feet"),
  29475. weight: math.unit(135, "lb"),
  29476. name: "Front",
  29477. image: {
  29478. source: "./media/characters/axel/front.svg",
  29479. extra: 908 / 908,
  29480. bottom: 58 / 966
  29481. }
  29482. },
  29483. side: {
  29484. height: math.unit(6, "feet"),
  29485. weight: math.unit(135, "lb"),
  29486. name: "Side",
  29487. image: {
  29488. source: "./media/characters/axel/side.svg",
  29489. extra: 958 / 958,
  29490. bottom: 11 / 969
  29491. }
  29492. },
  29493. back: {
  29494. height: math.unit(6, "feet"),
  29495. weight: math.unit(135, "lb"),
  29496. name: "Back",
  29497. image: {
  29498. source: "./media/characters/axel/back.svg",
  29499. extra: 887 / 887,
  29500. bottom: 34 / 921
  29501. }
  29502. },
  29503. head: {
  29504. height: math.unit(1.07, "feet"),
  29505. name: "Head",
  29506. image: {
  29507. source: "./media/characters/axel/head.svg"
  29508. }
  29509. },
  29510. beak: {
  29511. height: math.unit(1.4, "feet"),
  29512. name: "Beak",
  29513. image: {
  29514. source: "./media/characters/axel/beak.svg"
  29515. }
  29516. },
  29517. beakSide: {
  29518. height: math.unit(1.4, "feet"),
  29519. name: "Beak Side",
  29520. image: {
  29521. source: "./media/characters/axel/beak-side.svg"
  29522. }
  29523. },
  29524. sheath: {
  29525. height: math.unit(0.5, "feet"),
  29526. name: "Sheath",
  29527. image: {
  29528. source: "./media/characters/axel/sheath.svg"
  29529. }
  29530. },
  29531. dick: {
  29532. height: math.unit(0.98, "feet"),
  29533. name: "Dick",
  29534. image: {
  29535. source: "./media/characters/axel/dick.svg"
  29536. }
  29537. },
  29538. },
  29539. [
  29540. {
  29541. name: "Macro",
  29542. height: math.unit(68, "meters"),
  29543. default: true
  29544. },
  29545. ]
  29546. ))
  29547. characterMakers.push(() => makeCharacter(
  29548. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29549. {
  29550. front: {
  29551. height: math.unit(3.5, "meters"),
  29552. weight: math.unit(1200, "kg"),
  29553. name: "Front",
  29554. image: {
  29555. source: "./media/characters/joanna/front.svg",
  29556. extra: 1596 / 1488,
  29557. bottom: 29 / 1625
  29558. }
  29559. },
  29560. back: {
  29561. height: math.unit(3.5, "meters"),
  29562. weight: math.unit(1200, "kg"),
  29563. name: "Back",
  29564. image: {
  29565. source: "./media/characters/joanna/back.svg",
  29566. extra: 1594 / 1495,
  29567. bottom: 26 / 1620
  29568. }
  29569. },
  29570. frontShorts: {
  29571. height: math.unit(3.5, "meters"),
  29572. weight: math.unit(1200, "kg"),
  29573. name: "Front (Shorts)",
  29574. image: {
  29575. source: "./media/characters/joanna/front-shorts.svg",
  29576. extra: 1596 / 1488,
  29577. bottom: 29 / 1625
  29578. }
  29579. },
  29580. frontBiker: {
  29581. height: math.unit(3.5, "meters"),
  29582. weight: math.unit(1200, "kg"),
  29583. name: "Front (Biker)",
  29584. image: {
  29585. source: "./media/characters/joanna/front-biker.svg",
  29586. extra: 1596 / 1488,
  29587. bottom: 29 / 1625
  29588. }
  29589. },
  29590. backBiker: {
  29591. height: math.unit(3.5, "meters"),
  29592. weight: math.unit(1200, "kg"),
  29593. name: "Back (Biker)",
  29594. image: {
  29595. source: "./media/characters/joanna/back-biker.svg",
  29596. extra: 1594 / 1495,
  29597. bottom: 88 / 1682
  29598. }
  29599. },
  29600. bikeLeft: {
  29601. height: math.unit(2.4, "meters"),
  29602. weight: math.unit(1600, "kg"),
  29603. name: "Bike (Left)",
  29604. image: {
  29605. source: "./media/characters/joanna/bike-left.svg",
  29606. extra: 720 / 720,
  29607. bottom: 8 / 728
  29608. }
  29609. },
  29610. bikeRight: {
  29611. height: math.unit(2.4, "meters"),
  29612. weight: math.unit(1600, "kg"),
  29613. name: "Bike (Right)",
  29614. image: {
  29615. source: "./media/characters/joanna/bike-right.svg",
  29616. extra: 720 / 720,
  29617. bottom: 8 / 728
  29618. }
  29619. },
  29620. },
  29621. [
  29622. {
  29623. name: "Incognito",
  29624. height: math.unit(3.5, "meters")
  29625. },
  29626. {
  29627. name: "Casual Big",
  29628. height: math.unit(200, "meters")
  29629. },
  29630. {
  29631. name: "Macro",
  29632. height: math.unit(600, "meters")
  29633. },
  29634. {
  29635. name: "Original",
  29636. height: math.unit(20, "km"),
  29637. default: true
  29638. },
  29639. {
  29640. name: "Giga",
  29641. height: math.unit(400, "km")
  29642. },
  29643. {
  29644. name: "Lounging",
  29645. height: math.unit(1500, "km")
  29646. },
  29647. {
  29648. name: "Planetary",
  29649. height: math.unit(200000, "km")
  29650. },
  29651. ]
  29652. ))
  29653. characterMakers.push(() => makeCharacter(
  29654. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29655. {
  29656. front: {
  29657. height: math.unit(6, "feet"),
  29658. weight: math.unit(150, "lb"),
  29659. name: "Front",
  29660. image: {
  29661. source: "./media/characters/hugo-sigil/front.svg",
  29662. extra: 522 / 500,
  29663. bottom: 2 / 524
  29664. }
  29665. },
  29666. back: {
  29667. height: math.unit(6, "feet"),
  29668. weight: math.unit(150, "lb"),
  29669. name: "Back",
  29670. image: {
  29671. source: "./media/characters/hugo-sigil/back.svg",
  29672. extra: 519 / 495,
  29673. bottom: 5 / 524
  29674. }
  29675. },
  29676. maw: {
  29677. height: math.unit(1.4, "feet"),
  29678. weight: math.unit(150, "lb"),
  29679. name: "Maw",
  29680. image: {
  29681. source: "./media/characters/hugo-sigil/maw.svg"
  29682. }
  29683. },
  29684. feet: {
  29685. height: math.unit(1.56, "feet"),
  29686. weight: math.unit(150, "lb"),
  29687. name: "Feet",
  29688. image: {
  29689. source: "./media/characters/hugo-sigil/feet.svg",
  29690. extra: 177 / 177,
  29691. bottom: 12 / 189
  29692. }
  29693. },
  29694. },
  29695. [
  29696. {
  29697. name: "Normal",
  29698. height: math.unit(6, "feet")
  29699. },
  29700. {
  29701. name: "Macro",
  29702. height: math.unit(200, "feet"),
  29703. default: true
  29704. },
  29705. ]
  29706. ))
  29707. characterMakers.push(() => makeCharacter(
  29708. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29709. {
  29710. front: {
  29711. height: math.unit(6, "feet"),
  29712. weight: math.unit(150, "lb"),
  29713. name: "Front",
  29714. image: {
  29715. source: "./media/characters/peri/front.svg",
  29716. extra: 2354 / 2233,
  29717. bottom: 49 / 2403
  29718. }
  29719. },
  29720. },
  29721. [
  29722. {
  29723. name: "Really Small",
  29724. height: math.unit(1, "nm")
  29725. },
  29726. {
  29727. name: "Micro",
  29728. height: math.unit(4, "inches")
  29729. },
  29730. {
  29731. name: "Normal",
  29732. height: math.unit(7, "inches"),
  29733. default: true
  29734. },
  29735. {
  29736. name: "Macro",
  29737. height: math.unit(400, "feet")
  29738. },
  29739. {
  29740. name: "Megamacro",
  29741. height: math.unit(100, "miles")
  29742. },
  29743. ]
  29744. ))
  29745. characterMakers.push(() => makeCharacter(
  29746. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29747. {
  29748. frontSlim: {
  29749. height: math.unit(7, "feet"),
  29750. name: "Front (Slim)",
  29751. image: {
  29752. source: "./media/characters/issilora/front-slim.svg",
  29753. extra: 529 / 449,
  29754. bottom: 53 / 582
  29755. }
  29756. },
  29757. sideSlim: {
  29758. height: math.unit(7, "feet"),
  29759. name: "Side (Slim)",
  29760. image: {
  29761. source: "./media/characters/issilora/side-slim.svg",
  29762. extra: 570 / 480,
  29763. bottom: 30 / 600
  29764. }
  29765. },
  29766. backSlim: {
  29767. height: math.unit(7, "feet"),
  29768. name: "Back (Slim)",
  29769. image: {
  29770. source: "./media/characters/issilora/back-slim.svg",
  29771. extra: 537 / 455,
  29772. bottom: 46 / 583
  29773. }
  29774. },
  29775. frontBuff: {
  29776. height: math.unit(7, "feet"),
  29777. name: "Front (Buff)",
  29778. image: {
  29779. source: "./media/characters/issilora/front-buff.svg",
  29780. extra: 2310 / 2035,
  29781. bottom: 335 / 2645
  29782. }
  29783. },
  29784. head: {
  29785. height: math.unit(1.94, "feet"),
  29786. name: "Head",
  29787. image: {
  29788. source: "./media/characters/issilora/head.svg"
  29789. }
  29790. },
  29791. },
  29792. [
  29793. {
  29794. name: "Minimum",
  29795. height: math.unit(7, "feet")
  29796. },
  29797. {
  29798. name: "Comfortable",
  29799. height: math.unit(17, "feet")
  29800. },
  29801. {
  29802. name: "Fun Size",
  29803. height: math.unit(47, "feet")
  29804. },
  29805. {
  29806. name: "Natural Macro",
  29807. height: math.unit(137, "feet"),
  29808. default: true
  29809. },
  29810. {
  29811. name: "Maximum Kaiju",
  29812. height: math.unit(397, "feet")
  29813. },
  29814. ]
  29815. ))
  29816. characterMakers.push(() => makeCharacter(
  29817. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29818. {
  29819. front: {
  29820. height: math.unit(50 + 9/12, "feet"),
  29821. weight: math.unit(32.8, "tons"),
  29822. name: "Front",
  29823. image: {
  29824. source: "./media/characters/irb'iiritaahn/front.svg",
  29825. extra: 1878/1826,
  29826. bottom: 326/2204
  29827. }
  29828. },
  29829. back: {
  29830. height: math.unit(50 + 9/12, "feet"),
  29831. weight: math.unit(32.8, "tons"),
  29832. name: "Back",
  29833. image: {
  29834. source: "./media/characters/irb'iiritaahn/back.svg",
  29835. extra: 2052/2018,
  29836. bottom: 152/2204
  29837. }
  29838. },
  29839. head: {
  29840. height: math.unit(12.86, "feet"),
  29841. name: "Head",
  29842. image: {
  29843. source: "./media/characters/irb'iiritaahn/head.svg"
  29844. }
  29845. },
  29846. maw: {
  29847. height: math.unit(9.66, "feet"),
  29848. name: "Maw",
  29849. image: {
  29850. source: "./media/characters/irb'iiritaahn/maw.svg"
  29851. }
  29852. },
  29853. frontDick: {
  29854. height: math.unit(8.78461, "feet"),
  29855. name: "Front Dick",
  29856. image: {
  29857. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29858. }
  29859. },
  29860. rearDick: {
  29861. height: math.unit(8.78461, "feet"),
  29862. name: "Rear Dick",
  29863. image: {
  29864. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29865. }
  29866. },
  29867. rearDickUnfolded: {
  29868. height: math.unit(8.78, "feet"),
  29869. name: "Rear Dick (Unfolded)",
  29870. image: {
  29871. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29872. }
  29873. },
  29874. wings: {
  29875. height: math.unit(43, "feet"),
  29876. name: "Wings",
  29877. image: {
  29878. source: "./media/characters/irb'iiritaahn/wings.svg"
  29879. }
  29880. },
  29881. },
  29882. [
  29883. {
  29884. name: "Macro",
  29885. height: math.unit(50 + 9/12, "feet"),
  29886. default: true
  29887. },
  29888. ]
  29889. ))
  29890. characterMakers.push(() => makeCharacter(
  29891. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29892. {
  29893. front: {
  29894. height: math.unit(205, "cm"),
  29895. weight: math.unit(102, "kg"),
  29896. name: "Front",
  29897. image: {
  29898. source: "./media/characters/irbisgreif/front.svg",
  29899. extra: 785/706,
  29900. bottom: 13/798
  29901. }
  29902. },
  29903. back: {
  29904. height: math.unit(205, "cm"),
  29905. weight: math.unit(102, "kg"),
  29906. name: "Back",
  29907. image: {
  29908. source: "./media/characters/irbisgreif/back.svg",
  29909. extra: 713/701,
  29910. bottom: 26/739
  29911. }
  29912. },
  29913. frontDressed: {
  29914. height: math.unit(216, "cm"),
  29915. weight: math.unit(102, "kg"),
  29916. name: "Front-dressed",
  29917. image: {
  29918. source: "./media/characters/irbisgreif/front-dressed.svg",
  29919. extra: 902/776,
  29920. bottom: 14/916
  29921. }
  29922. },
  29923. sideDressed: {
  29924. height: math.unit(195, "cm"),
  29925. weight: math.unit(102, "kg"),
  29926. name: "Side-dressed",
  29927. image: {
  29928. source: "./media/characters/irbisgreif/side-dressed.svg",
  29929. extra: 788/688,
  29930. bottom: 21/809
  29931. }
  29932. },
  29933. backDressed: {
  29934. height: math.unit(216, "cm"),
  29935. weight: math.unit(102, "kg"),
  29936. name: "Back-dressed",
  29937. image: {
  29938. source: "./media/characters/irbisgreif/back-dressed.svg",
  29939. extra: 901/783,
  29940. bottom: 10/911
  29941. }
  29942. },
  29943. dick: {
  29944. height: math.unit(0.49, "feet"),
  29945. name: "Dick",
  29946. image: {
  29947. source: "./media/characters/irbisgreif/dick.svg"
  29948. }
  29949. },
  29950. wingTop: {
  29951. height: math.unit(1.93 , "feet"),
  29952. name: "Wing-top",
  29953. image: {
  29954. source: "./media/characters/irbisgreif/wing-top.svg"
  29955. }
  29956. },
  29957. wingBottom: {
  29958. height: math.unit(1.93 , "feet"),
  29959. name: "Wing-bottom",
  29960. image: {
  29961. source: "./media/characters/irbisgreif/wing-bottom.svg"
  29962. }
  29963. },
  29964. },
  29965. [
  29966. {
  29967. name: "Normal",
  29968. height: math.unit(216, "cm"),
  29969. default: true
  29970. },
  29971. ]
  29972. ))
  29973. characterMakers.push(() => makeCharacter(
  29974. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  29975. {
  29976. front: {
  29977. height: math.unit(6, "feet"),
  29978. weight: math.unit(150, "lb"),
  29979. name: "Front",
  29980. image: {
  29981. source: "./media/characters/pride/front.svg",
  29982. extra: 1299/1230,
  29983. bottom: 18/1317
  29984. }
  29985. },
  29986. },
  29987. [
  29988. {
  29989. name: "Normal",
  29990. height: math.unit(7, "feet")
  29991. },
  29992. {
  29993. name: "Mini-macro",
  29994. height: math.unit(11, "feet")
  29995. },
  29996. {
  29997. name: "Macro",
  29998. height: math.unit(15, "meters"),
  29999. default: true
  30000. },
  30001. {
  30002. name: "Macro+",
  30003. height: math.unit(40, "meters")
  30004. },
  30005. ]
  30006. ))
  30007. characterMakers.push(() => makeCharacter(
  30008. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30009. {
  30010. front: {
  30011. height: math.unit(4 + 2 / 12, "feet"),
  30012. weight: math.unit(95, "lb"),
  30013. name: "Front",
  30014. image: {
  30015. source: "./media/characters/vaelophis-nyx/front.svg",
  30016. extra: 2532/2330,
  30017. bottom: 0/2532
  30018. }
  30019. },
  30020. back: {
  30021. height: math.unit(4 + 2 / 12, "feet"),
  30022. weight: math.unit(95, "lb"),
  30023. name: "Back",
  30024. image: {
  30025. source: "./media/characters/vaelophis-nyx/back.svg",
  30026. extra: 2484/2361,
  30027. bottom: 0/2484
  30028. }
  30029. },
  30030. feralSide: {
  30031. height: math.unit(2 + 1/12, "feet"),
  30032. weight: math.unit(20, "lb"),
  30033. name: "Feral (Side)",
  30034. image: {
  30035. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30036. extra: 1721/1581,
  30037. bottom: 70/1791
  30038. }
  30039. },
  30040. feralLazing: {
  30041. height: math.unit(1.08, "feet"),
  30042. weight: math.unit(20, "lb"),
  30043. name: "Feral (Lazing)",
  30044. image: {
  30045. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30046. extra: 822/822,
  30047. bottom: 248/1070
  30048. }
  30049. },
  30050. ear: {
  30051. height: math.unit(0.416, "feet"),
  30052. name: "Ear",
  30053. image: {
  30054. source: "./media/characters/vaelophis-nyx/ear.svg"
  30055. }
  30056. },
  30057. eye: {
  30058. height: math.unit(0.0748, "feet"),
  30059. name: "Eye",
  30060. image: {
  30061. source: "./media/characters/vaelophis-nyx/eye.svg"
  30062. }
  30063. },
  30064. mouth: {
  30065. height: math.unit(0.378, "feet"),
  30066. name: "Mouth",
  30067. image: {
  30068. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30069. }
  30070. },
  30071. spade: {
  30072. height: math.unit(0.55, "feet"),
  30073. name: "Spade",
  30074. image: {
  30075. source: "./media/characters/vaelophis-nyx/spade.svg"
  30076. }
  30077. },
  30078. },
  30079. [
  30080. {
  30081. name: "Normal",
  30082. height: math.unit(4 + 2/12, "feet"),
  30083. default: true
  30084. },
  30085. ]
  30086. ))
  30087. characterMakers.push(() => makeCharacter(
  30088. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30089. {
  30090. front: {
  30091. height: math.unit(7, "feet"),
  30092. weight: math.unit(231, "lb"),
  30093. name: "Front",
  30094. image: {
  30095. source: "./media/characters/flux/front.svg",
  30096. extra: 919/871,
  30097. bottom: 0/919
  30098. }
  30099. },
  30100. back: {
  30101. height: math.unit(7, "feet"),
  30102. weight: math.unit(231, "lb"),
  30103. name: "Back",
  30104. image: {
  30105. source: "./media/characters/flux/back.svg",
  30106. extra: 1040/992,
  30107. bottom: 0/1040
  30108. }
  30109. },
  30110. frontDressed: {
  30111. height: math.unit(7, "feet"),
  30112. weight: math.unit(231, "lb"),
  30113. name: "Front (Dressed)",
  30114. image: {
  30115. source: "./media/characters/flux/front-dressed.svg",
  30116. extra: 919/871,
  30117. bottom: 0/919
  30118. }
  30119. },
  30120. feralSide: {
  30121. height: math.unit(5, "feet"),
  30122. weight: math.unit(150, "lb"),
  30123. name: "Feral (Side)",
  30124. image: {
  30125. source: "./media/characters/flux/feral-side.svg",
  30126. extra: 598/528,
  30127. bottom: 28/626
  30128. }
  30129. },
  30130. head: {
  30131. height: math.unit(1.585, "feet"),
  30132. name: "Head",
  30133. image: {
  30134. source: "./media/characters/flux/head.svg"
  30135. }
  30136. },
  30137. headSide: {
  30138. height: math.unit(1.74, "feet"),
  30139. name: "Head (Side)",
  30140. image: {
  30141. source: "./media/characters/flux/head-side.svg"
  30142. }
  30143. },
  30144. headSideFire: {
  30145. height: math.unit(1.76, "feet"),
  30146. name: "Head (Side, Fire)",
  30147. image: {
  30148. source: "./media/characters/flux/head-side-fire.svg"
  30149. }
  30150. },
  30151. },
  30152. [
  30153. {
  30154. name: "Normal",
  30155. height: math.unit(7, "feet"),
  30156. default: true
  30157. },
  30158. ]
  30159. ))
  30160. characterMakers.push(() => makeCharacter(
  30161. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30162. {
  30163. front: {
  30164. height: math.unit(9, "feet"),
  30165. weight: math.unit(1012, "lb"),
  30166. name: "Front",
  30167. image: {
  30168. source: "./media/characters/ulfra-lupae/front.svg",
  30169. extra: 1083/1011,
  30170. bottom: 67/1150
  30171. }
  30172. },
  30173. },
  30174. [
  30175. {
  30176. name: "Micro",
  30177. height: math.unit(6, "inches")
  30178. },
  30179. {
  30180. name: "Socializing",
  30181. height: math.unit(6 + 5/12, "feet")
  30182. },
  30183. {
  30184. name: "Normal",
  30185. height: math.unit(9, "feet"),
  30186. default: true
  30187. },
  30188. {
  30189. name: "Macro",
  30190. height: math.unit(150, "feet")
  30191. },
  30192. ]
  30193. ))
  30194. characterMakers.push(() => makeCharacter(
  30195. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30196. {
  30197. front: {
  30198. height: math.unit(5 + 2/12, "feet"),
  30199. weight: math.unit(120, "lb"),
  30200. name: "Front",
  30201. image: {
  30202. source: "./media/characters/timber/front.svg",
  30203. extra: 2814/2705,
  30204. bottom: 181/2995
  30205. }
  30206. },
  30207. },
  30208. [
  30209. {
  30210. name: "Normal",
  30211. height: math.unit(5 + 2/12, "feet"),
  30212. default: true
  30213. },
  30214. ]
  30215. ))
  30216. characterMakers.push(() => makeCharacter(
  30217. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30218. {
  30219. front: {
  30220. height: math.unit(5 + 7/12, "feet"),
  30221. weight: math.unit(220, "lb"),
  30222. name: "Front",
  30223. image: {
  30224. source: "./media/characters/nicki/front.svg",
  30225. extra: 453/419,
  30226. bottom: 7/460
  30227. }
  30228. },
  30229. frontAlt: {
  30230. height: math.unit(5 + 7/12, "feet"),
  30231. weight: math.unit(220, "lb"),
  30232. name: "Front-alt",
  30233. image: {
  30234. source: "./media/characters/nicki/front-alt.svg",
  30235. extra: 435/411,
  30236. bottom: 12/447
  30237. }
  30238. },
  30239. back: {
  30240. height: math.unit(5 + 7/12, "feet"),
  30241. weight: math.unit(220, "lb"),
  30242. name: "Back",
  30243. image: {
  30244. source: "./media/characters/nicki/back.svg",
  30245. extra: 440/413,
  30246. bottom: 19/459
  30247. }
  30248. },
  30249. taur: {
  30250. height: math.unit(7 + 6/12, "feet"),
  30251. weight: math.unit(700, "lb"),
  30252. name: "Taur",
  30253. image: {
  30254. source: "./media/characters/nicki/taur.svg",
  30255. extra: 975/773,
  30256. bottom: 0/975
  30257. }
  30258. },
  30259. frontNsfw: {
  30260. height: math.unit(5 + 7/12, "feet"),
  30261. weight: math.unit(220, "lb"),
  30262. name: "Front (NSFW)",
  30263. image: {
  30264. source: "./media/characters/nicki/front-nsfw.svg",
  30265. extra: 453/419,
  30266. bottom: 7/460
  30267. }
  30268. },
  30269. frontNsfwAlt: {
  30270. height: math.unit(5 + 7/12, "feet"),
  30271. weight: math.unit(220, "lb"),
  30272. name: "Front (Alt, NSFW)",
  30273. image: {
  30274. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30275. extra: 435/411,
  30276. bottom: 12/447
  30277. }
  30278. },
  30279. backNsfw: {
  30280. height: math.unit(5 + 7/12, "feet"),
  30281. weight: math.unit(220, "lb"),
  30282. name: "Back (NSFW)",
  30283. image: {
  30284. source: "./media/characters/nicki/back-nsfw.svg",
  30285. extra: 440/413,
  30286. bottom: 19/459
  30287. }
  30288. },
  30289. head: {
  30290. height: math.unit(2.1, "feet"),
  30291. name: "Head",
  30292. image: {
  30293. source: "./media/characters/nicki/head.svg"
  30294. }
  30295. },
  30296. paw: {
  30297. height: math.unit(1.88, "feet"),
  30298. name: "Paw",
  30299. image: {
  30300. source: "./media/characters/nicki/paw.svg"
  30301. }
  30302. },
  30303. },
  30304. [
  30305. {
  30306. name: "Normal",
  30307. height: math.unit(5 + 7/12, "feet"),
  30308. default: true
  30309. },
  30310. ]
  30311. ))
  30312. characterMakers.push(() => makeCharacter(
  30313. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30314. {
  30315. front: {
  30316. height: math.unit(7 + 10/12, "feet"),
  30317. weight: math.unit(3.5, "tons"),
  30318. name: "Front",
  30319. image: {
  30320. source: "./media/characters/lee/front.svg",
  30321. extra: 1773/1615,
  30322. bottom: 86/1859
  30323. }
  30324. },
  30325. hand: {
  30326. height: math.unit(1.78, "feet"),
  30327. name: "Hand",
  30328. image: {
  30329. source: "./media/characters/lee/hand.svg"
  30330. }
  30331. },
  30332. maw: {
  30333. height: math.unit(1.18, "feet"),
  30334. name: "Maw",
  30335. image: {
  30336. source: "./media/characters/lee/maw.svg"
  30337. }
  30338. },
  30339. },
  30340. [
  30341. {
  30342. name: "Normal",
  30343. height: math.unit(7 + 10/12, "feet"),
  30344. default: true
  30345. },
  30346. ]
  30347. ))
  30348. characterMakers.push(() => makeCharacter(
  30349. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30350. {
  30351. front: {
  30352. height: math.unit(9, "feet"),
  30353. name: "Front",
  30354. image: {
  30355. source: "./media/characters/guti/front.svg",
  30356. extra: 4551/4355,
  30357. bottom: 123/4674
  30358. }
  30359. },
  30360. tongue: {
  30361. height: math.unit(1, "feet"),
  30362. name: "Tongue",
  30363. image: {
  30364. source: "./media/characters/guti/tongue.svg"
  30365. }
  30366. },
  30367. paw: {
  30368. height: math.unit(1.18, "feet"),
  30369. name: "Paw",
  30370. image: {
  30371. source: "./media/characters/guti/paw.svg"
  30372. }
  30373. },
  30374. },
  30375. [
  30376. {
  30377. name: "Normal",
  30378. height: math.unit(9, "feet"),
  30379. default: true
  30380. },
  30381. ]
  30382. ))
  30383. characterMakers.push(() => makeCharacter(
  30384. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30385. {
  30386. side: {
  30387. height: math.unit(5, "meters"),
  30388. name: "Side",
  30389. image: {
  30390. source: "./media/characters/vesper/side.svg",
  30391. extra: 1605/1518,
  30392. bottom: 0/1605
  30393. }
  30394. },
  30395. },
  30396. [
  30397. {
  30398. name: "Small",
  30399. height: math.unit(5, "meters")
  30400. },
  30401. {
  30402. name: "Sage",
  30403. height: math.unit(100, "meters"),
  30404. default: true
  30405. },
  30406. {
  30407. name: "Fun Size",
  30408. height: math.unit(600, "meters")
  30409. },
  30410. {
  30411. name: "Goddess",
  30412. height: math.unit(20000, "km")
  30413. },
  30414. {
  30415. name: "Maximum",
  30416. height: math.unit(5, "galaxies")
  30417. },
  30418. ]
  30419. ))
  30420. characterMakers.push(() => makeCharacter(
  30421. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30422. {
  30423. front: {
  30424. height: math.unit(6 + 3/12, "feet"),
  30425. weight: math.unit(190, "lb"),
  30426. name: "Front",
  30427. image: {
  30428. source: "./media/characters/gawain/front.svg",
  30429. extra: 2222/2139,
  30430. bottom: 90/2312
  30431. }
  30432. },
  30433. back: {
  30434. height: math.unit(6 + 3/12, "feet"),
  30435. weight: math.unit(190, "lb"),
  30436. name: "Back",
  30437. image: {
  30438. source: "./media/characters/gawain/back.svg",
  30439. extra: 2199/2111,
  30440. bottom: 73/2272
  30441. }
  30442. },
  30443. },
  30444. [
  30445. {
  30446. name: "Normal",
  30447. height: math.unit(6 + 3/12, "feet"),
  30448. default: true
  30449. },
  30450. ]
  30451. ))
  30452. characterMakers.push(() => makeCharacter(
  30453. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30454. {
  30455. side: {
  30456. height: math.unit(3.5, "meters"),
  30457. weight: math.unit(16000, "lb"),
  30458. name: "Side",
  30459. image: {
  30460. source: "./media/characters/dascalti/side.svg",
  30461. extra: 392/273,
  30462. bottom: 47/439
  30463. }
  30464. },
  30465. breath: {
  30466. height: math.unit(7.4, "feet"),
  30467. name: "Breath",
  30468. image: {
  30469. source: "./media/characters/dascalti/breath.svg"
  30470. }
  30471. },
  30472. fed: {
  30473. height: math.unit(3.6, "meters"),
  30474. weight: math.unit(16000, "lb"),
  30475. name: "Fed",
  30476. image: {
  30477. source: "./media/characters/dascalti/fed.svg",
  30478. extra: 1419/820,
  30479. bottom: 95/1514
  30480. }
  30481. },
  30482. },
  30483. [
  30484. {
  30485. name: "Normal",
  30486. height: math.unit(3.5, "meters"),
  30487. default: true
  30488. },
  30489. ]
  30490. ))
  30491. characterMakers.push(() => makeCharacter(
  30492. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30493. {
  30494. front: {
  30495. height: math.unit(3 + 5/12, "feet"),
  30496. name: "Front",
  30497. image: {
  30498. source: "./media/characters/mauve/front.svg",
  30499. extra: 1126/1033,
  30500. bottom: 65/1191
  30501. }
  30502. },
  30503. side: {
  30504. height: math.unit(3 + 5/12, "feet"),
  30505. name: "Side",
  30506. image: {
  30507. source: "./media/characters/mauve/side.svg",
  30508. extra: 1089/1001,
  30509. bottom: 29/1118
  30510. }
  30511. },
  30512. back: {
  30513. height: math.unit(3 + 5/12, "feet"),
  30514. name: "Back",
  30515. image: {
  30516. source: "./media/characters/mauve/back.svg",
  30517. extra: 1173/1053,
  30518. bottom: 109/1282
  30519. }
  30520. },
  30521. },
  30522. [
  30523. {
  30524. name: "Normal",
  30525. height: math.unit(3 + 5/12, "feet"),
  30526. default: true
  30527. },
  30528. ]
  30529. ))
  30530. characterMakers.push(() => makeCharacter(
  30531. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30532. {
  30533. front: {
  30534. height: math.unit(6 + 3/12, "feet"),
  30535. weight: math.unit(430, "lb"),
  30536. name: "Front",
  30537. image: {
  30538. source: "./media/characters/carlos/front.svg",
  30539. extra: 1964/1913,
  30540. bottom: 70/2034
  30541. }
  30542. },
  30543. },
  30544. [
  30545. {
  30546. name: "Normal",
  30547. height: math.unit(6 + 3/12, "feet"),
  30548. default: true
  30549. },
  30550. ]
  30551. ))
  30552. characterMakers.push(() => makeCharacter(
  30553. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30554. {
  30555. back: {
  30556. height: math.unit(5 + 10/12, "feet"),
  30557. weight: math.unit(200, "lb"),
  30558. name: "Back",
  30559. image: {
  30560. source: "./media/characters/jax/back.svg",
  30561. extra: 764/739,
  30562. bottom: 25/789
  30563. }
  30564. },
  30565. },
  30566. [
  30567. {
  30568. name: "Normal",
  30569. height: math.unit(5 + 10/12, "feet"),
  30570. default: true
  30571. },
  30572. ]
  30573. ))
  30574. characterMakers.push(() => makeCharacter(
  30575. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30576. {
  30577. front: {
  30578. height: math.unit(8, "feet"),
  30579. weight: math.unit(250, "lb"),
  30580. name: "Front",
  30581. image: {
  30582. source: "./media/characters/eikthynir/front.svg",
  30583. extra: 1332/1166,
  30584. bottom: 82/1414
  30585. }
  30586. },
  30587. back: {
  30588. height: math.unit(8, "feet"),
  30589. weight: math.unit(250, "lb"),
  30590. name: "Back",
  30591. image: {
  30592. source: "./media/characters/eikthynir/back.svg",
  30593. extra: 1342/1190,
  30594. bottom: 19/1361
  30595. }
  30596. },
  30597. dick: {
  30598. height: math.unit(2.35, "feet"),
  30599. name: "Dick",
  30600. image: {
  30601. source: "./media/characters/eikthynir/dick.svg"
  30602. }
  30603. },
  30604. },
  30605. [
  30606. {
  30607. name: "Normal",
  30608. height: math.unit(8, "feet"),
  30609. default: true
  30610. },
  30611. ]
  30612. ))
  30613. characterMakers.push(() => makeCharacter(
  30614. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30615. {
  30616. front: {
  30617. height: math.unit(99, "meters"),
  30618. weight: math.unit(13000, "tons"),
  30619. name: "Front",
  30620. image: {
  30621. source: "./media/characters/zlmos/front.svg",
  30622. extra: 2202/1992,
  30623. bottom: 315/2517
  30624. }
  30625. },
  30626. },
  30627. [
  30628. {
  30629. name: "Macro",
  30630. height: math.unit(99, "meters"),
  30631. default: true
  30632. },
  30633. ]
  30634. ))
  30635. characterMakers.push(() => makeCharacter(
  30636. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30637. {
  30638. front: {
  30639. height: math.unit(6 + 5/12, "feet"),
  30640. name: "Front",
  30641. image: {
  30642. source: "./media/characters/purri/front.svg",
  30643. extra: 1698/1610,
  30644. bottom: 32/1730
  30645. }
  30646. },
  30647. frontAlt: {
  30648. height: math.unit(6 + 5/12, "feet"),
  30649. name: "Front (Alt)",
  30650. image: {
  30651. source: "./media/characters/purri/front-alt.svg",
  30652. extra: 450/420,
  30653. bottom: 26/476
  30654. }
  30655. },
  30656. boots: {
  30657. height: math.unit(5.5, "feet"),
  30658. name: "Boots",
  30659. image: {
  30660. source: "./media/characters/purri/boots.svg",
  30661. extra: 905/853,
  30662. bottom: 18/923
  30663. }
  30664. },
  30665. lying: {
  30666. height: math.unit(2, "feet"),
  30667. name: "Lying",
  30668. image: {
  30669. source: "./media/characters/purri/lying.svg",
  30670. extra: 940/843,
  30671. bottom: 146/1086
  30672. }
  30673. },
  30674. devious: {
  30675. height: math.unit(1.77, "feet"),
  30676. name: "Devious",
  30677. image: {
  30678. source: "./media/characters/purri/devious.svg",
  30679. extra: 1440/1155,
  30680. bottom: 147/1587
  30681. }
  30682. },
  30683. bean: {
  30684. height: math.unit(1.94, "feet"),
  30685. name: "Bean",
  30686. image: {
  30687. source: "./media/characters/purri/bean.svg"
  30688. }
  30689. },
  30690. },
  30691. [
  30692. {
  30693. name: "Micro",
  30694. height: math.unit(1, "mm")
  30695. },
  30696. {
  30697. name: "Normal",
  30698. height: math.unit(6 + 5/12, "feet"),
  30699. default: true
  30700. },
  30701. {
  30702. name: "Macro :3c",
  30703. height: math.unit(2, "miles")
  30704. },
  30705. ]
  30706. ))
  30707. characterMakers.push(() => makeCharacter(
  30708. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30709. {
  30710. front: {
  30711. height: math.unit(6 + 2/12, "feet"),
  30712. weight: math.unit(250, "lb"),
  30713. name: "Front",
  30714. image: {
  30715. source: "./media/characters/moonlight/front.svg",
  30716. extra: 1044/908,
  30717. bottom: 56/1100
  30718. }
  30719. },
  30720. paw: {
  30721. height: math.unit(1, "feet"),
  30722. name: "Paw",
  30723. image: {
  30724. source: "./media/characters/moonlight/paw.svg"
  30725. }
  30726. },
  30727. paws: {
  30728. height: math.unit(0.98, "feet"),
  30729. name: "Paws",
  30730. image: {
  30731. source: "./media/characters/moonlight/paws.svg",
  30732. extra: 939/939,
  30733. bottom: 50/989
  30734. }
  30735. },
  30736. mouth: {
  30737. height: math.unit(0.48, "feet"),
  30738. name: "Mouth",
  30739. image: {
  30740. source: "./media/characters/moonlight/mouth.svg"
  30741. }
  30742. },
  30743. dick: {
  30744. height: math.unit(1.46, "feet"),
  30745. name: "Dick",
  30746. image: {
  30747. source: "./media/characters/moonlight/dick.svg"
  30748. }
  30749. },
  30750. },
  30751. [
  30752. {
  30753. name: "Normal",
  30754. height: math.unit(6 + 2/12, "feet"),
  30755. default: true
  30756. },
  30757. {
  30758. name: "Macro",
  30759. height: math.unit(300, "feet")
  30760. },
  30761. {
  30762. name: "Macro+",
  30763. height: math.unit(1, "mile")
  30764. },
  30765. {
  30766. name: "Mt. Moon",
  30767. height: math.unit(5, "miles")
  30768. },
  30769. {
  30770. name: "Megamacro",
  30771. height: math.unit(15, "miles")
  30772. },
  30773. ]
  30774. ))
  30775. characterMakers.push(() => makeCharacter(
  30776. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30777. {
  30778. back: {
  30779. height: math.unit(6, "feet"),
  30780. weight: math.unit(150, "lb"),
  30781. name: "Back",
  30782. image: {
  30783. source: "./media/characters/sylen/back.svg",
  30784. extra: 1335/1273,
  30785. bottom: 107/1442
  30786. }
  30787. },
  30788. },
  30789. [
  30790. {
  30791. name: "Normal",
  30792. height: math.unit(5 + 5/12, "feet")
  30793. },
  30794. {
  30795. name: "Megamacro",
  30796. height: math.unit(3, "miles"),
  30797. default: true
  30798. },
  30799. ]
  30800. ))
  30801. characterMakers.push(() => makeCharacter(
  30802. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30803. {
  30804. front: {
  30805. height: math.unit(6, "feet"),
  30806. weight: math.unit(190, "lb"),
  30807. name: "Front",
  30808. image: {
  30809. source: "./media/characters/huttser/front.svg",
  30810. extra: 1152/1058,
  30811. bottom: 23/1175
  30812. }
  30813. },
  30814. side: {
  30815. height: math.unit(6, "feet"),
  30816. weight: math.unit(190, "lb"),
  30817. name: "Side",
  30818. image: {
  30819. source: "./media/characters/huttser/side.svg",
  30820. extra: 1174/1065,
  30821. bottom: 18/1192
  30822. }
  30823. },
  30824. back: {
  30825. height: math.unit(6, "feet"),
  30826. weight: math.unit(190, "lb"),
  30827. name: "Back",
  30828. image: {
  30829. source: "./media/characters/huttser/back.svg",
  30830. extra: 1158/1056,
  30831. bottom: 12/1170
  30832. }
  30833. },
  30834. },
  30835. [
  30836. ]
  30837. ))
  30838. characterMakers.push(() => makeCharacter(
  30839. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30840. {
  30841. side: {
  30842. height: math.unit(12 + 9/12, "feet"),
  30843. weight: math.unit(15000, "lb"),
  30844. name: "Side",
  30845. image: {
  30846. source: "./media/characters/faan/side.svg",
  30847. extra: 2747/2697,
  30848. bottom: 0/2747
  30849. }
  30850. },
  30851. front: {
  30852. height: math.unit(12 + 9/12, "feet"),
  30853. weight: math.unit(15000, "lb"),
  30854. name: "Front",
  30855. image: {
  30856. source: "./media/characters/faan/front.svg",
  30857. extra: 607/571,
  30858. bottom: 24/631
  30859. }
  30860. },
  30861. head: {
  30862. height: math.unit(2.85, "feet"),
  30863. name: "Head",
  30864. image: {
  30865. source: "./media/characters/faan/head.svg"
  30866. }
  30867. },
  30868. headAlt: {
  30869. height: math.unit(3.13, "feet"),
  30870. name: "Head-alt",
  30871. image: {
  30872. source: "./media/characters/faan/head-alt.svg"
  30873. }
  30874. },
  30875. },
  30876. [
  30877. {
  30878. name: "Normal",
  30879. height: math.unit(12 + 9/12, "feet"),
  30880. default: true
  30881. },
  30882. ]
  30883. ))
  30884. characterMakers.push(() => makeCharacter(
  30885. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30886. {
  30887. front: {
  30888. height: math.unit(6, "feet"),
  30889. weight: math.unit(300, "lb"),
  30890. name: "Front",
  30891. image: {
  30892. source: "./media/characters/tanio/front.svg",
  30893. extra: 711/673,
  30894. bottom: 25/736
  30895. }
  30896. },
  30897. },
  30898. [
  30899. {
  30900. name: "Normal",
  30901. height: math.unit(6, "feet"),
  30902. default: true
  30903. },
  30904. ]
  30905. ))
  30906. characterMakers.push(() => makeCharacter(
  30907. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  30908. {
  30909. front: {
  30910. height: math.unit(3, "inches"),
  30911. name: "Front",
  30912. image: {
  30913. source: "./media/characters/noboru/front.svg",
  30914. extra: 1039/932,
  30915. bottom: 18/1057
  30916. }
  30917. },
  30918. },
  30919. [
  30920. {
  30921. name: "Micro",
  30922. height: math.unit(3, "inches"),
  30923. default: true
  30924. },
  30925. ]
  30926. ))
  30927. characterMakers.push(() => makeCharacter(
  30928. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  30929. {
  30930. front: {
  30931. height: math.unit(1.85, "meters"),
  30932. weight: math.unit(80, "kg"),
  30933. name: "Front",
  30934. image: {
  30935. source: "./media/characters/daniel-barrett/front.svg",
  30936. extra: 355/337,
  30937. bottom: 9/364
  30938. }
  30939. },
  30940. },
  30941. [
  30942. {
  30943. name: "Pico",
  30944. height: math.unit(0.0433, "mm")
  30945. },
  30946. {
  30947. name: "Nano",
  30948. height: math.unit(1.5, "mm")
  30949. },
  30950. {
  30951. name: "Micro",
  30952. height: math.unit(5.3, "cm"),
  30953. default: true
  30954. },
  30955. {
  30956. name: "Normal",
  30957. height: math.unit(1.85, "meters")
  30958. },
  30959. {
  30960. name: "Macro",
  30961. height: math.unit(64.7, "meters")
  30962. },
  30963. {
  30964. name: "Megamacro",
  30965. height: math.unit(2.26, "km")
  30966. },
  30967. {
  30968. name: "Gigamacro",
  30969. height: math.unit(79, "km")
  30970. },
  30971. {
  30972. name: "Teramacro",
  30973. height: math.unit(2765, "km")
  30974. },
  30975. {
  30976. name: "Petamacro",
  30977. height: math.unit(96678, "km")
  30978. },
  30979. ]
  30980. ))
  30981. characterMakers.push(() => makeCharacter(
  30982. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  30983. {
  30984. front: {
  30985. height: math.unit(30, "meters"),
  30986. weight: math.unit(400, "tons"),
  30987. name: "Front",
  30988. image: {
  30989. source: "./media/characters/zeel/front.svg",
  30990. extra: 2599/2599,
  30991. bottom: 226/2825
  30992. }
  30993. },
  30994. },
  30995. [
  30996. {
  30997. name: "Macro",
  30998. height: math.unit(30, "meters"),
  30999. default: true
  31000. },
  31001. ]
  31002. ))
  31003. characterMakers.push(() => makeCharacter(
  31004. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31005. {
  31006. front: {
  31007. height: math.unit(6 + 7/12, "feet"),
  31008. weight: math.unit(210, "lb"),
  31009. name: "Front",
  31010. image: {
  31011. source: "./media/characters/tarn/front.svg",
  31012. extra: 3517/3220,
  31013. bottom: 91/3608
  31014. }
  31015. },
  31016. back: {
  31017. height: math.unit(6 + 7/12, "feet"),
  31018. weight: math.unit(210, "lb"),
  31019. name: "Back",
  31020. image: {
  31021. source: "./media/characters/tarn/back.svg",
  31022. extra: 3566/3241,
  31023. bottom: 34/3600
  31024. }
  31025. },
  31026. dick: {
  31027. height: math.unit(1.65, "feet"),
  31028. name: "Dick",
  31029. image: {
  31030. source: "./media/characters/tarn/dick.svg"
  31031. }
  31032. },
  31033. paw: {
  31034. height: math.unit(1.80, "feet"),
  31035. name: "Paw",
  31036. image: {
  31037. source: "./media/characters/tarn/paw.svg"
  31038. }
  31039. },
  31040. tongue: {
  31041. height: math.unit(0.97, "feet"),
  31042. name: "Tongue",
  31043. image: {
  31044. source: "./media/characters/tarn/tongue.svg"
  31045. }
  31046. },
  31047. },
  31048. [
  31049. {
  31050. name: "Micro",
  31051. height: math.unit(4, "inches")
  31052. },
  31053. {
  31054. name: "Normal",
  31055. height: math.unit(6 + 7/12, "feet"),
  31056. default: true
  31057. },
  31058. {
  31059. name: "Macro",
  31060. height: math.unit(300, "feet")
  31061. },
  31062. ]
  31063. ))
  31064. characterMakers.push(() => makeCharacter(
  31065. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31066. {
  31067. front: {
  31068. height: math.unit(5 + 7/12, "feet"),
  31069. weight: math.unit(80, "kg"),
  31070. name: "Front",
  31071. image: {
  31072. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31073. extra: 3023/2865,
  31074. bottom: 33/3056
  31075. }
  31076. },
  31077. back: {
  31078. height: math.unit(5 + 7/12, "feet"),
  31079. weight: math.unit(80, "kg"),
  31080. name: "Back",
  31081. image: {
  31082. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31083. extra: 3020/2886,
  31084. bottom: 30/3050
  31085. }
  31086. },
  31087. dick: {
  31088. height: math.unit(0.98, "feet"),
  31089. name: "Dick",
  31090. image: {
  31091. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31092. }
  31093. },
  31094. anatomy: {
  31095. height: math.unit(2.86, "feet"),
  31096. name: "Anatomy",
  31097. image: {
  31098. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31099. }
  31100. },
  31101. },
  31102. [
  31103. {
  31104. name: "Really Small",
  31105. height: math.unit(2, "inches")
  31106. },
  31107. {
  31108. name: "Micro",
  31109. height: math.unit(5.583, "inches")
  31110. },
  31111. {
  31112. name: "Normal",
  31113. height: math.unit(5 + 7/12, "feet"),
  31114. default: true
  31115. },
  31116. {
  31117. name: "Macro",
  31118. height: math.unit(67, "feet")
  31119. },
  31120. {
  31121. name: "Megamacro",
  31122. height: math.unit(134, "feet")
  31123. },
  31124. ]
  31125. ))
  31126. characterMakers.push(() => makeCharacter(
  31127. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31128. {
  31129. front: {
  31130. height: math.unit(9, "feet"),
  31131. weight: math.unit(120, "lb"),
  31132. name: "Front",
  31133. image: {
  31134. source: "./media/characters/sally/front.svg",
  31135. extra: 1506/1349,
  31136. bottom: 66/1572
  31137. }
  31138. },
  31139. },
  31140. [
  31141. {
  31142. name: "Normal",
  31143. height: math.unit(9, "feet"),
  31144. default: true
  31145. },
  31146. ]
  31147. ))
  31148. characterMakers.push(() => makeCharacter(
  31149. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31150. {
  31151. front: {
  31152. height: math.unit(8, "feet"),
  31153. weight: math.unit(900, "lb"),
  31154. name: "Front",
  31155. image: {
  31156. source: "./media/characters/owen/front.svg",
  31157. extra: 1761/1657,
  31158. bottom: 74/1835
  31159. }
  31160. },
  31161. side: {
  31162. height: math.unit(8, "feet"),
  31163. weight: math.unit(900, "lb"),
  31164. name: "Side",
  31165. image: {
  31166. source: "./media/characters/owen/side.svg",
  31167. extra: 1797/1734,
  31168. bottom: 30/1827
  31169. }
  31170. },
  31171. back: {
  31172. height: math.unit(8, "feet"),
  31173. weight: math.unit(900, "lb"),
  31174. name: "Back",
  31175. image: {
  31176. source: "./media/characters/owen/back.svg",
  31177. extra: 1796/1706,
  31178. bottom: 59/1855
  31179. }
  31180. },
  31181. maw: {
  31182. height: math.unit(1.76, "feet"),
  31183. name: "Maw",
  31184. image: {
  31185. source: "./media/characters/owen/maw.svg"
  31186. }
  31187. },
  31188. },
  31189. [
  31190. {
  31191. name: "Normal",
  31192. height: math.unit(8, "feet"),
  31193. default: true
  31194. },
  31195. ]
  31196. ))
  31197. characterMakers.push(() => makeCharacter(
  31198. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31199. {
  31200. front: {
  31201. height: math.unit(4, "feet"),
  31202. weight: math.unit(400, "lb"),
  31203. name: "Front",
  31204. image: {
  31205. source: "./media/characters/ryth/front.svg",
  31206. extra: 876/691,
  31207. bottom: 25/901
  31208. }
  31209. },
  31210. },
  31211. [
  31212. {
  31213. name: "Normal",
  31214. height: math.unit(4, "feet"),
  31215. default: true
  31216. },
  31217. ]
  31218. ))
  31219. characterMakers.push(() => makeCharacter(
  31220. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31221. {
  31222. front: {
  31223. height: math.unit(7, "feet"),
  31224. weight: math.unit(180, "lb"),
  31225. name: "Front",
  31226. image: {
  31227. source: "./media/characters/necrolance/front.svg",
  31228. extra: 1062/947,
  31229. bottom: 41/1103
  31230. }
  31231. },
  31232. back: {
  31233. height: math.unit(7, "feet"),
  31234. weight: math.unit(180, "lb"),
  31235. name: "Back",
  31236. image: {
  31237. source: "./media/characters/necrolance/back.svg",
  31238. extra: 1045/984,
  31239. bottom: 14/1059
  31240. }
  31241. },
  31242. wing: {
  31243. height: math.unit(2.67, "feet"),
  31244. name: "Wing",
  31245. image: {
  31246. source: "./media/characters/necrolance/wing.svg"
  31247. }
  31248. },
  31249. },
  31250. [
  31251. {
  31252. name: "Normal",
  31253. height: math.unit(7, "feet"),
  31254. default: true
  31255. },
  31256. ]
  31257. ))
  31258. characterMakers.push(() => makeCharacter(
  31259. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31260. {
  31261. front: {
  31262. height: math.unit(76, "meters"),
  31263. weight: math.unit(30000, "tons"),
  31264. name: "Front",
  31265. image: {
  31266. source: "./media/characters/tyler/front.svg",
  31267. extra: 1640/1640,
  31268. bottom: 114/1754
  31269. }
  31270. },
  31271. },
  31272. [
  31273. {
  31274. name: "Macro",
  31275. height: math.unit(76, "meters"),
  31276. default: true
  31277. },
  31278. ]
  31279. ))
  31280. characterMakers.push(() => makeCharacter(
  31281. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31282. {
  31283. front: {
  31284. height: math.unit(4 + 11/12, "feet"),
  31285. weight: math.unit(132, "lb"),
  31286. name: "Front",
  31287. image: {
  31288. source: "./media/characters/icey/front.svg",
  31289. extra: 2750/2550,
  31290. bottom: 33/2783
  31291. }
  31292. },
  31293. back: {
  31294. height: math.unit(4 + 11/12, "feet"),
  31295. weight: math.unit(132, "lb"),
  31296. name: "Back",
  31297. image: {
  31298. source: "./media/characters/icey/back.svg",
  31299. extra: 2624/2481,
  31300. bottom: 35/2659
  31301. }
  31302. },
  31303. },
  31304. [
  31305. {
  31306. name: "Normal",
  31307. height: math.unit(4 + 11/12, "feet"),
  31308. default: true
  31309. },
  31310. ]
  31311. ))
  31312. characterMakers.push(() => makeCharacter(
  31313. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31314. {
  31315. front: {
  31316. height: math.unit(100, "feet"),
  31317. weight: math.unit(0, "lb"),
  31318. name: "Front",
  31319. image: {
  31320. source: "./media/characters/smile/front.svg",
  31321. extra: 2983/2912,
  31322. bottom: 162/3145
  31323. }
  31324. },
  31325. back: {
  31326. height: math.unit(100, "feet"),
  31327. weight: math.unit(0, "lb"),
  31328. name: "Back",
  31329. image: {
  31330. source: "./media/characters/smile/back.svg",
  31331. extra: 3143/3031,
  31332. bottom: 91/3234
  31333. }
  31334. },
  31335. head: {
  31336. height: math.unit(26.3, "feet"),
  31337. weight: math.unit(0, "lb"),
  31338. name: "Head",
  31339. image: {
  31340. source: "./media/characters/smile/head.svg"
  31341. }
  31342. },
  31343. collar: {
  31344. height: math.unit(5.3, "feet"),
  31345. weight: math.unit(0, "lb"),
  31346. name: "Collar",
  31347. image: {
  31348. source: "./media/characters/smile/collar.svg"
  31349. }
  31350. },
  31351. },
  31352. [
  31353. {
  31354. name: "Macro",
  31355. height: math.unit(100, "feet"),
  31356. default: true
  31357. },
  31358. ]
  31359. ))
  31360. characterMakers.push(() => makeCharacter(
  31361. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31362. {
  31363. dragon: {
  31364. height: math.unit(26, "feet"),
  31365. weight: math.unit(36, "tons"),
  31366. name: "Dragon",
  31367. image: {
  31368. source: "./media/characters/arimphae/dragon.svg",
  31369. extra: 1574/983,
  31370. bottom: 357/1931
  31371. }
  31372. },
  31373. drake: {
  31374. height: math.unit(9, "feet"),
  31375. weight: math.unit(1.5, "tons"),
  31376. name: "Drake",
  31377. image: {
  31378. source: "./media/characters/arimphae/drake.svg",
  31379. extra: 1120/925,
  31380. bottom: 435/1555
  31381. }
  31382. },
  31383. },
  31384. [
  31385. {
  31386. name: "Small",
  31387. height: math.unit(26*5/9, "feet")
  31388. },
  31389. {
  31390. name: "Normal",
  31391. height: math.unit(26, "feet"),
  31392. default: true
  31393. },
  31394. ]
  31395. ))
  31396. characterMakers.push(() => makeCharacter(
  31397. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31398. {
  31399. front: {
  31400. height: math.unit(8 + 9/12, "feet"),
  31401. name: "Front",
  31402. image: {
  31403. source: "./media/characters/xander/front.svg",
  31404. extra: 848/673,
  31405. bottom: 62/910
  31406. }
  31407. },
  31408. },
  31409. [
  31410. {
  31411. name: "Normal",
  31412. height: math.unit(8 + 9/12, "feet"),
  31413. default: true
  31414. },
  31415. {
  31416. name: "Gaze Grabber",
  31417. height: math.unit(13 + 8/12, "feet")
  31418. },
  31419. {
  31420. name: "Jaw Dropper",
  31421. height: math.unit(27, "feet")
  31422. },
  31423. {
  31424. name: "Show Stopper",
  31425. height: math.unit(136, "feet")
  31426. },
  31427. {
  31428. name: "Superstar",
  31429. height: math.unit(1.9e6, "miles")
  31430. },
  31431. ]
  31432. ))
  31433. //characters
  31434. function makeCharacters() {
  31435. const results = [];
  31436. characterMakers.forEach(character => {
  31437. results.push(character());
  31438. });
  31439. return results;
  31440. }