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

40303 строки
1013 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.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["marsupial"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "T Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. "peacekeeper": {
  1651. name: "Peacekeeper",
  1652. parents: ["human"]
  1653. },
  1654. "river-otter": {
  1655. name: "River Otter",
  1656. parents: ["otter"]
  1657. },
  1658. "dhole": {
  1659. name: "Dhole",
  1660. parents: ["canine"]
  1661. },
  1662. "springbok": {
  1663. name: "Springbok",
  1664. parents: ["antelope"]
  1665. },
  1666. "marsupial": {
  1667. name: "Marsupial",
  1668. parents: ["mammal"]
  1669. },
  1670. }
  1671. //species
  1672. function getSpeciesInfo(speciesList) {
  1673. let result = new Set();
  1674. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1675. result.add(entry)
  1676. });
  1677. return Array.from(result);
  1678. };
  1679. function getSpeciesInfoHelper(species) {
  1680. if (!speciesData[species]) {
  1681. console.warn(species + " doesn't exist");
  1682. return [];
  1683. }
  1684. if (speciesData[species].parents) {
  1685. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1686. } else {
  1687. return [species];
  1688. }
  1689. }
  1690. characterMakers.push(() => makeCharacter(
  1691. {
  1692. name: "Fen",
  1693. species: ["crux"],
  1694. description: {
  1695. title: "Bio",
  1696. text: "Very furry. Sheds on everything."
  1697. },
  1698. tags: [
  1699. "anthro",
  1700. "goo"
  1701. ]
  1702. },
  1703. {
  1704. back: {
  1705. height: math.unit(2.2428, "meter"),
  1706. weight: math.unit(124.738, "kg"),
  1707. name: "Back",
  1708. image: {
  1709. source: "./media/characters/fen/back.svg",
  1710. extra: 2024 / 1867,
  1711. bottom: 13 / 2037
  1712. },
  1713. info: {
  1714. description: {
  1715. mode: "append",
  1716. text: "\n\nHe is not currently looking at you."
  1717. }
  1718. }
  1719. },
  1720. full: {
  1721. height: math.unit(1.34, "meter"),
  1722. weight: math.unit(225, "kg"),
  1723. name: "Full",
  1724. image: {
  1725. source: "./media/characters/fen/full.svg"
  1726. },
  1727. info: {
  1728. description: {
  1729. mode: "append",
  1730. text: "\n\nMunch."
  1731. }
  1732. }
  1733. },
  1734. kneeling: {
  1735. height: math.unit(5.4, "feet"),
  1736. weight: math.unit(124.738, "kg"),
  1737. name: "Kneeling",
  1738. image: {
  1739. source: "./media/characters/fen/kneeling.svg",
  1740. extra: 563 / 507
  1741. }
  1742. },
  1743. goo: {
  1744. height: math.unit(2.8, "feet"),
  1745. weight: math.unit(125, "kg"),
  1746. capacity: math.unit(1, "people"),
  1747. name: "Goo",
  1748. image: {
  1749. source: "./media/characters/fen/goo.svg",
  1750. bottom: 116 / 613
  1751. }
  1752. },
  1753. lounging: {
  1754. height: math.unit(6.5, "feet"),
  1755. weight: math.unit(125, "kg"),
  1756. name: "Lounging",
  1757. image: {
  1758. source: "./media/characters/fen/lounging.svg"
  1759. }
  1760. },
  1761. },
  1762. [
  1763. {
  1764. name: "Normal",
  1765. height: math.unit(2.2428, "meter")
  1766. },
  1767. {
  1768. name: "Big",
  1769. height: math.unit(12, "feet")
  1770. },
  1771. {
  1772. name: "Minimacro",
  1773. height: math.unit(40, "feet"),
  1774. default: true,
  1775. info: {
  1776. description: {
  1777. mode: "append",
  1778. text: "\n\nTOO DAMN BIG"
  1779. }
  1780. }
  1781. },
  1782. {
  1783. name: "Macro",
  1784. height: math.unit(100, "feet"),
  1785. info: {
  1786. description: {
  1787. mode: "append",
  1788. text: "\n\nTOO DAMN BIG"
  1789. }
  1790. }
  1791. },
  1792. {
  1793. name: "Macro+",
  1794. height: math.unit(300, "feet")
  1795. },
  1796. {
  1797. name: "Megamacro",
  1798. height: math.unit(2, "miles")
  1799. }
  1800. ]
  1801. ))
  1802. characterMakers.push(() => makeCharacter(
  1803. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1804. {
  1805. front: {
  1806. height: math.unit(183, "cm"),
  1807. weight: math.unit(80, "kg"),
  1808. name: "Front",
  1809. image: {
  1810. source: "./media/characters/sofia-fluttertail/front.svg",
  1811. bottom: 0.01,
  1812. extra: 2154 / 2081
  1813. }
  1814. },
  1815. frontAlt: {
  1816. height: math.unit(183, "cm"),
  1817. weight: math.unit(80, "kg"),
  1818. name: "Front (alt)",
  1819. image: {
  1820. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1821. }
  1822. },
  1823. back: {
  1824. height: math.unit(183, "cm"),
  1825. weight: math.unit(80, "kg"),
  1826. name: "Back",
  1827. image: {
  1828. source: "./media/characters/sofia-fluttertail/back.svg"
  1829. }
  1830. },
  1831. kneeling: {
  1832. height: math.unit(125, "cm"),
  1833. weight: math.unit(80, "kg"),
  1834. name: "Kneeling",
  1835. image: {
  1836. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1837. extra: 1033 / 977,
  1838. bottom: 23.7 / 1057
  1839. }
  1840. },
  1841. maw: {
  1842. height: math.unit(183 / 5, "cm"),
  1843. name: "Maw",
  1844. image: {
  1845. source: "./media/characters/sofia-fluttertail/maw.svg"
  1846. }
  1847. },
  1848. mawcloseup: {
  1849. height: math.unit(183 / 5 * 0.41, "cm"),
  1850. name: "Maw (Closeup)",
  1851. image: {
  1852. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1853. }
  1854. },
  1855. paws: {
  1856. height: math.unit(1.17, "feet"),
  1857. name: "Paws",
  1858. image: {
  1859. source: "./media/characters/sofia-fluttertail/paws.svg",
  1860. extra: 851 / 851,
  1861. bottom: 17 / 868
  1862. }
  1863. },
  1864. },
  1865. [
  1866. {
  1867. name: "Normal",
  1868. height: math.unit(1.83, "meter")
  1869. },
  1870. {
  1871. name: "Size Thief",
  1872. height: math.unit(18, "feet")
  1873. },
  1874. {
  1875. name: "50 Foot Collie",
  1876. height: math.unit(50, "feet")
  1877. },
  1878. {
  1879. name: "Macro",
  1880. height: math.unit(96, "feet"),
  1881. default: true
  1882. },
  1883. {
  1884. name: "Megamerger",
  1885. height: math.unit(650, "feet")
  1886. },
  1887. ]
  1888. ))
  1889. characterMakers.push(() => makeCharacter(
  1890. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1891. {
  1892. front: {
  1893. height: math.unit(7, "feet"),
  1894. weight: math.unit(100, "kg"),
  1895. name: "Front",
  1896. image: {
  1897. source: "./media/characters/march/front.svg",
  1898. extra: 1992/1851,
  1899. bottom: 39/2031
  1900. }
  1901. },
  1902. foot: {
  1903. height: math.unit(0.9, "feet"),
  1904. name: "Foot",
  1905. image: {
  1906. source: "./media/characters/march/foot.svg"
  1907. }
  1908. },
  1909. },
  1910. [
  1911. {
  1912. name: "Normal",
  1913. height: math.unit(7.9, "feet")
  1914. },
  1915. {
  1916. name: "Macro",
  1917. height: math.unit(220, "meters")
  1918. },
  1919. {
  1920. name: "Megamacro",
  1921. height: math.unit(2.98, "km"),
  1922. default: true
  1923. },
  1924. {
  1925. name: "Gigamacro",
  1926. height: math.unit(15963, "km")
  1927. },
  1928. {
  1929. name: "Teramacro",
  1930. height: math.unit(2980000000, "km")
  1931. },
  1932. {
  1933. name: "Examacro",
  1934. height: math.unit(250, "parsecs")
  1935. },
  1936. ]
  1937. ))
  1938. characterMakers.push(() => makeCharacter(
  1939. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1940. {
  1941. front: {
  1942. height: math.unit(6, "feet"),
  1943. weight: math.unit(60, "kg"),
  1944. name: "Front",
  1945. image: {
  1946. source: "./media/characters/noir/front.svg",
  1947. extra: 1,
  1948. bottom: 0.032
  1949. }
  1950. },
  1951. },
  1952. [
  1953. {
  1954. name: "Normal",
  1955. height: math.unit(6.6, "feet")
  1956. },
  1957. {
  1958. name: "Macro",
  1959. height: math.unit(500, "feet")
  1960. },
  1961. {
  1962. name: "Megamacro",
  1963. height: math.unit(2.5, "km"),
  1964. default: true
  1965. },
  1966. {
  1967. name: "Gigamacro",
  1968. height: math.unit(22500, "km")
  1969. },
  1970. {
  1971. name: "Teramacro",
  1972. height: math.unit(2500000000, "km")
  1973. },
  1974. {
  1975. name: "Examacro",
  1976. height: math.unit(200, "parsecs")
  1977. },
  1978. ]
  1979. ))
  1980. characterMakers.push(() => makeCharacter(
  1981. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1982. {
  1983. front: {
  1984. height: math.unit(7, "feet"),
  1985. weight: math.unit(100, "kg"),
  1986. name: "Front",
  1987. image: {
  1988. source: "./media/characters/okuri/front.svg",
  1989. extra: 1,
  1990. bottom: 0.037
  1991. }
  1992. },
  1993. back: {
  1994. height: math.unit(7, "feet"),
  1995. weight: math.unit(100, "kg"),
  1996. name: "Back",
  1997. image: {
  1998. source: "./media/characters/okuri/back.svg",
  1999. extra: 1,
  2000. bottom: 0.007
  2001. }
  2002. },
  2003. },
  2004. [
  2005. {
  2006. name: "Megamacro",
  2007. height: math.unit(100, "miles"),
  2008. default: true
  2009. },
  2010. ]
  2011. ))
  2012. characterMakers.push(() => makeCharacter(
  2013. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2014. {
  2015. front: {
  2016. height: math.unit(7, "feet"),
  2017. weight: math.unit(100, "kg"),
  2018. name: "Front",
  2019. image: {
  2020. source: "./media/characters/manny/front.svg",
  2021. extra: 1,
  2022. bottom: 0.06
  2023. }
  2024. },
  2025. back: {
  2026. height: math.unit(7, "feet"),
  2027. weight: math.unit(100, "kg"),
  2028. name: "Back",
  2029. image: {
  2030. source: "./media/characters/manny/back.svg",
  2031. extra: 1,
  2032. bottom: 0.014
  2033. }
  2034. },
  2035. },
  2036. [
  2037. {
  2038. name: "Normal",
  2039. height: math.unit(7, "feet"),
  2040. },
  2041. {
  2042. name: "Macro",
  2043. height: math.unit(78, "feet"),
  2044. default: true
  2045. },
  2046. {
  2047. name: "Macro+",
  2048. height: math.unit(300, "meters")
  2049. },
  2050. {
  2051. name: "Macro++",
  2052. height: math.unit(2400, "meters")
  2053. },
  2054. {
  2055. name: "Megamacro",
  2056. height: math.unit(5167, "meters")
  2057. },
  2058. {
  2059. name: "Gigamacro",
  2060. height: math.unit(41769, "miles")
  2061. },
  2062. ]
  2063. ))
  2064. characterMakers.push(() => makeCharacter(
  2065. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2066. {
  2067. front: {
  2068. height: math.unit(7, "feet"),
  2069. weight: math.unit(100, "kg"),
  2070. name: "Front",
  2071. image: {
  2072. source: "./media/characters/adake/front-1.svg"
  2073. }
  2074. },
  2075. frontAlt: {
  2076. height: math.unit(7, "feet"),
  2077. weight: math.unit(100, "kg"),
  2078. name: "Front (Alt)",
  2079. image: {
  2080. source: "./media/characters/adake/front-2.svg",
  2081. extra: 1,
  2082. bottom: 0.01
  2083. }
  2084. },
  2085. back: {
  2086. height: math.unit(7, "feet"),
  2087. weight: math.unit(100, "kg"),
  2088. name: "Back",
  2089. image: {
  2090. source: "./media/characters/adake/back.svg",
  2091. }
  2092. },
  2093. kneel: {
  2094. height: math.unit(5.385, "feet"),
  2095. weight: math.unit(100, "kg"),
  2096. name: "Kneeling",
  2097. image: {
  2098. source: "./media/characters/adake/kneel.svg",
  2099. bottom: 0.052
  2100. }
  2101. },
  2102. },
  2103. [
  2104. {
  2105. name: "Normal",
  2106. height: math.unit(7, "feet"),
  2107. },
  2108. {
  2109. name: "Macro",
  2110. height: math.unit(78, "feet"),
  2111. default: true
  2112. },
  2113. {
  2114. name: "Macro+",
  2115. height: math.unit(300, "meters")
  2116. },
  2117. {
  2118. name: "Macro++",
  2119. height: math.unit(2400, "meters")
  2120. },
  2121. {
  2122. name: "Megamacro",
  2123. height: math.unit(5167, "meters")
  2124. },
  2125. {
  2126. name: "Gigamacro",
  2127. height: math.unit(41769, "miles")
  2128. },
  2129. ]
  2130. ))
  2131. characterMakers.push(() => makeCharacter(
  2132. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2133. {
  2134. front: {
  2135. height: math.unit(1.65, "meters"),
  2136. weight: math.unit(50, "kg"),
  2137. name: "Front",
  2138. image: {
  2139. source: "./media/characters/elijah/front.svg",
  2140. extra: 858 / 830,
  2141. bottom: 95.5 / 953.8559
  2142. }
  2143. },
  2144. back: {
  2145. height: math.unit(1.65, "meters"),
  2146. weight: math.unit(50, "kg"),
  2147. name: "Back",
  2148. image: {
  2149. source: "./media/characters/elijah/back.svg",
  2150. extra: 895 / 850,
  2151. bottom: 5.3 / 897.956
  2152. }
  2153. },
  2154. frontNsfw: {
  2155. height: math.unit(1.65, "meters"),
  2156. weight: math.unit(50, "kg"),
  2157. name: "Front (NSFW)",
  2158. image: {
  2159. source: "./media/characters/elijah/front-nsfw.svg",
  2160. extra: 858 / 830,
  2161. bottom: 95.5 / 953.8559
  2162. }
  2163. },
  2164. backNsfw: {
  2165. height: math.unit(1.65, "meters"),
  2166. weight: math.unit(50, "kg"),
  2167. name: "Back (NSFW)",
  2168. image: {
  2169. source: "./media/characters/elijah/back-nsfw.svg",
  2170. extra: 895 / 850,
  2171. bottom: 5.3 / 897.956
  2172. }
  2173. },
  2174. dick: {
  2175. height: math.unit(1, "feet"),
  2176. name: "Dick",
  2177. image: {
  2178. source: "./media/characters/elijah/dick.svg"
  2179. }
  2180. },
  2181. beakOpen: {
  2182. height: math.unit(1.25, "feet"),
  2183. name: "Beak (Open)",
  2184. image: {
  2185. source: "./media/characters/elijah/beak-open.svg"
  2186. }
  2187. },
  2188. beakShut: {
  2189. height: math.unit(1.25, "feet"),
  2190. name: "Beak (Shut)",
  2191. image: {
  2192. source: "./media/characters/elijah/beak-shut.svg"
  2193. }
  2194. },
  2195. footFlexing: {
  2196. height: math.unit(1.61, "feet"),
  2197. name: "Foot (Flexing)",
  2198. image: {
  2199. source: "./media/characters/elijah/foot-flexing.svg"
  2200. }
  2201. },
  2202. footStepping: {
  2203. height: math.unit(1.44, "feet"),
  2204. name: "Foot (Stepping)",
  2205. image: {
  2206. source: "./media/characters/elijah/foot-stepping.svg"
  2207. }
  2208. },
  2209. plantigradeLeg: {
  2210. height: math.unit(2.34, "feet"),
  2211. name: "Plantigrade Leg",
  2212. image: {
  2213. source: "./media/characters/elijah/plantigrade-leg.svg"
  2214. }
  2215. },
  2216. plantigradeFootLeft: {
  2217. height: math.unit(0.9, "feet"),
  2218. name: "Plantigrade Foot (Left)",
  2219. image: {
  2220. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2221. }
  2222. },
  2223. plantigradeFootRight: {
  2224. height: math.unit(0.9, "feet"),
  2225. name: "Plantigrade Foot (Right)",
  2226. image: {
  2227. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2228. }
  2229. },
  2230. },
  2231. [
  2232. {
  2233. name: "Normal",
  2234. height: math.unit(1.65, "meters")
  2235. },
  2236. {
  2237. name: "Macro",
  2238. height: math.unit(55, "meters"),
  2239. default: true
  2240. },
  2241. {
  2242. name: "Macro+",
  2243. height: math.unit(105, "meters")
  2244. },
  2245. ]
  2246. ))
  2247. characterMakers.push(() => makeCharacter(
  2248. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2249. {
  2250. front: {
  2251. height: math.unit(11, "feet"),
  2252. weight: math.unit(320, "kg"),
  2253. name: "Front",
  2254. image: {
  2255. source: "./media/characters/rai/front.svg",
  2256. extra: 1802/1696,
  2257. bottom: 68/1870
  2258. }
  2259. },
  2260. frontDressed: {
  2261. height: math.unit(11, "feet"),
  2262. weight: math.unit(320, "kg"),
  2263. name: "Front (Dressed)",
  2264. image: {
  2265. source: "./media/characters/rai/front-dressed.svg",
  2266. extra: 1802/1696,
  2267. bottom: 68/1870
  2268. }
  2269. },
  2270. side: {
  2271. height: math.unit(11, "feet"),
  2272. weight: math.unit(320, "kg"),
  2273. name: "Side",
  2274. image: {
  2275. source: "./media/characters/rai/side.svg",
  2276. extra: 1789/1710,
  2277. bottom: 115/1904
  2278. }
  2279. },
  2280. back: {
  2281. height: math.unit(11, "feet"),
  2282. weight: math.unit(320, "kg"),
  2283. name: "Back",
  2284. image: {
  2285. source: "./media/characters/rai/back.svg",
  2286. extra: 1770/1707,
  2287. bottom: 28/1798
  2288. }
  2289. },
  2290. feral: {
  2291. height: math.unit(11, "feet"),
  2292. weight: math.unit(640, "kg"),
  2293. name: "Feral",
  2294. image: {
  2295. source: "./media/characters/rai/feral.svg",
  2296. extra: 1035/642,
  2297. bottom: 86/1121
  2298. }
  2299. },
  2300. dragon: {
  2301. height: math.unit(23, "feet"),
  2302. weight: math.unit(50000, "lb"),
  2303. name: "Dragon",
  2304. image: {
  2305. source: "./media/characters/rai/dragon.svg",
  2306. extra: 2498 / 2030,
  2307. bottom: 85.2 / 2584
  2308. }
  2309. },
  2310. maw: {
  2311. height: math.unit(6 / 3.81416, "feet"),
  2312. name: "Maw",
  2313. image: {
  2314. source: "./media/characters/rai/maw.svg"
  2315. }
  2316. },
  2317. },
  2318. [
  2319. {
  2320. name: "Normal",
  2321. height: math.unit(11, "feet")
  2322. },
  2323. {
  2324. name: "Macro",
  2325. height: math.unit(302, "feet"),
  2326. default: true
  2327. },
  2328. ]
  2329. ))
  2330. characterMakers.push(() => makeCharacter(
  2331. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2332. {
  2333. frontDressed: {
  2334. height: math.unit(216, "feet"),
  2335. weight: math.unit(7000000, "lb"),
  2336. name: "Front (Dressed)",
  2337. image: {
  2338. source: "./media/characters/jazzy/front-dressed.svg",
  2339. extra: 2738 / 2651,
  2340. bottom: 41.8 / 2786
  2341. }
  2342. },
  2343. backDressed: {
  2344. height: math.unit(216, "feet"),
  2345. weight: math.unit(7000000, "lb"),
  2346. name: "Back (Dressed)",
  2347. image: {
  2348. source: "./media/characters/jazzy/back-dressed.svg",
  2349. extra: 2775 / 2673,
  2350. bottom: 36.8 / 2817
  2351. }
  2352. },
  2353. front: {
  2354. height: math.unit(216, "feet"),
  2355. weight: math.unit(7000000, "lb"),
  2356. name: "Front",
  2357. image: {
  2358. source: "./media/characters/jazzy/front.svg",
  2359. extra: 2738 / 2651,
  2360. bottom: 41.8 / 2786
  2361. }
  2362. },
  2363. back: {
  2364. height: math.unit(216, "feet"),
  2365. weight: math.unit(7000000, "lb"),
  2366. name: "Back",
  2367. image: {
  2368. source: "./media/characters/jazzy/back.svg",
  2369. extra: 2775 / 2673,
  2370. bottom: 36.8 / 2817
  2371. }
  2372. },
  2373. maw: {
  2374. height: math.unit(20, "feet"),
  2375. name: "Maw",
  2376. image: {
  2377. source: "./media/characters/jazzy/maw.svg"
  2378. }
  2379. },
  2380. paws: {
  2381. height: math.unit(27.5, "feet"),
  2382. name: "Paws",
  2383. image: {
  2384. source: "./media/characters/jazzy/paws.svg"
  2385. }
  2386. },
  2387. eye: {
  2388. height: math.unit(4.4, "feet"),
  2389. name: "Eye",
  2390. image: {
  2391. source: "./media/characters/jazzy/eye.svg"
  2392. }
  2393. },
  2394. droneOffense: {
  2395. height: math.unit(9.5, "inches"),
  2396. name: "Drone (Offense)",
  2397. image: {
  2398. source: "./media/characters/jazzy/drone-offense.svg"
  2399. }
  2400. },
  2401. droneRecon: {
  2402. height: math.unit(9.5, "inches"),
  2403. name: "Drone (Recon)",
  2404. image: {
  2405. source: "./media/characters/jazzy/drone-recon.svg"
  2406. }
  2407. },
  2408. droneDefense: {
  2409. height: math.unit(9.5, "inches"),
  2410. name: "Drone (Defense)",
  2411. image: {
  2412. source: "./media/characters/jazzy/drone-defense.svg"
  2413. }
  2414. },
  2415. },
  2416. [
  2417. {
  2418. name: "Macro",
  2419. height: math.unit(216, "feet"),
  2420. default: true
  2421. },
  2422. ]
  2423. ))
  2424. characterMakers.push(() => makeCharacter(
  2425. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2426. {
  2427. front: {
  2428. height: math.unit(9 + 6/12, "feet"),
  2429. weight: math.unit(700, "lb"),
  2430. name: "Front",
  2431. image: {
  2432. source: "./media/characters/flamm/front.svg",
  2433. extra: 1751/1632,
  2434. bottom: 46/1797
  2435. }
  2436. },
  2437. buff: {
  2438. height: math.unit(9 + 6/12, "feet"),
  2439. weight: math.unit(950, "lb"),
  2440. name: "Buff",
  2441. image: {
  2442. source: "./media/characters/flamm/buff.svg",
  2443. extra: 3018/2874,
  2444. bottom: 221/3239
  2445. }
  2446. },
  2447. },
  2448. [
  2449. {
  2450. name: "Normal",
  2451. height: math.unit(9.5, "feet")
  2452. },
  2453. {
  2454. name: "Macro",
  2455. height: math.unit(200, "feet"),
  2456. default: true
  2457. },
  2458. ]
  2459. ))
  2460. characterMakers.push(() => makeCharacter(
  2461. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2462. {
  2463. front: {
  2464. height: math.unit(5 + 3/12, "feet"),
  2465. weight: math.unit(60, "kg"),
  2466. name: "Front",
  2467. image: {
  2468. source: "./media/characters/zephiro/front.svg",
  2469. extra: 2309 / 2162,
  2470. bottom: 0.069
  2471. }
  2472. },
  2473. side: {
  2474. height: math.unit(5 + 3/12, "feet"),
  2475. weight: math.unit(60, "kg"),
  2476. name: "Side",
  2477. image: {
  2478. source: "./media/characters/zephiro/side.svg",
  2479. extra: 2403 / 2279,
  2480. bottom: 0.015
  2481. }
  2482. },
  2483. back: {
  2484. height: math.unit(5 + 3/12, "feet"),
  2485. weight: math.unit(60, "kg"),
  2486. name: "Back",
  2487. image: {
  2488. source: "./media/characters/zephiro/back.svg",
  2489. extra: 2373 / 2244,
  2490. bottom: 0.013
  2491. }
  2492. },
  2493. hand: {
  2494. height: math.unit(0.68, "feet"),
  2495. name: "Hand",
  2496. image: {
  2497. source: "./media/characters/zephiro/hand.svg"
  2498. }
  2499. },
  2500. paw: {
  2501. height: math.unit(1, "feet"),
  2502. name: "Paw",
  2503. image: {
  2504. source: "./media/characters/zephiro/paw.svg"
  2505. }
  2506. },
  2507. beans: {
  2508. height: math.unit(0.93, "feet"),
  2509. name: "Beans",
  2510. image: {
  2511. source: "./media/characters/zephiro/beans.svg"
  2512. }
  2513. },
  2514. },
  2515. [
  2516. {
  2517. name: "Micro",
  2518. height: math.unit(3, "inches")
  2519. },
  2520. {
  2521. name: "Normal",
  2522. height: math.unit(5 + 3 / 12, "feet"),
  2523. default: true
  2524. },
  2525. {
  2526. name: "Macro",
  2527. height: math.unit(118, "feet")
  2528. },
  2529. ]
  2530. ))
  2531. characterMakers.push(() => makeCharacter(
  2532. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2533. {
  2534. front: {
  2535. height: math.unit(5, "feet"),
  2536. weight: math.unit(90, "kg"),
  2537. name: "Front",
  2538. image: {
  2539. source: "./media/characters/fory/front.svg",
  2540. extra: 2862 / 2674,
  2541. bottom: 180 / 3043.8
  2542. }
  2543. },
  2544. back: {
  2545. height: math.unit(5, "feet"),
  2546. weight: math.unit(90, "kg"),
  2547. name: "Back",
  2548. image: {
  2549. source: "./media/characters/fory/back.svg",
  2550. extra: 2962 / 2791,
  2551. bottom: 106 / 3071.8
  2552. }
  2553. },
  2554. foot: {
  2555. height: math.unit(2.14, "feet"),
  2556. name: "Foot",
  2557. image: {
  2558. source: "./media/characters/fory/foot.svg"
  2559. }
  2560. },
  2561. },
  2562. [
  2563. {
  2564. name: "Normal",
  2565. height: math.unit(5, "feet")
  2566. },
  2567. {
  2568. name: "Macro",
  2569. height: math.unit(50, "feet"),
  2570. default: true
  2571. },
  2572. {
  2573. name: "Megamacro",
  2574. height: math.unit(10, "miles")
  2575. },
  2576. {
  2577. name: "Gigamacro",
  2578. height: math.unit(5, "earths")
  2579. },
  2580. ]
  2581. ))
  2582. characterMakers.push(() => makeCharacter(
  2583. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2584. {
  2585. front: {
  2586. height: math.unit(7, "feet"),
  2587. weight: math.unit(90, "kg"),
  2588. name: "Front",
  2589. image: {
  2590. source: "./media/characters/kurrikage/front.svg",
  2591. extra: 1,
  2592. bottom: 0.035
  2593. }
  2594. },
  2595. back: {
  2596. height: math.unit(7, "feet"),
  2597. weight: math.unit(90, "lb"),
  2598. name: "Back",
  2599. image: {
  2600. source: "./media/characters/kurrikage/back.svg"
  2601. }
  2602. },
  2603. paw: {
  2604. height: math.unit(1.5, "feet"),
  2605. name: "Paw",
  2606. image: {
  2607. source: "./media/characters/kurrikage/paw.svg"
  2608. }
  2609. },
  2610. staff: {
  2611. height: math.unit(6.7, "feet"),
  2612. name: "Staff",
  2613. image: {
  2614. source: "./media/characters/kurrikage/staff.svg"
  2615. }
  2616. },
  2617. peek: {
  2618. height: math.unit(1.05, "feet"),
  2619. name: "Peeking",
  2620. image: {
  2621. source: "./media/characters/kurrikage/peek.svg",
  2622. bottom: 0.08
  2623. }
  2624. },
  2625. },
  2626. [
  2627. {
  2628. name: "Normal",
  2629. height: math.unit(12, "feet"),
  2630. default: true
  2631. },
  2632. {
  2633. name: "Big",
  2634. height: math.unit(20, "feet")
  2635. },
  2636. {
  2637. name: "Macro",
  2638. height: math.unit(500, "feet")
  2639. },
  2640. {
  2641. name: "Megamacro",
  2642. height: math.unit(20, "miles")
  2643. },
  2644. ]
  2645. ))
  2646. characterMakers.push(() => makeCharacter(
  2647. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2648. {
  2649. front: {
  2650. height: math.unit(6, "feet"),
  2651. weight: math.unit(75, "kg"),
  2652. name: "Front",
  2653. image: {
  2654. source: "./media/characters/shingo/front.svg",
  2655. extra: 706/681,
  2656. bottom: 11/717
  2657. }
  2658. },
  2659. frontAlt: {
  2660. height: math.unit(6, "feet"),
  2661. weight: math.unit(75, "kg"),
  2662. name: "Front (Alt)",
  2663. image: {
  2664. source: "./media/characters/shingo/front-alt.svg",
  2665. extra: 3511 / 3338,
  2666. bottom: 0.005
  2667. }
  2668. },
  2669. paw: {
  2670. height: math.unit(1, "feet"),
  2671. name: "Paw",
  2672. image: {
  2673. source: "./media/characters/shingo/paw.svg"
  2674. }
  2675. },
  2676. },
  2677. [
  2678. {
  2679. name: "Micro",
  2680. height: math.unit(4, "inches")
  2681. },
  2682. {
  2683. name: "Normal",
  2684. height: math.unit(6, "feet"),
  2685. default: true
  2686. },
  2687. {
  2688. name: "Macro",
  2689. height: math.unit(108, "feet")
  2690. },
  2691. {
  2692. name: "Macro+",
  2693. height: math.unit(1500, "feet")
  2694. },
  2695. ]
  2696. ))
  2697. characterMakers.push(() => makeCharacter(
  2698. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2699. {
  2700. side: {
  2701. height: math.unit(6, "feet"),
  2702. weight: math.unit(75, "kg"),
  2703. name: "Side",
  2704. image: {
  2705. source: "./media/characters/aigey/side.svg"
  2706. }
  2707. },
  2708. },
  2709. [
  2710. {
  2711. name: "Macro",
  2712. height: math.unit(200, "feet"),
  2713. default: true
  2714. },
  2715. {
  2716. name: "Megamacro",
  2717. height: math.unit(100, "miles")
  2718. },
  2719. ]
  2720. )
  2721. )
  2722. characterMakers.push(() => makeCharacter(
  2723. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2724. {
  2725. front: {
  2726. height: math.unit(5 + 5 / 12, "feet"),
  2727. weight: math.unit(75, "kg"),
  2728. name: "Front",
  2729. image: {
  2730. source: "./media/characters/natasha/front.svg",
  2731. extra: 859 / 824,
  2732. bottom: 23 / 879.6
  2733. }
  2734. },
  2735. frontNsfw: {
  2736. height: math.unit(5 + 5 / 12, "feet"),
  2737. weight: math.unit(75, "kg"),
  2738. name: "Front (NSFW)",
  2739. image: {
  2740. source: "./media/characters/natasha/front-nsfw.svg",
  2741. extra: 859 / 824,
  2742. bottom: 23 / 879.6
  2743. }
  2744. },
  2745. frontErect: {
  2746. height: math.unit(5 + 5 / 12, "feet"),
  2747. weight: math.unit(75, "kg"),
  2748. name: "Front (Erect)",
  2749. image: {
  2750. source: "./media/characters/natasha/front-erect.svg",
  2751. extra: 859 / 824,
  2752. bottom: 23 / 879.6
  2753. }
  2754. },
  2755. back: {
  2756. height: math.unit(5 + 5 / 12, "feet"),
  2757. weight: math.unit(75, "kg"),
  2758. name: "Back",
  2759. image: {
  2760. source: "./media/characters/natasha/back.svg",
  2761. extra: 887.9 / 852.6,
  2762. bottom: 9.7 / 896.4
  2763. }
  2764. },
  2765. backAlt: {
  2766. height: math.unit(5 + 5 / 12, "feet"),
  2767. weight: math.unit(75, "kg"),
  2768. name: "Back (Alt)",
  2769. image: {
  2770. source: "./media/characters/natasha/back-alt.svg",
  2771. extra: 1236.7 / 1192,
  2772. bottom: 22.3 / 1258.2
  2773. }
  2774. },
  2775. dick: {
  2776. height: math.unit(1.772, "feet"),
  2777. name: "Dick",
  2778. image: {
  2779. source: "./media/characters/natasha/dick.svg"
  2780. }
  2781. },
  2782. paw: {
  2783. height: math.unit(0.250, "meters"),
  2784. name: "Paw",
  2785. image: {
  2786. source: "./media/characters/natasha/paw.svg"
  2787. }
  2788. },
  2789. },
  2790. [
  2791. {
  2792. name: "Normal",
  2793. height: math.unit(5 + 5 / 12, "feet")
  2794. },
  2795. {
  2796. name: "Large",
  2797. height: math.unit(12, "feet")
  2798. },
  2799. {
  2800. name: "Macro",
  2801. height: math.unit(100, "feet"),
  2802. default: true
  2803. },
  2804. {
  2805. name: "Macro+",
  2806. height: math.unit(260, "feet")
  2807. },
  2808. {
  2809. name: "Macro++",
  2810. height: math.unit(1, "mile")
  2811. },
  2812. ]
  2813. ))
  2814. characterMakers.push(() => makeCharacter(
  2815. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2816. {
  2817. front: {
  2818. height: math.unit(6, "feet"),
  2819. weight: math.unit(75, "kg"),
  2820. name: "Front",
  2821. image: {
  2822. source: "./media/characters/malik/front.svg"
  2823. }
  2824. },
  2825. side: {
  2826. height: math.unit(6, "feet"),
  2827. weight: math.unit(75, "kg"),
  2828. name: "Side",
  2829. image: {
  2830. source: "./media/characters/malik/side.svg",
  2831. extra: 1.1539
  2832. }
  2833. },
  2834. back: {
  2835. height: math.unit(6, "feet"),
  2836. weight: math.unit(75, "kg"),
  2837. name: "Back",
  2838. image: {
  2839. source: "./media/characters/malik/back.svg"
  2840. }
  2841. },
  2842. },
  2843. [
  2844. {
  2845. name: "Macro",
  2846. height: math.unit(156, "feet"),
  2847. default: true
  2848. },
  2849. {
  2850. name: "Macro+",
  2851. height: math.unit(1188, "feet")
  2852. },
  2853. ]
  2854. ))
  2855. characterMakers.push(() => makeCharacter(
  2856. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2857. {
  2858. front: {
  2859. height: math.unit(6, "feet"),
  2860. weight: math.unit(75, "kg"),
  2861. name: "Front",
  2862. image: {
  2863. source: "./media/characters/sefer/front.svg",
  2864. extra: 848 / 659,
  2865. bottom: 28.3 / 876.442
  2866. }
  2867. },
  2868. back: {
  2869. height: math.unit(6, "feet"),
  2870. weight: math.unit(75, "kg"),
  2871. name: "Back",
  2872. image: {
  2873. source: "./media/characters/sefer/back.svg",
  2874. extra: 864 / 695,
  2875. bottom: 10 / 871
  2876. }
  2877. },
  2878. frontDressed: {
  2879. height: math.unit(6, "feet"),
  2880. weight: math.unit(75, "kg"),
  2881. name: "Front (Dressed)",
  2882. image: {
  2883. source: "./media/characters/sefer/front-dressed.svg",
  2884. extra: 839 / 653,
  2885. bottom: 37.6 / 878
  2886. }
  2887. },
  2888. },
  2889. [
  2890. {
  2891. name: "Normal",
  2892. height: math.unit(6, "feet"),
  2893. default: true
  2894. },
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2899. {
  2900. body: {
  2901. height: math.unit(2.2428, "meter"),
  2902. weight: math.unit(124.738, "kg"),
  2903. name: "Body",
  2904. image: {
  2905. extra: 1225 / 1050,
  2906. source: "./media/characters/north/front.svg"
  2907. }
  2908. }
  2909. },
  2910. [
  2911. {
  2912. name: "Micro",
  2913. height: math.unit(4, "inches")
  2914. },
  2915. {
  2916. name: "Macro",
  2917. height: math.unit(63, "meters")
  2918. },
  2919. {
  2920. name: "Megamacro",
  2921. height: math.unit(101, "miles"),
  2922. default: true
  2923. }
  2924. ]
  2925. ))
  2926. characterMakers.push(() => makeCharacter(
  2927. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2928. {
  2929. angled: {
  2930. height: math.unit(4, "meter"),
  2931. weight: math.unit(150, "kg"),
  2932. name: "Angled",
  2933. image: {
  2934. source: "./media/characters/talan/angled-sfw.svg",
  2935. bottom: 29 / 3734
  2936. }
  2937. },
  2938. angledNsfw: {
  2939. height: math.unit(4, "meter"),
  2940. weight: math.unit(150, "kg"),
  2941. name: "Angled (NSFW)",
  2942. image: {
  2943. source: "./media/characters/talan/angled-nsfw.svg",
  2944. bottom: 29 / 3734
  2945. }
  2946. },
  2947. frontNsfw: {
  2948. height: math.unit(4, "meter"),
  2949. weight: math.unit(150, "kg"),
  2950. name: "Front (NSFW)",
  2951. image: {
  2952. source: "./media/characters/talan/front-nsfw.svg",
  2953. bottom: 29 / 3734
  2954. }
  2955. },
  2956. sideNsfw: {
  2957. height: math.unit(4, "meter"),
  2958. weight: math.unit(150, "kg"),
  2959. name: "Side (NSFW)",
  2960. image: {
  2961. source: "./media/characters/talan/side-nsfw.svg",
  2962. bottom: 29 / 3734
  2963. }
  2964. },
  2965. back: {
  2966. height: math.unit(4, "meter"),
  2967. weight: math.unit(150, "kg"),
  2968. name: "Back",
  2969. image: {
  2970. source: "./media/characters/talan/back.svg"
  2971. }
  2972. },
  2973. dickBottom: {
  2974. height: math.unit(0.621, "meter"),
  2975. name: "Dick (Bottom)",
  2976. image: {
  2977. source: "./media/characters/talan/dick-bottom.svg"
  2978. }
  2979. },
  2980. dickTop: {
  2981. height: math.unit(0.621, "meter"),
  2982. name: "Dick (Top)",
  2983. image: {
  2984. source: "./media/characters/talan/dick-top.svg"
  2985. }
  2986. },
  2987. dickSide: {
  2988. height: math.unit(0.305, "meter"),
  2989. name: "Dick (Side)",
  2990. image: {
  2991. source: "./media/characters/talan/dick-side.svg"
  2992. }
  2993. },
  2994. dickFront: {
  2995. height: math.unit(0.305, "meter"),
  2996. name: "Dick (Front)",
  2997. image: {
  2998. source: "./media/characters/talan/dick-front.svg"
  2999. }
  3000. },
  3001. },
  3002. [
  3003. {
  3004. name: "Normal",
  3005. height: math.unit(4, "meters")
  3006. },
  3007. {
  3008. name: "Macro",
  3009. height: math.unit(100, "meters")
  3010. },
  3011. {
  3012. name: "Megamacro",
  3013. height: math.unit(2, "miles"),
  3014. default: true
  3015. },
  3016. {
  3017. name: "Gigamacro",
  3018. height: math.unit(5000, "miles")
  3019. },
  3020. {
  3021. name: "Teramacro",
  3022. height: math.unit(100, "parsecs")
  3023. }
  3024. ]
  3025. ))
  3026. characterMakers.push(() => makeCharacter(
  3027. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3028. {
  3029. front: {
  3030. height: math.unit(2, "meter"),
  3031. weight: math.unit(90, "kg"),
  3032. name: "Front",
  3033. image: {
  3034. source: "./media/characters/gael'rathus/front.svg"
  3035. }
  3036. },
  3037. frontAlt: {
  3038. height: math.unit(2, "meter"),
  3039. weight: math.unit(90, "kg"),
  3040. name: "Front (alt)",
  3041. image: {
  3042. source: "./media/characters/gael'rathus/front-alt.svg"
  3043. }
  3044. },
  3045. frontAlt2: {
  3046. height: math.unit(2, "meter"),
  3047. weight: math.unit(90, "kg"),
  3048. name: "Front (alt 2)",
  3049. image: {
  3050. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3051. }
  3052. }
  3053. },
  3054. [
  3055. {
  3056. name: "Normal",
  3057. height: math.unit(9, "feet"),
  3058. default: true
  3059. },
  3060. {
  3061. name: "Large",
  3062. height: math.unit(25, "feet")
  3063. },
  3064. {
  3065. name: "Macro",
  3066. height: math.unit(0.25, "miles")
  3067. },
  3068. {
  3069. name: "Megamacro",
  3070. height: math.unit(10, "miles")
  3071. }
  3072. ]
  3073. ))
  3074. characterMakers.push(() => makeCharacter(
  3075. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3076. {
  3077. side: {
  3078. height: math.unit(2, "meter"),
  3079. weight: math.unit(140, "kg"),
  3080. name: "Side",
  3081. image: {
  3082. source: "./media/characters/sosha/side.svg",
  3083. bottom: 0.042
  3084. }
  3085. },
  3086. },
  3087. [
  3088. {
  3089. name: "Normal",
  3090. height: math.unit(12, "feet"),
  3091. default: true
  3092. }
  3093. ]
  3094. ))
  3095. characterMakers.push(() => makeCharacter(
  3096. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3097. {
  3098. side: {
  3099. height: math.unit(5 + 5 / 12, "feet"),
  3100. weight: math.unit(170, "kg"),
  3101. name: "Side",
  3102. image: {
  3103. source: "./media/characters/runnola/side.svg",
  3104. extra: 741 / 448,
  3105. bottom: 0.05
  3106. }
  3107. },
  3108. },
  3109. [
  3110. {
  3111. name: "Small",
  3112. height: math.unit(3, "feet")
  3113. },
  3114. {
  3115. name: "Normal",
  3116. height: math.unit(5 + 5 / 12, "feet"),
  3117. default: true
  3118. },
  3119. {
  3120. name: "Big",
  3121. height: math.unit(10, "feet")
  3122. },
  3123. ]
  3124. ))
  3125. characterMakers.push(() => makeCharacter(
  3126. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3127. {
  3128. front: {
  3129. height: math.unit(2, "meter"),
  3130. weight: math.unit(50, "kg"),
  3131. name: "Front",
  3132. image: {
  3133. source: "./media/characters/kurribird/front.svg",
  3134. bottom: 0.015
  3135. }
  3136. },
  3137. frontAlt: {
  3138. height: math.unit(1.5, "meter"),
  3139. weight: math.unit(50, "kg"),
  3140. name: "Front (Alt)",
  3141. image: {
  3142. source: "./media/characters/kurribird/front-alt.svg",
  3143. extra: 1.45
  3144. }
  3145. },
  3146. },
  3147. [
  3148. {
  3149. name: "Normal",
  3150. height: math.unit(7, "feet")
  3151. },
  3152. {
  3153. name: "Big",
  3154. height: math.unit(12, "feet"),
  3155. default: true
  3156. },
  3157. {
  3158. name: "Macro",
  3159. height: math.unit(1500, "feet")
  3160. },
  3161. {
  3162. name: "Megamacro",
  3163. height: math.unit(2, "miles")
  3164. }
  3165. ]
  3166. ))
  3167. characterMakers.push(() => makeCharacter(
  3168. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3169. {
  3170. front: {
  3171. height: math.unit(2, "meter"),
  3172. weight: math.unit(80, "kg"),
  3173. name: "Front",
  3174. image: {
  3175. source: "./media/characters/elbial/front.svg",
  3176. extra: 1643 / 1556,
  3177. bottom: 60.2 / 1696
  3178. }
  3179. },
  3180. side: {
  3181. height: math.unit(2, "meter"),
  3182. weight: math.unit(80, "kg"),
  3183. name: "Side",
  3184. image: {
  3185. source: "./media/characters/elbial/side.svg",
  3186. extra: 1630 / 1565,
  3187. bottom: 71.5 / 1697
  3188. }
  3189. },
  3190. back: {
  3191. height: math.unit(2, "meter"),
  3192. weight: math.unit(80, "kg"),
  3193. name: "Back",
  3194. image: {
  3195. source: "./media/characters/elbial/back.svg",
  3196. extra: 1668 / 1595,
  3197. bottom: 5.6 / 1672
  3198. }
  3199. },
  3200. frontDressed: {
  3201. height: math.unit(2, "meter"),
  3202. weight: math.unit(80, "kg"),
  3203. name: "Front (Dressed)",
  3204. image: {
  3205. source: "./media/characters/elbial/front-dressed.svg",
  3206. extra: 1653 / 1584,
  3207. bottom: 57 / 1708
  3208. }
  3209. },
  3210. genitals: {
  3211. height: math.unit(2 / 3.367, "meter"),
  3212. name: "Genitals",
  3213. image: {
  3214. source: "./media/characters/elbial/genitals.svg"
  3215. }
  3216. },
  3217. },
  3218. [
  3219. {
  3220. name: "Large",
  3221. height: math.unit(100, "feet")
  3222. },
  3223. {
  3224. name: "Macro",
  3225. height: math.unit(500, "feet"),
  3226. default: true
  3227. },
  3228. {
  3229. name: "Megamacro",
  3230. height: math.unit(10, "miles")
  3231. },
  3232. {
  3233. name: "Gigamacro",
  3234. height: math.unit(25000, "miles")
  3235. },
  3236. {
  3237. name: "Full-Size",
  3238. height: math.unit(8000000, "gigaparsecs")
  3239. }
  3240. ]
  3241. ))
  3242. characterMakers.push(() => makeCharacter(
  3243. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3244. {
  3245. front: {
  3246. height: math.unit(2, "meter"),
  3247. weight: math.unit(60, "kg"),
  3248. name: "Front",
  3249. image: {
  3250. source: "./media/characters/noah/front.svg"
  3251. }
  3252. },
  3253. talons: {
  3254. height: math.unit(0.315, "meter"),
  3255. name: "Talons",
  3256. image: {
  3257. source: "./media/characters/noah/talons.svg"
  3258. }
  3259. }
  3260. },
  3261. [
  3262. {
  3263. name: "Large",
  3264. height: math.unit(50, "feet")
  3265. },
  3266. {
  3267. name: "Macro",
  3268. height: math.unit(750, "feet"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Megamacro",
  3273. height: math.unit(50, "miles")
  3274. },
  3275. {
  3276. name: "Gigamacro",
  3277. height: math.unit(100000, "miles")
  3278. },
  3279. {
  3280. name: "Full-Size",
  3281. height: math.unit(3000000000, "miles")
  3282. }
  3283. ]
  3284. ))
  3285. characterMakers.push(() => makeCharacter(
  3286. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3287. {
  3288. front: {
  3289. height: math.unit(2, "meter"),
  3290. weight: math.unit(80, "kg"),
  3291. name: "Front",
  3292. image: {
  3293. source: "./media/characters/natalya/front.svg"
  3294. }
  3295. },
  3296. back: {
  3297. height: math.unit(2, "meter"),
  3298. weight: math.unit(80, "kg"),
  3299. name: "Back",
  3300. image: {
  3301. source: "./media/characters/natalya/back.svg"
  3302. }
  3303. }
  3304. },
  3305. [
  3306. {
  3307. name: "Normal",
  3308. height: math.unit(150, "feet"),
  3309. default: true
  3310. },
  3311. {
  3312. name: "Megamacro",
  3313. height: math.unit(5, "miles")
  3314. },
  3315. {
  3316. name: "Full-Size",
  3317. height: math.unit(600, "kiloparsecs")
  3318. }
  3319. ]
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3323. {
  3324. front: {
  3325. height: math.unit(2, "meter"),
  3326. weight: math.unit(50, "kg"),
  3327. name: "Front",
  3328. image: {
  3329. source: "./media/characters/erestrebah/front.svg",
  3330. extra: 208 / 193,
  3331. bottom: 0.055
  3332. }
  3333. },
  3334. back: {
  3335. height: math.unit(2, "meter"),
  3336. weight: math.unit(50, "kg"),
  3337. name: "Back",
  3338. image: {
  3339. source: "./media/characters/erestrebah/back.svg",
  3340. extra: 1.3
  3341. }
  3342. }
  3343. },
  3344. [
  3345. {
  3346. name: "Normal",
  3347. height: math.unit(10, "feet")
  3348. },
  3349. {
  3350. name: "Large",
  3351. height: math.unit(50, "feet"),
  3352. default: true
  3353. },
  3354. {
  3355. name: "Macro",
  3356. height: math.unit(300, "feet")
  3357. },
  3358. {
  3359. name: "Macro+",
  3360. height: math.unit(750, "feet")
  3361. },
  3362. {
  3363. name: "Megamacro",
  3364. height: math.unit(3, "miles")
  3365. }
  3366. ]
  3367. ))
  3368. characterMakers.push(() => makeCharacter(
  3369. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3370. {
  3371. front: {
  3372. height: math.unit(2, "meter"),
  3373. weight: math.unit(80, "kg"),
  3374. name: "Front",
  3375. image: {
  3376. source: "./media/characters/jennifer/front.svg",
  3377. bottom: 0.11,
  3378. extra: 1.16
  3379. }
  3380. },
  3381. frontAlt: {
  3382. height: math.unit(2, "meter"),
  3383. weight: math.unit(80, "kg"),
  3384. name: "Front (Alt)",
  3385. image: {
  3386. source: "./media/characters/jennifer/front-alt.svg"
  3387. }
  3388. }
  3389. },
  3390. [
  3391. {
  3392. name: "Canon Height",
  3393. height: math.unit(120, "feet"),
  3394. default: true
  3395. },
  3396. {
  3397. name: "Macro+",
  3398. height: math.unit(300, "feet")
  3399. },
  3400. {
  3401. name: "Megamacro",
  3402. height: math.unit(20000, "feet")
  3403. }
  3404. ]
  3405. ))
  3406. characterMakers.push(() => makeCharacter(
  3407. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3408. {
  3409. front: {
  3410. height: math.unit(2, "meter"),
  3411. weight: math.unit(50, "kg"),
  3412. name: "Front",
  3413. image: {
  3414. source: "./media/characters/kalista/front.svg",
  3415. extra: 1947 / 1700,
  3416. bottom: 76.6 / 1412.98
  3417. }
  3418. },
  3419. back: {
  3420. height: math.unit(2, "meter"),
  3421. weight: math.unit(50, "kg"),
  3422. name: "Back",
  3423. image: {
  3424. source: "./media/characters/kalista/back.svg",
  3425. extra: 1366 / 1156,
  3426. bottom: 33.9 / 1362.78
  3427. }
  3428. }
  3429. },
  3430. [
  3431. {
  3432. name: "Uncomfortably Small",
  3433. height: math.unit(10, "feet")
  3434. },
  3435. {
  3436. name: "Small",
  3437. height: math.unit(30, "feet")
  3438. },
  3439. {
  3440. name: "Macro",
  3441. height: math.unit(100, "feet"),
  3442. default: true
  3443. },
  3444. {
  3445. name: "Macro+",
  3446. height: math.unit(2000, "feet")
  3447. },
  3448. {
  3449. name: "True Form",
  3450. height: math.unit(8924, "miles")
  3451. }
  3452. ]
  3453. ))
  3454. characterMakers.push(() => makeCharacter(
  3455. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3456. {
  3457. front: {
  3458. height: math.unit(2, "meter"),
  3459. weight: math.unit(120, "kg"),
  3460. name: "Front",
  3461. image: {
  3462. source: "./media/characters/ggv/front.svg"
  3463. }
  3464. },
  3465. side: {
  3466. height: math.unit(2, "meter"),
  3467. weight: math.unit(120, "kg"),
  3468. name: "Side",
  3469. image: {
  3470. source: "./media/characters/ggv/side.svg"
  3471. }
  3472. }
  3473. },
  3474. [
  3475. {
  3476. name: "Extremely Puny",
  3477. height: math.unit(9 + 5 / 12, "feet")
  3478. },
  3479. {
  3480. name: "Horribly Small",
  3481. height: math.unit(47.7, "miles"),
  3482. default: true
  3483. },
  3484. {
  3485. name: "Reasonably Sized",
  3486. height: math.unit(25000, "parsecs")
  3487. },
  3488. {
  3489. name: "Slightly Uncompressed",
  3490. height: math.unit(7.77e31, "parsecs")
  3491. },
  3492. {
  3493. name: "Omniversal",
  3494. height: math.unit(1e300, "meters")
  3495. },
  3496. ]
  3497. ))
  3498. characterMakers.push(() => makeCharacter(
  3499. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3500. {
  3501. front: {
  3502. height: math.unit(2, "meter"),
  3503. weight: math.unit(75, "lb"),
  3504. name: "Front",
  3505. image: {
  3506. source: "./media/characters/napalm/front.svg"
  3507. }
  3508. },
  3509. back: {
  3510. height: math.unit(2, "meter"),
  3511. weight: math.unit(75, "lb"),
  3512. name: "Back",
  3513. image: {
  3514. source: "./media/characters/napalm/back.svg"
  3515. }
  3516. }
  3517. },
  3518. [
  3519. {
  3520. name: "Standard",
  3521. height: math.unit(55, "feet"),
  3522. default: true
  3523. }
  3524. ]
  3525. ))
  3526. characterMakers.push(() => makeCharacter(
  3527. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3528. {
  3529. front: {
  3530. height: math.unit(7 + 5 / 6, "feet"),
  3531. weight: math.unit(325, "lb"),
  3532. name: "Front",
  3533. image: {
  3534. source: "./media/characters/asana/front.svg",
  3535. extra: 1133 / 1060,
  3536. bottom: 15.2 / 1148.6
  3537. }
  3538. },
  3539. back: {
  3540. height: math.unit(7 + 5 / 6, "feet"),
  3541. weight: math.unit(325, "lb"),
  3542. name: "Back",
  3543. image: {
  3544. source: "./media/characters/asana/back.svg",
  3545. extra: 1114 / 1043,
  3546. bottom: 5 / 1120
  3547. }
  3548. },
  3549. dressedDark: {
  3550. height: math.unit(7 + 5 / 6, "feet"),
  3551. weight: math.unit(325, "lb"),
  3552. name: "Dressed (Dark)",
  3553. image: {
  3554. source: "./media/characters/asana/dressed-dark.svg",
  3555. extra: 1133 / 1060,
  3556. bottom: 15.2 / 1148.6
  3557. }
  3558. },
  3559. dressedLight: {
  3560. height: math.unit(7 + 5 / 6, "feet"),
  3561. weight: math.unit(325, "lb"),
  3562. name: "Dressed (Light)",
  3563. image: {
  3564. source: "./media/characters/asana/dressed-light.svg",
  3565. extra: 1133 / 1060,
  3566. bottom: 15.2 / 1148.6
  3567. }
  3568. },
  3569. },
  3570. [
  3571. {
  3572. name: "Standard",
  3573. height: math.unit(7 + 5 / 6, "feet"),
  3574. default: true
  3575. },
  3576. {
  3577. name: "Large",
  3578. height: math.unit(10, "meters")
  3579. },
  3580. {
  3581. name: "Macro",
  3582. height: math.unit(2500, "meters")
  3583. },
  3584. {
  3585. name: "Megamacro",
  3586. height: math.unit(5e6, "meters")
  3587. },
  3588. {
  3589. name: "Examacro",
  3590. height: math.unit(5e12, "lightyears")
  3591. },
  3592. {
  3593. name: "Max Size",
  3594. height: math.unit(1e31, "lightyears")
  3595. }
  3596. ]
  3597. ))
  3598. characterMakers.push(() => makeCharacter(
  3599. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3600. {
  3601. front: {
  3602. height: math.unit(2, "meter"),
  3603. weight: math.unit(60, "kg"),
  3604. name: "Front",
  3605. image: {
  3606. source: "./media/characters/ebony/front.svg",
  3607. bottom: 0.03,
  3608. extra: 1045 / 810 + 0.03
  3609. }
  3610. },
  3611. side: {
  3612. height: math.unit(2, "meter"),
  3613. weight: math.unit(60, "kg"),
  3614. name: "Side",
  3615. image: {
  3616. source: "./media/characters/ebony/side.svg",
  3617. bottom: 0.03,
  3618. extra: 1045 / 810 + 0.03
  3619. }
  3620. },
  3621. back: {
  3622. height: math.unit(2, "meter"),
  3623. weight: math.unit(60, "kg"),
  3624. name: "Back",
  3625. image: {
  3626. source: "./media/characters/ebony/back.svg",
  3627. bottom: 0.01,
  3628. extra: 1045 / 810 + 0.01
  3629. }
  3630. },
  3631. },
  3632. [
  3633. // TODO check why I did this lol
  3634. {
  3635. name: "Standard",
  3636. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3637. default: true
  3638. },
  3639. {
  3640. name: "Macro",
  3641. height: math.unit(200, "feet")
  3642. },
  3643. {
  3644. name: "Gigamacro",
  3645. height: math.unit(13000, "km")
  3646. }
  3647. ]
  3648. ))
  3649. characterMakers.push(() => makeCharacter(
  3650. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3651. {
  3652. front: {
  3653. height: math.unit(6, "feet"),
  3654. weight: math.unit(175, "lb"),
  3655. name: "Front",
  3656. image: {
  3657. source: "./media/characters/mountain/front.svg",
  3658. extra: 972 / 955,
  3659. bottom: 64 / 1036.6
  3660. }
  3661. },
  3662. back: {
  3663. height: math.unit(6, "feet"),
  3664. weight: math.unit(175, "lb"),
  3665. name: "Back",
  3666. image: {
  3667. source: "./media/characters/mountain/back.svg",
  3668. extra: 970 / 950,
  3669. bottom: 28.25 / 999
  3670. }
  3671. },
  3672. },
  3673. [
  3674. {
  3675. name: "Large",
  3676. height: math.unit(20, "meters")
  3677. },
  3678. {
  3679. name: "Macro",
  3680. height: math.unit(300, "meters")
  3681. },
  3682. {
  3683. name: "Gigamacro",
  3684. height: math.unit(10000, "km"),
  3685. default: true
  3686. },
  3687. {
  3688. name: "Examacro",
  3689. height: math.unit(10e9, "lightyears")
  3690. }
  3691. ]
  3692. ))
  3693. characterMakers.push(() => makeCharacter(
  3694. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3695. {
  3696. front: {
  3697. height: math.unit(8, "feet"),
  3698. weight: math.unit(500, "lb"),
  3699. name: "Front",
  3700. image: {
  3701. source: "./media/characters/rick/front.svg"
  3702. }
  3703. }
  3704. },
  3705. [
  3706. {
  3707. name: "Normal",
  3708. height: math.unit(8, "feet"),
  3709. default: true
  3710. },
  3711. {
  3712. name: "Macro",
  3713. height: math.unit(5, "km")
  3714. }
  3715. ]
  3716. ))
  3717. characterMakers.push(() => makeCharacter(
  3718. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3719. {
  3720. front: {
  3721. height: math.unit(8, "feet"),
  3722. weight: math.unit(120, "lb"),
  3723. name: "Front",
  3724. image: {
  3725. source: "./media/characters/ona/front.svg"
  3726. }
  3727. },
  3728. frontAlt: {
  3729. height: math.unit(8, "feet"),
  3730. weight: math.unit(120, "lb"),
  3731. name: "Front (Alt)",
  3732. image: {
  3733. source: "./media/characters/ona/front-alt.svg"
  3734. }
  3735. },
  3736. back: {
  3737. height: math.unit(8, "feet"),
  3738. weight: math.unit(120, "lb"),
  3739. name: "Back",
  3740. image: {
  3741. source: "./media/characters/ona/back.svg"
  3742. }
  3743. },
  3744. foot: {
  3745. height: math.unit(1.1, "feet"),
  3746. name: "Foot",
  3747. image: {
  3748. source: "./media/characters/ona/foot.svg"
  3749. }
  3750. }
  3751. },
  3752. [
  3753. {
  3754. name: "Megamacro",
  3755. height: math.unit(70, "km"),
  3756. default: true
  3757. },
  3758. {
  3759. name: "Gigamacro",
  3760. height: math.unit(681818, "miles")
  3761. },
  3762. {
  3763. name: "Examacro",
  3764. height: math.unit(3800000, "lightyears")
  3765. },
  3766. ]
  3767. ))
  3768. characterMakers.push(() => makeCharacter(
  3769. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3770. {
  3771. front: {
  3772. height: math.unit(12, "feet"),
  3773. weight: math.unit(3000, "lb"),
  3774. name: "Front",
  3775. image: {
  3776. source: "./media/characters/mech/front.svg",
  3777. extra: 2900 / 2770,
  3778. bottom: 110 / 3010
  3779. }
  3780. },
  3781. back: {
  3782. height: math.unit(12, "feet"),
  3783. weight: math.unit(3000, "lb"),
  3784. name: "Back",
  3785. image: {
  3786. source: "./media/characters/mech/back.svg",
  3787. extra: 3011 / 2890,
  3788. bottom: 94 / 3105
  3789. }
  3790. },
  3791. maw: {
  3792. height: math.unit(3.07, "feet"),
  3793. name: "Maw",
  3794. image: {
  3795. source: "./media/characters/mech/maw.svg"
  3796. }
  3797. },
  3798. head: {
  3799. height: math.unit(2.82, "feet"),
  3800. name: "Head",
  3801. image: {
  3802. source: "./media/characters/mech/head.svg"
  3803. }
  3804. },
  3805. dick: {
  3806. height: math.unit(1.43, "feet"),
  3807. name: "Dick",
  3808. image: {
  3809. source: "./media/characters/mech/dick.svg"
  3810. }
  3811. },
  3812. },
  3813. [
  3814. {
  3815. name: "Normal",
  3816. height: math.unit(12, "feet")
  3817. },
  3818. {
  3819. name: "Macro",
  3820. height: math.unit(300, "feet"),
  3821. default: true
  3822. },
  3823. {
  3824. name: "Macro+",
  3825. height: math.unit(1500, "feet")
  3826. },
  3827. ]
  3828. ))
  3829. characterMakers.push(() => makeCharacter(
  3830. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3831. {
  3832. front: {
  3833. height: math.unit(1.3, "meter"),
  3834. weight: math.unit(30, "kg"),
  3835. name: "Front",
  3836. image: {
  3837. source: "./media/characters/gregory/front.svg",
  3838. }
  3839. }
  3840. },
  3841. [
  3842. {
  3843. name: "Normal",
  3844. height: math.unit(1.3, "meter"),
  3845. default: true
  3846. },
  3847. {
  3848. name: "Macro",
  3849. height: math.unit(20, "meter")
  3850. }
  3851. ]
  3852. ))
  3853. characterMakers.push(() => makeCharacter(
  3854. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3855. {
  3856. front: {
  3857. height: math.unit(2.8, "meter"),
  3858. weight: math.unit(200, "kg"),
  3859. name: "Front",
  3860. image: {
  3861. source: "./media/characters/elory/front.svg",
  3862. }
  3863. }
  3864. },
  3865. [
  3866. {
  3867. name: "Normal",
  3868. height: math.unit(2.8, "meter"),
  3869. default: true
  3870. },
  3871. {
  3872. name: "Macro",
  3873. height: math.unit(38, "meter")
  3874. }
  3875. ]
  3876. ))
  3877. characterMakers.push(() => makeCharacter(
  3878. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3879. {
  3880. front: {
  3881. height: math.unit(470, "feet"),
  3882. weight: math.unit(924, "tons"),
  3883. name: "Front",
  3884. image: {
  3885. source: "./media/characters/angelpatamon/front.svg",
  3886. }
  3887. }
  3888. },
  3889. [
  3890. {
  3891. name: "Normal",
  3892. height: math.unit(470, "feet"),
  3893. default: true
  3894. },
  3895. {
  3896. name: "Deity Size I",
  3897. height: math.unit(28651.2, "km")
  3898. },
  3899. {
  3900. name: "Deity Size II",
  3901. height: math.unit(171907.2, "km")
  3902. }
  3903. ]
  3904. ))
  3905. characterMakers.push(() => makeCharacter(
  3906. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3907. {
  3908. side: {
  3909. height: math.unit(7.2, "meter"),
  3910. weight: math.unit(8.2, "tons"),
  3911. name: "Side",
  3912. image: {
  3913. source: "./media/characters/cryae/side.svg",
  3914. extra: 3500 / 1500
  3915. }
  3916. }
  3917. },
  3918. [
  3919. {
  3920. name: "Normal",
  3921. height: math.unit(7.2, "meter"),
  3922. default: true
  3923. }
  3924. ]
  3925. ))
  3926. characterMakers.push(() => makeCharacter(
  3927. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3928. {
  3929. front: {
  3930. height: math.unit(6, "feet"),
  3931. weight: math.unit(175, "lb"),
  3932. name: "Front",
  3933. image: {
  3934. source: "./media/characters/xera/front.svg",
  3935. extra: 2377 / 1972,
  3936. bottom: 75.5 / 2452
  3937. }
  3938. },
  3939. side: {
  3940. height: math.unit(6, "feet"),
  3941. weight: math.unit(175, "lb"),
  3942. name: "Side",
  3943. image: {
  3944. source: "./media/characters/xera/side.svg",
  3945. extra: 2345 / 2019,
  3946. bottom: 39.7 / 2384
  3947. }
  3948. },
  3949. back: {
  3950. height: math.unit(6, "feet"),
  3951. weight: math.unit(175, "lb"),
  3952. name: "Back",
  3953. image: {
  3954. source: "./media/characters/xera/back.svg",
  3955. extra: 2095 / 1984,
  3956. bottom: 67 / 2166
  3957. }
  3958. },
  3959. },
  3960. [
  3961. {
  3962. name: "Small",
  3963. height: math.unit(10, "feet")
  3964. },
  3965. {
  3966. name: "Macro",
  3967. height: math.unit(500, "meters"),
  3968. default: true
  3969. },
  3970. {
  3971. name: "Macro+",
  3972. height: math.unit(10, "km")
  3973. },
  3974. {
  3975. name: "Gigamacro",
  3976. height: math.unit(25000, "km")
  3977. },
  3978. {
  3979. name: "Teramacro",
  3980. height: math.unit(3e6, "km")
  3981. }
  3982. ]
  3983. ))
  3984. characterMakers.push(() => makeCharacter(
  3985. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3986. {
  3987. front: {
  3988. height: math.unit(6, "feet"),
  3989. weight: math.unit(175, "lb"),
  3990. name: "Front",
  3991. image: {
  3992. source: "./media/characters/nebula/front.svg",
  3993. extra: 2566 / 2362,
  3994. bottom: 81 / 2644
  3995. }
  3996. }
  3997. },
  3998. [
  3999. {
  4000. name: "Small",
  4001. height: math.unit(4.5, "meters")
  4002. },
  4003. {
  4004. name: "Macro",
  4005. height: math.unit(1500, "meters"),
  4006. default: true
  4007. },
  4008. {
  4009. name: "Megamacro",
  4010. height: math.unit(150, "km")
  4011. },
  4012. {
  4013. name: "Gigamacro",
  4014. height: math.unit(27000, "km")
  4015. }
  4016. ]
  4017. ))
  4018. characterMakers.push(() => makeCharacter(
  4019. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4020. {
  4021. front: {
  4022. height: math.unit(6, "feet"),
  4023. weight: math.unit(225, "lb"),
  4024. name: "Front",
  4025. image: {
  4026. source: "./media/characters/abysgar/front.svg"
  4027. }
  4028. }
  4029. },
  4030. [
  4031. {
  4032. name: "Small",
  4033. height: math.unit(4.5, "meters")
  4034. },
  4035. {
  4036. name: "Macro",
  4037. height: math.unit(1250, "meters"),
  4038. default: true
  4039. },
  4040. {
  4041. name: "Megamacro",
  4042. height: math.unit(125, "km")
  4043. },
  4044. {
  4045. name: "Gigamacro",
  4046. height: math.unit(26000, "km")
  4047. }
  4048. ]
  4049. ))
  4050. characterMakers.push(() => makeCharacter(
  4051. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4052. {
  4053. front: {
  4054. height: math.unit(6, "feet"),
  4055. weight: math.unit(180, "lb"),
  4056. name: "Front",
  4057. image: {
  4058. source: "./media/characters/yakuz/front.svg"
  4059. }
  4060. }
  4061. },
  4062. [
  4063. {
  4064. name: "Small",
  4065. height: math.unit(5, "meters")
  4066. },
  4067. {
  4068. name: "Macro",
  4069. height: math.unit(1500, "meters"),
  4070. default: true
  4071. },
  4072. {
  4073. name: "Megamacro",
  4074. height: math.unit(200, "km")
  4075. },
  4076. {
  4077. name: "Gigamacro",
  4078. height: math.unit(100000, "km")
  4079. }
  4080. ]
  4081. ))
  4082. characterMakers.push(() => makeCharacter(
  4083. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4084. {
  4085. front: {
  4086. height: math.unit(6, "feet"),
  4087. weight: math.unit(175, "lb"),
  4088. name: "Front",
  4089. image: {
  4090. source: "./media/characters/mirova/front.svg",
  4091. extra: 3334 / 3071,
  4092. bottom: 42 / 3375.6
  4093. }
  4094. }
  4095. },
  4096. [
  4097. {
  4098. name: "Small",
  4099. height: math.unit(5, "meters")
  4100. },
  4101. {
  4102. name: "Macro",
  4103. height: math.unit(900, "meters"),
  4104. default: true
  4105. },
  4106. {
  4107. name: "Megamacro",
  4108. height: math.unit(135, "km")
  4109. },
  4110. {
  4111. name: "Gigamacro",
  4112. height: math.unit(20000, "km")
  4113. }
  4114. ]
  4115. ))
  4116. characterMakers.push(() => makeCharacter(
  4117. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4118. {
  4119. side: {
  4120. height: math.unit(28.35, "feet"),
  4121. weight: math.unit(99.75, "tons"),
  4122. name: "Side",
  4123. image: {
  4124. source: "./media/characters/asana-mech/side.svg",
  4125. extra: 923 / 699,
  4126. bottom: 50 / 975
  4127. }
  4128. },
  4129. chaingun: {
  4130. height: math.unit(7, "feet"),
  4131. weight: math.unit(2400, "lb"),
  4132. name: "Chaingun",
  4133. image: {
  4134. source: "./media/characters/asana-mech/chaingun.svg"
  4135. }
  4136. },
  4137. laser: {
  4138. height: math.unit(7.12, "feet"),
  4139. weight: math.unit(2000, "lb"),
  4140. name: "Laser",
  4141. image: {
  4142. source: "./media/characters/asana-mech/laser.svg"
  4143. }
  4144. },
  4145. },
  4146. [
  4147. {
  4148. name: "Normal",
  4149. height: math.unit(28.35, "feet"),
  4150. default: true
  4151. },
  4152. {
  4153. name: "Macro",
  4154. height: math.unit(2500, "feet")
  4155. },
  4156. {
  4157. name: "Megamacro",
  4158. height: math.unit(25, "miles")
  4159. },
  4160. {
  4161. name: "Examacro",
  4162. height: math.unit(6e8, "lightyears")
  4163. },
  4164. ]
  4165. ))
  4166. characterMakers.push(() => makeCharacter(
  4167. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4168. {
  4169. front: {
  4170. height: math.unit(5, "meters"),
  4171. weight: math.unit(1000, "kg"),
  4172. name: "Front",
  4173. image: {
  4174. source: "./media/characters/asche/front.svg",
  4175. extra: 1258 / 1190,
  4176. bottom: 47 / 1305
  4177. }
  4178. },
  4179. frontUnderwear: {
  4180. height: math.unit(5, "meters"),
  4181. weight: math.unit(1000, "kg"),
  4182. name: "Front (Underwear)",
  4183. image: {
  4184. source: "./media/characters/asche/front-underwear.svg",
  4185. extra: 1258 / 1190,
  4186. bottom: 47 / 1305
  4187. }
  4188. },
  4189. frontDressed: {
  4190. height: math.unit(5, "meters"),
  4191. weight: math.unit(1000, "kg"),
  4192. name: "Front (Dressed)",
  4193. image: {
  4194. source: "./media/characters/asche/front-dressed.svg",
  4195. extra: 1258 / 1190,
  4196. bottom: 47 / 1305
  4197. }
  4198. },
  4199. frontArmor: {
  4200. height: math.unit(5, "meters"),
  4201. weight: math.unit(1000, "kg"),
  4202. name: "Front (Armored)",
  4203. image: {
  4204. source: "./media/characters/asche/front-armored.svg",
  4205. extra: 1374 / 1308,
  4206. bottom: 23 / 1397
  4207. }
  4208. },
  4209. mp724: {
  4210. height: math.unit(0.96, "meters"),
  4211. weight: math.unit(38, "kg"),
  4212. name: "H&K MP724",
  4213. image: {
  4214. source: "./media/characters/asche/h&k-mp724.svg"
  4215. }
  4216. },
  4217. side: {
  4218. height: math.unit(5, "meters"),
  4219. weight: math.unit(1000, "kg"),
  4220. name: "Side",
  4221. image: {
  4222. source: "./media/characters/asche/side.svg",
  4223. extra: 1717 / 1609,
  4224. bottom: 0.005
  4225. }
  4226. },
  4227. back: {
  4228. height: math.unit(5, "meters"),
  4229. weight: math.unit(1000, "kg"),
  4230. name: "Back",
  4231. image: {
  4232. source: "./media/characters/asche/back.svg",
  4233. extra: 1570 / 1501
  4234. }
  4235. },
  4236. },
  4237. [
  4238. {
  4239. name: "DEFCON 5",
  4240. height: math.unit(5, "meters")
  4241. },
  4242. {
  4243. name: "DEFCON 4",
  4244. height: math.unit(500, "meters"),
  4245. default: true
  4246. },
  4247. {
  4248. name: "DEFCON 3",
  4249. height: math.unit(5, "km")
  4250. },
  4251. {
  4252. name: "DEFCON 2",
  4253. height: math.unit(500, "km")
  4254. },
  4255. {
  4256. name: "DEFCON 1",
  4257. height: math.unit(500000, "km")
  4258. },
  4259. {
  4260. name: "DEFCON 0",
  4261. height: math.unit(3, "gigaparsecs")
  4262. },
  4263. ]
  4264. ))
  4265. characterMakers.push(() => makeCharacter(
  4266. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4267. {
  4268. front: {
  4269. height: math.unit(2, "meters"),
  4270. weight: math.unit(76, "kg"),
  4271. name: "Front",
  4272. image: {
  4273. source: "./media/characters/gale/front.svg"
  4274. }
  4275. },
  4276. frontAlt1: {
  4277. height: math.unit(2, "meters"),
  4278. weight: math.unit(76, "kg"),
  4279. name: "Front (Alt 1)",
  4280. image: {
  4281. source: "./media/characters/gale/front-alt-1.svg"
  4282. }
  4283. },
  4284. frontAlt2: {
  4285. height: math.unit(2, "meters"),
  4286. weight: math.unit(76, "kg"),
  4287. name: "Front (Alt 2)",
  4288. image: {
  4289. source: "./media/characters/gale/front-alt-2.svg"
  4290. }
  4291. },
  4292. },
  4293. [
  4294. {
  4295. name: "Normal",
  4296. height: math.unit(7, "feet")
  4297. },
  4298. {
  4299. name: "Macro",
  4300. height: math.unit(150, "feet"),
  4301. default: true
  4302. },
  4303. {
  4304. name: "Macro+",
  4305. height: math.unit(300, "feet")
  4306. },
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(2, "meters"),
  4314. weight: math.unit(76, "kg"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/draylen/front.svg"
  4318. }
  4319. }
  4320. },
  4321. [
  4322. {
  4323. name: "Macro",
  4324. height: math.unit(150, "feet"),
  4325. default: true
  4326. }
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4331. {
  4332. front: {
  4333. height: math.unit(7 + 9 / 12, "feet"),
  4334. weight: math.unit(379, "lbs"),
  4335. name: "Front",
  4336. image: {
  4337. source: "./media/characters/chez/front.svg"
  4338. }
  4339. },
  4340. side: {
  4341. height: math.unit(7 + 9 / 12, "feet"),
  4342. weight: math.unit(379, "lbs"),
  4343. name: "Side",
  4344. image: {
  4345. source: "./media/characters/chez/side.svg"
  4346. }
  4347. }
  4348. },
  4349. [
  4350. {
  4351. name: "Normal",
  4352. height: math.unit(7 + 9 / 12, "feet"),
  4353. default: true
  4354. },
  4355. {
  4356. name: "God King",
  4357. height: math.unit(9750000, "meters")
  4358. }
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4363. {
  4364. front: {
  4365. height: math.unit(6, "feet"),
  4366. weight: math.unit(275, "lbs"),
  4367. name: "Front",
  4368. image: {
  4369. source: "./media/characters/kaylum/front.svg",
  4370. bottom: 0.01,
  4371. extra: 1166 / 1031
  4372. }
  4373. },
  4374. frontWingless: {
  4375. height: math.unit(6, "feet"),
  4376. weight: math.unit(275, "lbs"),
  4377. name: "Front (Wingless)",
  4378. image: {
  4379. source: "./media/characters/kaylum/front-wingless.svg",
  4380. bottom: 0.01,
  4381. extra: 1117 / 1031
  4382. }
  4383. }
  4384. },
  4385. [
  4386. {
  4387. name: "Normal",
  4388. height: math.unit(3.05, "meters")
  4389. },
  4390. {
  4391. name: "Master",
  4392. height: math.unit(5.5, "meters")
  4393. },
  4394. {
  4395. name: "Rampage",
  4396. height: math.unit(19, "meters")
  4397. },
  4398. {
  4399. name: "Macro Lite",
  4400. height: math.unit(37, "meters")
  4401. },
  4402. {
  4403. name: "Hyper Predator",
  4404. height: math.unit(61, "meters")
  4405. },
  4406. {
  4407. name: "Macro",
  4408. height: math.unit(138, "meters"),
  4409. default: true
  4410. }
  4411. ]
  4412. ))
  4413. characterMakers.push(() => makeCharacter(
  4414. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4415. {
  4416. front: {
  4417. height: math.unit(6, "feet"),
  4418. weight: math.unit(150, "lbs"),
  4419. name: "Front",
  4420. image: {
  4421. source: "./media/characters/geta/front.svg"
  4422. }
  4423. }
  4424. },
  4425. [
  4426. {
  4427. name: "Micro",
  4428. height: math.unit(3, "inches"),
  4429. default: true
  4430. },
  4431. {
  4432. name: "Normal",
  4433. height: math.unit(5 + 5 / 12, "feet")
  4434. }
  4435. ]
  4436. ))
  4437. characterMakers.push(() => makeCharacter(
  4438. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4439. {
  4440. front: {
  4441. height: math.unit(6, "feet"),
  4442. weight: math.unit(300, "lbs"),
  4443. name: "Front",
  4444. image: {
  4445. source: "./media/characters/tyrnn/front.svg"
  4446. }
  4447. }
  4448. },
  4449. [
  4450. {
  4451. name: "Main Height",
  4452. height: math.unit(355, "feet"),
  4453. default: true
  4454. },
  4455. {
  4456. name: "Fave. Height",
  4457. height: math.unit(2400, "feet")
  4458. }
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4463. {
  4464. front: {
  4465. height: math.unit(6, "feet"),
  4466. weight: math.unit(300, "lbs"),
  4467. name: "Front",
  4468. image: {
  4469. source: "./media/characters/appledectomy/front.svg"
  4470. }
  4471. }
  4472. },
  4473. [
  4474. {
  4475. name: "Macro",
  4476. height: math.unit(2500, "feet")
  4477. },
  4478. {
  4479. name: "Megamacro",
  4480. height: math.unit(50, "miles"),
  4481. default: true
  4482. },
  4483. {
  4484. name: "Gigamacro",
  4485. height: math.unit(5000, "miles")
  4486. },
  4487. {
  4488. name: "Teramacro",
  4489. height: math.unit(250000, "miles")
  4490. },
  4491. ]
  4492. ))
  4493. characterMakers.push(() => makeCharacter(
  4494. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4495. {
  4496. front: {
  4497. height: math.unit(6, "feet"),
  4498. weight: math.unit(200, "lbs"),
  4499. name: "Front",
  4500. image: {
  4501. source: "./media/characters/vulpes/front.svg",
  4502. extra: 573 / 543,
  4503. bottom: 0.033
  4504. }
  4505. },
  4506. side: {
  4507. height: math.unit(6, "feet"),
  4508. weight: math.unit(200, "lbs"),
  4509. name: "Side",
  4510. image: {
  4511. source: "./media/characters/vulpes/side.svg",
  4512. extra: 577 / 549,
  4513. bottom: 11 / 588
  4514. }
  4515. },
  4516. back: {
  4517. height: math.unit(6, "feet"),
  4518. weight: math.unit(200, "lbs"),
  4519. name: "Back",
  4520. image: {
  4521. source: "./media/characters/vulpes/back.svg",
  4522. extra: 573 / 549,
  4523. bottom: 20 / 593
  4524. }
  4525. },
  4526. feet: {
  4527. height: math.unit(1.276, "feet"),
  4528. name: "Feet",
  4529. image: {
  4530. source: "./media/characters/vulpes/feet.svg"
  4531. }
  4532. },
  4533. maw: {
  4534. height: math.unit(1.18, "feet"),
  4535. name: "Maw",
  4536. image: {
  4537. source: "./media/characters/vulpes/maw.svg"
  4538. }
  4539. },
  4540. },
  4541. [
  4542. {
  4543. name: "Micro",
  4544. height: math.unit(2, "inches")
  4545. },
  4546. {
  4547. name: "Normal",
  4548. height: math.unit(6.3, "feet")
  4549. },
  4550. {
  4551. name: "Macro",
  4552. height: math.unit(850, "feet")
  4553. },
  4554. {
  4555. name: "Megamacro",
  4556. height: math.unit(7500, "feet"),
  4557. default: true
  4558. },
  4559. {
  4560. name: "Gigamacro",
  4561. height: math.unit(570000, "miles")
  4562. }
  4563. ]
  4564. ))
  4565. characterMakers.push(() => makeCharacter(
  4566. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4567. {
  4568. front: {
  4569. height: math.unit(6, "feet"),
  4570. weight: math.unit(210, "lbs"),
  4571. name: "Front",
  4572. image: {
  4573. source: "./media/characters/rain-fallen/front.svg"
  4574. }
  4575. },
  4576. side: {
  4577. height: math.unit(6, "feet"),
  4578. weight: math.unit(210, "lbs"),
  4579. name: "Side",
  4580. image: {
  4581. source: "./media/characters/rain-fallen/side.svg"
  4582. }
  4583. },
  4584. back: {
  4585. height: math.unit(6, "feet"),
  4586. weight: math.unit(210, "lbs"),
  4587. name: "Back",
  4588. image: {
  4589. source: "./media/characters/rain-fallen/back.svg"
  4590. }
  4591. },
  4592. feral: {
  4593. height: math.unit(9, "feet"),
  4594. weight: math.unit(700, "lbs"),
  4595. name: "Feral",
  4596. image: {
  4597. source: "./media/characters/rain-fallen/feral.svg"
  4598. }
  4599. },
  4600. },
  4601. [
  4602. {
  4603. name: "Meddling with Mortals",
  4604. height: math.unit(8 + 8/12, "feet")
  4605. },
  4606. {
  4607. name: "Normal",
  4608. height: math.unit(5, "meter")
  4609. },
  4610. {
  4611. name: "Macro",
  4612. height: math.unit(150, "meter"),
  4613. default: true
  4614. },
  4615. {
  4616. name: "Megamacro",
  4617. height: math.unit(278e6, "meter")
  4618. },
  4619. {
  4620. name: "Gigamacro",
  4621. height: math.unit(2e9, "meter")
  4622. },
  4623. {
  4624. name: "Teramacro",
  4625. height: math.unit(8e12, "meter")
  4626. },
  4627. {
  4628. name: "Devourer",
  4629. height: math.unit(14, "zettameters")
  4630. },
  4631. {
  4632. name: "Scarlet King",
  4633. height: math.unit(18, "yottameters")
  4634. },
  4635. {
  4636. name: "Void",
  4637. height: math.unit(1e88, "yottameters")
  4638. }
  4639. ]
  4640. ))
  4641. characterMakers.push(() => makeCharacter(
  4642. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4643. {
  4644. standing: {
  4645. height: math.unit(6, "feet"),
  4646. weight: math.unit(180, "lbs"),
  4647. name: "Standing",
  4648. image: {
  4649. source: "./media/characters/zaakira/standing.svg",
  4650. extra: 1599/1504,
  4651. bottom: 39/1638
  4652. }
  4653. },
  4654. laying: {
  4655. height: math.unit(3, "feet"),
  4656. weight: math.unit(180, "lbs"),
  4657. name: "Laying",
  4658. image: {
  4659. source: "./media/characters/zaakira/laying.svg"
  4660. }
  4661. },
  4662. },
  4663. [
  4664. {
  4665. name: "Normal",
  4666. height: math.unit(12, "feet")
  4667. },
  4668. {
  4669. name: "Macro",
  4670. height: math.unit(279, "feet"),
  4671. default: true
  4672. }
  4673. ]
  4674. ))
  4675. characterMakers.push(() => makeCharacter(
  4676. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4677. {
  4678. femSfw: {
  4679. height: math.unit(8, "feet"),
  4680. weight: math.unit(350, "lb"),
  4681. name: "Fem",
  4682. image: {
  4683. source: "./media/characters/sigvald/fem-sfw.svg",
  4684. extra: 182 / 164,
  4685. bottom: 8.7 / 190.5
  4686. }
  4687. },
  4688. femNsfw: {
  4689. height: math.unit(8, "feet"),
  4690. weight: math.unit(350, "lb"),
  4691. name: "Fem (NSFW)",
  4692. image: {
  4693. source: "./media/characters/sigvald/fem-nsfw.svg",
  4694. extra: 182 / 164,
  4695. bottom: 8.7 / 190.5
  4696. }
  4697. },
  4698. maleNsfw: {
  4699. height: math.unit(8, "feet"),
  4700. weight: math.unit(350, "lb"),
  4701. name: "Male (NSFW)",
  4702. image: {
  4703. source: "./media/characters/sigvald/male-nsfw.svg",
  4704. extra: 182 / 164,
  4705. bottom: 8.7 / 190.5
  4706. }
  4707. },
  4708. hermNsfw: {
  4709. height: math.unit(8, "feet"),
  4710. weight: math.unit(350, "lb"),
  4711. name: "Herm (NSFW)",
  4712. image: {
  4713. source: "./media/characters/sigvald/herm-nsfw.svg",
  4714. extra: 182 / 164,
  4715. bottom: 8.7 / 190.5
  4716. }
  4717. },
  4718. dick: {
  4719. height: math.unit(2.36, "feet"),
  4720. name: "Dick",
  4721. image: {
  4722. source: "./media/characters/sigvald/dick.svg"
  4723. }
  4724. },
  4725. eye: {
  4726. height: math.unit(0.31, "feet"),
  4727. name: "Eye",
  4728. image: {
  4729. source: "./media/characters/sigvald/eye.svg"
  4730. }
  4731. },
  4732. mouth: {
  4733. height: math.unit(0.92, "feet"),
  4734. name: "Mouth",
  4735. image: {
  4736. source: "./media/characters/sigvald/mouth.svg"
  4737. }
  4738. },
  4739. paws: {
  4740. height: math.unit(2.2, "feet"),
  4741. name: "Paws",
  4742. image: {
  4743. source: "./media/characters/sigvald/paws.svg"
  4744. }
  4745. }
  4746. },
  4747. [
  4748. {
  4749. name: "Normal",
  4750. height: math.unit(8, "feet")
  4751. },
  4752. {
  4753. name: "Large",
  4754. height: math.unit(12, "feet")
  4755. },
  4756. {
  4757. name: "Larger",
  4758. height: math.unit(20, "feet")
  4759. },
  4760. {
  4761. name: "Macro",
  4762. height: math.unit(150, "feet")
  4763. },
  4764. {
  4765. name: "Macro+",
  4766. height: math.unit(200, "feet"),
  4767. default: true
  4768. },
  4769. ]
  4770. ))
  4771. characterMakers.push(() => makeCharacter(
  4772. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4773. {
  4774. side: {
  4775. height: math.unit(12, "feet"),
  4776. weight: math.unit(2000, "kg"),
  4777. name: "Side",
  4778. image: {
  4779. source: "./media/characters/scott/side.svg",
  4780. extra: 754 / 724,
  4781. bottom: 0.069
  4782. }
  4783. },
  4784. upright: {
  4785. height: math.unit(12, "feet"),
  4786. weight: math.unit(2000, "kg"),
  4787. name: "Upright",
  4788. image: {
  4789. source: "./media/characters/scott/upright.svg",
  4790. extra: 3881 / 3722,
  4791. bottom: 0.05
  4792. }
  4793. },
  4794. },
  4795. [
  4796. {
  4797. name: "Normal",
  4798. height: math.unit(12, "feet"),
  4799. default: true
  4800. },
  4801. ]
  4802. ))
  4803. characterMakers.push(() => makeCharacter(
  4804. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4805. {
  4806. side: {
  4807. height: math.unit(8, "meters"),
  4808. weight: math.unit(84755, "lbs"),
  4809. name: "Side",
  4810. image: {
  4811. source: "./media/characters/tobias/side.svg",
  4812. extra: 1474 / 1096,
  4813. bottom: 38.9 / 1513.1235
  4814. }
  4815. },
  4816. },
  4817. [
  4818. {
  4819. name: "Normal",
  4820. height: math.unit(8, "meters"),
  4821. default: true
  4822. },
  4823. ]
  4824. ))
  4825. characterMakers.push(() => makeCharacter(
  4826. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4827. {
  4828. front: {
  4829. height: math.unit(5.5, "feet"),
  4830. weight: math.unit(400, "lbs"),
  4831. name: "Front",
  4832. image: {
  4833. source: "./media/characters/kieran/front.svg",
  4834. extra: 2694 / 2364,
  4835. bottom: 217 / 2908
  4836. }
  4837. },
  4838. side: {
  4839. height: math.unit(5.5, "feet"),
  4840. weight: math.unit(400, "lbs"),
  4841. name: "Side",
  4842. image: {
  4843. source: "./media/characters/kieran/side.svg",
  4844. extra: 875 / 777,
  4845. bottom: 84.6 / 959
  4846. }
  4847. },
  4848. },
  4849. [
  4850. {
  4851. name: "Normal",
  4852. height: math.unit(5.5, "feet"),
  4853. default: true
  4854. },
  4855. ]
  4856. ))
  4857. characterMakers.push(() => makeCharacter(
  4858. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4859. {
  4860. side: {
  4861. height: math.unit(2, "meters"),
  4862. weight: math.unit(70, "kg"),
  4863. name: "Side",
  4864. image: {
  4865. source: "./media/characters/sanya/side.svg",
  4866. bottom: 0.02,
  4867. extra: 1.02
  4868. }
  4869. },
  4870. },
  4871. [
  4872. {
  4873. name: "Small",
  4874. height: math.unit(2, "meters")
  4875. },
  4876. {
  4877. name: "Normal",
  4878. height: math.unit(3, "meters")
  4879. },
  4880. {
  4881. name: "Macro",
  4882. height: math.unit(16, "meters"),
  4883. default: true
  4884. },
  4885. ]
  4886. ))
  4887. characterMakers.push(() => makeCharacter(
  4888. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4889. {
  4890. front: {
  4891. height: math.unit(2, "meters"),
  4892. weight: math.unit(120, "kg"),
  4893. name: "Front",
  4894. image: {
  4895. source: "./media/characters/miranda/front.svg",
  4896. extra: 195 / 185,
  4897. bottom: 10.9 / 206.5
  4898. }
  4899. },
  4900. back: {
  4901. height: math.unit(2, "meters"),
  4902. weight: math.unit(120, "kg"),
  4903. name: "Back",
  4904. image: {
  4905. source: "./media/characters/miranda/back.svg",
  4906. extra: 201 / 193,
  4907. bottom: 2.3 / 203.7
  4908. }
  4909. },
  4910. },
  4911. [
  4912. {
  4913. name: "Normal",
  4914. height: math.unit(10, "feet"),
  4915. default: true
  4916. }
  4917. ]
  4918. ))
  4919. characterMakers.push(() => makeCharacter(
  4920. { name: "James", species: ["deer"], tags: ["anthro"] },
  4921. {
  4922. side: {
  4923. height: math.unit(2, "meters"),
  4924. weight: math.unit(100, "kg"),
  4925. name: "Front",
  4926. image: {
  4927. source: "./media/characters/james/front.svg",
  4928. extra: 10 / 8.5
  4929. }
  4930. },
  4931. },
  4932. [
  4933. {
  4934. name: "Normal",
  4935. height: math.unit(8.5, "feet"),
  4936. default: true
  4937. }
  4938. ]
  4939. ))
  4940. characterMakers.push(() => makeCharacter(
  4941. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4942. {
  4943. side: {
  4944. height: math.unit(9.5, "feet"),
  4945. weight: math.unit(2500, "lbs"),
  4946. name: "Side",
  4947. image: {
  4948. source: "./media/characters/heather/side.svg"
  4949. }
  4950. },
  4951. },
  4952. [
  4953. {
  4954. name: "Normal",
  4955. height: math.unit(9.5, "feet"),
  4956. default: true
  4957. }
  4958. ]
  4959. ))
  4960. characterMakers.push(() => makeCharacter(
  4961. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4962. {
  4963. side: {
  4964. height: math.unit(6.5, "feet"),
  4965. weight: math.unit(400, "lbs"),
  4966. name: "Side",
  4967. image: {
  4968. source: "./media/characters/lukas/side.svg",
  4969. extra: 7.25 / 6.5
  4970. }
  4971. },
  4972. },
  4973. [
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(6.5, "feet"),
  4977. default: true
  4978. }
  4979. ]
  4980. ))
  4981. characterMakers.push(() => makeCharacter(
  4982. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4983. {
  4984. side: {
  4985. height: math.unit(5, "feet"),
  4986. weight: math.unit(3000, "lbs"),
  4987. name: "Side",
  4988. image: {
  4989. source: "./media/characters/louise/side.svg"
  4990. }
  4991. },
  4992. },
  4993. [
  4994. {
  4995. name: "Normal",
  4996. height: math.unit(5, "feet"),
  4997. default: true
  4998. }
  4999. ]
  5000. ))
  5001. characterMakers.push(() => makeCharacter(
  5002. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5003. {
  5004. side: {
  5005. height: math.unit(6, "feet"),
  5006. weight: math.unit(150, "lbs"),
  5007. name: "Side",
  5008. image: {
  5009. source: "./media/characters/ramona/side.svg"
  5010. }
  5011. },
  5012. },
  5013. [
  5014. {
  5015. name: "Normal",
  5016. height: math.unit(5.3, "meters"),
  5017. default: true
  5018. },
  5019. {
  5020. name: "Macro",
  5021. height: math.unit(20, "stories")
  5022. },
  5023. {
  5024. name: "Macro+",
  5025. height: math.unit(50, "stories")
  5026. },
  5027. ]
  5028. ))
  5029. characterMakers.push(() => makeCharacter(
  5030. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5031. {
  5032. standing: {
  5033. height: math.unit(5.75, "feet"),
  5034. weight: math.unit(160, "lbs"),
  5035. name: "Standing",
  5036. image: {
  5037. source: "./media/characters/deerpuff/standing.svg",
  5038. extra: 682 / 624
  5039. }
  5040. },
  5041. sitting: {
  5042. height: math.unit(5.75 / 1.79, "feet"),
  5043. weight: math.unit(160, "lbs"),
  5044. name: "Sitting",
  5045. image: {
  5046. source: "./media/characters/deerpuff/sitting.svg",
  5047. bottom: 44 / 400,
  5048. extra: 1
  5049. }
  5050. },
  5051. taurLaying: {
  5052. height: math.unit(6, "feet"),
  5053. weight: math.unit(400, "lbs"),
  5054. name: "Taur (Laying)",
  5055. image: {
  5056. source: "./media/characters/deerpuff/taur-laying.svg"
  5057. }
  5058. },
  5059. },
  5060. [
  5061. {
  5062. name: "Puffball",
  5063. height: math.unit(6, "inches")
  5064. },
  5065. {
  5066. name: "Normalpuff",
  5067. height: math.unit(5.75, "feet")
  5068. },
  5069. {
  5070. name: "Macropuff",
  5071. height: math.unit(1500, "feet"),
  5072. default: true
  5073. },
  5074. {
  5075. name: "Megapuff",
  5076. height: math.unit(500, "miles")
  5077. },
  5078. {
  5079. name: "Gigapuff",
  5080. height: math.unit(250000, "miles")
  5081. },
  5082. {
  5083. name: "Omegapuff",
  5084. height: math.unit(1000, "lightyears")
  5085. },
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5090. {
  5091. stomping: {
  5092. height: math.unit(6, "feet"),
  5093. weight: math.unit(170, "lbs"),
  5094. name: "Stomping",
  5095. image: {
  5096. source: "./media/characters/vivian/stomping.svg"
  5097. }
  5098. },
  5099. sitting: {
  5100. height: math.unit(6 / 1.75, "feet"),
  5101. weight: math.unit(170, "lbs"),
  5102. name: "Sitting",
  5103. image: {
  5104. source: "./media/characters/vivian/sitting.svg",
  5105. bottom: 1 / 6.4,
  5106. extra: 1,
  5107. }
  5108. },
  5109. },
  5110. [
  5111. {
  5112. name: "Normal",
  5113. height: math.unit(7, "feet"),
  5114. default: true
  5115. },
  5116. {
  5117. name: "Macro",
  5118. height: math.unit(10, "stories")
  5119. },
  5120. {
  5121. name: "Macro+",
  5122. height: math.unit(30, "stories")
  5123. },
  5124. {
  5125. name: "Megamacro",
  5126. height: math.unit(10, "miles")
  5127. },
  5128. {
  5129. name: "Megamacro+",
  5130. height: math.unit(2750000, "meters")
  5131. },
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5136. {
  5137. front: {
  5138. height: math.unit(6, "feet"),
  5139. weight: math.unit(160, "lbs"),
  5140. name: "Front",
  5141. image: {
  5142. source: "./media/characters/prince/front.svg",
  5143. extra: 3400 / 3000
  5144. }
  5145. },
  5146. jumping: {
  5147. height: math.unit(6, "feet"),
  5148. weight: math.unit(160, "lbs"),
  5149. name: "Jumping",
  5150. image: {
  5151. source: "./media/characters/prince/jump.svg",
  5152. extra: 2555 / 2134
  5153. }
  5154. },
  5155. },
  5156. [
  5157. {
  5158. name: "Normal",
  5159. height: math.unit(7.75, "feet"),
  5160. default: true
  5161. },
  5162. {
  5163. name: "Not cute",
  5164. height: math.unit(17, "feet")
  5165. },
  5166. {
  5167. name: "I said NOT",
  5168. height: math.unit(91, "feet")
  5169. },
  5170. {
  5171. name: "Please stop",
  5172. height: math.unit(560, "feet")
  5173. },
  5174. {
  5175. name: "What have you done",
  5176. height: math.unit(2200, "feet")
  5177. },
  5178. {
  5179. name: "Deer God",
  5180. height: math.unit(3.6, "miles")
  5181. },
  5182. ]
  5183. ))
  5184. characterMakers.push(() => makeCharacter(
  5185. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5186. {
  5187. standing: {
  5188. height: math.unit(6, "feet"),
  5189. weight: math.unit(300, "lbs"),
  5190. name: "Standing",
  5191. image: {
  5192. source: "./media/characters/psymon/standing.svg",
  5193. extra: 1888 / 1810,
  5194. bottom: 0.05
  5195. }
  5196. },
  5197. slithering: {
  5198. height: math.unit(6, "feet"),
  5199. weight: math.unit(300, "lbs"),
  5200. name: "Slithering",
  5201. image: {
  5202. source: "./media/characters/psymon/slithering.svg",
  5203. extra: 1330 / 1224
  5204. }
  5205. },
  5206. slitheringAlt: {
  5207. height: math.unit(6, "feet"),
  5208. weight: math.unit(300, "lbs"),
  5209. name: "Slithering (Alt)",
  5210. image: {
  5211. source: "./media/characters/psymon/slithering-alt.svg",
  5212. extra: 1330 / 1224
  5213. }
  5214. },
  5215. },
  5216. [
  5217. {
  5218. name: "Normal",
  5219. height: math.unit(11.25, "feet"),
  5220. default: true
  5221. },
  5222. {
  5223. name: "Large",
  5224. height: math.unit(27, "feet")
  5225. },
  5226. {
  5227. name: "Giant",
  5228. height: math.unit(87, "feet")
  5229. },
  5230. {
  5231. name: "Macro",
  5232. height: math.unit(365, "feet")
  5233. },
  5234. {
  5235. name: "Megamacro",
  5236. height: math.unit(3, "miles")
  5237. },
  5238. {
  5239. name: "World Serpent",
  5240. height: math.unit(8000, "miles")
  5241. },
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5246. {
  5247. front: {
  5248. height: math.unit(6, "feet"),
  5249. weight: math.unit(180, "lbs"),
  5250. name: "Front",
  5251. image: {
  5252. source: "./media/characters/daimos/front.svg",
  5253. extra: 4160 / 3897,
  5254. bottom: 0.021
  5255. }
  5256. }
  5257. },
  5258. [
  5259. {
  5260. name: "Normal",
  5261. height: math.unit(8, "feet"),
  5262. default: true
  5263. },
  5264. {
  5265. name: "Big Dog",
  5266. height: math.unit(22, "feet")
  5267. },
  5268. {
  5269. name: "Macro",
  5270. height: math.unit(127, "feet")
  5271. },
  5272. {
  5273. name: "Megamacro",
  5274. height: math.unit(3600, "feet")
  5275. },
  5276. ]
  5277. ))
  5278. characterMakers.push(() => makeCharacter(
  5279. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5280. {
  5281. side: {
  5282. height: math.unit(6, "feet"),
  5283. weight: math.unit(180, "lbs"),
  5284. name: "Side",
  5285. image: {
  5286. source: "./media/characters/blake/side.svg",
  5287. extra: 1212 / 1120,
  5288. bottom: 0.05
  5289. }
  5290. },
  5291. crouched: {
  5292. height: math.unit(6 * 0.57, "feet"),
  5293. weight: math.unit(180, "lbs"),
  5294. name: "Crouched",
  5295. image: {
  5296. source: "./media/characters/blake/crouched.svg",
  5297. extra: 840 / 587,
  5298. bottom: 0.04
  5299. }
  5300. },
  5301. bent: {
  5302. height: math.unit(6 * 0.75, "feet"),
  5303. weight: math.unit(180, "lbs"),
  5304. name: "Bent",
  5305. image: {
  5306. source: "./media/characters/blake/bent.svg",
  5307. extra: 592 / 544,
  5308. bottom: 0.035
  5309. }
  5310. },
  5311. },
  5312. [
  5313. {
  5314. name: "Normal",
  5315. height: math.unit(8 + 1 / 6, "feet"),
  5316. default: true
  5317. },
  5318. {
  5319. name: "Big Backside",
  5320. height: math.unit(37, "feet")
  5321. },
  5322. {
  5323. name: "Subway Shredder",
  5324. height: math.unit(72, "feet")
  5325. },
  5326. {
  5327. name: "City Carver",
  5328. height: math.unit(1675, "feet")
  5329. },
  5330. {
  5331. name: "Tectonic Tweaker",
  5332. height: math.unit(2300, "miles")
  5333. },
  5334. ]
  5335. ))
  5336. characterMakers.push(() => makeCharacter(
  5337. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5338. {
  5339. front: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(180, "lbs"),
  5342. name: "Front",
  5343. image: {
  5344. source: "./media/characters/guisetto/front.svg",
  5345. extra: 856 / 817,
  5346. bottom: 0.06
  5347. }
  5348. },
  5349. airborne: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(180, "lbs"),
  5352. name: "Airborne",
  5353. image: {
  5354. source: "./media/characters/guisetto/airborne.svg",
  5355. extra: 584 / 525
  5356. }
  5357. },
  5358. },
  5359. [
  5360. {
  5361. name: "Normal",
  5362. height: math.unit(10 + 11 / 12, "feet"),
  5363. default: true
  5364. },
  5365. {
  5366. name: "Large",
  5367. height: math.unit(35, "feet")
  5368. },
  5369. {
  5370. name: "Macro",
  5371. height: math.unit(475, "feet")
  5372. },
  5373. ]
  5374. ))
  5375. characterMakers.push(() => makeCharacter(
  5376. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5377. {
  5378. front: {
  5379. height: math.unit(6, "feet"),
  5380. weight: math.unit(180, "lbs"),
  5381. name: "Front",
  5382. image: {
  5383. source: "./media/characters/luxor/front.svg",
  5384. extra: 2940 / 2152
  5385. }
  5386. },
  5387. back: {
  5388. height: math.unit(6, "feet"),
  5389. weight: math.unit(180, "lbs"),
  5390. name: "Back",
  5391. image: {
  5392. source: "./media/characters/luxor/back.svg",
  5393. extra: 1083 / 960
  5394. }
  5395. },
  5396. },
  5397. [
  5398. {
  5399. name: "Normal",
  5400. height: math.unit(5 + 5 / 6, "feet"),
  5401. default: true
  5402. },
  5403. {
  5404. name: "Lamp",
  5405. height: math.unit(50, "feet")
  5406. },
  5407. {
  5408. name: "Lämp",
  5409. height: math.unit(300, "feet")
  5410. },
  5411. {
  5412. name: "The sun is a lamp",
  5413. height: math.unit(250000, "miles")
  5414. },
  5415. ]
  5416. ))
  5417. characterMakers.push(() => makeCharacter(
  5418. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5419. {
  5420. front: {
  5421. height: math.unit(6, "feet"),
  5422. weight: math.unit(50, "lbs"),
  5423. name: "Front",
  5424. image: {
  5425. source: "./media/characters/huoyan/front.svg"
  5426. }
  5427. },
  5428. side: {
  5429. height: math.unit(6, "feet"),
  5430. weight: math.unit(180, "lbs"),
  5431. name: "Side",
  5432. image: {
  5433. source: "./media/characters/huoyan/side.svg"
  5434. }
  5435. },
  5436. },
  5437. [
  5438. {
  5439. name: "Chef",
  5440. height: math.unit(9, "feet")
  5441. },
  5442. {
  5443. name: "Normal",
  5444. height: math.unit(65, "feet"),
  5445. default: true
  5446. },
  5447. {
  5448. name: "Macro",
  5449. height: math.unit(780, "feet")
  5450. },
  5451. {
  5452. name: "Flaming Mountain",
  5453. height: math.unit(4.8, "miles")
  5454. },
  5455. {
  5456. name: "Celestial",
  5457. height: math.unit(765000, "miles")
  5458. },
  5459. ]
  5460. ))
  5461. characterMakers.push(() => makeCharacter(
  5462. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5463. {
  5464. front: {
  5465. height: math.unit(5 + 3 / 4, "feet"),
  5466. weight: math.unit(120, "lbs"),
  5467. name: "Front",
  5468. image: {
  5469. source: "./media/characters/tails/front.svg"
  5470. }
  5471. }
  5472. },
  5473. [
  5474. {
  5475. name: "Normal",
  5476. height: math.unit(5 + 3 / 4, "feet"),
  5477. default: true
  5478. }
  5479. ]
  5480. ))
  5481. characterMakers.push(() => makeCharacter(
  5482. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5483. {
  5484. front: {
  5485. height: math.unit(4, "feet"),
  5486. weight: math.unit(50, "lbs"),
  5487. name: "Front",
  5488. image: {
  5489. source: "./media/characters/rainy/front.svg"
  5490. }
  5491. }
  5492. },
  5493. [
  5494. {
  5495. name: "Macro",
  5496. height: math.unit(800, "feet"),
  5497. default: true
  5498. }
  5499. ]
  5500. ))
  5501. characterMakers.push(() => makeCharacter(
  5502. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5503. {
  5504. front: {
  5505. height: math.unit(6, "feet"),
  5506. weight: math.unit(150, "lbs"),
  5507. name: "Front",
  5508. image: {
  5509. source: "./media/characters/rainier/front.svg"
  5510. }
  5511. }
  5512. },
  5513. [
  5514. {
  5515. name: "Micro",
  5516. height: math.unit(2, "mm"),
  5517. default: true
  5518. }
  5519. ]
  5520. ))
  5521. characterMakers.push(() => makeCharacter(
  5522. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5523. {
  5524. front: {
  5525. height: math.unit(8 + 4/12, "feet"),
  5526. name: "Front",
  5527. image: {
  5528. source: "./media/characters/andy-renard/front.svg",
  5529. extra: 1839/1726,
  5530. bottom: 134/1973
  5531. }
  5532. },
  5533. back: {
  5534. height: math.unit(8 + 4/12, "feet"),
  5535. name: "Back",
  5536. image: {
  5537. source: "./media/characters/andy-renard/back.svg",
  5538. extra: 1838/1710,
  5539. bottom: 105/1943
  5540. }
  5541. },
  5542. },
  5543. [
  5544. {
  5545. name: "Tall",
  5546. height: math.unit(8 + 4/12, "feet")
  5547. },
  5548. {
  5549. name: "Mini Macro",
  5550. height: math.unit(15, "feet"),
  5551. default: true
  5552. },
  5553. {
  5554. name: "Macro",
  5555. height: math.unit(100, "feet")
  5556. },
  5557. {
  5558. name: "Mega Macro",
  5559. height: math.unit(1000, "feet")
  5560. },
  5561. {
  5562. name: "Giga Macro",
  5563. height: math.unit(10, "miles")
  5564. },
  5565. {
  5566. name: "God Macro",
  5567. height: math.unit(1, "multiverse")
  5568. },
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5573. {
  5574. front: {
  5575. height: math.unit(6, "feet"),
  5576. weight: math.unit(210, "lbs"),
  5577. name: "Front",
  5578. image: {
  5579. source: "./media/characters/cimmaron/front-sfw.svg",
  5580. extra: 701 / 676,
  5581. bottom: 0.046
  5582. }
  5583. },
  5584. back: {
  5585. height: math.unit(6, "feet"),
  5586. weight: math.unit(210, "lbs"),
  5587. name: "Back",
  5588. image: {
  5589. source: "./media/characters/cimmaron/back-sfw.svg",
  5590. extra: 701 / 676,
  5591. bottom: 0.046
  5592. }
  5593. },
  5594. frontNsfw: {
  5595. height: math.unit(6, "feet"),
  5596. weight: math.unit(210, "lbs"),
  5597. name: "Front (NSFW)",
  5598. image: {
  5599. source: "./media/characters/cimmaron/front-nsfw.svg",
  5600. extra: 701 / 676,
  5601. bottom: 0.046
  5602. }
  5603. },
  5604. backNsfw: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(210, "lbs"),
  5607. name: "Back (NSFW)",
  5608. image: {
  5609. source: "./media/characters/cimmaron/back-nsfw.svg",
  5610. extra: 701 / 676,
  5611. bottom: 0.046
  5612. }
  5613. },
  5614. dick: {
  5615. height: math.unit(1.714, "feet"),
  5616. name: "Dick",
  5617. image: {
  5618. source: "./media/characters/cimmaron/dick.svg"
  5619. }
  5620. },
  5621. },
  5622. [
  5623. {
  5624. name: "Normal",
  5625. height: math.unit(6, "feet"),
  5626. default: true
  5627. },
  5628. {
  5629. name: "Macro Mayor",
  5630. height: math.unit(350, "meters")
  5631. },
  5632. ]
  5633. ))
  5634. characterMakers.push(() => makeCharacter(
  5635. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5636. {
  5637. front: {
  5638. height: math.unit(6, "feet"),
  5639. weight: math.unit(200, "lbs"),
  5640. name: "Front",
  5641. image: {
  5642. source: "./media/characters/akari/front.svg",
  5643. extra: 962 / 901,
  5644. bottom: 0.04
  5645. }
  5646. }
  5647. },
  5648. [
  5649. {
  5650. name: "Micro",
  5651. height: math.unit(5, "inches"),
  5652. default: true
  5653. },
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(7, "feet")
  5657. },
  5658. ]
  5659. ))
  5660. characterMakers.push(() => makeCharacter(
  5661. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5662. {
  5663. front: {
  5664. height: math.unit(6, "feet"),
  5665. weight: math.unit(140, "lbs"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/cynosura/front.svg",
  5669. extra: 896 / 847
  5670. }
  5671. },
  5672. back: {
  5673. height: math.unit(6, "feet"),
  5674. weight: math.unit(140, "lbs"),
  5675. name: "Back",
  5676. image: {
  5677. source: "./media/characters/cynosura/back.svg",
  5678. extra: 1365 / 1250
  5679. }
  5680. },
  5681. },
  5682. [
  5683. {
  5684. name: "Micro",
  5685. height: math.unit(4, "inches")
  5686. },
  5687. {
  5688. name: "Normal",
  5689. height: math.unit(5.75, "feet"),
  5690. default: true
  5691. },
  5692. {
  5693. name: "Tall",
  5694. height: math.unit(10, "feet")
  5695. },
  5696. {
  5697. name: "Big",
  5698. height: math.unit(20, "feet")
  5699. },
  5700. {
  5701. name: "Macro",
  5702. height: math.unit(50, "feet")
  5703. },
  5704. ]
  5705. ))
  5706. characterMakers.push(() => makeCharacter(
  5707. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5708. {
  5709. front: {
  5710. height: math.unit(13 + 2/12, "feet"),
  5711. weight: math.unit(800, "kg"),
  5712. name: "Front",
  5713. image: {
  5714. source: "./media/characters/gin/front.svg",
  5715. extra: 1312/1191,
  5716. bottom: 45/1357
  5717. }
  5718. },
  5719. mouth: {
  5720. height: math.unit(2.39 * 1.8, "feet"),
  5721. name: "Mouth",
  5722. image: {
  5723. source: "./media/characters/gin/mouth.svg"
  5724. }
  5725. },
  5726. hand: {
  5727. height: math.unit(1.57 * 2.19, "feet"),
  5728. name: "Hand",
  5729. image: {
  5730. source: "./media/characters/gin/hand.svg"
  5731. }
  5732. },
  5733. foot: {
  5734. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5735. name: "Foot",
  5736. image: {
  5737. source: "./media/characters/gin/foot.svg"
  5738. }
  5739. },
  5740. sole: {
  5741. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5742. name: "Sole",
  5743. image: {
  5744. source: "./media/characters/gin/sole.svg"
  5745. }
  5746. },
  5747. },
  5748. [
  5749. {
  5750. name: "Very Small",
  5751. height: math.unit(13 + 2 / 12, "feet")
  5752. },
  5753. {
  5754. name: "Micro",
  5755. height: math.unit(600, "miles")
  5756. },
  5757. {
  5758. name: "Regular",
  5759. height: math.unit(20, "earths"),
  5760. default: true
  5761. },
  5762. {
  5763. name: "Macro",
  5764. height: math.unit(2.2, "solarradii")
  5765. },
  5766. {
  5767. name: "Teramacro",
  5768. height: math.unit(1.2, "galaxies")
  5769. },
  5770. {
  5771. name: "Omegamacro",
  5772. height: math.unit(200, "universes")
  5773. },
  5774. ]
  5775. ))
  5776. characterMakers.push(() => makeCharacter(
  5777. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5778. {
  5779. front: {
  5780. height: math.unit(6 + 1 / 6, "feet"),
  5781. weight: math.unit(178, "lbs"),
  5782. name: "Front",
  5783. image: {
  5784. source: "./media/characters/guy/front.svg"
  5785. }
  5786. }
  5787. },
  5788. [
  5789. {
  5790. name: "Normal",
  5791. height: math.unit(6 + 1 / 6, "feet"),
  5792. default: true
  5793. },
  5794. {
  5795. name: "Large",
  5796. height: math.unit(25 + 7 / 12, "feet")
  5797. },
  5798. {
  5799. name: "Macro",
  5800. height: math.unit(60 + 9 / 12, "feet")
  5801. },
  5802. {
  5803. name: "Macro+",
  5804. height: math.unit(246, "feet")
  5805. },
  5806. {
  5807. name: "Macro++",
  5808. height: math.unit(878, "feet")
  5809. }
  5810. ]
  5811. ))
  5812. characterMakers.push(() => makeCharacter(
  5813. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5814. {
  5815. front: {
  5816. height: math.unit(9, "feet"),
  5817. weight: math.unit(800, "lbs"),
  5818. name: "Front",
  5819. image: {
  5820. source: "./media/characters/tiberius/front.svg",
  5821. extra: 2295 / 2071
  5822. }
  5823. },
  5824. back: {
  5825. height: math.unit(9, "feet"),
  5826. weight: math.unit(800, "lbs"),
  5827. name: "Back",
  5828. image: {
  5829. source: "./media/characters/tiberius/back.svg",
  5830. extra: 2373 / 2160
  5831. }
  5832. },
  5833. },
  5834. [
  5835. {
  5836. name: "Normal",
  5837. height: math.unit(9, "feet"),
  5838. default: true
  5839. }
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5844. {
  5845. front: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(600, "lbs"),
  5848. name: "Front",
  5849. image: {
  5850. source: "./media/characters/surgo/front.svg",
  5851. extra: 3591 / 2227
  5852. }
  5853. },
  5854. back: {
  5855. height: math.unit(6, "feet"),
  5856. weight: math.unit(600, "lbs"),
  5857. name: "Back",
  5858. image: {
  5859. source: "./media/characters/surgo/back.svg",
  5860. extra: 3557 / 2228
  5861. }
  5862. },
  5863. laying: {
  5864. height: math.unit(6 * 0.85, "feet"),
  5865. weight: math.unit(600, "lbs"),
  5866. name: "Laying",
  5867. image: {
  5868. source: "./media/characters/surgo/laying.svg"
  5869. }
  5870. },
  5871. },
  5872. [
  5873. {
  5874. name: "Normal",
  5875. height: math.unit(6, "feet"),
  5876. default: true
  5877. }
  5878. ]
  5879. ))
  5880. characterMakers.push(() => makeCharacter(
  5881. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5882. {
  5883. side: {
  5884. height: math.unit(6, "feet"),
  5885. weight: math.unit(150, "lbs"),
  5886. name: "Side",
  5887. image: {
  5888. source: "./media/characters/cibus/side.svg",
  5889. extra: 800 / 400
  5890. }
  5891. },
  5892. },
  5893. [
  5894. {
  5895. name: "Normal",
  5896. height: math.unit(6, "feet"),
  5897. default: true
  5898. }
  5899. ]
  5900. ))
  5901. characterMakers.push(() => makeCharacter(
  5902. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5903. {
  5904. front: {
  5905. height: math.unit(6, "feet"),
  5906. weight: math.unit(240, "lbs"),
  5907. name: "Front",
  5908. image: {
  5909. source: "./media/characters/nibbles/front.svg"
  5910. }
  5911. },
  5912. side: {
  5913. height: math.unit(6, "feet"),
  5914. weight: math.unit(240, "lbs"),
  5915. name: "Side",
  5916. image: {
  5917. source: "./media/characters/nibbles/side.svg"
  5918. }
  5919. },
  5920. },
  5921. [
  5922. {
  5923. name: "Normal",
  5924. height: math.unit(9, "feet"),
  5925. default: true
  5926. }
  5927. ]
  5928. ))
  5929. characterMakers.push(() => makeCharacter(
  5930. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5931. {
  5932. side: {
  5933. height: math.unit(5 + 1 / 6, "feet"),
  5934. weight: math.unit(130, "lbs"),
  5935. name: "Side",
  5936. image: {
  5937. source: "./media/characters/rikky/side.svg",
  5938. extra: 851 / 801
  5939. }
  5940. },
  5941. },
  5942. [
  5943. {
  5944. name: "Normal",
  5945. height: math.unit(5 + 1 / 6, "feet")
  5946. },
  5947. {
  5948. name: "Macro",
  5949. height: math.unit(152, "feet"),
  5950. default: true
  5951. },
  5952. {
  5953. name: "Megamacro",
  5954. height: math.unit(7, "miles")
  5955. }
  5956. ]
  5957. ))
  5958. characterMakers.push(() => makeCharacter(
  5959. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5960. {
  5961. side: {
  5962. height: math.unit(370, "cm"),
  5963. weight: math.unit(350, "lbs"),
  5964. name: "Side",
  5965. image: {
  5966. source: "./media/characters/malfressa/side.svg"
  5967. }
  5968. },
  5969. walking: {
  5970. height: math.unit(370, "cm"),
  5971. weight: math.unit(350, "lbs"),
  5972. name: "Walking",
  5973. image: {
  5974. source: "./media/characters/malfressa/walking.svg"
  5975. }
  5976. },
  5977. feral: {
  5978. height: math.unit(2500, "cm"),
  5979. weight: math.unit(100000, "lbs"),
  5980. name: "Feral",
  5981. image: {
  5982. source: "./media/characters/malfressa/feral.svg",
  5983. extra: 2108 / 837,
  5984. bottom: 0.02
  5985. }
  5986. },
  5987. },
  5988. [
  5989. {
  5990. name: "Normal",
  5991. height: math.unit(370, "cm")
  5992. },
  5993. {
  5994. name: "Macro",
  5995. height: math.unit(300, "meters"),
  5996. default: true
  5997. }
  5998. ]
  5999. ))
  6000. characterMakers.push(() => makeCharacter(
  6001. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6002. {
  6003. front: {
  6004. height: math.unit(6, "feet"),
  6005. weight: math.unit(60, "kg"),
  6006. name: "Front",
  6007. image: {
  6008. source: "./media/characters/jaro/front.svg"
  6009. }
  6010. },
  6011. back: {
  6012. height: math.unit(6, "feet"),
  6013. weight: math.unit(60, "kg"),
  6014. name: "Back",
  6015. image: {
  6016. source: "./media/characters/jaro/back.svg"
  6017. }
  6018. },
  6019. },
  6020. [
  6021. {
  6022. name: "Micro",
  6023. height: math.unit(7, "inches")
  6024. },
  6025. {
  6026. name: "Normal",
  6027. height: math.unit(5.5, "feet"),
  6028. default: true
  6029. },
  6030. {
  6031. name: "Minimacro",
  6032. height: math.unit(20, "feet")
  6033. },
  6034. {
  6035. name: "Macro",
  6036. height: math.unit(200, "meters")
  6037. }
  6038. ]
  6039. ))
  6040. characterMakers.push(() => makeCharacter(
  6041. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6042. {
  6043. front: {
  6044. height: math.unit(6, "feet"),
  6045. weight: math.unit(195, "lb"),
  6046. name: "Front",
  6047. image: {
  6048. source: "./media/characters/rogue/front.svg"
  6049. }
  6050. },
  6051. },
  6052. [
  6053. {
  6054. name: "Macro",
  6055. height: math.unit(90, "feet"),
  6056. default: true
  6057. },
  6058. ]
  6059. ))
  6060. characterMakers.push(() => makeCharacter(
  6061. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6062. {
  6063. front: {
  6064. height: math.unit(5 + 8 / 12, "feet"),
  6065. weight: math.unit(140, "lb"),
  6066. name: "Front",
  6067. image: {
  6068. source: "./media/characters/piper/front.svg",
  6069. extra: 3948/3655,
  6070. bottom: 0/3948
  6071. }
  6072. },
  6073. },
  6074. [
  6075. {
  6076. name: "Micro",
  6077. height: math.unit(2, "inches")
  6078. },
  6079. {
  6080. name: "Normal",
  6081. height: math.unit(5 + 8 / 12, "feet")
  6082. },
  6083. {
  6084. name: "Macro",
  6085. height: math.unit(250, "feet"),
  6086. default: true
  6087. },
  6088. {
  6089. name: "Megamacro",
  6090. height: math.unit(7, "miles")
  6091. },
  6092. ]
  6093. ))
  6094. characterMakers.push(() => makeCharacter(
  6095. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6096. {
  6097. front: {
  6098. height: math.unit(6, "feet"),
  6099. weight: math.unit(220, "lb"),
  6100. name: "Front",
  6101. image: {
  6102. source: "./media/characters/gemini/front.svg"
  6103. }
  6104. },
  6105. back: {
  6106. height: math.unit(6, "feet"),
  6107. weight: math.unit(220, "lb"),
  6108. name: "Back",
  6109. image: {
  6110. source: "./media/characters/gemini/back.svg"
  6111. }
  6112. },
  6113. kneeling: {
  6114. height: math.unit(6 / 1.5, "feet"),
  6115. weight: math.unit(220, "lb"),
  6116. name: "Kneeling",
  6117. image: {
  6118. source: "./media/characters/gemini/kneeling.svg",
  6119. bottom: 0.02
  6120. }
  6121. },
  6122. },
  6123. [
  6124. {
  6125. name: "Macro",
  6126. height: math.unit(300, "meters"),
  6127. default: true
  6128. },
  6129. {
  6130. name: "Megamacro",
  6131. height: math.unit(6900, "meters")
  6132. },
  6133. ]
  6134. ))
  6135. characterMakers.push(() => makeCharacter(
  6136. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6137. {
  6138. anthro: {
  6139. height: math.unit(2.35, "meters"),
  6140. weight: math.unit(73, "kg"),
  6141. name: "Anthro",
  6142. image: {
  6143. source: "./media/characters/alicia/anthro.svg",
  6144. extra: 2571 / 2385,
  6145. bottom: 75 / 2648
  6146. }
  6147. },
  6148. paw: {
  6149. height: math.unit(1.32, "feet"),
  6150. name: "Paw",
  6151. image: {
  6152. source: "./media/characters/alicia/paw.svg"
  6153. }
  6154. },
  6155. feral: {
  6156. height: math.unit(1.69, "meters"),
  6157. weight: math.unit(73, "kg"),
  6158. name: "Feral",
  6159. image: {
  6160. source: "./media/characters/alicia/feral.svg",
  6161. extra: 2123 / 1715,
  6162. bottom: 222 / 2349
  6163. }
  6164. },
  6165. },
  6166. [
  6167. {
  6168. name: "Normal",
  6169. height: math.unit(2.35, "meters")
  6170. },
  6171. {
  6172. name: "Macro",
  6173. height: math.unit(60, "meters"),
  6174. default: true
  6175. },
  6176. {
  6177. name: "Megamacro",
  6178. height: math.unit(10000, "kilometers")
  6179. },
  6180. ]
  6181. ))
  6182. characterMakers.push(() => makeCharacter(
  6183. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6184. {
  6185. front: {
  6186. height: math.unit(7, "feet"),
  6187. weight: math.unit(250, "lbs"),
  6188. name: "Front",
  6189. image: {
  6190. source: "./media/characters/archy/front.svg"
  6191. }
  6192. }
  6193. },
  6194. [
  6195. {
  6196. name: "Micro",
  6197. height: math.unit(1, "inch")
  6198. },
  6199. {
  6200. name: "Shorty",
  6201. height: math.unit(5, "feet")
  6202. },
  6203. {
  6204. name: "Normal",
  6205. height: math.unit(7, "feet")
  6206. },
  6207. {
  6208. name: "Macro",
  6209. height: math.unit(600, "meters"),
  6210. default: true
  6211. },
  6212. {
  6213. name: "Megamacro",
  6214. height: math.unit(1, "mile")
  6215. },
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6220. {
  6221. front: {
  6222. height: math.unit(1.65, "meters"),
  6223. weight: math.unit(74, "kg"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/berri/front.svg",
  6227. extra: 857 / 837,
  6228. bottom: 18 / 877
  6229. }
  6230. },
  6231. bum: {
  6232. height: math.unit(1.46, "feet"),
  6233. name: "Bum",
  6234. image: {
  6235. source: "./media/characters/berri/bum.svg"
  6236. }
  6237. },
  6238. mouth: {
  6239. height: math.unit(0.44, "feet"),
  6240. name: "Mouth",
  6241. image: {
  6242. source: "./media/characters/berri/mouth.svg"
  6243. }
  6244. },
  6245. paw: {
  6246. height: math.unit(0.826, "feet"),
  6247. name: "Paw",
  6248. image: {
  6249. source: "./media/characters/berri/paw.svg"
  6250. }
  6251. },
  6252. },
  6253. [
  6254. {
  6255. name: "Normal",
  6256. height: math.unit(1.65, "meters")
  6257. },
  6258. {
  6259. name: "Macro",
  6260. height: math.unit(60, "m"),
  6261. default: true
  6262. },
  6263. {
  6264. name: "Megamacro",
  6265. height: math.unit(9.213, "km")
  6266. },
  6267. {
  6268. name: "Planet Eater",
  6269. height: math.unit(489, "megameters")
  6270. },
  6271. {
  6272. name: "Teramacro",
  6273. height: math.unit(2471635000000, "meters")
  6274. },
  6275. {
  6276. name: "Examacro",
  6277. height: math.unit(8.0624e+26, "meters")
  6278. }
  6279. ]
  6280. ))
  6281. characterMakers.push(() => makeCharacter(
  6282. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6283. {
  6284. front: {
  6285. height: math.unit(1.72, "meters"),
  6286. weight: math.unit(68, "kg"),
  6287. name: "Front",
  6288. image: {
  6289. source: "./media/characters/lexi/front.svg"
  6290. }
  6291. }
  6292. },
  6293. [
  6294. {
  6295. name: "Very Smol",
  6296. height: math.unit(10, "mm")
  6297. },
  6298. {
  6299. name: "Micro",
  6300. height: math.unit(6.8, "cm"),
  6301. default: true
  6302. },
  6303. {
  6304. name: "Normal",
  6305. height: math.unit(1.72, "m")
  6306. }
  6307. ]
  6308. ))
  6309. characterMakers.push(() => makeCharacter(
  6310. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6311. {
  6312. front: {
  6313. height: math.unit(1.69, "meters"),
  6314. weight: math.unit(68, "kg"),
  6315. name: "Front",
  6316. image: {
  6317. source: "./media/characters/martin/front.svg",
  6318. extra: 596 / 581
  6319. }
  6320. }
  6321. },
  6322. [
  6323. {
  6324. name: "Micro",
  6325. height: math.unit(6.85, "cm"),
  6326. default: true
  6327. },
  6328. {
  6329. name: "Normal",
  6330. height: math.unit(1.69, "m")
  6331. }
  6332. ]
  6333. ))
  6334. characterMakers.push(() => makeCharacter(
  6335. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6336. {
  6337. front: {
  6338. height: math.unit(1.69, "meters"),
  6339. weight: math.unit(68, "kg"),
  6340. name: "Front",
  6341. image: {
  6342. source: "./media/characters/juno/front.svg"
  6343. }
  6344. }
  6345. },
  6346. [
  6347. {
  6348. name: "Micro",
  6349. height: math.unit(7, "cm")
  6350. },
  6351. {
  6352. name: "Normal",
  6353. height: math.unit(1.89, "m")
  6354. },
  6355. {
  6356. name: "Macro",
  6357. height: math.unit(353, "meters"),
  6358. default: true
  6359. }
  6360. ]
  6361. ))
  6362. characterMakers.push(() => makeCharacter(
  6363. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6364. {
  6365. front: {
  6366. height: math.unit(1.93, "meters"),
  6367. weight: math.unit(83, "kg"),
  6368. name: "Front",
  6369. image: {
  6370. source: "./media/characters/samantha/front.svg"
  6371. }
  6372. },
  6373. frontClothed: {
  6374. height: math.unit(1.93, "meters"),
  6375. weight: math.unit(83, "kg"),
  6376. name: "Front (Clothed)",
  6377. image: {
  6378. source: "./media/characters/samantha/front-clothed.svg"
  6379. }
  6380. },
  6381. back: {
  6382. height: math.unit(1.93, "meters"),
  6383. weight: math.unit(83, "kg"),
  6384. name: "Back",
  6385. image: {
  6386. source: "./media/characters/samantha/back.svg"
  6387. }
  6388. },
  6389. },
  6390. [
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(1.93, "m")
  6394. },
  6395. {
  6396. name: "Macro",
  6397. height: math.unit(74, "meters"),
  6398. default: true
  6399. },
  6400. {
  6401. name: "Macro+",
  6402. height: math.unit(223, "meters"),
  6403. },
  6404. {
  6405. name: "Megamacro",
  6406. height: math.unit(8381, "meters"),
  6407. },
  6408. {
  6409. name: "Megamacro+",
  6410. height: math.unit(12000, "kilometers")
  6411. },
  6412. ]
  6413. ))
  6414. characterMakers.push(() => makeCharacter(
  6415. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6416. {
  6417. front: {
  6418. height: math.unit(1.92, "meters"),
  6419. weight: math.unit(80, "kg"),
  6420. name: "Front",
  6421. image: {
  6422. source: "./media/characters/dr-clay/front.svg"
  6423. }
  6424. },
  6425. frontClothed: {
  6426. height: math.unit(1.92, "meters"),
  6427. weight: math.unit(80, "kg"),
  6428. name: "Front (Clothed)",
  6429. image: {
  6430. source: "./media/characters/dr-clay/front-clothed.svg"
  6431. }
  6432. }
  6433. },
  6434. [
  6435. {
  6436. name: "Normal",
  6437. height: math.unit(1.92, "m")
  6438. },
  6439. {
  6440. name: "Macro",
  6441. height: math.unit(214, "meters"),
  6442. default: true
  6443. },
  6444. {
  6445. name: "Macro+",
  6446. height: math.unit(12.237, "meters"),
  6447. },
  6448. {
  6449. name: "Megamacro",
  6450. height: math.unit(557, "megameters"),
  6451. },
  6452. {
  6453. name: "Unimaginable",
  6454. height: math.unit(120e9, "lightyears")
  6455. },
  6456. ]
  6457. ))
  6458. characterMakers.push(() => makeCharacter(
  6459. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6460. {
  6461. front: {
  6462. height: math.unit(2, "meters"),
  6463. weight: math.unit(80, "kg"),
  6464. name: "Front",
  6465. image: {
  6466. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6467. }
  6468. }
  6469. },
  6470. [
  6471. {
  6472. name: "Teramacro",
  6473. height: math.unit(500000, "lightyears"),
  6474. default: true
  6475. },
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(2, "meters"),
  6483. weight: math.unit(150, "kg"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/vemus/front.svg",
  6487. extra: 1074/936,
  6488. bottom: 23/1097
  6489. }
  6490. }
  6491. },
  6492. [
  6493. {
  6494. name: "Normal",
  6495. height: math.unit(3.75, "meters"),
  6496. default: true
  6497. },
  6498. {
  6499. name: "Big",
  6500. height: math.unit(8, "meters")
  6501. },
  6502. {
  6503. name: "Macro",
  6504. height: math.unit(100, "meters")
  6505. },
  6506. {
  6507. name: "Macro+",
  6508. height: math.unit(1500, "meters")
  6509. },
  6510. {
  6511. name: "Stellar",
  6512. height: math.unit(14e8, "meters")
  6513. },
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6518. {
  6519. front: {
  6520. height: math.unit(2, "meters"),
  6521. weight: math.unit(70, "kg"),
  6522. name: "Front",
  6523. image: {
  6524. source: "./media/characters/beherit/front.svg",
  6525. extra: 1408 / 1242
  6526. }
  6527. }
  6528. },
  6529. [
  6530. {
  6531. name: "Normal",
  6532. height: math.unit(6, "feet")
  6533. },
  6534. {
  6535. name: "Lorg",
  6536. height: math.unit(25, "feet"),
  6537. default: true
  6538. },
  6539. {
  6540. name: "Lorger",
  6541. height: math.unit(75, "feet")
  6542. },
  6543. {
  6544. name: "Macro",
  6545. height: math.unit(200, "meters")
  6546. },
  6547. ]
  6548. ))
  6549. characterMakers.push(() => makeCharacter(
  6550. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6551. {
  6552. front: {
  6553. height: math.unit(2, "meters"),
  6554. weight: math.unit(150, "kg"),
  6555. name: "Front",
  6556. image: {
  6557. source: "./media/characters/everett/front.svg",
  6558. extra: 2038 / 1737,
  6559. bottom: 0.03
  6560. }
  6561. },
  6562. paw: {
  6563. height: math.unit(2 / 3.6, "meters"),
  6564. name: "Paw",
  6565. image: {
  6566. source: "./media/characters/everett/paw.svg"
  6567. }
  6568. },
  6569. },
  6570. [
  6571. {
  6572. name: "Normal",
  6573. height: math.unit(15, "feet"),
  6574. default: true
  6575. },
  6576. {
  6577. name: "Lorg",
  6578. height: math.unit(70, "feet"),
  6579. default: true
  6580. },
  6581. {
  6582. name: "Lorger",
  6583. height: math.unit(250, "feet")
  6584. },
  6585. {
  6586. name: "Macro",
  6587. height: math.unit(500, "meters")
  6588. },
  6589. ]
  6590. ))
  6591. characterMakers.push(() => makeCharacter(
  6592. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6593. {
  6594. front: {
  6595. height: math.unit(2, "meters"),
  6596. weight: math.unit(86, "kg"),
  6597. name: "Front",
  6598. image: {
  6599. source: "./media/characters/rose/front.svg",
  6600. extra: 1785/1636,
  6601. bottom: 30/1815
  6602. }
  6603. },
  6604. frontSporty: {
  6605. height: math.unit(2, "meters"),
  6606. weight: math.unit(86, "kg"),
  6607. name: "Front (Sporty)",
  6608. image: {
  6609. source: "./media/characters/rose/front-sporty.svg",
  6610. extra: 350/335,
  6611. bottom: 10/360
  6612. }
  6613. },
  6614. frontAlt: {
  6615. height: math.unit(1.6, "meters"),
  6616. weight: math.unit(86, "kg"),
  6617. name: "Front (Alt)",
  6618. image: {
  6619. source: "./media/characters/rose/front-alt.svg",
  6620. extra: 299/283,
  6621. bottom: 3/302
  6622. }
  6623. },
  6624. plush: {
  6625. height: math.unit(2, "meters"),
  6626. weight: math.unit(86/3, "kg"),
  6627. name: "Plush",
  6628. image: {
  6629. source: "./media/characters/rose/plush.svg",
  6630. extra: 361/337,
  6631. bottom: 11/372
  6632. }
  6633. },
  6634. },
  6635. [
  6636. {
  6637. name: "True Micro",
  6638. height: math.unit(9, "cm")
  6639. },
  6640. {
  6641. name: "Micro",
  6642. height: math.unit(16, "cm")
  6643. },
  6644. {
  6645. name: "Normal",
  6646. height: math.unit(1.85, "meters"),
  6647. default: true
  6648. },
  6649. {
  6650. name: "Mini-Macro",
  6651. height: math.unit(5, "meters")
  6652. },
  6653. {
  6654. name: "Macro",
  6655. height: math.unit(15, "meters")
  6656. },
  6657. {
  6658. name: "True Macro",
  6659. height: math.unit(40, "meters")
  6660. },
  6661. {
  6662. name: "City Scale",
  6663. height: math.unit(1, "km")
  6664. },
  6665. ]
  6666. ))
  6667. characterMakers.push(() => makeCharacter(
  6668. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6669. {
  6670. front: {
  6671. height: math.unit(2, "meters"),
  6672. weight: math.unit(350, "lbs"),
  6673. name: "Front",
  6674. image: {
  6675. source: "./media/characters/regal/front.svg"
  6676. }
  6677. },
  6678. back: {
  6679. height: math.unit(2, "meters"),
  6680. weight: math.unit(350, "lbs"),
  6681. name: "Back",
  6682. image: {
  6683. source: "./media/characters/regal/back.svg"
  6684. }
  6685. },
  6686. },
  6687. [
  6688. {
  6689. name: "Macro",
  6690. height: math.unit(350, "feet"),
  6691. default: true
  6692. }
  6693. ]
  6694. ))
  6695. characterMakers.push(() => makeCharacter(
  6696. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6697. {
  6698. front: {
  6699. height: math.unit(4 + 11 / 12, "feet"),
  6700. weight: math.unit(100, "lbs"),
  6701. name: "Front",
  6702. image: {
  6703. source: "./media/characters/opal/front.svg"
  6704. }
  6705. },
  6706. frontAlt: {
  6707. height: math.unit(4 + 11 / 12, "feet"),
  6708. weight: math.unit(100, "lbs"),
  6709. name: "Front (Alt)",
  6710. image: {
  6711. source: "./media/characters/opal/front-alt.svg"
  6712. }
  6713. },
  6714. },
  6715. [
  6716. {
  6717. name: "Small",
  6718. height: math.unit(4 + 11 / 12, "feet")
  6719. },
  6720. {
  6721. name: "Normal",
  6722. height: math.unit(20, "feet"),
  6723. default: true
  6724. },
  6725. {
  6726. name: "Macro",
  6727. height: math.unit(120, "feet")
  6728. },
  6729. {
  6730. name: "Megamacro",
  6731. height: math.unit(80, "miles")
  6732. },
  6733. {
  6734. name: "True Size",
  6735. height: math.unit(100000, "lightyears")
  6736. },
  6737. ]
  6738. ))
  6739. characterMakers.push(() => makeCharacter(
  6740. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6741. {
  6742. front: {
  6743. height: math.unit(6, "feet"),
  6744. weight: math.unit(200, "lbs"),
  6745. name: "Front",
  6746. image: {
  6747. source: "./media/characters/vector-wuff/front.svg"
  6748. }
  6749. }
  6750. },
  6751. [
  6752. {
  6753. name: "Normal",
  6754. height: math.unit(2.8, "meters")
  6755. },
  6756. {
  6757. name: "Macro",
  6758. height: math.unit(450, "meters"),
  6759. default: true
  6760. },
  6761. {
  6762. name: "Megamacro",
  6763. height: math.unit(15, "kilometers")
  6764. }
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6769. {
  6770. front: {
  6771. height: math.unit(6, "feet"),
  6772. weight: math.unit(256, "lbs"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/dannik/front.svg"
  6776. }
  6777. }
  6778. },
  6779. [
  6780. {
  6781. name: "Macro",
  6782. height: math.unit(69.57, "meters"),
  6783. default: true
  6784. },
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6789. {
  6790. front: {
  6791. height: math.unit(6, "feet"),
  6792. weight: math.unit(120, "lbs"),
  6793. name: "Front",
  6794. image: {
  6795. source: "./media/characters/azura-saharah/front.svg"
  6796. }
  6797. },
  6798. back: {
  6799. height: math.unit(6, "feet"),
  6800. weight: math.unit(120, "lbs"),
  6801. name: "Back",
  6802. image: {
  6803. source: "./media/characters/azura-saharah/back.svg"
  6804. }
  6805. },
  6806. },
  6807. [
  6808. {
  6809. name: "Macro",
  6810. height: math.unit(100, "feet"),
  6811. default: true
  6812. },
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6817. {
  6818. side: {
  6819. height: math.unit(5 + 4 / 12, "feet"),
  6820. weight: math.unit(163, "lbs"),
  6821. name: "Side",
  6822. image: {
  6823. source: "./media/characters/kennedy/side.svg"
  6824. }
  6825. }
  6826. },
  6827. [
  6828. {
  6829. name: "Standard Doggo",
  6830. height: math.unit(5 + 4 / 12, "feet")
  6831. },
  6832. {
  6833. name: "Big Doggo",
  6834. height: math.unit(25 + 3 / 12, "feet"),
  6835. default: true
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(6, "feet"),
  6844. weight: math.unit(90, "lbs"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/odi-lunar/front.svg"
  6848. }
  6849. }
  6850. },
  6851. [
  6852. {
  6853. name: "Micro",
  6854. height: math.unit(3, "inches"),
  6855. default: true
  6856. },
  6857. {
  6858. name: "Normal",
  6859. height: math.unit(5.5, "feet")
  6860. }
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6865. {
  6866. back: {
  6867. height: math.unit(6, "feet"),
  6868. weight: math.unit(220, "lbs"),
  6869. name: "Back",
  6870. image: {
  6871. source: "./media/characters/mandake/back.svg"
  6872. }
  6873. }
  6874. },
  6875. [
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(7, "feet"),
  6879. default: true
  6880. },
  6881. {
  6882. name: "Macro",
  6883. height: math.unit(78, "feet")
  6884. },
  6885. {
  6886. name: "Macro+",
  6887. height: math.unit(300, "meters")
  6888. },
  6889. {
  6890. name: "Macro++",
  6891. height: math.unit(2400, "feet")
  6892. },
  6893. {
  6894. name: "Megamacro",
  6895. height: math.unit(5167, "meters")
  6896. },
  6897. {
  6898. name: "Gigamacro",
  6899. height: math.unit(41769, "miles")
  6900. },
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6905. {
  6906. front: {
  6907. height: math.unit(6, "feet"),
  6908. weight: math.unit(120, "lbs"),
  6909. name: "Front",
  6910. image: {
  6911. source: "./media/characters/yozey/front.svg"
  6912. }
  6913. },
  6914. frontAlt: {
  6915. height: math.unit(6, "feet"),
  6916. weight: math.unit(120, "lbs"),
  6917. name: "Front (Alt)",
  6918. image: {
  6919. source: "./media/characters/yozey/front-alt.svg"
  6920. }
  6921. },
  6922. side: {
  6923. height: math.unit(6, "feet"),
  6924. weight: math.unit(120, "lbs"),
  6925. name: "Side",
  6926. image: {
  6927. source: "./media/characters/yozey/side.svg"
  6928. }
  6929. },
  6930. },
  6931. [
  6932. {
  6933. name: "Micro",
  6934. height: math.unit(3, "inches"),
  6935. default: true
  6936. },
  6937. {
  6938. name: "Normal",
  6939. height: math.unit(6, "feet")
  6940. }
  6941. ]
  6942. ))
  6943. characterMakers.push(() => makeCharacter(
  6944. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6945. {
  6946. front: {
  6947. height: math.unit(6, "feet"),
  6948. weight: math.unit(103, "lbs"),
  6949. name: "Front",
  6950. image: {
  6951. source: "./media/characters/valeska-voss/front.svg"
  6952. }
  6953. }
  6954. },
  6955. [
  6956. {
  6957. name: "Mini-Sized Sub",
  6958. height: math.unit(3.1, "inches")
  6959. },
  6960. {
  6961. name: "Mid-Sized Sub",
  6962. height: math.unit(6.2, "inches")
  6963. },
  6964. {
  6965. name: "Full-Sized Sub",
  6966. height: math.unit(9.3, "inches")
  6967. },
  6968. {
  6969. name: "Normal",
  6970. height: math.unit(5 + 2 / 12, "foot"),
  6971. default: true
  6972. },
  6973. ]
  6974. ))
  6975. characterMakers.push(() => makeCharacter(
  6976. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6977. {
  6978. front: {
  6979. height: math.unit(6, "feet"),
  6980. weight: math.unit(160, "lbs"),
  6981. name: "Front",
  6982. image: {
  6983. source: "./media/characters/gene-zeta/front.svg",
  6984. extra: 3006 / 2826,
  6985. bottom: 182 / 3188
  6986. }
  6987. }
  6988. },
  6989. [
  6990. {
  6991. name: "Micro",
  6992. height: math.unit(6, "inches")
  6993. },
  6994. {
  6995. name: "Normal",
  6996. height: math.unit(5 + 11 / 12, "foot"),
  6997. default: true
  6998. },
  6999. {
  7000. name: "Macro",
  7001. height: math.unit(140, "feet")
  7002. },
  7003. {
  7004. name: "Supercharged",
  7005. height: math.unit(2500, "feet")
  7006. },
  7007. ]
  7008. ))
  7009. characterMakers.push(() => makeCharacter(
  7010. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7011. {
  7012. front: {
  7013. height: math.unit(6, "feet"),
  7014. weight: math.unit(350, "lbs"),
  7015. name: "Front",
  7016. image: {
  7017. source: "./media/characters/razinox/front.svg",
  7018. extra: 1686 / 1548,
  7019. bottom: 28.2 / 1868
  7020. }
  7021. },
  7022. back: {
  7023. height: math.unit(6, "feet"),
  7024. weight: math.unit(350, "lbs"),
  7025. name: "Back",
  7026. image: {
  7027. source: "./media/characters/razinox/back.svg",
  7028. extra: 1660 / 1590,
  7029. bottom: 15 / 1665
  7030. }
  7031. },
  7032. },
  7033. [
  7034. {
  7035. name: "Normal",
  7036. height: math.unit(10 + 8 / 12, "foot")
  7037. },
  7038. {
  7039. name: "Minimacro",
  7040. height: math.unit(15, "foot")
  7041. },
  7042. {
  7043. name: "Macro",
  7044. height: math.unit(60, "foot"),
  7045. default: true
  7046. },
  7047. {
  7048. name: "Megamacro",
  7049. height: math.unit(5, "miles")
  7050. },
  7051. {
  7052. name: "Gigamacro",
  7053. height: math.unit(6000, "miles")
  7054. },
  7055. ]
  7056. ))
  7057. characterMakers.push(() => makeCharacter(
  7058. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7059. {
  7060. front: {
  7061. height: math.unit(6, "feet"),
  7062. weight: math.unit(150, "lbs"),
  7063. name: "Front",
  7064. image: {
  7065. source: "./media/characters/cobalt/front.svg"
  7066. }
  7067. }
  7068. },
  7069. [
  7070. {
  7071. name: "Normal",
  7072. height: math.unit(8 + 1 / 12, "foot")
  7073. },
  7074. {
  7075. name: "Macro",
  7076. height: math.unit(111, "foot"),
  7077. default: true
  7078. },
  7079. {
  7080. name: "Supracosmic",
  7081. height: math.unit(1e42, "feet")
  7082. },
  7083. ]
  7084. ))
  7085. characterMakers.push(() => makeCharacter(
  7086. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7087. {
  7088. front: {
  7089. height: math.unit(6, "feet"),
  7090. weight: math.unit(140, "lbs"),
  7091. name: "Front",
  7092. image: {
  7093. source: "./media/characters/amanda/front.svg"
  7094. }
  7095. }
  7096. },
  7097. [
  7098. {
  7099. name: "Micro",
  7100. height: math.unit(5, "inches"),
  7101. default: true
  7102. },
  7103. ]
  7104. ))
  7105. characterMakers.push(() => makeCharacter(
  7106. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7107. {
  7108. front: {
  7109. height: math.unit(2.75, "meters"),
  7110. weight: math.unit(1200, "lb"),
  7111. name: "Front",
  7112. image: {
  7113. source: "./media/characters/teal/front.svg",
  7114. extra: 2463 / 2320,
  7115. bottom: 166 / 2629
  7116. }
  7117. },
  7118. back: {
  7119. height: math.unit(2.75, "meters"),
  7120. weight: math.unit(1200, "lb"),
  7121. name: "Back",
  7122. image: {
  7123. source: "./media/characters/teal/back.svg",
  7124. extra: 2580 / 2489,
  7125. bottom: 151 / 2731
  7126. }
  7127. },
  7128. sitting: {
  7129. height: math.unit(1.9, "meters"),
  7130. weight: math.unit(1200, "lb"),
  7131. name: "Sitting",
  7132. image: {
  7133. source: "./media/characters/teal/sitting.svg",
  7134. extra: 623 / 590,
  7135. bottom: 121 / 744
  7136. }
  7137. },
  7138. standing: {
  7139. height: math.unit(2.75, "meters"),
  7140. weight: math.unit(1200, "lb"),
  7141. name: "Standing",
  7142. image: {
  7143. source: "./media/characters/teal/standing.svg",
  7144. extra: 923 / 893,
  7145. bottom: 60 / 983
  7146. }
  7147. },
  7148. stretching: {
  7149. height: math.unit(3.65, "meters"),
  7150. weight: math.unit(1200, "lb"),
  7151. name: "Stretching",
  7152. image: {
  7153. source: "./media/characters/teal/stretching.svg",
  7154. extra: 1276 / 1244,
  7155. bottom: 0 / 1276
  7156. }
  7157. },
  7158. legged: {
  7159. height: math.unit(1.3, "meters"),
  7160. weight: math.unit(100, "lb"),
  7161. name: "Legged",
  7162. image: {
  7163. source: "./media/characters/teal/legged.svg",
  7164. extra: 462 / 437,
  7165. bottom: 24 / 486
  7166. }
  7167. },
  7168. naga: {
  7169. height: math.unit(5.4, "meters"),
  7170. weight: math.unit(4000, "lb"),
  7171. name: "Naga",
  7172. image: {
  7173. source: "./media/characters/teal/naga.svg",
  7174. extra: 1902 / 1858,
  7175. bottom: 0 / 1902
  7176. }
  7177. },
  7178. hand: {
  7179. height: math.unit(0.52, "meters"),
  7180. name: "Hand",
  7181. image: {
  7182. source: "./media/characters/teal/hand.svg"
  7183. }
  7184. },
  7185. maw: {
  7186. height: math.unit(0.43, "meters"),
  7187. name: "Maw",
  7188. image: {
  7189. source: "./media/characters/teal/maw.svg"
  7190. }
  7191. },
  7192. slit: {
  7193. height: math.unit(0.25, "meters"),
  7194. name: "Slit",
  7195. image: {
  7196. source: "./media/characters/teal/slit.svg"
  7197. }
  7198. },
  7199. },
  7200. [
  7201. {
  7202. name: "Normal",
  7203. height: math.unit(2.75, "meters"),
  7204. default: true
  7205. },
  7206. {
  7207. name: "Macro",
  7208. height: math.unit(300, "feet")
  7209. },
  7210. {
  7211. name: "Macro+",
  7212. height: math.unit(2000, "feet")
  7213. },
  7214. ]
  7215. ))
  7216. characterMakers.push(() => makeCharacter(
  7217. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7218. {
  7219. frontCat: {
  7220. height: math.unit(6, "feet"),
  7221. weight: math.unit(180, "lbs"),
  7222. name: "Front (Cat)",
  7223. image: {
  7224. source: "./media/characters/ravin-amulet/front-cat.svg"
  7225. }
  7226. },
  7227. frontCatAlt: {
  7228. height: math.unit(6, "feet"),
  7229. weight: math.unit(180, "lbs"),
  7230. name: "Front (Alt, Cat)",
  7231. image: {
  7232. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7233. }
  7234. },
  7235. frontWerewolf: {
  7236. height: math.unit(6 * 1.2, "feet"),
  7237. weight: math.unit(225, "lbs"),
  7238. name: "Front (Werewolf)",
  7239. image: {
  7240. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7241. }
  7242. },
  7243. backWerewolf: {
  7244. height: math.unit(6 * 1.2, "feet"),
  7245. weight: math.unit(225, "lbs"),
  7246. name: "Back (Werewolf)",
  7247. image: {
  7248. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7249. }
  7250. },
  7251. },
  7252. [
  7253. {
  7254. name: "Nano",
  7255. height: math.unit(1, "micrometer")
  7256. },
  7257. {
  7258. name: "Micro",
  7259. height: math.unit(1, "inch")
  7260. },
  7261. {
  7262. name: "Normal",
  7263. height: math.unit(6, "feet"),
  7264. default: true
  7265. },
  7266. {
  7267. name: "Macro",
  7268. height: math.unit(60, "feet")
  7269. }
  7270. ]
  7271. ))
  7272. characterMakers.push(() => makeCharacter(
  7273. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7274. {
  7275. front: {
  7276. height: math.unit(6, "feet"),
  7277. weight: math.unit(165, "lbs"),
  7278. name: "Front",
  7279. image: {
  7280. source: "./media/characters/fluoresce/front.svg"
  7281. }
  7282. }
  7283. },
  7284. [
  7285. {
  7286. name: "Micro",
  7287. height: math.unit(6, "cm")
  7288. },
  7289. {
  7290. name: "Normal",
  7291. height: math.unit(5 + 7 / 12, "feet"),
  7292. default: true
  7293. },
  7294. {
  7295. name: "Macro",
  7296. height: math.unit(56, "feet")
  7297. },
  7298. {
  7299. name: "Megamacro",
  7300. height: math.unit(1.9, "miles")
  7301. },
  7302. ]
  7303. ))
  7304. characterMakers.push(() => makeCharacter(
  7305. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7306. {
  7307. front: {
  7308. height: math.unit(9 + 6 / 12, "feet"),
  7309. weight: math.unit(523, "lbs"),
  7310. name: "Side",
  7311. image: {
  7312. source: "./media/characters/aurora/side.svg"
  7313. }
  7314. }
  7315. },
  7316. [
  7317. {
  7318. name: "Normal",
  7319. height: math.unit(9 + 6 / 12, "feet")
  7320. },
  7321. {
  7322. name: "Macro",
  7323. height: math.unit(96, "feet"),
  7324. default: true
  7325. },
  7326. {
  7327. name: "Macro+",
  7328. height: math.unit(243, "feet")
  7329. },
  7330. ]
  7331. ))
  7332. characterMakers.push(() => makeCharacter(
  7333. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7334. {
  7335. front: {
  7336. height: math.unit(194, "cm"),
  7337. weight: math.unit(90, "kg"),
  7338. name: "Front",
  7339. image: {
  7340. source: "./media/characters/ranek/front.svg"
  7341. }
  7342. },
  7343. side: {
  7344. height: math.unit(194, "cm"),
  7345. weight: math.unit(90, "kg"),
  7346. name: "Side",
  7347. image: {
  7348. source: "./media/characters/ranek/side.svg"
  7349. }
  7350. },
  7351. back: {
  7352. height: math.unit(194, "cm"),
  7353. weight: math.unit(90, "kg"),
  7354. name: "Back",
  7355. image: {
  7356. source: "./media/characters/ranek/back.svg"
  7357. }
  7358. },
  7359. feral: {
  7360. height: math.unit(30, "cm"),
  7361. weight: math.unit(1.6, "lbs"),
  7362. name: "Feral",
  7363. image: {
  7364. source: "./media/characters/ranek/feral.svg"
  7365. }
  7366. },
  7367. },
  7368. [
  7369. {
  7370. name: "Normal",
  7371. height: math.unit(194, "cm"),
  7372. default: true
  7373. },
  7374. {
  7375. name: "Macro",
  7376. height: math.unit(100, "meters")
  7377. },
  7378. ]
  7379. ))
  7380. characterMakers.push(() => makeCharacter(
  7381. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7382. {
  7383. front: {
  7384. height: math.unit(5 + 6 / 12, "feet"),
  7385. weight: math.unit(153, "lbs"),
  7386. name: "Front",
  7387. image: {
  7388. source: "./media/characters/andrew-cooper/front.svg"
  7389. }
  7390. },
  7391. },
  7392. [
  7393. {
  7394. name: "Nano",
  7395. height: math.unit(1, "mm")
  7396. },
  7397. {
  7398. name: "Micro",
  7399. height: math.unit(2, "inches")
  7400. },
  7401. {
  7402. name: "Normal",
  7403. height: math.unit(5 + 6 / 12, "feet"),
  7404. default: true
  7405. }
  7406. ]
  7407. ))
  7408. characterMakers.push(() => makeCharacter(
  7409. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7410. {
  7411. front: {
  7412. height: math.unit(6, "feet"),
  7413. weight: math.unit(180, "lbs"),
  7414. name: "Front",
  7415. image: {
  7416. source: "./media/characters/akane-sato/front.svg",
  7417. extra: 1219 / 1140
  7418. }
  7419. },
  7420. back: {
  7421. height: math.unit(6, "feet"),
  7422. weight: math.unit(180, "lbs"),
  7423. name: "Back",
  7424. image: {
  7425. source: "./media/characters/akane-sato/back.svg",
  7426. extra: 1219 / 1170
  7427. }
  7428. },
  7429. },
  7430. [
  7431. {
  7432. name: "Normal",
  7433. height: math.unit(2.5, "meters")
  7434. },
  7435. {
  7436. name: "Macro",
  7437. height: math.unit(250, "meters"),
  7438. default: true
  7439. },
  7440. {
  7441. name: "Megamacro",
  7442. height: math.unit(25, "km")
  7443. },
  7444. ]
  7445. ))
  7446. characterMakers.push(() => makeCharacter(
  7447. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7448. {
  7449. front: {
  7450. height: math.unit(6, "feet"),
  7451. weight: math.unit(65, "kg"),
  7452. name: "Front",
  7453. image: {
  7454. source: "./media/characters/rook/front.svg",
  7455. extra: 960 / 950
  7456. }
  7457. }
  7458. },
  7459. [
  7460. {
  7461. name: "Normal",
  7462. height: math.unit(8.8, "feet")
  7463. },
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(88, "feet"),
  7467. default: true
  7468. },
  7469. {
  7470. name: "Megamacro",
  7471. height: math.unit(8, "miles")
  7472. },
  7473. ]
  7474. ))
  7475. characterMakers.push(() => makeCharacter(
  7476. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7477. {
  7478. front: {
  7479. height: math.unit(12 + 2 / 12, "feet"),
  7480. weight: math.unit(808, "lbs"),
  7481. name: "Front",
  7482. image: {
  7483. source: "./media/characters/prodigy/front.svg"
  7484. }
  7485. }
  7486. },
  7487. [
  7488. {
  7489. name: "Normal",
  7490. height: math.unit(12 + 2 / 12, "feet"),
  7491. default: true
  7492. },
  7493. {
  7494. name: "Macro",
  7495. height: math.unit(143, "feet")
  7496. },
  7497. {
  7498. name: "Macro+",
  7499. height: math.unit(400, "feet")
  7500. },
  7501. ]
  7502. ))
  7503. characterMakers.push(() => makeCharacter(
  7504. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7505. {
  7506. front: {
  7507. height: math.unit(6, "feet"),
  7508. weight: math.unit(225, "lbs"),
  7509. name: "Front",
  7510. image: {
  7511. source: "./media/characters/daniel/front.svg"
  7512. }
  7513. },
  7514. leaning: {
  7515. height: math.unit(6, "feet"),
  7516. weight: math.unit(225, "lbs"),
  7517. name: "Leaning",
  7518. image: {
  7519. source: "./media/characters/daniel/leaning.svg"
  7520. }
  7521. },
  7522. },
  7523. [
  7524. {
  7525. name: "Macro",
  7526. height: math.unit(1000, "feet"),
  7527. default: true
  7528. },
  7529. ]
  7530. ))
  7531. characterMakers.push(() => makeCharacter(
  7532. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7533. {
  7534. front: {
  7535. height: math.unit(6, "feet"),
  7536. weight: math.unit(88, "lbs"),
  7537. name: "Front",
  7538. image: {
  7539. source: "./media/characters/chiros/front.svg",
  7540. extra: 306 / 226
  7541. }
  7542. },
  7543. side: {
  7544. height: math.unit(6, "feet"),
  7545. weight: math.unit(88, "lbs"),
  7546. name: "Side",
  7547. image: {
  7548. source: "./media/characters/chiros/side.svg",
  7549. extra: 306 / 226
  7550. }
  7551. },
  7552. },
  7553. [
  7554. {
  7555. name: "Normal",
  7556. height: math.unit(6, "cm"),
  7557. default: true
  7558. },
  7559. ]
  7560. ))
  7561. characterMakers.push(() => makeCharacter(
  7562. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7563. {
  7564. front: {
  7565. height: math.unit(6, "feet"),
  7566. weight: math.unit(100, "lbs"),
  7567. name: "Front",
  7568. image: {
  7569. source: "./media/characters/selka/front.svg",
  7570. extra: 947 / 887
  7571. }
  7572. }
  7573. },
  7574. [
  7575. {
  7576. name: "Normal",
  7577. height: math.unit(5, "cm"),
  7578. default: true
  7579. },
  7580. ]
  7581. ))
  7582. characterMakers.push(() => makeCharacter(
  7583. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7584. {
  7585. front: {
  7586. height: math.unit(8 + 3 / 12, "feet"),
  7587. weight: math.unit(424, "lbs"),
  7588. name: "Front",
  7589. image: {
  7590. source: "./media/characters/verin/front.svg",
  7591. extra: 1845 / 1550
  7592. }
  7593. },
  7594. frontArmored: {
  7595. height: math.unit(8 + 3 / 12, "feet"),
  7596. weight: math.unit(424, "lbs"),
  7597. name: "Front (Armored)",
  7598. image: {
  7599. source: "./media/characters/verin/front-armor.svg",
  7600. extra: 1845 / 1550,
  7601. bottom: 0.01
  7602. }
  7603. },
  7604. back: {
  7605. height: math.unit(8 + 3 / 12, "feet"),
  7606. weight: math.unit(424, "lbs"),
  7607. name: "Back",
  7608. image: {
  7609. source: "./media/characters/verin/back.svg",
  7610. bottom: 0.1,
  7611. extra: 1
  7612. }
  7613. },
  7614. foot: {
  7615. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7616. name: "Foot",
  7617. image: {
  7618. source: "./media/characters/verin/foot.svg"
  7619. }
  7620. },
  7621. },
  7622. [
  7623. {
  7624. name: "Normal",
  7625. height: math.unit(8 + 3 / 12, "feet")
  7626. },
  7627. {
  7628. name: "Minimacro",
  7629. height: math.unit(21, "feet"),
  7630. default: true
  7631. },
  7632. {
  7633. name: "Macro",
  7634. height: math.unit(626, "feet")
  7635. },
  7636. ]
  7637. ))
  7638. characterMakers.push(() => makeCharacter(
  7639. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7640. {
  7641. front: {
  7642. height: math.unit(2.718, "meters"),
  7643. weight: math.unit(150, "lbs"),
  7644. name: "Front",
  7645. image: {
  7646. source: "./media/characters/sovrim-terraquian/front.svg"
  7647. }
  7648. },
  7649. back: {
  7650. height: math.unit(2.718, "meters"),
  7651. weight: math.unit(150, "lbs"),
  7652. name: "Back",
  7653. image: {
  7654. source: "./media/characters/sovrim-terraquian/back.svg"
  7655. }
  7656. }
  7657. },
  7658. [
  7659. {
  7660. name: "Micro",
  7661. height: math.unit(2, "inches")
  7662. },
  7663. {
  7664. name: "Small",
  7665. height: math.unit(1, "meter")
  7666. },
  7667. {
  7668. name: "Normal",
  7669. height: math.unit(Math.E, "meters"),
  7670. default: true
  7671. },
  7672. {
  7673. name: "Macro",
  7674. height: math.unit(20, "meters")
  7675. },
  7676. {
  7677. name: "Macro+",
  7678. height: math.unit(400, "meters")
  7679. },
  7680. ]
  7681. ))
  7682. characterMakers.push(() => makeCharacter(
  7683. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7684. {
  7685. front: {
  7686. height: math.unit(7, "feet"),
  7687. weight: math.unit(489, "lbs"),
  7688. name: "Front",
  7689. image: {
  7690. source: "./media/characters/reece-silvermane/front.svg",
  7691. bottom: 0.02,
  7692. extra: 1
  7693. }
  7694. },
  7695. },
  7696. [
  7697. {
  7698. name: "Macro",
  7699. height: math.unit(1.5, "miles"),
  7700. default: true
  7701. },
  7702. ]
  7703. ))
  7704. characterMakers.push(() => makeCharacter(
  7705. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7706. {
  7707. front: {
  7708. height: math.unit(6, "feet"),
  7709. weight: math.unit(78, "kg"),
  7710. name: "Front",
  7711. image: {
  7712. source: "./media/characters/kane/front.svg",
  7713. extra: 978 / 899
  7714. }
  7715. },
  7716. },
  7717. [
  7718. {
  7719. name: "Normal",
  7720. height: math.unit(2.1, "m"),
  7721. },
  7722. {
  7723. name: "Macro",
  7724. height: math.unit(1, "km"),
  7725. default: true
  7726. },
  7727. ]
  7728. ))
  7729. characterMakers.push(() => makeCharacter(
  7730. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7731. {
  7732. front: {
  7733. height: math.unit(6, "feet"),
  7734. weight: math.unit(200, "kg"),
  7735. name: "Front",
  7736. image: {
  7737. source: "./media/characters/tegon/front.svg",
  7738. bottom: 0.01,
  7739. extra: 1
  7740. }
  7741. },
  7742. },
  7743. [
  7744. {
  7745. name: "Micro",
  7746. height: math.unit(1, "inch")
  7747. },
  7748. {
  7749. name: "Normal",
  7750. height: math.unit(6 + 3 / 12, "feet"),
  7751. default: true
  7752. },
  7753. {
  7754. name: "Macro",
  7755. height: math.unit(300, "feet")
  7756. },
  7757. {
  7758. name: "Megamacro",
  7759. height: math.unit(69, "miles")
  7760. },
  7761. ]
  7762. ))
  7763. characterMakers.push(() => makeCharacter(
  7764. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7765. {
  7766. side: {
  7767. height: math.unit(6, "feet"),
  7768. weight: math.unit(2304, "lbs"),
  7769. name: "Side",
  7770. image: {
  7771. source: "./media/characters/arcturax/side.svg",
  7772. extra: 790 / 376,
  7773. bottom: 0.01
  7774. }
  7775. },
  7776. },
  7777. [
  7778. {
  7779. name: "Micro",
  7780. height: math.unit(2, "inch")
  7781. },
  7782. {
  7783. name: "Normal",
  7784. height: math.unit(6, "feet")
  7785. },
  7786. {
  7787. name: "Macro",
  7788. height: math.unit(39, "feet"),
  7789. default: true
  7790. },
  7791. {
  7792. name: "Megamacro",
  7793. height: math.unit(7, "miles")
  7794. },
  7795. ]
  7796. ))
  7797. characterMakers.push(() => makeCharacter(
  7798. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7799. {
  7800. front: {
  7801. height: math.unit(6, "feet"),
  7802. weight: math.unit(50, "lbs"),
  7803. name: "Front",
  7804. image: {
  7805. source: "./media/characters/sentri/front.svg",
  7806. extra: 1750 / 1570,
  7807. bottom: 0.025
  7808. }
  7809. },
  7810. frontAlt: {
  7811. height: math.unit(6, "feet"),
  7812. weight: math.unit(50, "lbs"),
  7813. name: "Front (Alt)",
  7814. image: {
  7815. source: "./media/characters/sentri/front-alt.svg",
  7816. extra: 1750 / 1570,
  7817. bottom: 0.025
  7818. }
  7819. },
  7820. },
  7821. [
  7822. {
  7823. name: "Normal",
  7824. height: math.unit(15, "feet"),
  7825. default: true
  7826. },
  7827. {
  7828. name: "Macro",
  7829. height: math.unit(2500, "feet")
  7830. }
  7831. ]
  7832. ))
  7833. characterMakers.push(() => makeCharacter(
  7834. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7835. {
  7836. front: {
  7837. height: math.unit(5 + 8 / 12, "feet"),
  7838. weight: math.unit(130, "lbs"),
  7839. name: "Front",
  7840. image: {
  7841. source: "./media/characters/corvin/front.svg",
  7842. extra: 1803 / 1629
  7843. }
  7844. },
  7845. frontShirt: {
  7846. height: math.unit(5 + 8 / 12, "feet"),
  7847. weight: math.unit(130, "lbs"),
  7848. name: "Front (Shirt)",
  7849. image: {
  7850. source: "./media/characters/corvin/front-shirt.svg",
  7851. extra: 1803 / 1629
  7852. }
  7853. },
  7854. frontPoncho: {
  7855. height: math.unit(5 + 8 / 12, "feet"),
  7856. weight: math.unit(130, "lbs"),
  7857. name: "Front (Poncho)",
  7858. image: {
  7859. source: "./media/characters/corvin/front-poncho.svg",
  7860. extra: 1803 / 1629
  7861. }
  7862. },
  7863. side: {
  7864. height: math.unit(5 + 8 / 12, "feet"),
  7865. weight: math.unit(130, "lbs"),
  7866. name: "Side",
  7867. image: {
  7868. source: "./media/characters/corvin/side.svg",
  7869. extra: 1012 / 945
  7870. }
  7871. },
  7872. back: {
  7873. height: math.unit(5 + 8 / 12, "feet"),
  7874. weight: math.unit(130, "lbs"),
  7875. name: "Back",
  7876. image: {
  7877. source: "./media/characters/corvin/back.svg",
  7878. extra: 1803 / 1629
  7879. }
  7880. },
  7881. },
  7882. [
  7883. {
  7884. name: "Micro",
  7885. height: math.unit(3, "inches")
  7886. },
  7887. {
  7888. name: "Normal",
  7889. height: math.unit(5 + 8 / 12, "feet")
  7890. },
  7891. {
  7892. name: "Macro",
  7893. height: math.unit(300, "feet"),
  7894. default: true
  7895. },
  7896. {
  7897. name: "Megamacro",
  7898. height: math.unit(500, "miles")
  7899. }
  7900. ]
  7901. ))
  7902. characterMakers.push(() => makeCharacter(
  7903. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7904. {
  7905. front: {
  7906. height: math.unit(6, "feet"),
  7907. weight: math.unit(135, "lbs"),
  7908. name: "Front",
  7909. image: {
  7910. source: "./media/characters/q/front.svg",
  7911. extra: 854 / 752,
  7912. bottom: 0.005
  7913. }
  7914. },
  7915. back: {
  7916. height: math.unit(6, "feet"),
  7917. weight: math.unit(130, "lbs"),
  7918. name: "Back",
  7919. image: {
  7920. source: "./media/characters/q/back.svg",
  7921. extra: 854 / 752
  7922. }
  7923. },
  7924. },
  7925. [
  7926. {
  7927. name: "Macro",
  7928. height: math.unit(90, "feet"),
  7929. default: true
  7930. },
  7931. {
  7932. name: "Extra Macro",
  7933. height: math.unit(300, "feet"),
  7934. },
  7935. {
  7936. name: "BIG WALF",
  7937. height: math.unit(750, "feet"),
  7938. },
  7939. ]
  7940. ))
  7941. characterMakers.push(() => makeCharacter(
  7942. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7943. {
  7944. front: {
  7945. height: math.unit(6, "feet"),
  7946. weight: math.unit(150, "lbs"),
  7947. name: "Front",
  7948. image: {
  7949. source: "./media/characters/carley/front.svg",
  7950. extra: 3927 / 3540,
  7951. bottom: 29.2 / 735
  7952. }
  7953. }
  7954. },
  7955. [
  7956. {
  7957. name: "Normal",
  7958. height: math.unit(6 + 3 / 12, "feet")
  7959. },
  7960. {
  7961. name: "Macro",
  7962. height: math.unit(185, "feet"),
  7963. default: true
  7964. },
  7965. {
  7966. name: "Megamacro",
  7967. height: math.unit(8, "miles"),
  7968. },
  7969. ]
  7970. ))
  7971. characterMakers.push(() => makeCharacter(
  7972. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7973. {
  7974. front: {
  7975. height: math.unit(3, "feet"),
  7976. weight: math.unit(28, "lbs"),
  7977. name: "Front",
  7978. image: {
  7979. source: "./media/characters/citrine/front.svg"
  7980. }
  7981. }
  7982. },
  7983. [
  7984. {
  7985. name: "Normal",
  7986. height: math.unit(3, "feet"),
  7987. default: true
  7988. }
  7989. ]
  7990. ))
  7991. characterMakers.push(() => makeCharacter(
  7992. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7993. {
  7994. front: {
  7995. height: math.unit(14, "feet"),
  7996. weight: math.unit(1450, "kg"),
  7997. capacity: math.unit(15, "people"),
  7998. name: "Front",
  7999. image: {
  8000. source: "./media/characters/aura-starwind/front.svg",
  8001. extra: 1455 / 1335
  8002. }
  8003. },
  8004. side: {
  8005. height: math.unit(14, "feet"),
  8006. weight: math.unit(1450, "kg"),
  8007. capacity: math.unit(15, "people"),
  8008. name: "Side",
  8009. image: {
  8010. source: "./media/characters/aura-starwind/side.svg",
  8011. extra: 1654 / 1497
  8012. }
  8013. },
  8014. taur: {
  8015. height: math.unit(18, "feet"),
  8016. weight: math.unit(5500, "kg"),
  8017. capacity: math.unit(50, "people"),
  8018. name: "Taur",
  8019. image: {
  8020. source: "./media/characters/aura-starwind/taur.svg",
  8021. extra: 1760 / 1650
  8022. }
  8023. },
  8024. feral: {
  8025. height: math.unit(46, "feet"),
  8026. weight: math.unit(25000, "kg"),
  8027. capacity: math.unit(120, "people"),
  8028. name: "Feral",
  8029. image: {
  8030. source: "./media/characters/aura-starwind/feral.svg"
  8031. }
  8032. },
  8033. },
  8034. [
  8035. {
  8036. name: "Normal",
  8037. height: math.unit(14, "feet"),
  8038. default: true
  8039. },
  8040. {
  8041. name: "Macro",
  8042. height: math.unit(50, "meters")
  8043. },
  8044. {
  8045. name: "Megamacro",
  8046. height: math.unit(5000, "meters")
  8047. },
  8048. {
  8049. name: "Gigamacro",
  8050. height: math.unit(100000, "kilometers")
  8051. },
  8052. ]
  8053. ))
  8054. characterMakers.push(() => makeCharacter(
  8055. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8056. {
  8057. front: {
  8058. height: math.unit(2 + 7 / 12, "feet"),
  8059. weight: math.unit(32, "lbs"),
  8060. name: "Front",
  8061. image: {
  8062. source: "./media/characters/rivet/front.svg",
  8063. extra: 1716 / 1658,
  8064. bottom: 0.03
  8065. }
  8066. },
  8067. foot: {
  8068. height: math.unit(0.551, "feet"),
  8069. name: "Rivet's Foot",
  8070. image: {
  8071. source: "./media/characters/rivet/foot.svg"
  8072. },
  8073. rename: true
  8074. }
  8075. },
  8076. [
  8077. {
  8078. name: "Micro",
  8079. height: math.unit(1.5, "inches"),
  8080. },
  8081. {
  8082. name: "Normal",
  8083. height: math.unit(2 + 7 / 12, "feet"),
  8084. default: true
  8085. },
  8086. {
  8087. name: "Macro",
  8088. height: math.unit(85, "feet")
  8089. },
  8090. {
  8091. name: "Megamacro",
  8092. height: math.unit(2.2, "km")
  8093. }
  8094. ]
  8095. ))
  8096. characterMakers.push(() => makeCharacter(
  8097. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8098. {
  8099. front: {
  8100. height: math.unit(5 + 9 / 12, "feet"),
  8101. weight: math.unit(150, "lbs"),
  8102. name: "Front",
  8103. image: {
  8104. source: "./media/characters/coffee/front.svg",
  8105. extra: 3666 / 3032,
  8106. bottom: 0.04
  8107. }
  8108. },
  8109. foot: {
  8110. height: math.unit(1.29, "feet"),
  8111. name: "Foot",
  8112. image: {
  8113. source: "./media/characters/coffee/foot.svg"
  8114. }
  8115. },
  8116. },
  8117. [
  8118. {
  8119. name: "Micro",
  8120. height: math.unit(2, "inches"),
  8121. },
  8122. {
  8123. name: "Normal",
  8124. height: math.unit(5 + 9 / 12, "feet"),
  8125. default: true
  8126. },
  8127. {
  8128. name: "Macro",
  8129. height: math.unit(800, "feet")
  8130. },
  8131. {
  8132. name: "Megamacro",
  8133. height: math.unit(25, "miles")
  8134. }
  8135. ]
  8136. ))
  8137. characterMakers.push(() => makeCharacter(
  8138. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8139. {
  8140. front: {
  8141. height: math.unit(6, "feet"),
  8142. weight: math.unit(200, "lbs"),
  8143. name: "Front",
  8144. image: {
  8145. source: "./media/characters/chari-gal/front.svg",
  8146. extra: 1568 / 1385,
  8147. bottom: 0.047
  8148. }
  8149. },
  8150. gigantamax: {
  8151. height: math.unit(6 * 16, "feet"),
  8152. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8153. name: "Gigantamax",
  8154. image: {
  8155. source: "./media/characters/chari-gal/gigantamax.svg",
  8156. extra: 1124 / 888,
  8157. bottom: 0.03
  8158. }
  8159. },
  8160. },
  8161. [
  8162. {
  8163. name: "Normal",
  8164. height: math.unit(5 + 7 / 12, "feet")
  8165. },
  8166. {
  8167. name: "Macro",
  8168. height: math.unit(200, "feet"),
  8169. default: true
  8170. }
  8171. ]
  8172. ))
  8173. characterMakers.push(() => makeCharacter(
  8174. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8175. {
  8176. front: {
  8177. height: math.unit(6, "feet"),
  8178. weight: math.unit(150, "lbs"),
  8179. name: "Front",
  8180. image: {
  8181. source: "./media/characters/nova/front.svg",
  8182. extra: 5000 / 4722,
  8183. bottom: 0.02
  8184. }
  8185. }
  8186. },
  8187. [
  8188. {
  8189. name: "Micro-",
  8190. height: math.unit(0.8, "inches")
  8191. },
  8192. {
  8193. name: "Micro",
  8194. height: math.unit(2, "inches"),
  8195. default: true
  8196. },
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(3 + 1 / 12, "feet"),
  8204. weight: math.unit(21.7, "lbs"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/argent/front.svg",
  8208. extra: 1471 / 1331,
  8209. bottom: 100.8 / 1575.5
  8210. }
  8211. }
  8212. },
  8213. [
  8214. {
  8215. name: "Micro",
  8216. height: math.unit(2, "inches")
  8217. },
  8218. {
  8219. name: "Normal",
  8220. height: math.unit(3 + 1 / 12, "feet"),
  8221. default: true
  8222. },
  8223. {
  8224. name: "Macro",
  8225. height: math.unit(120, "feet")
  8226. },
  8227. ]
  8228. ))
  8229. characterMakers.push(() => makeCharacter(
  8230. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8231. {
  8232. lamp: {
  8233. height: math.unit(7 * 1559 / 989, "feet"),
  8234. name: "Magic Lamp",
  8235. image: {
  8236. source: "./media/characters/mira-al-cul/lamp.svg",
  8237. extra: 1617 / 1559
  8238. }
  8239. },
  8240. front: {
  8241. height: math.unit(7, "feet"),
  8242. name: "Front",
  8243. image: {
  8244. source: "./media/characters/mira-al-cul/front.svg",
  8245. extra: 1044 / 990
  8246. }
  8247. },
  8248. },
  8249. [
  8250. {
  8251. name: "Heavily Restricted",
  8252. height: math.unit(7 * 1559 / 989, "feet")
  8253. },
  8254. {
  8255. name: "Freshly Freed",
  8256. height: math.unit(50 * 1559 / 989, "feet")
  8257. },
  8258. {
  8259. name: "World Encompassing",
  8260. height: math.unit(10000 * 1559 / 989, "miles")
  8261. },
  8262. {
  8263. name: "Galactic",
  8264. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8265. },
  8266. {
  8267. name: "Palmed Universe",
  8268. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8269. default: true
  8270. },
  8271. {
  8272. name: "Multiversal Matriarch",
  8273. height: math.unit(8.87e10, "yottameters")
  8274. },
  8275. {
  8276. name: "Void Mother",
  8277. height: math.unit(3.14e110, "yottaparsecs")
  8278. },
  8279. {
  8280. name: "Toying with Transcendence",
  8281. height: math.unit(1e307, "meters")
  8282. },
  8283. ]
  8284. ))
  8285. characterMakers.push(() => makeCharacter(
  8286. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8287. {
  8288. front: {
  8289. height: math.unit(17 + 1 / 12, "feet"),
  8290. weight: math.unit(476.2 * 5, "lbs"),
  8291. name: "Front",
  8292. image: {
  8293. source: "./media/characters/kuro-shi-uchū/front.svg",
  8294. extra: 2329 / 1835,
  8295. bottom: 0.02
  8296. }
  8297. },
  8298. },
  8299. [
  8300. {
  8301. name: "Micro",
  8302. height: math.unit(2, "inches")
  8303. },
  8304. {
  8305. name: "Normal",
  8306. height: math.unit(12, "meters")
  8307. },
  8308. {
  8309. name: "Planetary",
  8310. height: math.unit(0.00929, "AU"),
  8311. default: true
  8312. },
  8313. {
  8314. name: "Universal",
  8315. height: math.unit(20, "gigaparsecs")
  8316. },
  8317. ]
  8318. ))
  8319. characterMakers.push(() => makeCharacter(
  8320. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8321. {
  8322. front: {
  8323. height: math.unit(5 + 2 / 12, "feet"),
  8324. weight: math.unit(120, "lbs"),
  8325. name: "Front",
  8326. image: {
  8327. source: "./media/characters/katherine/front.svg",
  8328. extra: 2075 / 1969
  8329. }
  8330. },
  8331. dress: {
  8332. height: math.unit(5 + 2 / 12, "feet"),
  8333. weight: math.unit(120, "lbs"),
  8334. name: "Dress",
  8335. image: {
  8336. source: "./media/characters/katherine/dress.svg",
  8337. extra: 2258 / 2064
  8338. }
  8339. },
  8340. },
  8341. [
  8342. {
  8343. name: "Micro",
  8344. height: math.unit(1, "inches"),
  8345. default: true
  8346. },
  8347. {
  8348. name: "Normal",
  8349. height: math.unit(5 + 2 / 12, "feet")
  8350. },
  8351. {
  8352. name: "Macro",
  8353. height: math.unit(100, "meters")
  8354. },
  8355. {
  8356. name: "Megamacro",
  8357. height: math.unit(80, "miles")
  8358. },
  8359. ]
  8360. ))
  8361. characterMakers.push(() => makeCharacter(
  8362. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8363. {
  8364. front: {
  8365. height: math.unit(7 + 8 / 12, "feet"),
  8366. weight: math.unit(250, "lbs"),
  8367. name: "Front",
  8368. image: {
  8369. source: "./media/characters/yevis/front.svg",
  8370. extra: 1938 / 1755
  8371. }
  8372. }
  8373. },
  8374. [
  8375. {
  8376. name: "Mortal",
  8377. height: math.unit(7 + 8 / 12, "feet")
  8378. },
  8379. {
  8380. name: "Battle",
  8381. height: math.unit(25 + 11 / 12, "feet")
  8382. },
  8383. {
  8384. name: "Wrath",
  8385. height: math.unit(1654 + 11 / 12, "feet")
  8386. },
  8387. {
  8388. name: "Planet Destroyer",
  8389. height: math.unit(12000, "miles")
  8390. },
  8391. {
  8392. name: "Galaxy Conqueror",
  8393. height: math.unit(1.45, "zettameters"),
  8394. default: true
  8395. },
  8396. {
  8397. name: "Universal War",
  8398. height: math.unit(184, "gigaparsecs")
  8399. },
  8400. {
  8401. name: "Eternity War",
  8402. height: math.unit(1.98e55, "yottaparsecs")
  8403. },
  8404. ]
  8405. ))
  8406. characterMakers.push(() => makeCharacter(
  8407. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8408. {
  8409. front: {
  8410. height: math.unit(5 + 8 / 12, "feet"),
  8411. weight: math.unit(63, "kg"),
  8412. name: "Front",
  8413. image: {
  8414. source: "./media/characters/xavier/front.svg",
  8415. extra: 944 / 883
  8416. }
  8417. },
  8418. frontStretch: {
  8419. height: math.unit(5 + 8 / 12, "feet"),
  8420. weight: math.unit(63, "kg"),
  8421. name: "Stretching",
  8422. image: {
  8423. source: "./media/characters/xavier/front-stretch.svg",
  8424. extra: 962 / 820
  8425. }
  8426. },
  8427. },
  8428. [
  8429. {
  8430. name: "Normal",
  8431. height: math.unit(5 + 8 / 12, "feet")
  8432. },
  8433. {
  8434. name: "Macro",
  8435. height: math.unit(100, "meters"),
  8436. default: true
  8437. },
  8438. {
  8439. name: "McLargeHuge",
  8440. height: math.unit(10, "miles")
  8441. },
  8442. ]
  8443. ))
  8444. characterMakers.push(() => makeCharacter(
  8445. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8446. {
  8447. front: {
  8448. height: math.unit(5 + 5 / 12, "feet"),
  8449. weight: math.unit(150, "lb"),
  8450. name: "Front",
  8451. image: {
  8452. source: "./media/characters/joshii/front.svg",
  8453. extra: 765 / 653,
  8454. bottom: 51 / 816
  8455. }
  8456. },
  8457. foot: {
  8458. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8459. name: "Foot",
  8460. image: {
  8461. source: "./media/characters/joshii/foot.svg"
  8462. }
  8463. },
  8464. },
  8465. [
  8466. {
  8467. name: "Micro",
  8468. height: math.unit(2, "inches"),
  8469. default: true
  8470. },
  8471. {
  8472. name: "Normal",
  8473. height: math.unit(5 + 5 / 12, "feet")
  8474. },
  8475. {
  8476. name: "Macro",
  8477. height: math.unit(785, "feet")
  8478. },
  8479. {
  8480. name: "Megamacro",
  8481. height: math.unit(24.5, "miles")
  8482. },
  8483. ]
  8484. ))
  8485. characterMakers.push(() => makeCharacter(
  8486. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8487. {
  8488. front: {
  8489. height: math.unit(6, "feet"),
  8490. weight: math.unit(150, "lb"),
  8491. name: "Front",
  8492. image: {
  8493. source: "./media/characters/goddess-elizabeth/front.svg",
  8494. extra: 1800 / 1525,
  8495. bottom: 0.005
  8496. }
  8497. },
  8498. foot: {
  8499. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8500. name: "Foot",
  8501. image: {
  8502. source: "./media/characters/goddess-elizabeth/foot.svg"
  8503. }
  8504. },
  8505. mouth: {
  8506. height: math.unit(6, "feet"),
  8507. name: "Mouth",
  8508. image: {
  8509. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8510. }
  8511. },
  8512. },
  8513. [
  8514. {
  8515. name: "Micro",
  8516. height: math.unit(12, "feet")
  8517. },
  8518. {
  8519. name: "Normal",
  8520. height: math.unit(80, "miles"),
  8521. default: true
  8522. },
  8523. {
  8524. name: "Macro",
  8525. height: math.unit(15000, "parsecs")
  8526. },
  8527. ]
  8528. ))
  8529. characterMakers.push(() => makeCharacter(
  8530. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8531. {
  8532. front: {
  8533. height: math.unit(5 + 9 / 12, "feet"),
  8534. weight: math.unit(144, "lb"),
  8535. name: "Front",
  8536. image: {
  8537. source: "./media/characters/kara/front.svg"
  8538. }
  8539. },
  8540. feet: {
  8541. height: math.unit(6 / 6.765, "feet"),
  8542. name: "Kara's Feet",
  8543. rename: true,
  8544. image: {
  8545. source: "./media/characters/kara/feet.svg"
  8546. }
  8547. },
  8548. },
  8549. [
  8550. {
  8551. name: "Normal",
  8552. height: math.unit(5 + 9 / 12, "feet")
  8553. },
  8554. {
  8555. name: "Macro",
  8556. height: math.unit(174, "feet"),
  8557. default: true
  8558. },
  8559. ]
  8560. ))
  8561. characterMakers.push(() => makeCharacter(
  8562. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8563. {
  8564. front: {
  8565. height: math.unit(18, "feet"),
  8566. weight: math.unit(4050, "lb"),
  8567. name: "Front",
  8568. image: {
  8569. source: "./media/characters/tyrone/front.svg",
  8570. extra: 2405 / 2270,
  8571. bottom: 182 / 2587
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(18, "feet"),
  8579. default: true
  8580. },
  8581. {
  8582. name: "Macro",
  8583. height: math.unit(300, "feet")
  8584. },
  8585. {
  8586. name: "Megamacro",
  8587. height: math.unit(15, "km")
  8588. },
  8589. {
  8590. name: "Gigamacro",
  8591. height: math.unit(500, "km")
  8592. },
  8593. {
  8594. name: "Teramacro",
  8595. height: math.unit(0.5, "gigameters")
  8596. },
  8597. {
  8598. name: "Omnimacro",
  8599. height: math.unit(1e252, "yottauniverse")
  8600. },
  8601. ]
  8602. ))
  8603. characterMakers.push(() => makeCharacter(
  8604. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8605. {
  8606. front: {
  8607. height: math.unit(7 + 8 / 12, "feet"),
  8608. weight: math.unit(120, "lb"),
  8609. name: "Front",
  8610. image: {
  8611. source: "./media/characters/danny/front.svg",
  8612. extra: 1490 / 1350
  8613. }
  8614. },
  8615. back: {
  8616. height: math.unit(7 + 8 / 12, "feet"),
  8617. weight: math.unit(120, "lb"),
  8618. name: "Back",
  8619. image: {
  8620. source: "./media/characters/danny/back.svg",
  8621. extra: 1490 / 1350
  8622. }
  8623. },
  8624. },
  8625. [
  8626. {
  8627. name: "Normal",
  8628. height: math.unit(7 + 8 / 12, "feet"),
  8629. default: true
  8630. },
  8631. ]
  8632. ))
  8633. characterMakers.push(() => makeCharacter(
  8634. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8635. {
  8636. front: {
  8637. height: math.unit(3.5, "inches"),
  8638. weight: math.unit(19, "grams"),
  8639. name: "Front",
  8640. image: {
  8641. source: "./media/characters/mallow/front.svg",
  8642. extra: 471 / 431
  8643. }
  8644. },
  8645. back: {
  8646. height: math.unit(3.5, "inches"),
  8647. weight: math.unit(19, "grams"),
  8648. name: "Back",
  8649. image: {
  8650. source: "./media/characters/mallow/back.svg",
  8651. extra: 471 / 431
  8652. }
  8653. },
  8654. },
  8655. [
  8656. {
  8657. name: "Normal",
  8658. height: math.unit(3.5, "inches"),
  8659. default: true
  8660. },
  8661. ]
  8662. ))
  8663. characterMakers.push(() => makeCharacter(
  8664. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8665. {
  8666. front: {
  8667. height: math.unit(9, "feet"),
  8668. weight: math.unit(230, "kg"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/starry-aqua/front.svg"
  8672. }
  8673. },
  8674. back: {
  8675. height: math.unit(9, "feet"),
  8676. weight: math.unit(230, "kg"),
  8677. name: "Back",
  8678. image: {
  8679. source: "./media/characters/starry-aqua/back.svg"
  8680. }
  8681. },
  8682. hand: {
  8683. height: math.unit(9 * 0.1168, "feet"),
  8684. name: "Hand",
  8685. image: {
  8686. source: "./media/characters/starry-aqua/hand.svg"
  8687. }
  8688. },
  8689. foot: {
  8690. height: math.unit(9 * 0.18, "feet"),
  8691. name: "Foot",
  8692. image: {
  8693. source: "./media/characters/starry-aqua/foot.svg"
  8694. }
  8695. }
  8696. },
  8697. [
  8698. {
  8699. name: "Micro",
  8700. height: math.unit(3, "inches")
  8701. },
  8702. {
  8703. name: "Normal",
  8704. height: math.unit(9, "feet")
  8705. },
  8706. {
  8707. name: "Macro",
  8708. height: math.unit(300, "feet"),
  8709. default: true
  8710. },
  8711. {
  8712. name: "Megamacro",
  8713. height: math.unit(3200, "feet")
  8714. }
  8715. ]
  8716. ))
  8717. characterMakers.push(() => makeCharacter(
  8718. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8719. {
  8720. front: {
  8721. height: math.unit(6, "feet"),
  8722. weight: math.unit(230, "lb"),
  8723. name: "Front",
  8724. image: {
  8725. source: "./media/characters/luka/front.svg",
  8726. extra: 1,
  8727. bottom: 0.025
  8728. }
  8729. },
  8730. },
  8731. [
  8732. {
  8733. name: "Normal",
  8734. height: math.unit(12 + 8 / 12, "feet"),
  8735. default: true
  8736. },
  8737. {
  8738. name: "Minimacro",
  8739. height: math.unit(20, "feet")
  8740. },
  8741. {
  8742. name: "Macro",
  8743. height: math.unit(250, "feet")
  8744. },
  8745. {
  8746. name: "Megamacro",
  8747. height: math.unit(5, "miles")
  8748. },
  8749. {
  8750. name: "Gigamacro",
  8751. height: math.unit(8000, "miles")
  8752. },
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8757. {
  8758. front: {
  8759. height: math.unit(6, "feet"),
  8760. weight: math.unit(150, "lb"),
  8761. name: "Front",
  8762. image: {
  8763. source: "./media/characters/natalie-nightring/front.svg",
  8764. extra: 1,
  8765. bottom: 0.06
  8766. }
  8767. },
  8768. },
  8769. [
  8770. {
  8771. name: "Uh Oh",
  8772. height: math.unit(0.1, "mm")
  8773. },
  8774. {
  8775. name: "Small",
  8776. height: math.unit(3, "inches")
  8777. },
  8778. {
  8779. name: "Human Scale",
  8780. height: math.unit(6, "feet")
  8781. },
  8782. {
  8783. name: "Librarian",
  8784. height: math.unit(50, "feet"),
  8785. default: true
  8786. },
  8787. {
  8788. name: "Immense",
  8789. height: math.unit(200, "miles")
  8790. },
  8791. ]
  8792. ))
  8793. characterMakers.push(() => makeCharacter(
  8794. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8795. {
  8796. front: {
  8797. height: math.unit(6, "feet"),
  8798. weight: math.unit(180, "lbs"),
  8799. name: "Front",
  8800. image: {
  8801. source: "./media/characters/danni-rosie/front.svg",
  8802. extra: 1260 / 1128,
  8803. bottom: 0.022
  8804. }
  8805. },
  8806. },
  8807. [
  8808. {
  8809. name: "Micro",
  8810. height: math.unit(2, "inches"),
  8811. default: true
  8812. },
  8813. ]
  8814. ))
  8815. characterMakers.push(() => makeCharacter(
  8816. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8817. {
  8818. front: {
  8819. height: math.unit(5 + 9 / 12, "feet"),
  8820. weight: math.unit(220, "lb"),
  8821. name: "Front",
  8822. image: {
  8823. source: "./media/characters/samantha-kruse/front.svg",
  8824. extra: (985 / 935),
  8825. bottom: 0.03
  8826. }
  8827. },
  8828. frontUndressed: {
  8829. height: math.unit(5 + 9 / 12, "feet"),
  8830. weight: math.unit(220, "lb"),
  8831. name: "Front (Undressed)",
  8832. image: {
  8833. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8834. extra: (973 / 923),
  8835. bottom: 0.025
  8836. }
  8837. },
  8838. fat: {
  8839. height: math.unit(5 + 9 / 12, "feet"),
  8840. weight: math.unit(900, "lb"),
  8841. name: "Front (Fat)",
  8842. image: {
  8843. source: "./media/characters/samantha-kruse/fat.svg",
  8844. extra: 2688 / 2561
  8845. }
  8846. },
  8847. },
  8848. [
  8849. {
  8850. name: "Normal",
  8851. height: math.unit(5 + 9 / 12, "feet"),
  8852. default: true
  8853. }
  8854. ]
  8855. ))
  8856. characterMakers.push(() => makeCharacter(
  8857. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8858. {
  8859. back: {
  8860. height: math.unit(5 + 4 / 12, "feet"),
  8861. weight: math.unit(4963, "lb"),
  8862. name: "Back",
  8863. image: {
  8864. source: "./media/characters/amelia-rosie/back.svg",
  8865. extra: 1113 / 963,
  8866. bottom: 0.01
  8867. }
  8868. },
  8869. },
  8870. [
  8871. {
  8872. name: "Level 0",
  8873. height: math.unit(5 + 4 / 12, "feet")
  8874. },
  8875. {
  8876. name: "Level 1",
  8877. height: math.unit(164597, "feet"),
  8878. default: true
  8879. },
  8880. {
  8881. name: "Level 2",
  8882. height: math.unit(956243, "miles")
  8883. },
  8884. {
  8885. name: "Level 3",
  8886. height: math.unit(29421709423, "miles")
  8887. },
  8888. {
  8889. name: "Level 4",
  8890. height: math.unit(154, "lightyears")
  8891. },
  8892. {
  8893. name: "Level 5",
  8894. height: math.unit(4738272, "lightyears")
  8895. },
  8896. {
  8897. name: "Level 6",
  8898. height: math.unit(145787152896, "lightyears")
  8899. },
  8900. ]
  8901. ))
  8902. characterMakers.push(() => makeCharacter(
  8903. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8904. {
  8905. front: {
  8906. height: math.unit(5 + 11 / 12, "feet"),
  8907. weight: math.unit(65, "kg"),
  8908. name: "Front",
  8909. image: {
  8910. source: "./media/characters/rook-kitara/front.svg",
  8911. extra: 1347 / 1274,
  8912. bottom: 0.005
  8913. }
  8914. },
  8915. },
  8916. [
  8917. {
  8918. name: "Totally Unfair",
  8919. height: math.unit(1.8, "mm")
  8920. },
  8921. {
  8922. name: "Lap Rookie",
  8923. height: math.unit(1.4, "feet")
  8924. },
  8925. {
  8926. name: "Normal",
  8927. height: math.unit(5 + 11 / 12, "feet"),
  8928. default: true
  8929. },
  8930. {
  8931. name: "How Did This Happen",
  8932. height: math.unit(80, "miles")
  8933. }
  8934. ]
  8935. ))
  8936. characterMakers.push(() => makeCharacter(
  8937. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8938. {
  8939. front: {
  8940. height: math.unit(7, "feet"),
  8941. weight: math.unit(300, "lb"),
  8942. name: "Front",
  8943. image: {
  8944. source: "./media/characters/pisces/front.svg",
  8945. extra: 2255 / 2115,
  8946. bottom: 0.03
  8947. }
  8948. },
  8949. back: {
  8950. height: math.unit(7, "feet"),
  8951. weight: math.unit(300, "lb"),
  8952. name: "Back",
  8953. image: {
  8954. source: "./media/characters/pisces/back.svg",
  8955. extra: 2146 / 2055,
  8956. bottom: 0.04
  8957. }
  8958. },
  8959. },
  8960. [
  8961. {
  8962. name: "Normal",
  8963. height: math.unit(7, "feet"),
  8964. default: true
  8965. },
  8966. {
  8967. name: "Swimming Pool",
  8968. height: math.unit(12.2, "meters")
  8969. },
  8970. {
  8971. name: "Olympic Swimming Pool",
  8972. height: math.unit(56.3, "meters")
  8973. },
  8974. {
  8975. name: "Lake Superior",
  8976. height: math.unit(93900, "meters")
  8977. },
  8978. {
  8979. name: "Mediterranean Sea",
  8980. height: math.unit(644457, "meters")
  8981. },
  8982. {
  8983. name: "World's Oceans",
  8984. height: math.unit(4567491, "meters")
  8985. },
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(2.3, "meters"),
  8993. weight: math.unit(120, "kg"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/zelas/front.svg"
  8997. }
  8998. },
  8999. side: {
  9000. height: math.unit(2.3, "meters"),
  9001. weight: math.unit(120, "kg"),
  9002. name: "Side",
  9003. image: {
  9004. source: "./media/characters/zelas/side.svg"
  9005. }
  9006. },
  9007. back: {
  9008. height: math.unit(2.3, "meters"),
  9009. weight: math.unit(120, "kg"),
  9010. name: "Back",
  9011. image: {
  9012. source: "./media/characters/zelas/back.svg"
  9013. }
  9014. },
  9015. foot: {
  9016. height: math.unit(1.116, "feet"),
  9017. name: "Foot",
  9018. image: {
  9019. source: "./media/characters/zelas/foot.svg"
  9020. }
  9021. },
  9022. },
  9023. [
  9024. {
  9025. name: "Normal",
  9026. height: math.unit(2.3, "meters")
  9027. },
  9028. {
  9029. name: "Macro",
  9030. height: math.unit(30, "meters"),
  9031. default: true
  9032. },
  9033. ]
  9034. ))
  9035. characterMakers.push(() => makeCharacter(
  9036. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9037. {
  9038. front: {
  9039. height: math.unit(1, "inch"),
  9040. weight: math.unit(0.21, "grams"),
  9041. name: "Front",
  9042. image: {
  9043. source: "./media/characters/talbot/front.svg",
  9044. extra: 594 / 544
  9045. }
  9046. },
  9047. },
  9048. [
  9049. {
  9050. name: "Micro",
  9051. height: math.unit(1, "inch"),
  9052. default: true
  9053. },
  9054. ]
  9055. ))
  9056. characterMakers.push(() => makeCharacter(
  9057. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9058. {
  9059. front: {
  9060. height: math.unit(3 + 3 / 12, "feet"),
  9061. weight: math.unit(51.8, "lb"),
  9062. name: "Front",
  9063. image: {
  9064. source: "./media/characters/fliss/front.svg",
  9065. extra: 840 / 640
  9066. }
  9067. },
  9068. },
  9069. [
  9070. {
  9071. name: "Teeny Tiny",
  9072. height: math.unit(1, "mm")
  9073. },
  9074. {
  9075. name: "Small",
  9076. height: math.unit(1, "inch"),
  9077. default: true
  9078. },
  9079. {
  9080. name: "Standard Sylveon",
  9081. height: math.unit(3 + 3 / 12, "feet")
  9082. },
  9083. {
  9084. name: "Large Nuisance",
  9085. height: math.unit(33, "feet")
  9086. },
  9087. {
  9088. name: "City Filler",
  9089. height: math.unit(3000, "feet")
  9090. },
  9091. {
  9092. name: "New Horizon",
  9093. height: math.unit(6000, "miles")
  9094. },
  9095. ]
  9096. ))
  9097. characterMakers.push(() => makeCharacter(
  9098. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9099. {
  9100. front: {
  9101. height: math.unit(5, "cm"),
  9102. weight: math.unit(1.94, "g"),
  9103. name: "Front",
  9104. image: {
  9105. source: "./media/characters/fleta/front.svg",
  9106. extra: 835 / 803
  9107. }
  9108. },
  9109. back: {
  9110. height: math.unit(5, "cm"),
  9111. weight: math.unit(1.94, "g"),
  9112. name: "Back",
  9113. image: {
  9114. source: "./media/characters/fleta/back.svg",
  9115. extra: 835 / 803
  9116. }
  9117. },
  9118. },
  9119. [
  9120. {
  9121. name: "Micro",
  9122. height: math.unit(5, "cm"),
  9123. default: true
  9124. },
  9125. ]
  9126. ))
  9127. characterMakers.push(() => makeCharacter(
  9128. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9129. {
  9130. front: {
  9131. height: math.unit(6, "feet"),
  9132. weight: math.unit(225, "lb"),
  9133. name: "Front",
  9134. image: {
  9135. source: "./media/characters/dominic/front.svg",
  9136. extra: 1770 / 1620,
  9137. bottom: 0.025
  9138. }
  9139. },
  9140. back: {
  9141. height: math.unit(6, "feet"),
  9142. weight: math.unit(225, "lb"),
  9143. name: "Back",
  9144. image: {
  9145. source: "./media/characters/dominic/back.svg",
  9146. extra: 1745 / 1620,
  9147. bottom: 0.065
  9148. }
  9149. },
  9150. },
  9151. [
  9152. {
  9153. name: "Nano",
  9154. height: math.unit(0.1, "mm")
  9155. },
  9156. {
  9157. name: "Micro-",
  9158. height: math.unit(1, "mm")
  9159. },
  9160. {
  9161. name: "Micro",
  9162. height: math.unit(4, "inches")
  9163. },
  9164. {
  9165. name: "Normal",
  9166. height: math.unit(6 + 4 / 12, "feet"),
  9167. default: true
  9168. },
  9169. {
  9170. name: "Macro",
  9171. height: math.unit(115, "feet")
  9172. },
  9173. {
  9174. name: "Macro+",
  9175. height: math.unit(955, "feet")
  9176. },
  9177. {
  9178. name: "Megamacro",
  9179. height: math.unit(8990, "feet")
  9180. },
  9181. {
  9182. name: "Gigmacro",
  9183. height: math.unit(9310, "miles")
  9184. },
  9185. {
  9186. name: "Teramacro",
  9187. height: math.unit(1567005010, "miles")
  9188. },
  9189. {
  9190. name: "Examacro",
  9191. height: math.unit(1425, "parsecs")
  9192. },
  9193. ]
  9194. ))
  9195. characterMakers.push(() => makeCharacter(
  9196. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9197. {
  9198. front: {
  9199. height: math.unit(400, "feet"),
  9200. weight: math.unit(44444444, "lb"),
  9201. name: "Front",
  9202. image: {
  9203. source: "./media/characters/major-colonel/front.svg"
  9204. }
  9205. },
  9206. back: {
  9207. height: math.unit(400, "feet"),
  9208. weight: math.unit(44444444, "lb"),
  9209. name: "Back",
  9210. image: {
  9211. source: "./media/characters/major-colonel/back.svg"
  9212. }
  9213. },
  9214. },
  9215. [
  9216. {
  9217. name: "Macro",
  9218. height: math.unit(400, "feet"),
  9219. default: true
  9220. },
  9221. ]
  9222. ))
  9223. characterMakers.push(() => makeCharacter(
  9224. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9225. {
  9226. catFront: {
  9227. height: math.unit(6, "feet"),
  9228. weight: math.unit(120, "lb"),
  9229. name: "Front (Cat Side)",
  9230. image: {
  9231. source: "./media/characters/axel-lycan/cat-front.svg",
  9232. extra: 430 / 402,
  9233. bottom: 43 / 472.35
  9234. }
  9235. },
  9236. catBack: {
  9237. height: math.unit(6, "feet"),
  9238. weight: math.unit(120, "lb"),
  9239. name: "Back (Cat Side)",
  9240. image: {
  9241. source: "./media/characters/axel-lycan/cat-back.svg",
  9242. extra: 447 / 419,
  9243. bottom: 23.3 / 469
  9244. }
  9245. },
  9246. wolfFront: {
  9247. height: math.unit(6, "feet"),
  9248. weight: math.unit(120, "lb"),
  9249. name: "Front (Wolf Side)",
  9250. image: {
  9251. source: "./media/characters/axel-lycan/wolf-front.svg",
  9252. extra: 485 / 456,
  9253. bottom: 19 / 504
  9254. }
  9255. },
  9256. wolfBack: {
  9257. height: math.unit(6, "feet"),
  9258. weight: math.unit(120, "lb"),
  9259. name: "Back (Wolf Side)",
  9260. image: {
  9261. source: "./media/characters/axel-lycan/wolf-back.svg",
  9262. extra: 475 / 438,
  9263. bottom: 39.2 / 514
  9264. }
  9265. },
  9266. },
  9267. [
  9268. {
  9269. name: "Macro",
  9270. height: math.unit(1, "km"),
  9271. default: true
  9272. },
  9273. ]
  9274. ))
  9275. characterMakers.push(() => makeCharacter(
  9276. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9277. {
  9278. front: {
  9279. height: math.unit(5 + 9 / 12, "feet"),
  9280. weight: math.unit(175, "lb"),
  9281. name: "Front",
  9282. image: {
  9283. source: "./media/characters/vanrel-hyena/front.svg",
  9284. extra: 1086 / 1010,
  9285. bottom: 0.04
  9286. }
  9287. },
  9288. },
  9289. [
  9290. {
  9291. name: "Normal",
  9292. height: math.unit(5 + 9 / 12, "feet"),
  9293. default: true
  9294. },
  9295. ]
  9296. ))
  9297. characterMakers.push(() => makeCharacter(
  9298. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9299. {
  9300. front: {
  9301. height: math.unit(6, "feet"),
  9302. weight: math.unit(103, "lb"),
  9303. name: "Front",
  9304. image: {
  9305. source: "./media/characters/abbott-absol/front.svg",
  9306. extra: 2010 / 1842
  9307. }
  9308. },
  9309. },
  9310. [
  9311. {
  9312. name: "Megamicro",
  9313. height: math.unit(0.1, "mm")
  9314. },
  9315. {
  9316. name: "Micro",
  9317. height: math.unit(1, "inch")
  9318. },
  9319. {
  9320. name: "Normal",
  9321. height: math.unit(6, "feet"),
  9322. default: true
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9328. {
  9329. front: {
  9330. height: math.unit(6, "feet"),
  9331. weight: math.unit(264, "lb"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/hector/front.svg",
  9335. extra: 2280 / 2130,
  9336. bottom: 0.07
  9337. }
  9338. },
  9339. },
  9340. [
  9341. {
  9342. name: "Normal",
  9343. height: math.unit(12.25, "foot"),
  9344. default: true
  9345. },
  9346. {
  9347. name: "Macro",
  9348. height: math.unit(160, "feet")
  9349. },
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9354. {
  9355. front: {
  9356. height: math.unit(6, "feet"),
  9357. weight: math.unit(150, "lb"),
  9358. name: "Front",
  9359. image: {
  9360. source: "./media/characters/sal/front.svg",
  9361. extra: 1846 / 1699,
  9362. bottom: 0.04
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Megamacro",
  9369. height: math.unit(10, "miles"),
  9370. default: true
  9371. },
  9372. ]
  9373. ))
  9374. characterMakers.push(() => makeCharacter(
  9375. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9376. {
  9377. front: {
  9378. height: math.unit(3, "meters"),
  9379. weight: math.unit(450, "kg"),
  9380. name: "front",
  9381. image: {
  9382. source: "./media/characters/ranger/front.svg",
  9383. extra: 2401 / 2243,
  9384. bottom: 0.05
  9385. }
  9386. },
  9387. },
  9388. [
  9389. {
  9390. name: "Normal",
  9391. height: math.unit(3, "meters"),
  9392. default: true
  9393. },
  9394. ]
  9395. ))
  9396. characterMakers.push(() => makeCharacter(
  9397. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9398. {
  9399. front: {
  9400. height: math.unit(14, "feet"),
  9401. weight: math.unit(800, "kg"),
  9402. name: "Front",
  9403. image: {
  9404. source: "./media/characters/theresa/front.svg",
  9405. extra: 3575 / 3346,
  9406. bottom: 0.03
  9407. }
  9408. },
  9409. },
  9410. [
  9411. {
  9412. name: "Normal",
  9413. height: math.unit(14, "feet"),
  9414. default: true
  9415. },
  9416. ]
  9417. ))
  9418. characterMakers.push(() => makeCharacter(
  9419. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9420. {
  9421. front: {
  9422. height: math.unit(6, "feet"),
  9423. weight: math.unit(3, "kg"),
  9424. name: "Front",
  9425. image: {
  9426. source: "./media/characters/ine/front.svg",
  9427. extra: 678 / 539,
  9428. bottom: 0.023
  9429. }
  9430. },
  9431. },
  9432. [
  9433. {
  9434. name: "Normal",
  9435. height: math.unit(2.265, "feet"),
  9436. default: true
  9437. },
  9438. ]
  9439. ))
  9440. characterMakers.push(() => makeCharacter(
  9441. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9442. {
  9443. front: {
  9444. height: math.unit(5, "feet"),
  9445. weight: math.unit(30, "kg"),
  9446. name: "Front",
  9447. image: {
  9448. source: "./media/characters/vial/front.svg",
  9449. extra: 1365 / 1277,
  9450. bottom: 0.04
  9451. }
  9452. },
  9453. },
  9454. [
  9455. {
  9456. name: "Normal",
  9457. height: math.unit(5, "feet"),
  9458. default: true
  9459. },
  9460. ]
  9461. ))
  9462. characterMakers.push(() => makeCharacter(
  9463. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9464. {
  9465. side: {
  9466. height: math.unit(3.4, "meters"),
  9467. weight: math.unit(1000, "lb"),
  9468. name: "Side",
  9469. image: {
  9470. source: "./media/characters/rovoska/side.svg",
  9471. extra: 4403 / 1515
  9472. }
  9473. },
  9474. },
  9475. [
  9476. {
  9477. name: "Normal",
  9478. height: math.unit(3.4, "meters"),
  9479. default: true
  9480. },
  9481. ]
  9482. ))
  9483. characterMakers.push(() => makeCharacter(
  9484. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9485. {
  9486. front: {
  9487. height: math.unit(8, "feet"),
  9488. weight: math.unit(315, "lb"),
  9489. name: "Front",
  9490. image: {
  9491. source: "./media/characters/gunner-rotthbauer/front.svg"
  9492. }
  9493. },
  9494. back: {
  9495. height: math.unit(8, "feet"),
  9496. weight: math.unit(315, "lb"),
  9497. name: "Back",
  9498. image: {
  9499. source: "./media/characters/gunner-rotthbauer/back.svg"
  9500. }
  9501. },
  9502. },
  9503. [
  9504. {
  9505. name: "Micro",
  9506. height: math.unit(3.5, "inches")
  9507. },
  9508. {
  9509. name: "Normal",
  9510. height: math.unit(8, "feet"),
  9511. default: true
  9512. },
  9513. {
  9514. name: "Macro",
  9515. height: math.unit(250, "feet")
  9516. },
  9517. {
  9518. name: "Megamacro",
  9519. height: math.unit(1, "AU")
  9520. },
  9521. ]
  9522. ))
  9523. characterMakers.push(() => makeCharacter(
  9524. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9525. {
  9526. front: {
  9527. height: math.unit(5 + 5 / 12, "feet"),
  9528. weight: math.unit(140, "lb"),
  9529. name: "Front",
  9530. image: {
  9531. source: "./media/characters/allatia/front.svg",
  9532. extra: 1227 / 1180,
  9533. bottom: 0.027
  9534. }
  9535. },
  9536. },
  9537. [
  9538. {
  9539. name: "Normal",
  9540. height: math.unit(5 + 5 / 12, "feet")
  9541. },
  9542. {
  9543. name: "Macro",
  9544. height: math.unit(250, "feet"),
  9545. default: true
  9546. },
  9547. {
  9548. name: "Megamacro",
  9549. height: math.unit(8, "miles")
  9550. }
  9551. ]
  9552. ))
  9553. characterMakers.push(() => makeCharacter(
  9554. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9555. {
  9556. front: {
  9557. height: math.unit(6, "feet"),
  9558. weight: math.unit(120, "lb"),
  9559. name: "Front",
  9560. image: {
  9561. source: "./media/characters/tene/front.svg",
  9562. extra: 1728 / 1578,
  9563. bottom: 0.022
  9564. }
  9565. },
  9566. stomping: {
  9567. height: math.unit(2.025, "meters"),
  9568. weight: math.unit(120, "lb"),
  9569. name: "Stomping",
  9570. image: {
  9571. source: "./media/characters/tene/stomping.svg",
  9572. extra: 938 / 873,
  9573. bottom: 0.01
  9574. }
  9575. },
  9576. sitting: {
  9577. height: math.unit(1, "meter"),
  9578. weight: math.unit(120, "lb"),
  9579. name: "Sitting",
  9580. image: {
  9581. source: "./media/characters/tene/sitting.svg",
  9582. extra: 437 / 415,
  9583. bottom: 0.1
  9584. }
  9585. },
  9586. feral: {
  9587. height: math.unit(3.9, "feet"),
  9588. weight: math.unit(250, "lb"),
  9589. name: "Feral",
  9590. image: {
  9591. source: "./media/characters/tene/feral.svg",
  9592. extra: 717 / 458,
  9593. bottom: 0.179
  9594. }
  9595. },
  9596. },
  9597. [
  9598. {
  9599. name: "Normal",
  9600. height: math.unit(6, "feet")
  9601. },
  9602. {
  9603. name: "Macro",
  9604. height: math.unit(300, "feet"),
  9605. default: true
  9606. },
  9607. {
  9608. name: "Megamacro",
  9609. height: math.unit(5, "miles")
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9615. {
  9616. side: {
  9617. height: math.unit(6, "feet"),
  9618. name: "Side",
  9619. image: {
  9620. source: "./media/characters/evander/side.svg",
  9621. extra: 877 / 477
  9622. }
  9623. },
  9624. },
  9625. [
  9626. {
  9627. name: "Normal",
  9628. height: math.unit(0.83, "meters"),
  9629. default: true
  9630. },
  9631. ]
  9632. ))
  9633. characterMakers.push(() => makeCharacter(
  9634. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9635. {
  9636. front: {
  9637. height: math.unit(12, "feet"),
  9638. weight: math.unit(1000, "lb"),
  9639. name: "Front",
  9640. image: {
  9641. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9642. extra: 1762 / 1611
  9643. }
  9644. },
  9645. back: {
  9646. height: math.unit(12, "feet"),
  9647. weight: math.unit(1000, "lb"),
  9648. name: "Back",
  9649. image: {
  9650. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9651. extra: 1762 / 1611
  9652. }
  9653. },
  9654. },
  9655. [
  9656. {
  9657. name: "Normal",
  9658. height: math.unit(12, "feet"),
  9659. default: true
  9660. },
  9661. {
  9662. name: "Kaiju",
  9663. height: math.unit(150, "feet")
  9664. },
  9665. ]
  9666. ))
  9667. characterMakers.push(() => makeCharacter(
  9668. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9669. {
  9670. front: {
  9671. height: math.unit(6, "feet"),
  9672. weight: math.unit(150, "lb"),
  9673. name: "Front",
  9674. image: {
  9675. source: "./media/characters/zero-alurus/front.svg"
  9676. }
  9677. },
  9678. back: {
  9679. height: math.unit(6, "feet"),
  9680. weight: math.unit(150, "lb"),
  9681. name: "Back",
  9682. image: {
  9683. source: "./media/characters/zero-alurus/back.svg"
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Normal",
  9690. height: math.unit(5 + 10 / 12, "feet")
  9691. },
  9692. {
  9693. name: "Macro",
  9694. height: math.unit(60, "feet"),
  9695. default: true
  9696. },
  9697. {
  9698. name: "Macro+",
  9699. height: math.unit(450, "feet")
  9700. },
  9701. ]
  9702. ))
  9703. characterMakers.push(() => makeCharacter(
  9704. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9705. {
  9706. front: {
  9707. height: math.unit(6, "feet"),
  9708. weight: math.unit(200, "lb"),
  9709. name: "Front",
  9710. image: {
  9711. source: "./media/characters/mega-shi/front.svg",
  9712. extra: 1279 / 1250,
  9713. bottom: 0.02
  9714. }
  9715. },
  9716. back: {
  9717. height: math.unit(6, "feet"),
  9718. weight: math.unit(200, "lb"),
  9719. name: "Back",
  9720. image: {
  9721. source: "./media/characters/mega-shi/back.svg",
  9722. extra: 1279 / 1250,
  9723. bottom: 0.02
  9724. }
  9725. },
  9726. },
  9727. [
  9728. {
  9729. name: "Micro",
  9730. height: math.unit(16 + 6 / 12, "feet")
  9731. },
  9732. {
  9733. name: "Third Dimension",
  9734. height: math.unit(40, "meters")
  9735. },
  9736. {
  9737. name: "Normal",
  9738. height: math.unit(660, "feet"),
  9739. default: true
  9740. },
  9741. {
  9742. name: "Megamacro",
  9743. height: math.unit(10, "miles")
  9744. },
  9745. {
  9746. name: "Planetary Launch",
  9747. height: math.unit(500, "miles")
  9748. },
  9749. {
  9750. name: "Interstellar",
  9751. height: math.unit(1e9, "miles")
  9752. },
  9753. {
  9754. name: "Leaving the Universe",
  9755. height: math.unit(1, "gigaparsec")
  9756. },
  9757. {
  9758. name: "Travelling Universes",
  9759. height: math.unit(30e15, "parsecs")
  9760. },
  9761. ]
  9762. ))
  9763. characterMakers.push(() => makeCharacter(
  9764. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9765. {
  9766. front: {
  9767. height: math.unit(6, "feet"),
  9768. weight: math.unit(150, "lb"),
  9769. name: "Front",
  9770. image: {
  9771. source: "./media/characters/odyssey/front.svg",
  9772. extra: 1782 / 1582,
  9773. bottom: 0.01
  9774. }
  9775. },
  9776. side: {
  9777. height: math.unit(5.7, "feet"),
  9778. weight: math.unit(140, "lb"),
  9779. name: "Side",
  9780. image: {
  9781. source: "./media/characters/odyssey/side.svg",
  9782. extra: 6462 / 5700
  9783. }
  9784. },
  9785. },
  9786. [
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(5 + 4 / 12, "feet")
  9790. },
  9791. {
  9792. name: "Macro",
  9793. height: math.unit(1, "km")
  9794. },
  9795. {
  9796. name: "Megamacro",
  9797. height: math.unit(3000, "km")
  9798. },
  9799. {
  9800. name: "Gigamacro",
  9801. height: math.unit(1, "AU"),
  9802. default: true
  9803. },
  9804. {
  9805. name: "Omniversal",
  9806. height: math.unit(100e14, "lightyears")
  9807. },
  9808. ]
  9809. ))
  9810. characterMakers.push(() => makeCharacter(
  9811. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9812. {
  9813. front: {
  9814. height: math.unit(6, "feet"),
  9815. weight: math.unit(300, "lb"),
  9816. name: "Front",
  9817. image: {
  9818. source: "./media/characters/mekuto/front.svg",
  9819. extra: 921 / 832,
  9820. bottom: 0.03
  9821. }
  9822. },
  9823. hand: {
  9824. height: math.unit(6 / 10.24, "feet"),
  9825. name: "Hand",
  9826. image: {
  9827. source: "./media/characters/mekuto/hand.svg"
  9828. }
  9829. },
  9830. foot: {
  9831. height: math.unit(6 / 5.05, "feet"),
  9832. name: "Foot",
  9833. image: {
  9834. source: "./media/characters/mekuto/foot.svg"
  9835. }
  9836. },
  9837. },
  9838. [
  9839. {
  9840. name: "Minimicro",
  9841. height: math.unit(0.2, "inches")
  9842. },
  9843. {
  9844. name: "Micro",
  9845. height: math.unit(1.5, "inches")
  9846. },
  9847. {
  9848. name: "Normal",
  9849. height: math.unit(5 + 11 / 12, "feet"),
  9850. default: true
  9851. },
  9852. {
  9853. name: "Minimacro",
  9854. height: math.unit(17 + 9 / 12, "feet")
  9855. },
  9856. {
  9857. name: "Macro",
  9858. height: math.unit(177.5, "feet")
  9859. },
  9860. {
  9861. name: "Megamacro",
  9862. height: math.unit(152, "miles")
  9863. },
  9864. ]
  9865. ))
  9866. characterMakers.push(() => makeCharacter(
  9867. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9868. {
  9869. front: {
  9870. height: math.unit(6.5, "inches"),
  9871. weight: math.unit(13, "oz"),
  9872. name: "Front",
  9873. image: {
  9874. source: "./media/characters/dafydd-tomos/front.svg",
  9875. extra: 2990 / 2603,
  9876. bottom: 0.03
  9877. }
  9878. },
  9879. },
  9880. [
  9881. {
  9882. name: "Micro",
  9883. height: math.unit(6.5, "inches"),
  9884. default: true
  9885. },
  9886. ]
  9887. ))
  9888. characterMakers.push(() => makeCharacter(
  9889. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9890. {
  9891. front: {
  9892. height: math.unit(6, "feet"),
  9893. weight: math.unit(150, "lb"),
  9894. name: "Front",
  9895. image: {
  9896. source: "./media/characters/splinter/front.svg",
  9897. extra: 2990 / 2882,
  9898. bottom: 0.04
  9899. }
  9900. },
  9901. back: {
  9902. height: math.unit(6, "feet"),
  9903. weight: math.unit(150, "lb"),
  9904. name: "Back",
  9905. image: {
  9906. source: "./media/characters/splinter/back.svg",
  9907. extra: 2990 / 2882,
  9908. bottom: 0.04
  9909. }
  9910. },
  9911. },
  9912. [
  9913. {
  9914. name: "Normal",
  9915. height: math.unit(6, "feet")
  9916. },
  9917. {
  9918. name: "Macro",
  9919. height: math.unit(230, "meters"),
  9920. default: true
  9921. },
  9922. ]
  9923. ))
  9924. characterMakers.push(() => makeCharacter(
  9925. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9926. {
  9927. front: {
  9928. height: math.unit(4 + 10 / 12, "feet"),
  9929. weight: math.unit(480, "lb"),
  9930. name: "Front",
  9931. image: {
  9932. source: "./media/characters/snow-gabumon/front.svg",
  9933. extra: 1140 / 963,
  9934. bottom: 0.058
  9935. }
  9936. },
  9937. back: {
  9938. height: math.unit(4 + 10 / 12, "feet"),
  9939. weight: math.unit(480, "lb"),
  9940. name: "Back",
  9941. image: {
  9942. source: "./media/characters/snow-gabumon/back.svg",
  9943. extra: 1115 / 962,
  9944. bottom: 0.041
  9945. }
  9946. },
  9947. frontUndresed: {
  9948. height: math.unit(4 + 10 / 12, "feet"),
  9949. weight: math.unit(480, "lb"),
  9950. name: "Front (Undressed)",
  9951. image: {
  9952. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9953. extra: 1061 / 960,
  9954. bottom: 0.045
  9955. }
  9956. },
  9957. },
  9958. [
  9959. {
  9960. name: "Micro",
  9961. height: math.unit(1, "inch")
  9962. },
  9963. {
  9964. name: "Normal",
  9965. height: math.unit(4 + 10 / 12, "feet"),
  9966. default: true
  9967. },
  9968. {
  9969. name: "Macro",
  9970. height: math.unit(200, "feet")
  9971. },
  9972. {
  9973. name: "Megamacro",
  9974. height: math.unit(120, "miles")
  9975. },
  9976. {
  9977. name: "Gigamacro",
  9978. height: math.unit(9800, "miles")
  9979. },
  9980. ]
  9981. ))
  9982. characterMakers.push(() => makeCharacter(
  9983. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9984. {
  9985. front: {
  9986. height: math.unit(1.7, "meters"),
  9987. weight: math.unit(140, "lb"),
  9988. name: "Front",
  9989. image: {
  9990. source: "./media/characters/moody/front.svg",
  9991. extra: 3226 / 3007,
  9992. bottom: 0.087
  9993. }
  9994. },
  9995. },
  9996. [
  9997. {
  9998. name: "Micro",
  9999. height: math.unit(1, "mm")
  10000. },
  10001. {
  10002. name: "Normal",
  10003. height: math.unit(1.7, "meters"),
  10004. default: true
  10005. },
  10006. {
  10007. name: "Macro",
  10008. height: math.unit(80, "meters")
  10009. },
  10010. {
  10011. name: "Macro+",
  10012. height: math.unit(500, "meters")
  10013. },
  10014. ]
  10015. ))
  10016. characterMakers.push(() => makeCharacter(
  10017. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10018. {
  10019. front: {
  10020. height: math.unit(6, "feet"),
  10021. weight: math.unit(150, "lb"),
  10022. name: "Front",
  10023. image: {
  10024. source: "./media/characters/zyas/front.svg",
  10025. extra: 1180 / 1120,
  10026. bottom: 0.045
  10027. }
  10028. },
  10029. },
  10030. [
  10031. {
  10032. name: "Normal",
  10033. height: math.unit(10, "feet"),
  10034. default: true
  10035. },
  10036. {
  10037. name: "Macro",
  10038. height: math.unit(500, "feet")
  10039. },
  10040. {
  10041. name: "Megamacro",
  10042. height: math.unit(5, "miles")
  10043. },
  10044. {
  10045. name: "Teramacro",
  10046. height: math.unit(150000, "miles")
  10047. },
  10048. ]
  10049. ))
  10050. characterMakers.push(() => makeCharacter(
  10051. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10052. {
  10053. front: {
  10054. height: math.unit(6, "feet"),
  10055. weight: math.unit(150, "lb"),
  10056. name: "Front",
  10057. image: {
  10058. source: "./media/characters/cuon/front.svg",
  10059. extra: 1390 / 1320,
  10060. bottom: 0.008
  10061. }
  10062. },
  10063. },
  10064. [
  10065. {
  10066. name: "Micro",
  10067. height: math.unit(3, "inches")
  10068. },
  10069. {
  10070. name: "Normal",
  10071. height: math.unit(18 + 9 / 12, "feet"),
  10072. default: true
  10073. },
  10074. {
  10075. name: "Macro",
  10076. height: math.unit(360, "feet")
  10077. },
  10078. {
  10079. name: "Megamacro",
  10080. height: math.unit(360, "miles")
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10086. {
  10087. front: {
  10088. height: math.unit(2.4, "meters"),
  10089. weight: math.unit(70, "kg"),
  10090. name: "Front",
  10091. image: {
  10092. source: "./media/characters/nyanuxk/front.svg",
  10093. extra: 1172 / 1084,
  10094. bottom: 0.065
  10095. }
  10096. },
  10097. side: {
  10098. height: math.unit(2.4, "meters"),
  10099. weight: math.unit(70, "kg"),
  10100. name: "Side",
  10101. image: {
  10102. source: "./media/characters/nyanuxk/side.svg",
  10103. extra: 1190 / 1132,
  10104. bottom: 0.007
  10105. }
  10106. },
  10107. back: {
  10108. height: math.unit(2.4, "meters"),
  10109. weight: math.unit(70, "kg"),
  10110. name: "Back",
  10111. image: {
  10112. source: "./media/characters/nyanuxk/back.svg",
  10113. extra: 1200 / 1141,
  10114. bottom: 0.015
  10115. }
  10116. },
  10117. foot: {
  10118. height: math.unit(0.52, "meters"),
  10119. name: "Foot",
  10120. image: {
  10121. source: "./media/characters/nyanuxk/foot.svg"
  10122. }
  10123. },
  10124. },
  10125. [
  10126. {
  10127. name: "Micro",
  10128. height: math.unit(2, "cm")
  10129. },
  10130. {
  10131. name: "Normal",
  10132. height: math.unit(2.4, "meters"),
  10133. default: true
  10134. },
  10135. {
  10136. name: "Smaller Macro",
  10137. height: math.unit(120, "meters")
  10138. },
  10139. {
  10140. name: "Bigger Macro",
  10141. height: math.unit(1.2, "km")
  10142. },
  10143. {
  10144. name: "Megamacro",
  10145. height: math.unit(15, "kilometers")
  10146. },
  10147. {
  10148. name: "Gigamacro",
  10149. height: math.unit(2000, "km")
  10150. },
  10151. {
  10152. name: "Teramacro",
  10153. height: math.unit(500000, "km")
  10154. },
  10155. ]
  10156. ))
  10157. characterMakers.push(() => makeCharacter(
  10158. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10159. {
  10160. side: {
  10161. height: math.unit(6, "feet"),
  10162. name: "Side",
  10163. image: {
  10164. source: "./media/characters/ailbhe/side.svg",
  10165. extra: 757 / 464,
  10166. bottom: 0.041
  10167. }
  10168. },
  10169. },
  10170. [
  10171. {
  10172. name: "Normal",
  10173. height: math.unit(1.07, "meters"),
  10174. default: true
  10175. },
  10176. ]
  10177. ))
  10178. characterMakers.push(() => makeCharacter(
  10179. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10180. {
  10181. front: {
  10182. height: math.unit(6, "feet"),
  10183. weight: math.unit(120, "kg"),
  10184. name: "Front",
  10185. image: {
  10186. source: "./media/characters/zevulfius/front.svg",
  10187. extra: 965 / 903
  10188. }
  10189. },
  10190. side: {
  10191. height: math.unit(6, "feet"),
  10192. weight: math.unit(120, "kg"),
  10193. name: "Side",
  10194. image: {
  10195. source: "./media/characters/zevulfius/side.svg",
  10196. extra: 939 / 900
  10197. }
  10198. },
  10199. back: {
  10200. height: math.unit(6, "feet"),
  10201. weight: math.unit(120, "kg"),
  10202. name: "Back",
  10203. image: {
  10204. source: "./media/characters/zevulfius/back.svg",
  10205. extra: 918 / 854,
  10206. bottom: 0.005
  10207. }
  10208. },
  10209. foot: {
  10210. height: math.unit(6 / 3.72, "feet"),
  10211. name: "Foot",
  10212. image: {
  10213. source: "./media/characters/zevulfius/foot.svg"
  10214. }
  10215. },
  10216. },
  10217. [
  10218. {
  10219. name: "Macro",
  10220. height: math.unit(750, "meters")
  10221. },
  10222. {
  10223. name: "Megamacro",
  10224. height: math.unit(20, "km"),
  10225. default: true
  10226. },
  10227. {
  10228. name: "Gigamacro",
  10229. height: math.unit(2000, "km")
  10230. },
  10231. {
  10232. name: "Teramacro",
  10233. height: math.unit(250000, "km")
  10234. },
  10235. ]
  10236. ))
  10237. characterMakers.push(() => makeCharacter(
  10238. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10239. {
  10240. front: {
  10241. height: math.unit(100, "feet"),
  10242. weight: math.unit(350, "kg"),
  10243. name: "Front",
  10244. image: {
  10245. source: "./media/characters/rikes/front.svg",
  10246. extra: 1565 / 1483,
  10247. bottom: 0.017
  10248. }
  10249. },
  10250. },
  10251. [
  10252. {
  10253. name: "Macro",
  10254. height: math.unit(100, "feet"),
  10255. default: true
  10256. },
  10257. ]
  10258. ))
  10259. characterMakers.push(() => makeCharacter(
  10260. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10261. {
  10262. anthro: {
  10263. height: math.unit(8, "feet"),
  10264. weight: math.unit(120, "kg"),
  10265. name: "Anthro",
  10266. image: {
  10267. source: "./media/characters/adam-silver-mane/anthro.svg",
  10268. extra: 5743 / 5339,
  10269. bottom: 0.07
  10270. }
  10271. },
  10272. taur: {
  10273. height: math.unit(16, "feet"),
  10274. weight: math.unit(1500, "kg"),
  10275. name: "Taur",
  10276. image: {
  10277. source: "./media/characters/adam-silver-mane/taur.svg",
  10278. extra: 1713 / 1571,
  10279. bottom: 0.01
  10280. }
  10281. },
  10282. },
  10283. [
  10284. {
  10285. name: "Normal",
  10286. height: math.unit(8, "feet")
  10287. },
  10288. {
  10289. name: "Minimacro",
  10290. height: math.unit(80, "feet")
  10291. },
  10292. {
  10293. name: "Macro",
  10294. height: math.unit(800, "feet"),
  10295. default: true
  10296. },
  10297. {
  10298. name: "Megamacro",
  10299. height: math.unit(8000, "feet")
  10300. },
  10301. {
  10302. name: "Gigamacro",
  10303. height: math.unit(800, "miles")
  10304. },
  10305. {
  10306. name: "Teramacro",
  10307. height: math.unit(80000, "miles")
  10308. },
  10309. {
  10310. name: "Celestial",
  10311. height: math.unit(8e6, "miles")
  10312. },
  10313. {
  10314. name: "Star Dragon",
  10315. height: math.unit(800000, "parsecs")
  10316. },
  10317. {
  10318. name: "Godly",
  10319. height: math.unit(800, "teraparsecs")
  10320. },
  10321. ]
  10322. ))
  10323. characterMakers.push(() => makeCharacter(
  10324. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10325. {
  10326. front: {
  10327. height: math.unit(6, "feet"),
  10328. weight: math.unit(150, "lb"),
  10329. name: "Front",
  10330. image: {
  10331. source: "./media/characters/ky'owin/front.svg",
  10332. extra: 3888 / 3068,
  10333. bottom: 0.015
  10334. }
  10335. },
  10336. },
  10337. [
  10338. {
  10339. name: "Normal",
  10340. height: math.unit(6 + 8 / 12, "feet")
  10341. },
  10342. {
  10343. name: "Large",
  10344. height: math.unit(68, "feet")
  10345. },
  10346. {
  10347. name: "Macro",
  10348. height: math.unit(132, "feet")
  10349. },
  10350. {
  10351. name: "Macro+",
  10352. height: math.unit(340, "feet")
  10353. },
  10354. {
  10355. name: "Macro++",
  10356. height: math.unit(680, "feet"),
  10357. default: true
  10358. },
  10359. {
  10360. name: "Megamacro",
  10361. height: math.unit(1, "mile")
  10362. },
  10363. {
  10364. name: "Megamacro+",
  10365. height: math.unit(10, "miles")
  10366. },
  10367. ]
  10368. ))
  10369. characterMakers.push(() => makeCharacter(
  10370. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10371. {
  10372. front: {
  10373. height: math.unit(4, "feet"),
  10374. weight: math.unit(50, "lb"),
  10375. name: "Front",
  10376. image: {
  10377. source: "./media/characters/mal/front.svg",
  10378. extra: 785 / 724,
  10379. bottom: 0.07
  10380. }
  10381. },
  10382. },
  10383. [
  10384. {
  10385. name: "Micro",
  10386. height: math.unit(4, "inches")
  10387. },
  10388. {
  10389. name: "Normal",
  10390. height: math.unit(4, "feet"),
  10391. default: true
  10392. },
  10393. {
  10394. name: "Macro",
  10395. height: math.unit(200, "feet")
  10396. },
  10397. ]
  10398. ))
  10399. characterMakers.push(() => makeCharacter(
  10400. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10401. {
  10402. front: {
  10403. height: math.unit(6, "feet"),
  10404. weight: math.unit(150, "lb"),
  10405. name: "Front",
  10406. image: {
  10407. source: "./media/characters/jordan-deware/front.svg",
  10408. extra: 1191 / 1012
  10409. }
  10410. },
  10411. },
  10412. [
  10413. {
  10414. name: "Nano",
  10415. height: math.unit(0.01, "mm")
  10416. },
  10417. {
  10418. name: "Minimicro",
  10419. height: math.unit(1, "mm")
  10420. },
  10421. {
  10422. name: "Micro",
  10423. height: math.unit(0.5, "inches")
  10424. },
  10425. {
  10426. name: "Normal",
  10427. height: math.unit(4, "feet"),
  10428. default: true
  10429. },
  10430. {
  10431. name: "Minimacro",
  10432. height: math.unit(40, "meters")
  10433. },
  10434. {
  10435. name: "Small Macro",
  10436. height: math.unit(400, "meters")
  10437. },
  10438. {
  10439. name: "Macro",
  10440. height: math.unit(4, "miles")
  10441. },
  10442. {
  10443. name: "Megamacro",
  10444. height: math.unit(40, "miles")
  10445. },
  10446. {
  10447. name: "Megamacro+",
  10448. height: math.unit(400, "miles")
  10449. },
  10450. {
  10451. name: "Gigamacro",
  10452. height: math.unit(400000, "miles")
  10453. },
  10454. ]
  10455. ))
  10456. characterMakers.push(() => makeCharacter(
  10457. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10458. {
  10459. side: {
  10460. height: math.unit(6, "feet"),
  10461. weight: math.unit(150, "lb"),
  10462. name: "Side",
  10463. image: {
  10464. source: "./media/characters/kimiko/side.svg",
  10465. extra: 600 / 358
  10466. }
  10467. },
  10468. },
  10469. [
  10470. {
  10471. name: "Normal",
  10472. height: math.unit(15, "feet"),
  10473. default: true
  10474. },
  10475. {
  10476. name: "Macro",
  10477. height: math.unit(220, "feet")
  10478. },
  10479. {
  10480. name: "Macro+",
  10481. height: math.unit(1450, "feet")
  10482. },
  10483. {
  10484. name: "Megamacro",
  10485. height: math.unit(11500, "feet")
  10486. },
  10487. {
  10488. name: "Gigamacro",
  10489. height: math.unit(9500, "miles")
  10490. },
  10491. {
  10492. name: "Teramacro",
  10493. height: math.unit(2208005005, "miles")
  10494. },
  10495. {
  10496. name: "Examacro",
  10497. height: math.unit(2750, "parsecs")
  10498. },
  10499. {
  10500. name: "Zettamacro",
  10501. height: math.unit(101500, "parsecs")
  10502. },
  10503. ]
  10504. ))
  10505. characterMakers.push(() => makeCharacter(
  10506. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10507. {
  10508. front: {
  10509. height: math.unit(6, "feet"),
  10510. weight: math.unit(70, "kg"),
  10511. name: "Front",
  10512. image: {
  10513. source: "./media/characters/andrew-sleepy/front.svg"
  10514. }
  10515. },
  10516. side: {
  10517. height: math.unit(6, "feet"),
  10518. weight: math.unit(70, "kg"),
  10519. name: "Side",
  10520. image: {
  10521. source: "./media/characters/andrew-sleepy/side.svg"
  10522. }
  10523. },
  10524. },
  10525. [
  10526. {
  10527. name: "Micro",
  10528. height: math.unit(1, "mm"),
  10529. default: true
  10530. },
  10531. ]
  10532. ))
  10533. characterMakers.push(() => makeCharacter(
  10534. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10535. {
  10536. front: {
  10537. height: math.unit(6, "feet"),
  10538. weight: math.unit(150, "lb"),
  10539. name: "Front",
  10540. image: {
  10541. source: "./media/characters/judio/front.svg",
  10542. extra: 1258 / 1110
  10543. }
  10544. },
  10545. },
  10546. [
  10547. {
  10548. name: "Normal",
  10549. height: math.unit(5 + 6 / 12, "feet")
  10550. },
  10551. {
  10552. name: "Macro",
  10553. height: math.unit(1000, "feet"),
  10554. default: true
  10555. },
  10556. {
  10557. name: "Megamacro",
  10558. height: math.unit(10, "miles")
  10559. },
  10560. ]
  10561. ))
  10562. characterMakers.push(() => makeCharacter(
  10563. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10564. {
  10565. front: {
  10566. height: math.unit(6, "feet"),
  10567. weight: math.unit(68, "kg"),
  10568. name: "Front",
  10569. image: {
  10570. source: "./media/characters/nomaxice/front.svg",
  10571. extra: 1498 / 1073,
  10572. bottom: 0.075
  10573. }
  10574. },
  10575. foot: {
  10576. height: math.unit(1.1, "feet"),
  10577. name: "Foot",
  10578. image: {
  10579. source: "./media/characters/nomaxice/foot.svg"
  10580. }
  10581. },
  10582. },
  10583. [
  10584. {
  10585. name: "Micro",
  10586. height: math.unit(8, "cm")
  10587. },
  10588. {
  10589. name: "Norm",
  10590. height: math.unit(1.82, "m")
  10591. },
  10592. {
  10593. name: "Norm+",
  10594. height: math.unit(8.8, "feet")
  10595. },
  10596. {
  10597. name: "Big",
  10598. height: math.unit(8, "meters"),
  10599. default: true
  10600. },
  10601. {
  10602. name: "Macro",
  10603. height: math.unit(18, "meters")
  10604. },
  10605. {
  10606. name: "Macro+",
  10607. height: math.unit(88, "meters")
  10608. },
  10609. ]
  10610. ))
  10611. characterMakers.push(() => makeCharacter(
  10612. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10613. {
  10614. front: {
  10615. height: math.unit(12, "feet"),
  10616. weight: math.unit(1.5, "tons"),
  10617. name: "Front",
  10618. image: {
  10619. source: "./media/characters/dydros/front.svg",
  10620. extra: 863 / 800,
  10621. bottom: 0.015
  10622. }
  10623. },
  10624. back: {
  10625. height: math.unit(12, "feet"),
  10626. weight: math.unit(1.5, "tons"),
  10627. name: "Back",
  10628. image: {
  10629. source: "./media/characters/dydros/back.svg",
  10630. extra: 900 / 843,
  10631. bottom: 0.005
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Normal",
  10638. height: math.unit(12, "feet"),
  10639. default: true
  10640. },
  10641. ]
  10642. ))
  10643. characterMakers.push(() => makeCharacter(
  10644. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10645. {
  10646. front: {
  10647. height: math.unit(6, "feet"),
  10648. weight: math.unit(100, "kg"),
  10649. name: "Front",
  10650. image: {
  10651. source: "./media/characters/riggi/front.svg",
  10652. extra: 5787 / 5303
  10653. }
  10654. },
  10655. hyper: {
  10656. height: math.unit(6 * 5 / 3, "feet"),
  10657. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10658. name: "Hyper",
  10659. image: {
  10660. source: "./media/characters/riggi/hyper.svg",
  10661. extra: 3595 / 3485
  10662. }
  10663. },
  10664. },
  10665. [
  10666. {
  10667. name: "Small Macro",
  10668. height: math.unit(50, "feet")
  10669. },
  10670. {
  10671. name: "Default",
  10672. height: math.unit(200, "feet"),
  10673. default: true
  10674. },
  10675. {
  10676. name: "Loom",
  10677. height: math.unit(10000, "feet")
  10678. },
  10679. {
  10680. name: "Cruising Altitude",
  10681. height: math.unit(30000, "feet")
  10682. },
  10683. {
  10684. name: "Megamacro",
  10685. height: math.unit(100, "miles")
  10686. },
  10687. {
  10688. name: "Continent Sized",
  10689. height: math.unit(2800, "miles")
  10690. },
  10691. {
  10692. name: "Earth Sized",
  10693. height: math.unit(8000, "miles")
  10694. },
  10695. ]
  10696. ))
  10697. characterMakers.push(() => makeCharacter(
  10698. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10699. {
  10700. front: {
  10701. height: math.unit(6, "feet"),
  10702. weight: math.unit(250, "lb"),
  10703. name: "Front",
  10704. image: {
  10705. source: "./media/characters/alexi/front.svg",
  10706. extra: 3483 / 3291,
  10707. bottom: 0.04
  10708. }
  10709. },
  10710. back: {
  10711. height: math.unit(6, "feet"),
  10712. weight: math.unit(250, "lb"),
  10713. name: "Back",
  10714. image: {
  10715. source: "./media/characters/alexi/back.svg",
  10716. extra: 3533 / 3356,
  10717. bottom: 0.021
  10718. }
  10719. },
  10720. frontTransforming: {
  10721. height: math.unit(8.58, "feet"),
  10722. weight: math.unit(1300, "lb"),
  10723. name: "Transforming",
  10724. image: {
  10725. source: "./media/characters/alexi/front-transforming.svg",
  10726. extra: 437 / 409,
  10727. bottom: 19 / 458.66
  10728. }
  10729. },
  10730. frontTransformed: {
  10731. height: math.unit(12.5, "feet"),
  10732. weight: math.unit(4000, "lb"),
  10733. name: "Transformed",
  10734. image: {
  10735. source: "./media/characters/alexi/front-transformed.svg",
  10736. extra: 639 / 614,
  10737. bottom: 30.55 / 671
  10738. }
  10739. },
  10740. },
  10741. [
  10742. {
  10743. name: "Normal",
  10744. height: math.unit(14, "feet"),
  10745. default: true
  10746. },
  10747. {
  10748. name: "Minimacro",
  10749. height: math.unit(30, "meters")
  10750. },
  10751. {
  10752. name: "Macro",
  10753. height: math.unit(500, "meters")
  10754. },
  10755. {
  10756. name: "Megamacro",
  10757. height: math.unit(9000, "km")
  10758. },
  10759. {
  10760. name: "Teramacro",
  10761. height: math.unit(384000, "km")
  10762. },
  10763. ]
  10764. ))
  10765. characterMakers.push(() => makeCharacter(
  10766. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10767. {
  10768. front: {
  10769. height: math.unit(6, "feet"),
  10770. weight: math.unit(150, "lb"),
  10771. name: "Front",
  10772. image: {
  10773. source: "./media/characters/kayroo/front.svg",
  10774. extra: 1153 / 1038,
  10775. bottom: 0.06
  10776. }
  10777. },
  10778. foot: {
  10779. height: math.unit(6, "feet"),
  10780. weight: math.unit(150, "lb"),
  10781. name: "Foot",
  10782. image: {
  10783. source: "./media/characters/kayroo/foot.svg"
  10784. }
  10785. },
  10786. },
  10787. [
  10788. {
  10789. name: "Normal",
  10790. height: math.unit(8, "feet"),
  10791. default: true
  10792. },
  10793. {
  10794. name: "Minimacro",
  10795. height: math.unit(250, "feet")
  10796. },
  10797. {
  10798. name: "Macro",
  10799. height: math.unit(2800, "feet")
  10800. },
  10801. {
  10802. name: "Megamacro",
  10803. height: math.unit(5200, "feet")
  10804. },
  10805. {
  10806. name: "Gigamacro",
  10807. height: math.unit(27000, "feet")
  10808. },
  10809. {
  10810. name: "Omega",
  10811. height: math.unit(45000, "feet")
  10812. },
  10813. ]
  10814. ))
  10815. characterMakers.push(() => makeCharacter(
  10816. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10817. {
  10818. front: {
  10819. height: math.unit(18, "feet"),
  10820. weight: math.unit(5800, "lb"),
  10821. name: "Front",
  10822. image: {
  10823. source: "./media/characters/rhys/front.svg",
  10824. extra: 3386 / 3090,
  10825. bottom: 0.07
  10826. }
  10827. },
  10828. },
  10829. [
  10830. {
  10831. name: "Normal",
  10832. height: math.unit(18, "feet"),
  10833. default: true
  10834. },
  10835. {
  10836. name: "Working Size",
  10837. height: math.unit(200, "feet")
  10838. },
  10839. {
  10840. name: "Demolition Size",
  10841. height: math.unit(2000, "feet")
  10842. },
  10843. {
  10844. name: "Maximum Licensed Size",
  10845. height: math.unit(5, "miles")
  10846. },
  10847. {
  10848. name: "Maximum Observed Size",
  10849. height: math.unit(10, "yottameters")
  10850. },
  10851. ]
  10852. ))
  10853. characterMakers.push(() => makeCharacter(
  10854. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10855. {
  10856. front: {
  10857. height: math.unit(6, "feet"),
  10858. weight: math.unit(250, "lb"),
  10859. name: "Front",
  10860. image: {
  10861. source: "./media/characters/toto/front.svg",
  10862. extra: 527 / 479,
  10863. bottom: 0.05
  10864. }
  10865. },
  10866. },
  10867. [
  10868. {
  10869. name: "Micro",
  10870. height: math.unit(3, "feet")
  10871. },
  10872. {
  10873. name: "Normal",
  10874. height: math.unit(10, "feet")
  10875. },
  10876. {
  10877. name: "Macro",
  10878. height: math.unit(150, "feet"),
  10879. default: true
  10880. },
  10881. {
  10882. name: "Megamacro",
  10883. height: math.unit(1200, "feet")
  10884. },
  10885. ]
  10886. ))
  10887. characterMakers.push(() => makeCharacter(
  10888. { name: "King", species: ["lion"], tags: ["anthro"] },
  10889. {
  10890. back: {
  10891. height: math.unit(6, "feet"),
  10892. weight: math.unit(150, "lb"),
  10893. name: "Back",
  10894. image: {
  10895. source: "./media/characters/king/back.svg"
  10896. }
  10897. },
  10898. },
  10899. [
  10900. {
  10901. name: "Micro",
  10902. height: math.unit(2, "inches")
  10903. },
  10904. {
  10905. name: "Normal",
  10906. height: math.unit(8, "feet")
  10907. },
  10908. {
  10909. name: "Macro",
  10910. height: math.unit(200, "feet"),
  10911. default: true
  10912. },
  10913. {
  10914. name: "Megamacro",
  10915. height: math.unit(50, "miles")
  10916. },
  10917. ]
  10918. ))
  10919. characterMakers.push(() => makeCharacter(
  10920. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10921. {
  10922. anthro: {
  10923. height: math.unit(6 + 5 / 12, "feet"),
  10924. weight: math.unit(280, "lb"),
  10925. name: "Anthro",
  10926. image: {
  10927. source: "./media/characters/cordite/anthro.svg",
  10928. extra: 1986 / 1905,
  10929. bottom: 0.025
  10930. }
  10931. },
  10932. feral: {
  10933. height: math.unit(2, "feet"),
  10934. weight: math.unit(90, "lb"),
  10935. name: "Feral",
  10936. image: {
  10937. source: "./media/characters/cordite/feral.svg",
  10938. extra: 1260 / 755,
  10939. bottom: 0.05
  10940. }
  10941. },
  10942. },
  10943. [
  10944. {
  10945. name: "Normal",
  10946. height: math.unit(6 + 5 / 12, "feet"),
  10947. default: true
  10948. },
  10949. ]
  10950. ))
  10951. characterMakers.push(() => makeCharacter(
  10952. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10953. {
  10954. front: {
  10955. height: math.unit(6, "feet"),
  10956. weight: math.unit(150, "lb"),
  10957. name: "Front",
  10958. image: {
  10959. source: "./media/characters/pianostrong/front.svg",
  10960. extra: 6577 / 6254,
  10961. bottom: 0.02
  10962. }
  10963. },
  10964. side: {
  10965. height: math.unit(6, "feet"),
  10966. weight: math.unit(150, "lb"),
  10967. name: "Side",
  10968. image: {
  10969. source: "./media/characters/pianostrong/side.svg",
  10970. extra: 6106 / 5730
  10971. }
  10972. },
  10973. back: {
  10974. height: math.unit(6, "feet"),
  10975. weight: math.unit(150, "lb"),
  10976. name: "Back",
  10977. image: {
  10978. source: "./media/characters/pianostrong/back.svg",
  10979. extra: 6085 / 5733,
  10980. bottom: 0.01
  10981. }
  10982. },
  10983. },
  10984. [
  10985. {
  10986. name: "Macro",
  10987. height: math.unit(100, "feet")
  10988. },
  10989. {
  10990. name: "Macro+",
  10991. height: math.unit(300, "feet"),
  10992. default: true
  10993. },
  10994. {
  10995. name: "Macro++",
  10996. height: math.unit(1000, "feet")
  10997. },
  10998. ]
  10999. ))
  11000. characterMakers.push(() => makeCharacter(
  11001. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11002. {
  11003. front: {
  11004. height: math.unit(6, "feet"),
  11005. weight: math.unit(150, "lb"),
  11006. name: "Front",
  11007. image: {
  11008. source: "./media/characters/kona/front.svg",
  11009. extra: 2960 / 2629,
  11010. bottom: 0.005
  11011. }
  11012. },
  11013. },
  11014. [
  11015. {
  11016. name: "Normal",
  11017. height: math.unit(11 + 8 / 12, "feet")
  11018. },
  11019. {
  11020. name: "Macro",
  11021. height: math.unit(850, "feet"),
  11022. default: true
  11023. },
  11024. {
  11025. name: "Macro+",
  11026. height: math.unit(1.5, "km"),
  11027. default: true
  11028. },
  11029. {
  11030. name: "Megamacro",
  11031. height: math.unit(80, "miles")
  11032. },
  11033. {
  11034. name: "Gigamacro",
  11035. height: math.unit(3500, "miles")
  11036. },
  11037. ]
  11038. ))
  11039. characterMakers.push(() => makeCharacter(
  11040. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11041. {
  11042. side: {
  11043. height: math.unit(1.9, "meters"),
  11044. weight: math.unit(326, "kg"),
  11045. name: "Side",
  11046. image: {
  11047. source: "./media/characters/levi/side.svg",
  11048. extra: 1704 / 1334,
  11049. bottom: 0.02
  11050. }
  11051. },
  11052. },
  11053. [
  11054. {
  11055. name: "Normal",
  11056. height: math.unit(1.9, "meters"),
  11057. default: true
  11058. },
  11059. {
  11060. name: "Macro",
  11061. height: math.unit(20, "meters")
  11062. },
  11063. {
  11064. name: "Macro+",
  11065. height: math.unit(200, "meters")
  11066. },
  11067. {
  11068. name: "Megamacro",
  11069. height: math.unit(2, "km")
  11070. },
  11071. {
  11072. name: "Megamacro+",
  11073. height: math.unit(20, "km")
  11074. },
  11075. {
  11076. name: "Gigamacro",
  11077. height: math.unit(2500, "km")
  11078. },
  11079. {
  11080. name: "Gigamacro+",
  11081. height: math.unit(120000, "km")
  11082. },
  11083. {
  11084. name: "Teramacro",
  11085. height: math.unit(7.77e6, "km")
  11086. },
  11087. ]
  11088. ))
  11089. characterMakers.push(() => makeCharacter(
  11090. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11091. {
  11092. front: {
  11093. height: math.unit(6 + 4 / 12, "feet"),
  11094. weight: math.unit(188, "lb"),
  11095. name: "Front",
  11096. image: {
  11097. source: "./media/characters/bmc/front.svg",
  11098. extra: 1067 / 1022,
  11099. bottom: 0.047
  11100. }
  11101. },
  11102. },
  11103. [
  11104. {
  11105. name: "Human-sized",
  11106. height: math.unit(6 + 4 / 12, "feet")
  11107. },
  11108. {
  11109. name: "Small",
  11110. height: math.unit(250, "feet")
  11111. },
  11112. {
  11113. name: "Normal",
  11114. height: math.unit(1250, "feet"),
  11115. default: true
  11116. },
  11117. {
  11118. name: "Good Day",
  11119. height: math.unit(88, "miles")
  11120. },
  11121. {
  11122. name: "Largest Measured Size",
  11123. height: math.unit(11.2e6, "lightyears")
  11124. },
  11125. ]
  11126. ))
  11127. characterMakers.push(() => makeCharacter(
  11128. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11129. {
  11130. front: {
  11131. height: math.unit(20, "feet"),
  11132. weight: math.unit(2016, "kg"),
  11133. name: "Front",
  11134. image: {
  11135. source: "./media/characters/sven-the-kaiju/front.svg",
  11136. extra: 1277/1250,
  11137. bottom: 35/1312
  11138. }
  11139. },
  11140. mouth: {
  11141. height: math.unit(1.85, "feet"),
  11142. name: "Mouth",
  11143. image: {
  11144. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11145. }
  11146. },
  11147. },
  11148. [
  11149. {
  11150. name: "Fairy",
  11151. height: math.unit(6, "inches")
  11152. },
  11153. {
  11154. name: "Normal",
  11155. height: math.unit(20, "feet"),
  11156. default: true
  11157. },
  11158. {
  11159. name: "Rampage",
  11160. height: math.unit(200, "feet")
  11161. },
  11162. {
  11163. name: "Archfey Forest Guardian",
  11164. height: math.unit(1, "mile")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(4, "meters"),
  11173. weight: math.unit(2, "tons"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/marik/front.svg",
  11177. extra: 1057 / 1003,
  11178. bottom: 0.08
  11179. }
  11180. },
  11181. },
  11182. [
  11183. {
  11184. name: "Normal",
  11185. height: math.unit(4, "meters"),
  11186. default: true
  11187. },
  11188. {
  11189. name: "Macro",
  11190. height: math.unit(20, "meters")
  11191. },
  11192. {
  11193. name: "Megamacro",
  11194. height: math.unit(50, "km")
  11195. },
  11196. {
  11197. name: "Gigamacro",
  11198. height: math.unit(100, "km")
  11199. },
  11200. {
  11201. name: "Alpha Macro",
  11202. height: math.unit(7.88e7, "yottameters")
  11203. },
  11204. ]
  11205. ))
  11206. characterMakers.push(() => makeCharacter(
  11207. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11208. {
  11209. front: {
  11210. height: math.unit(6, "feet"),
  11211. weight: math.unit(110, "lb"),
  11212. name: "Front",
  11213. image: {
  11214. source: "./media/characters/mel/front.svg",
  11215. extra: 736 / 617,
  11216. bottom: 0.017
  11217. }
  11218. },
  11219. },
  11220. [
  11221. {
  11222. name: "Pico",
  11223. height: math.unit(3, "pm")
  11224. },
  11225. {
  11226. name: "Nano",
  11227. height: math.unit(3, "nm")
  11228. },
  11229. {
  11230. name: "Micro",
  11231. height: math.unit(0.3, "mm"),
  11232. default: true
  11233. },
  11234. {
  11235. name: "Micro+",
  11236. height: math.unit(3, "mm")
  11237. },
  11238. {
  11239. name: "Normal",
  11240. height: math.unit(5 + 10.5 / 12, "feet")
  11241. },
  11242. ]
  11243. ))
  11244. characterMakers.push(() => makeCharacter(
  11245. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11246. {
  11247. kaiju: {
  11248. height: math.unit(1.75, "meters"),
  11249. weight: math.unit(55, "kg"),
  11250. name: "Kaiju",
  11251. image: {
  11252. source: "./media/characters/lykonous/kaiju.svg",
  11253. extra: 1055 / 946,
  11254. bottom: 0.135
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Normal",
  11261. height: math.unit(2.5, "meters"),
  11262. default: true
  11263. },
  11264. {
  11265. name: "Kaiju Dragon",
  11266. height: math.unit(60, "meters")
  11267. },
  11268. {
  11269. name: "Mega Kaiju",
  11270. height: math.unit(120, "km")
  11271. },
  11272. {
  11273. name: "Giga Kaiju",
  11274. height: math.unit(200, "megameters")
  11275. },
  11276. {
  11277. name: "Terra Kaiju",
  11278. height: math.unit(400, "gigameters")
  11279. },
  11280. {
  11281. name: "Kaiju Dragon God",
  11282. height: math.unit(13000, "exaparsecs")
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11288. {
  11289. front: {
  11290. height: math.unit(6, "feet"),
  11291. weight: math.unit(150, "lb"),
  11292. name: "Front",
  11293. image: {
  11294. source: "./media/characters/blü/front.svg",
  11295. extra: 1883 / 1564,
  11296. bottom: 0.031
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Normal",
  11303. height: math.unit(13, "feet"),
  11304. default: true
  11305. },
  11306. {
  11307. name: "Big Boi",
  11308. height: math.unit(150, "meters")
  11309. },
  11310. {
  11311. name: "Mini Stomper",
  11312. height: math.unit(300, "meters")
  11313. },
  11314. {
  11315. name: "Macro",
  11316. height: math.unit(1000, "meters")
  11317. },
  11318. {
  11319. name: "Megamacro",
  11320. height: math.unit(11000, "meters")
  11321. },
  11322. {
  11323. name: "Gigamacro",
  11324. height: math.unit(11000, "km")
  11325. },
  11326. {
  11327. name: "Teramacro",
  11328. height: math.unit(420000, "km")
  11329. },
  11330. {
  11331. name: "Examacro",
  11332. height: math.unit(120, "parsecs")
  11333. },
  11334. {
  11335. name: "God Tho",
  11336. height: math.unit(98000000000, "parsecs")
  11337. },
  11338. ]
  11339. ))
  11340. characterMakers.push(() => makeCharacter(
  11341. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11342. {
  11343. taurFront: {
  11344. height: math.unit(6, "feet"),
  11345. weight: math.unit(200, "lb"),
  11346. name: "Taur (Front)",
  11347. image: {
  11348. source: "./media/characters/scales/taur-front.svg",
  11349. extra: 1,
  11350. bottom: 0.05
  11351. }
  11352. },
  11353. taurBack: {
  11354. height: math.unit(6, "feet"),
  11355. weight: math.unit(200, "lb"),
  11356. name: "Taur (Back)",
  11357. image: {
  11358. source: "./media/characters/scales/taur-back.svg",
  11359. extra: 1,
  11360. bottom: 0.08
  11361. }
  11362. },
  11363. anthro: {
  11364. height: math.unit(6 * 7 / 12, "feet"),
  11365. weight: math.unit(100, "lb"),
  11366. name: "Anthro",
  11367. image: {
  11368. source: "./media/characters/scales/anthro.svg",
  11369. extra: 1,
  11370. bottom: 0.06
  11371. }
  11372. },
  11373. },
  11374. [
  11375. {
  11376. name: "Normal",
  11377. height: math.unit(12, "feet"),
  11378. default: true
  11379. },
  11380. ]
  11381. ))
  11382. characterMakers.push(() => makeCharacter(
  11383. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11384. {
  11385. front: {
  11386. height: math.unit(6, "feet"),
  11387. weight: math.unit(150, "lb"),
  11388. name: "Front",
  11389. image: {
  11390. source: "./media/characters/koragos/front.svg",
  11391. extra: 841 / 794,
  11392. bottom: 0.035
  11393. }
  11394. },
  11395. back: {
  11396. height: math.unit(6, "feet"),
  11397. weight: math.unit(150, "lb"),
  11398. name: "Back",
  11399. image: {
  11400. source: "./media/characters/koragos/back.svg",
  11401. extra: 841 / 810,
  11402. bottom: 0.022
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Normal",
  11409. height: math.unit(6 + 11 / 12, "feet"),
  11410. default: true
  11411. },
  11412. {
  11413. name: "Macro",
  11414. height: math.unit(490, "feet")
  11415. },
  11416. {
  11417. name: "Megamacro",
  11418. height: math.unit(10, "miles")
  11419. },
  11420. {
  11421. name: "Gigamacro",
  11422. height: math.unit(50, "miles")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11428. {
  11429. front: {
  11430. height: math.unit(6, "feet"),
  11431. weight: math.unit(250, "lb"),
  11432. name: "Front",
  11433. image: {
  11434. source: "./media/characters/xylrem/front.svg",
  11435. extra: 3323 / 3050,
  11436. bottom: 0.065
  11437. }
  11438. },
  11439. },
  11440. [
  11441. {
  11442. name: "Micro",
  11443. height: math.unit(4, "feet")
  11444. },
  11445. {
  11446. name: "Normal",
  11447. height: math.unit(16, "feet"),
  11448. default: true
  11449. },
  11450. {
  11451. name: "Macro",
  11452. height: math.unit(2720, "feet")
  11453. },
  11454. {
  11455. name: "Megamacro",
  11456. height: math.unit(25000, "miles")
  11457. },
  11458. ]
  11459. ))
  11460. characterMakers.push(() => makeCharacter(
  11461. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11462. {
  11463. front: {
  11464. height: math.unit(8, "feet"),
  11465. weight: math.unit(250, "kg"),
  11466. name: "Front",
  11467. image: {
  11468. source: "./media/characters/ikideru/front.svg",
  11469. extra: 930 / 870,
  11470. bottom: 0.087
  11471. }
  11472. },
  11473. back: {
  11474. height: math.unit(8, "feet"),
  11475. weight: math.unit(250, "kg"),
  11476. name: "Back",
  11477. image: {
  11478. source: "./media/characters/ikideru/back.svg",
  11479. extra: 919 / 852,
  11480. bottom: 0.055
  11481. }
  11482. },
  11483. },
  11484. [
  11485. {
  11486. name: "Rare",
  11487. height: math.unit(8, "feet"),
  11488. default: true
  11489. },
  11490. {
  11491. name: "Playful Loom",
  11492. height: math.unit(80, "feet")
  11493. },
  11494. {
  11495. name: "City Leaner",
  11496. height: math.unit(230, "feet")
  11497. },
  11498. {
  11499. name: "Megamacro",
  11500. height: math.unit(2500, "feet")
  11501. },
  11502. {
  11503. name: "Gigamacro",
  11504. height: math.unit(26400, "feet")
  11505. },
  11506. {
  11507. name: "Tectonic Shifter",
  11508. height: math.unit(1.7, "megameters")
  11509. },
  11510. {
  11511. name: "Planet Carer",
  11512. height: math.unit(21, "megameters")
  11513. },
  11514. {
  11515. name: "God",
  11516. height: math.unit(11157.22, "parsecs")
  11517. },
  11518. ]
  11519. ))
  11520. characterMakers.push(() => makeCharacter(
  11521. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11522. {
  11523. front: {
  11524. height: math.unit(6, "feet"),
  11525. weight: math.unit(120, "lb"),
  11526. name: "Front",
  11527. image: {
  11528. source: "./media/characters/neo/front.svg"
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Micro",
  11535. height: math.unit(2, "inches"),
  11536. default: true
  11537. },
  11538. {
  11539. name: "Human Size",
  11540. height: math.unit(5 + 8 / 12, "feet")
  11541. },
  11542. ]
  11543. ))
  11544. characterMakers.push(() => makeCharacter(
  11545. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11546. {
  11547. front: {
  11548. height: math.unit(13 + 10 / 12, "feet"),
  11549. weight: math.unit(5320, "lb"),
  11550. name: "Front",
  11551. image: {
  11552. source: "./media/characters/chauncey-chantz/front.svg",
  11553. extra: 1587 / 1435,
  11554. bottom: 0.02
  11555. }
  11556. },
  11557. },
  11558. [
  11559. {
  11560. name: "Normal",
  11561. height: math.unit(13 + 10 / 12, "feet"),
  11562. default: true
  11563. },
  11564. {
  11565. name: "Macro",
  11566. height: math.unit(45, "feet")
  11567. },
  11568. {
  11569. name: "Megamacro",
  11570. height: math.unit(250, "miles")
  11571. },
  11572. {
  11573. name: "Planetary",
  11574. height: math.unit(10000, "miles")
  11575. },
  11576. {
  11577. name: "Galactic",
  11578. height: math.unit(40000, "parsecs")
  11579. },
  11580. {
  11581. name: "Universal",
  11582. height: math.unit(1, "yottameter")
  11583. },
  11584. ]
  11585. ))
  11586. characterMakers.push(() => makeCharacter(
  11587. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11588. {
  11589. front: {
  11590. height: math.unit(6, "feet"),
  11591. weight: math.unit(150, "lb"),
  11592. name: "Front",
  11593. image: {
  11594. source: "./media/characters/epifox/front.svg",
  11595. extra: 1,
  11596. bottom: 0.075
  11597. }
  11598. },
  11599. },
  11600. [
  11601. {
  11602. name: "Micro",
  11603. height: math.unit(6, "inches")
  11604. },
  11605. {
  11606. name: "Normal",
  11607. height: math.unit(12, "feet"),
  11608. default: true
  11609. },
  11610. {
  11611. name: "Macro",
  11612. height: math.unit(3810, "feet")
  11613. },
  11614. {
  11615. name: "Megamacro",
  11616. height: math.unit(500, "miles")
  11617. },
  11618. ]
  11619. ))
  11620. characterMakers.push(() => makeCharacter(
  11621. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11622. {
  11623. front: {
  11624. height: math.unit(1.8796, "m"),
  11625. weight: math.unit(230, "lb"),
  11626. name: "Front",
  11627. image: {
  11628. source: "./media/characters/colin-t/front.svg",
  11629. extra: 1272 / 1193,
  11630. bottom: 0.07
  11631. }
  11632. },
  11633. },
  11634. [
  11635. {
  11636. name: "Micro",
  11637. height: math.unit(0.571, "meters")
  11638. },
  11639. {
  11640. name: "Normal",
  11641. height: math.unit(1.8796, "meters"),
  11642. default: true
  11643. },
  11644. {
  11645. name: "Tall",
  11646. height: math.unit(4, "meters")
  11647. },
  11648. {
  11649. name: "Macro",
  11650. height: math.unit(67.241, "meters")
  11651. },
  11652. {
  11653. name: "Megamacro",
  11654. height: math.unit(371.856, "meters")
  11655. },
  11656. {
  11657. name: "Planetary",
  11658. height: math.unit(12631.5689, "km")
  11659. },
  11660. ]
  11661. ))
  11662. characterMakers.push(() => makeCharacter(
  11663. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11664. {
  11665. front: {
  11666. height: math.unit(1.85, "meters"),
  11667. weight: math.unit(80, "kg"),
  11668. name: "Front",
  11669. image: {
  11670. source: "./media/characters/matvei/front.svg",
  11671. extra: 614 / 594,
  11672. bottom: 0.01
  11673. }
  11674. },
  11675. },
  11676. [
  11677. {
  11678. name: "Normal",
  11679. height: math.unit(1.85, "meters"),
  11680. default: true
  11681. },
  11682. ]
  11683. ))
  11684. characterMakers.push(() => makeCharacter(
  11685. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11686. {
  11687. front: {
  11688. height: math.unit(5 + 9 / 12, "feet"),
  11689. weight: math.unit(70, "lb"),
  11690. name: "Front",
  11691. image: {
  11692. source: "./media/characters/quincy/front.svg",
  11693. extra: 3041 / 2751
  11694. }
  11695. },
  11696. back: {
  11697. height: math.unit(5 + 9 / 12, "feet"),
  11698. weight: math.unit(70, "lb"),
  11699. name: "Back",
  11700. image: {
  11701. source: "./media/characters/quincy/back.svg",
  11702. extra: 3041 / 2751
  11703. }
  11704. },
  11705. flying: {
  11706. height: math.unit(5 + 4 / 12, "feet"),
  11707. weight: math.unit(70, "lb"),
  11708. name: "Flying",
  11709. image: {
  11710. source: "./media/characters/quincy/flying.svg",
  11711. extra: 1044 / 930
  11712. }
  11713. },
  11714. },
  11715. [
  11716. {
  11717. name: "Micro",
  11718. height: math.unit(3, "cm")
  11719. },
  11720. {
  11721. name: "Normal",
  11722. height: math.unit(5 + 9 / 12, "feet")
  11723. },
  11724. {
  11725. name: "Macro",
  11726. height: math.unit(200, "meters"),
  11727. default: true
  11728. },
  11729. {
  11730. name: "Megamacro",
  11731. height: math.unit(1000, "meters")
  11732. },
  11733. ]
  11734. ))
  11735. characterMakers.push(() => makeCharacter(
  11736. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11737. {
  11738. front: {
  11739. height: math.unit(4 + 7 / 12, "feet"),
  11740. weight: math.unit(50, "lb"),
  11741. name: "Front",
  11742. image: {
  11743. source: "./media/characters/vanrel/front.svg",
  11744. extra: 1,
  11745. bottom: 0.02
  11746. }
  11747. },
  11748. frontAlt: {
  11749. height: math.unit(4 + 7 / 12, "feet"),
  11750. weight: math.unit(50, "lb"),
  11751. name: "Front-alt",
  11752. image: {
  11753. source: "./media/characters/vanrel/front-alt.svg",
  11754. extra: 1,
  11755. bottom: 15 / 1511
  11756. }
  11757. },
  11758. elemental: {
  11759. height: math.unit(3, "feet"),
  11760. weight: math.unit(50, "lb"),
  11761. name: "Elemental",
  11762. image: {
  11763. source: "./media/characters/vanrel/elemental.svg",
  11764. extra: 192.3 / 162.8,
  11765. bottom: 1.79 / 194.17
  11766. }
  11767. },
  11768. side: {
  11769. height: math.unit(4 + 7 / 12, "feet"),
  11770. weight: math.unit(50, "lb"),
  11771. name: "Side",
  11772. image: {
  11773. source: "./media/characters/vanrel/side.svg",
  11774. extra: 1,
  11775. bottom: 0.025
  11776. }
  11777. },
  11778. tome: {
  11779. height: math.unit(1.35, "feet"),
  11780. weight: math.unit(10, "lb"),
  11781. name: "Vanrel's Tome",
  11782. rename: true,
  11783. image: {
  11784. source: "./media/characters/vanrel/tome.svg"
  11785. }
  11786. },
  11787. beans: {
  11788. height: math.unit(0.89, "feet"),
  11789. name: "Beans",
  11790. image: {
  11791. source: "./media/characters/vanrel/beans.svg"
  11792. }
  11793. },
  11794. },
  11795. [
  11796. {
  11797. name: "Normal",
  11798. height: math.unit(4 + 7 / 12, "feet"),
  11799. default: true
  11800. },
  11801. ]
  11802. ))
  11803. characterMakers.push(() => makeCharacter(
  11804. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11805. {
  11806. front: {
  11807. height: math.unit(7 + 5 / 12, "feet"),
  11808. weight: math.unit(150, "lb"),
  11809. name: "Front",
  11810. image: {
  11811. source: "./media/characters/kuiper-vanrel/front.svg",
  11812. extra: 1118 / 1068,
  11813. bottom: 0.09
  11814. }
  11815. },
  11816. foot: {
  11817. height: math.unit(0.55, "meters"),
  11818. name: "Foot",
  11819. image: {
  11820. source: "./media/characters/kuiper-vanrel/foot.svg",
  11821. }
  11822. },
  11823. battle: {
  11824. height: math.unit(6.824, "feet"),
  11825. weight: math.unit(150, "lb"),
  11826. name: "Battle",
  11827. image: {
  11828. source: "./media/characters/kuiper-vanrel/battle.svg",
  11829. extra: 1466 / 1327,
  11830. bottom: 29 / 1492.5
  11831. }
  11832. },
  11833. battleAlt: {
  11834. height: math.unit(6.824, "feet"),
  11835. weight: math.unit(150, "lb"),
  11836. name: "Battle (Alt)",
  11837. image: {
  11838. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11839. extra: 2081 / 1965,
  11840. bottom: 40 / 2121
  11841. }
  11842. },
  11843. },
  11844. [
  11845. {
  11846. name: "Normal",
  11847. height: math.unit(7 + 5 / 12, "feet"),
  11848. default: true
  11849. },
  11850. ]
  11851. ))
  11852. characterMakers.push(() => makeCharacter(
  11853. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11854. {
  11855. front: {
  11856. height: math.unit(8 + 5 / 12, "feet"),
  11857. weight: math.unit(150, "lb"),
  11858. name: "Front",
  11859. image: {
  11860. source: "./media/characters/keset-vanrel/front.svg",
  11861. extra: 1150 / 1084,
  11862. bottom: 0.05
  11863. }
  11864. },
  11865. hand: {
  11866. height: math.unit(0.6, "meters"),
  11867. name: "Hand",
  11868. image: {
  11869. source: "./media/characters/keset-vanrel/hand.svg"
  11870. }
  11871. },
  11872. foot: {
  11873. height: math.unit(0.94978, "meters"),
  11874. name: "Foot",
  11875. image: {
  11876. source: "./media/characters/keset-vanrel/foot.svg"
  11877. }
  11878. },
  11879. battle: {
  11880. height: math.unit(7.408, "feet"),
  11881. weight: math.unit(150, "lb"),
  11882. name: "Battle",
  11883. image: {
  11884. source: "./media/characters/keset-vanrel/battle.svg",
  11885. extra: 1890 / 1386,
  11886. bottom: 73.28 / 1970
  11887. }
  11888. },
  11889. },
  11890. [
  11891. {
  11892. name: "Normal",
  11893. height: math.unit(8 + 5 / 12, "feet"),
  11894. default: true
  11895. },
  11896. ]
  11897. ))
  11898. characterMakers.push(() => makeCharacter(
  11899. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11900. {
  11901. front: {
  11902. height: math.unit(6, "feet"),
  11903. weight: math.unit(150, "lb"),
  11904. name: "Front",
  11905. image: {
  11906. source: "./media/characters/neos/front.svg",
  11907. extra: 1696 / 992,
  11908. bottom: 0.14
  11909. }
  11910. },
  11911. },
  11912. [
  11913. {
  11914. name: "Normal",
  11915. height: math.unit(54, "cm"),
  11916. default: true
  11917. },
  11918. {
  11919. name: "Macro",
  11920. height: math.unit(100, "m")
  11921. },
  11922. {
  11923. name: "Megamacro",
  11924. height: math.unit(10, "km")
  11925. },
  11926. {
  11927. name: "Megamacro+",
  11928. height: math.unit(100, "km")
  11929. },
  11930. {
  11931. name: "Gigamacro",
  11932. height: math.unit(100, "Mm")
  11933. },
  11934. {
  11935. name: "Teramacro",
  11936. height: math.unit(100, "Gm")
  11937. },
  11938. {
  11939. name: "Examacro",
  11940. height: math.unit(100, "Em")
  11941. },
  11942. {
  11943. name: "Godly",
  11944. height: math.unit(10000, "Ym")
  11945. },
  11946. {
  11947. name: "Beyond Godly",
  11948. height: math.unit(25, "multiverses")
  11949. },
  11950. ]
  11951. ))
  11952. characterMakers.push(() => makeCharacter(
  11953. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11954. {
  11955. feminine: {
  11956. height: math.unit(5, "feet"),
  11957. weight: math.unit(100, "lb"),
  11958. name: "Feminine",
  11959. image: {
  11960. source: "./media/characters/sammy-mouse/feminine.svg",
  11961. extra: 2526 / 2425,
  11962. bottom: 0.123
  11963. }
  11964. },
  11965. masculine: {
  11966. height: math.unit(5, "feet"),
  11967. weight: math.unit(100, "lb"),
  11968. name: "Masculine",
  11969. image: {
  11970. source: "./media/characters/sammy-mouse/masculine.svg",
  11971. extra: 2526 / 2425,
  11972. bottom: 0.123
  11973. }
  11974. },
  11975. },
  11976. [
  11977. {
  11978. name: "Micro",
  11979. height: math.unit(5, "inches")
  11980. },
  11981. {
  11982. name: "Normal",
  11983. height: math.unit(5, "feet"),
  11984. default: true
  11985. },
  11986. {
  11987. name: "Macro",
  11988. height: math.unit(60, "feet")
  11989. },
  11990. ]
  11991. ))
  11992. characterMakers.push(() => makeCharacter(
  11993. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11994. {
  11995. front: {
  11996. height: math.unit(4, "feet"),
  11997. weight: math.unit(50, "lb"),
  11998. name: "Front",
  11999. image: {
  12000. source: "./media/characters/kole/front.svg",
  12001. extra: 1423 / 1303,
  12002. bottom: 0.025
  12003. }
  12004. },
  12005. back: {
  12006. height: math.unit(4, "feet"),
  12007. weight: math.unit(50, "lb"),
  12008. name: "Back",
  12009. image: {
  12010. source: "./media/characters/kole/back.svg",
  12011. extra: 1426 / 1280,
  12012. bottom: 0.02
  12013. }
  12014. },
  12015. },
  12016. [
  12017. {
  12018. name: "Normal",
  12019. height: math.unit(4, "feet"),
  12020. default: true
  12021. },
  12022. ]
  12023. ))
  12024. characterMakers.push(() => makeCharacter(
  12025. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12026. {
  12027. front: {
  12028. height: math.unit(2 + 6 / 12, "feet"),
  12029. weight: math.unit(20, "lb"),
  12030. name: "Front",
  12031. image: {
  12032. source: "./media/characters/rufran/front.svg",
  12033. extra: 2041 / 1839,
  12034. bottom: 0.055
  12035. }
  12036. },
  12037. back: {
  12038. height: math.unit(2 + 6 / 12, "feet"),
  12039. weight: math.unit(20, "lb"),
  12040. name: "Back",
  12041. image: {
  12042. source: "./media/characters/rufran/back.svg",
  12043. extra: 2054 / 1839,
  12044. bottom: 0.01
  12045. }
  12046. },
  12047. hand: {
  12048. height: math.unit(0.2166, "meters"),
  12049. name: "Hand",
  12050. image: {
  12051. source: "./media/characters/rufran/hand.svg"
  12052. }
  12053. },
  12054. foot: {
  12055. height: math.unit(0.185, "meters"),
  12056. name: "Foot",
  12057. image: {
  12058. source: "./media/characters/rufran/foot.svg"
  12059. }
  12060. },
  12061. },
  12062. [
  12063. {
  12064. name: "Micro",
  12065. height: math.unit(1, "inch")
  12066. },
  12067. {
  12068. name: "Normal",
  12069. height: math.unit(2 + 6 / 12, "feet"),
  12070. default: true
  12071. },
  12072. {
  12073. name: "Big",
  12074. height: math.unit(60, "feet")
  12075. },
  12076. {
  12077. name: "Macro",
  12078. height: math.unit(325, "feet")
  12079. },
  12080. ]
  12081. ))
  12082. characterMakers.push(() => makeCharacter(
  12083. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12084. {
  12085. front: {
  12086. height: math.unit(0.3, "meters"),
  12087. weight: math.unit(3.5, "kg"),
  12088. name: "Front",
  12089. image: {
  12090. source: "./media/characters/chip/front.svg",
  12091. extra: 748 / 674
  12092. }
  12093. },
  12094. },
  12095. [
  12096. {
  12097. name: "Micro",
  12098. height: math.unit(1, "inch"),
  12099. default: true
  12100. },
  12101. ]
  12102. ))
  12103. characterMakers.push(() => makeCharacter(
  12104. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12105. {
  12106. side: {
  12107. height: math.unit(2.3, "meters"),
  12108. weight: math.unit(3500, "lb"),
  12109. name: "Side",
  12110. image: {
  12111. source: "./media/characters/torvid/side.svg",
  12112. extra: 1972 / 722,
  12113. bottom: 0.035
  12114. }
  12115. },
  12116. },
  12117. [
  12118. {
  12119. name: "Normal",
  12120. height: math.unit(2.3, "meters"),
  12121. default: true
  12122. },
  12123. ]
  12124. ))
  12125. characterMakers.push(() => makeCharacter(
  12126. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12127. {
  12128. front: {
  12129. height: math.unit(2, "meters"),
  12130. weight: math.unit(150.5, "kg"),
  12131. name: "Front",
  12132. image: {
  12133. source: "./media/characters/susan/front.svg",
  12134. extra: 693 / 635,
  12135. bottom: 0.05
  12136. }
  12137. },
  12138. },
  12139. [
  12140. {
  12141. name: "Megamacro",
  12142. height: math.unit(505, "miles"),
  12143. default: true
  12144. },
  12145. ]
  12146. ))
  12147. characterMakers.push(() => makeCharacter(
  12148. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12149. {
  12150. front: {
  12151. height: math.unit(6, "feet"),
  12152. weight: math.unit(150, "lb"),
  12153. name: "Front",
  12154. image: {
  12155. source: "./media/characters/raindrops/front.svg",
  12156. extra: 2655 / 2461,
  12157. bottom: 49 / 2705
  12158. }
  12159. },
  12160. back: {
  12161. height: math.unit(6, "feet"),
  12162. weight: math.unit(150, "lb"),
  12163. name: "Back",
  12164. image: {
  12165. source: "./media/characters/raindrops/back.svg",
  12166. extra: 2574 / 2400,
  12167. bottom: 65 / 2634
  12168. }
  12169. },
  12170. },
  12171. [
  12172. {
  12173. name: "Micro",
  12174. height: math.unit(6, "inches")
  12175. },
  12176. {
  12177. name: "Normal",
  12178. height: math.unit(6 + 2 / 12, "feet")
  12179. },
  12180. {
  12181. name: "Macro",
  12182. height: math.unit(131, "feet"),
  12183. default: true
  12184. },
  12185. {
  12186. name: "Megamacro",
  12187. height: math.unit(15, "miles")
  12188. },
  12189. {
  12190. name: "Gigamacro",
  12191. height: math.unit(4000, "miles")
  12192. },
  12193. {
  12194. name: "Teramacro",
  12195. height: math.unit(315000, "miles")
  12196. },
  12197. ]
  12198. ))
  12199. characterMakers.push(() => makeCharacter(
  12200. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12201. {
  12202. front: {
  12203. height: math.unit(2.794, "meters"),
  12204. weight: math.unit(325, "kg"),
  12205. name: "Front",
  12206. image: {
  12207. source: "./media/characters/tezwa/front.svg",
  12208. extra: 2083 / 1906,
  12209. bottom: 0.031
  12210. }
  12211. },
  12212. foot: {
  12213. height: math.unit(0.687, "meters"),
  12214. name: "Foot",
  12215. image: {
  12216. source: "./media/characters/tezwa/foot.svg"
  12217. }
  12218. },
  12219. },
  12220. [
  12221. {
  12222. name: "Normal",
  12223. height: math.unit(9 + 2 / 12, "feet"),
  12224. default: true
  12225. },
  12226. ]
  12227. ))
  12228. characterMakers.push(() => makeCharacter(
  12229. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12230. {
  12231. front: {
  12232. height: math.unit(58, "feet"),
  12233. weight: math.unit(89000, "lb"),
  12234. name: "Front",
  12235. image: {
  12236. source: "./media/characters/typhus/front.svg",
  12237. extra: 816 / 800,
  12238. bottom: 0.065
  12239. }
  12240. },
  12241. },
  12242. [
  12243. {
  12244. name: "Macro",
  12245. height: math.unit(58, "feet"),
  12246. default: true
  12247. },
  12248. ]
  12249. ))
  12250. characterMakers.push(() => makeCharacter(
  12251. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12252. {
  12253. front: {
  12254. height: math.unit(12, "feet"),
  12255. weight: math.unit(6, "tonnes"),
  12256. name: "Front",
  12257. image: {
  12258. source: "./media/characters/lyra-von-wulf/front.svg",
  12259. extra: 1,
  12260. bottom: 0.10
  12261. }
  12262. },
  12263. frontMecha: {
  12264. height: math.unit(12, "feet"),
  12265. weight: math.unit(12, "tonnes"),
  12266. name: "Front (Mecha)",
  12267. image: {
  12268. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12269. extra: 1,
  12270. bottom: 0.042
  12271. }
  12272. },
  12273. maw: {
  12274. height: math.unit(2.2, "feet"),
  12275. name: "Maw",
  12276. image: {
  12277. source: "./media/characters/lyra-von-wulf/maw.svg"
  12278. }
  12279. },
  12280. },
  12281. [
  12282. {
  12283. name: "Normal",
  12284. height: math.unit(12, "feet"),
  12285. default: true
  12286. },
  12287. {
  12288. name: "Classic",
  12289. height: math.unit(50, "feet")
  12290. },
  12291. {
  12292. name: "Macro",
  12293. height: math.unit(500, "feet")
  12294. },
  12295. {
  12296. name: "Megamacro",
  12297. height: math.unit(1, "mile")
  12298. },
  12299. {
  12300. name: "Gigamacro",
  12301. height: math.unit(400, "miles")
  12302. },
  12303. {
  12304. name: "Teramacro",
  12305. height: math.unit(22000, "miles")
  12306. },
  12307. {
  12308. name: "Solarmacro",
  12309. height: math.unit(8600000, "miles")
  12310. },
  12311. {
  12312. name: "Galactic",
  12313. height: math.unit(1057000, "lightyears")
  12314. },
  12315. ]
  12316. ))
  12317. characterMakers.push(() => makeCharacter(
  12318. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12319. {
  12320. front: {
  12321. height: math.unit(6 + 10 / 12, "feet"),
  12322. weight: math.unit(150, "lb"),
  12323. name: "Front",
  12324. image: {
  12325. source: "./media/characters/dixon/front.svg",
  12326. extra: 3361 / 3209,
  12327. bottom: 0.01
  12328. }
  12329. },
  12330. },
  12331. [
  12332. {
  12333. name: "Normal",
  12334. height: math.unit(6 + 10 / 12, "feet"),
  12335. default: true
  12336. },
  12337. {
  12338. name: "Big",
  12339. height: math.unit(12, "meters")
  12340. },
  12341. {
  12342. name: "Macro",
  12343. height: math.unit(500, "meters")
  12344. },
  12345. {
  12346. name: "Megamacro",
  12347. height: math.unit(2, "km")
  12348. },
  12349. ]
  12350. ))
  12351. characterMakers.push(() => makeCharacter(
  12352. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12353. {
  12354. front: {
  12355. height: math.unit(185, "cm"),
  12356. weight: math.unit(68, "kg"),
  12357. name: "Front",
  12358. image: {
  12359. source: "./media/characters/kauko/front.svg",
  12360. extra: 1455 / 1421,
  12361. bottom: 0.03
  12362. }
  12363. },
  12364. back: {
  12365. height: math.unit(185, "cm"),
  12366. weight: math.unit(68, "kg"),
  12367. name: "Back",
  12368. image: {
  12369. source: "./media/characters/kauko/back.svg",
  12370. extra: 1455 / 1421,
  12371. bottom: 0.004
  12372. }
  12373. },
  12374. },
  12375. [
  12376. {
  12377. name: "Normal",
  12378. height: math.unit(185, "cm"),
  12379. default: true
  12380. },
  12381. ]
  12382. ))
  12383. characterMakers.push(() => makeCharacter(
  12384. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12385. {
  12386. front: {
  12387. height: math.unit(6, "feet"),
  12388. weight: math.unit(150, "kg"),
  12389. name: "Front",
  12390. image: {
  12391. source: "./media/characters/varg/front.svg",
  12392. extra: 1108 / 1018,
  12393. bottom: 0.0375
  12394. }
  12395. },
  12396. },
  12397. [
  12398. {
  12399. name: "Normal",
  12400. height: math.unit(5, "meters")
  12401. },
  12402. {
  12403. name: "Macro",
  12404. height: math.unit(200, "meters")
  12405. },
  12406. {
  12407. name: "Megamacro",
  12408. height: math.unit(20, "kilometers")
  12409. },
  12410. {
  12411. name: "True Size",
  12412. height: math.unit(211, "km"),
  12413. default: true
  12414. },
  12415. {
  12416. name: "Gigamacro",
  12417. height: math.unit(1000, "km")
  12418. },
  12419. {
  12420. name: "Gigamacro+",
  12421. height: math.unit(8000, "km")
  12422. },
  12423. {
  12424. name: "Teramacro",
  12425. height: math.unit(1000000, "km")
  12426. },
  12427. ]
  12428. ))
  12429. characterMakers.push(() => makeCharacter(
  12430. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12431. {
  12432. front: {
  12433. height: math.unit(7 + 7 / 12, "feet"),
  12434. weight: math.unit(267, "lb"),
  12435. name: "Front",
  12436. image: {
  12437. source: "./media/characters/dayza/front.svg",
  12438. extra: 1262 / 1200,
  12439. bottom: 0.035
  12440. }
  12441. },
  12442. side: {
  12443. height: math.unit(7 + 7 / 12, "feet"),
  12444. weight: math.unit(267, "lb"),
  12445. name: "Side",
  12446. image: {
  12447. source: "./media/characters/dayza/side.svg",
  12448. extra: 1295 / 1245,
  12449. bottom: 0.05
  12450. }
  12451. },
  12452. back: {
  12453. height: math.unit(7 + 7 / 12, "feet"),
  12454. weight: math.unit(267, "lb"),
  12455. name: "Back",
  12456. image: {
  12457. source: "./media/characters/dayza/back.svg",
  12458. extra: 1241 / 1170
  12459. }
  12460. },
  12461. },
  12462. [
  12463. {
  12464. name: "Normal",
  12465. height: math.unit(7 + 7 / 12, "feet"),
  12466. default: true
  12467. },
  12468. {
  12469. name: "Macro",
  12470. height: math.unit(155, "feet")
  12471. },
  12472. ]
  12473. ))
  12474. characterMakers.push(() => makeCharacter(
  12475. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12476. {
  12477. front: {
  12478. height: math.unit(6 + 5 / 12, "feet"),
  12479. weight: math.unit(160, "lb"),
  12480. name: "Front",
  12481. image: {
  12482. source: "./media/characters/xanthos/front.svg",
  12483. extra: 1,
  12484. bottom: 0.04
  12485. }
  12486. },
  12487. back: {
  12488. height: math.unit(6 + 5 / 12, "feet"),
  12489. weight: math.unit(160, "lb"),
  12490. name: "Back",
  12491. image: {
  12492. source: "./media/characters/xanthos/back.svg",
  12493. extra: 1,
  12494. bottom: 0.03
  12495. }
  12496. },
  12497. hand: {
  12498. height: math.unit(0.928, "feet"),
  12499. name: "Hand",
  12500. image: {
  12501. source: "./media/characters/xanthos/hand.svg"
  12502. }
  12503. },
  12504. foot: {
  12505. height: math.unit(1.286, "feet"),
  12506. name: "Foot",
  12507. image: {
  12508. source: "./media/characters/xanthos/foot.svg"
  12509. }
  12510. },
  12511. },
  12512. [
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(6 + 5 / 12, "feet"),
  12516. default: true
  12517. },
  12518. {
  12519. name: "Normal+",
  12520. height: math.unit(6, "meters")
  12521. },
  12522. {
  12523. name: "Macro",
  12524. height: math.unit(40, "feet")
  12525. },
  12526. {
  12527. name: "Macro+",
  12528. height: math.unit(200, "meters")
  12529. },
  12530. {
  12531. name: "Megamacro",
  12532. height: math.unit(20, "km")
  12533. },
  12534. {
  12535. name: "Megamacro+",
  12536. height: math.unit(100, "km")
  12537. },
  12538. ]
  12539. ))
  12540. characterMakers.push(() => makeCharacter(
  12541. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12542. {
  12543. front: {
  12544. height: math.unit(6 + 3 / 12, "feet"),
  12545. weight: math.unit(215, "lb"),
  12546. name: "Front",
  12547. image: {
  12548. source: "./media/characters/grynn/front.svg",
  12549. extra: 4627 / 4209,
  12550. bottom: 0.047
  12551. }
  12552. },
  12553. },
  12554. [
  12555. {
  12556. name: "Micro",
  12557. height: math.unit(6, "inches")
  12558. },
  12559. {
  12560. name: "Normal",
  12561. height: math.unit(6 + 3 / 12, "feet"),
  12562. default: true
  12563. },
  12564. {
  12565. name: "Big",
  12566. height: math.unit(104, "feet")
  12567. },
  12568. {
  12569. name: "Macro",
  12570. height: math.unit(944, "feet")
  12571. },
  12572. {
  12573. name: "Macro+",
  12574. height: math.unit(9480, "feet")
  12575. },
  12576. {
  12577. name: "Megamacro",
  12578. height: math.unit(78752, "feet")
  12579. },
  12580. {
  12581. name: "Megamacro+",
  12582. height: math.unit(630128, "feet")
  12583. },
  12584. {
  12585. name: "Megamacro++",
  12586. height: math.unit(3150695, "feet")
  12587. },
  12588. ]
  12589. ))
  12590. characterMakers.push(() => makeCharacter(
  12591. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12592. {
  12593. front: {
  12594. height: math.unit(7 + 5 / 12, "feet"),
  12595. weight: math.unit(450, "lb"),
  12596. name: "Front",
  12597. image: {
  12598. source: "./media/characters/mocha-aura/front.svg",
  12599. extra: 1907 / 1817,
  12600. bottom: 0.04
  12601. }
  12602. },
  12603. back: {
  12604. height: math.unit(7 + 5 / 12, "feet"),
  12605. weight: math.unit(450, "lb"),
  12606. name: "Back",
  12607. image: {
  12608. source: "./media/characters/mocha-aura/back.svg",
  12609. extra: 1900 / 1825,
  12610. bottom: 0.045
  12611. }
  12612. },
  12613. },
  12614. [
  12615. {
  12616. name: "Nano",
  12617. height: math.unit(1, "nm")
  12618. },
  12619. {
  12620. name: "Megamicro",
  12621. height: math.unit(1, "mm")
  12622. },
  12623. {
  12624. name: "Micro",
  12625. height: math.unit(3, "inches")
  12626. },
  12627. {
  12628. name: "Normal",
  12629. height: math.unit(7 + 5 / 12, "feet"),
  12630. default: true
  12631. },
  12632. {
  12633. name: "Macro",
  12634. height: math.unit(30, "feet")
  12635. },
  12636. {
  12637. name: "Megamacro",
  12638. height: math.unit(3500, "feet")
  12639. },
  12640. {
  12641. name: "Teramacro",
  12642. height: math.unit(500000, "miles")
  12643. },
  12644. {
  12645. name: "Petamacro",
  12646. height: math.unit(50000000000000000, "parsecs")
  12647. },
  12648. ]
  12649. ))
  12650. characterMakers.push(() => makeCharacter(
  12651. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12652. {
  12653. front: {
  12654. height: math.unit(6, "feet"),
  12655. weight: math.unit(150, "lb"),
  12656. name: "Front",
  12657. image: {
  12658. source: "./media/characters/ilisha-devya/front.svg",
  12659. extra: 1,
  12660. bottom: 0.175
  12661. }
  12662. },
  12663. back: {
  12664. height: math.unit(6, "feet"),
  12665. weight: math.unit(150, "lb"),
  12666. name: "Back",
  12667. image: {
  12668. source: "./media/characters/ilisha-devya/back.svg",
  12669. extra: 1,
  12670. bottom: 0.015
  12671. }
  12672. },
  12673. },
  12674. [
  12675. {
  12676. name: "Macro",
  12677. height: math.unit(500, "feet"),
  12678. default: true
  12679. },
  12680. {
  12681. name: "Megamacro",
  12682. height: math.unit(10, "miles")
  12683. },
  12684. {
  12685. name: "Gigamacro",
  12686. height: math.unit(100000, "miles")
  12687. },
  12688. {
  12689. name: "Examacro",
  12690. height: math.unit(1e9, "lightyears")
  12691. },
  12692. {
  12693. name: "Omniversal",
  12694. height: math.unit(1e33, "lightyears")
  12695. },
  12696. {
  12697. name: "Beyond Infinite",
  12698. height: math.unit(1e100, "lightyears")
  12699. },
  12700. ]
  12701. ))
  12702. characterMakers.push(() => makeCharacter(
  12703. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12704. {
  12705. Side: {
  12706. height: math.unit(6, "feet"),
  12707. weight: math.unit(150, "lb"),
  12708. name: "Side",
  12709. image: {
  12710. source: "./media/characters/mira/side.svg",
  12711. extra: 900 / 799,
  12712. bottom: 0.02
  12713. }
  12714. },
  12715. },
  12716. [
  12717. {
  12718. name: "Human Size",
  12719. height: math.unit(6, "feet")
  12720. },
  12721. {
  12722. name: "Macro",
  12723. height: math.unit(100, "feet"),
  12724. default: true
  12725. },
  12726. {
  12727. name: "Megamacro",
  12728. height: math.unit(10, "miles")
  12729. },
  12730. {
  12731. name: "Gigamacro",
  12732. height: math.unit(25000, "miles")
  12733. },
  12734. {
  12735. name: "Teramacro",
  12736. height: math.unit(300, "AU")
  12737. },
  12738. {
  12739. name: "Full Size",
  12740. height: math.unit(4.5e10, "lightyears")
  12741. },
  12742. ]
  12743. ))
  12744. characterMakers.push(() => makeCharacter(
  12745. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12746. {
  12747. front: {
  12748. height: math.unit(6, "feet"),
  12749. weight: math.unit(150, "lb"),
  12750. name: "Front",
  12751. image: {
  12752. source: "./media/characters/holly/front.svg",
  12753. extra: 639 / 606
  12754. }
  12755. },
  12756. back: {
  12757. height: math.unit(6, "feet"),
  12758. weight: math.unit(150, "lb"),
  12759. name: "Back",
  12760. image: {
  12761. source: "./media/characters/holly/back.svg",
  12762. extra: 623 / 598
  12763. }
  12764. },
  12765. frontWorking: {
  12766. height: math.unit(6, "feet"),
  12767. weight: math.unit(150, "lb"),
  12768. name: "Front (Working)",
  12769. image: {
  12770. source: "./media/characters/holly/front-working.svg",
  12771. extra: 607 / 577,
  12772. bottom: 0.048
  12773. }
  12774. },
  12775. },
  12776. [
  12777. {
  12778. name: "Normal",
  12779. height: math.unit(12 + 3 / 12, "feet"),
  12780. default: true
  12781. },
  12782. ]
  12783. ))
  12784. characterMakers.push(() => makeCharacter(
  12785. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12786. {
  12787. front: {
  12788. height: math.unit(6, "feet"),
  12789. weight: math.unit(150, "lb"),
  12790. name: "Front",
  12791. image: {
  12792. source: "./media/characters/porter/front.svg",
  12793. extra: 1,
  12794. bottom: 0.01
  12795. }
  12796. },
  12797. frontRobes: {
  12798. height: math.unit(6, "feet"),
  12799. weight: math.unit(150, "lb"),
  12800. name: "Front (Robes)",
  12801. image: {
  12802. source: "./media/characters/porter/front-robes.svg",
  12803. extra: 1.01,
  12804. bottom: 0.01
  12805. }
  12806. },
  12807. },
  12808. [
  12809. {
  12810. name: "Normal",
  12811. height: math.unit(11 + 9 / 12, "feet"),
  12812. default: true
  12813. },
  12814. ]
  12815. ))
  12816. characterMakers.push(() => makeCharacter(
  12817. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12818. {
  12819. legendary: {
  12820. height: math.unit(6, "feet"),
  12821. weight: math.unit(150, "lb"),
  12822. name: "Legendary",
  12823. image: {
  12824. source: "./media/characters/lucy/legendary.svg",
  12825. extra: 1355 / 1100,
  12826. bottom: 0.045
  12827. }
  12828. },
  12829. },
  12830. [
  12831. {
  12832. name: "Legendary",
  12833. height: math.unit(86882 * 2, "miles"),
  12834. default: true
  12835. },
  12836. ]
  12837. ))
  12838. characterMakers.push(() => makeCharacter(
  12839. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12840. {
  12841. front: {
  12842. height: math.unit(6, "feet"),
  12843. weight: math.unit(150, "lb"),
  12844. name: "Front",
  12845. image: {
  12846. source: "./media/characters/drusilla/front.svg",
  12847. extra: 678 / 635,
  12848. bottom: 0.03
  12849. }
  12850. },
  12851. back: {
  12852. height: math.unit(6, "feet"),
  12853. weight: math.unit(150, "lb"),
  12854. name: "Back",
  12855. image: {
  12856. source: "./media/characters/drusilla/back.svg",
  12857. extra: 678 / 635,
  12858. bottom: 0.005
  12859. }
  12860. },
  12861. },
  12862. [
  12863. {
  12864. name: "Macro",
  12865. height: math.unit(100, "feet")
  12866. },
  12867. {
  12868. name: "Canon Height",
  12869. height: math.unit(2000, "feet"),
  12870. default: true
  12871. },
  12872. ]
  12873. ))
  12874. characterMakers.push(() => makeCharacter(
  12875. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12876. {
  12877. front: {
  12878. height: math.unit(6, "feet"),
  12879. weight: math.unit(180, "lb"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/renard-thatch/front.svg",
  12883. extra: 2411 / 2275,
  12884. bottom: 0.01
  12885. }
  12886. },
  12887. frontPosing: {
  12888. height: math.unit(6, "feet"),
  12889. weight: math.unit(180, "lb"),
  12890. name: "Front (Posing)",
  12891. image: {
  12892. source: "./media/characters/renard-thatch/front-posing.svg",
  12893. extra: 2381 / 2261,
  12894. bottom: 0.01
  12895. }
  12896. },
  12897. back: {
  12898. height: math.unit(6, "feet"),
  12899. weight: math.unit(180, "lb"),
  12900. name: "Back",
  12901. image: {
  12902. source: "./media/characters/renard-thatch/back.svg",
  12903. extra: 2428 / 2288
  12904. }
  12905. },
  12906. },
  12907. [
  12908. {
  12909. name: "Micro",
  12910. height: math.unit(3, "inches")
  12911. },
  12912. {
  12913. name: "Default",
  12914. height: math.unit(6, "feet"),
  12915. default: true
  12916. },
  12917. {
  12918. name: "Macro",
  12919. height: math.unit(75, "feet")
  12920. },
  12921. ]
  12922. ))
  12923. characterMakers.push(() => makeCharacter(
  12924. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12925. {
  12926. front: {
  12927. height: math.unit(1450, "feet"),
  12928. weight: math.unit(1.21e6, "tons"),
  12929. name: "Front",
  12930. image: {
  12931. source: "./media/characters/sekvra/front.svg",
  12932. extra: 1,
  12933. bottom: 0.03
  12934. }
  12935. },
  12936. frontClothed: {
  12937. height: math.unit(1450, "feet"),
  12938. weight: math.unit(1.21e6, "tons"),
  12939. name: "Front (Clothed)",
  12940. image: {
  12941. source: "./media/characters/sekvra/front-clothed.svg",
  12942. extra: 1,
  12943. bottom: 0.03
  12944. }
  12945. },
  12946. side: {
  12947. height: math.unit(1450, "feet"),
  12948. weight: math.unit(1.21e6, "tons"),
  12949. name: "Side",
  12950. image: {
  12951. source: "./media/characters/sekvra/side.svg",
  12952. extra: 1,
  12953. bottom: 0.025
  12954. }
  12955. },
  12956. back: {
  12957. height: math.unit(1450, "feet"),
  12958. weight: math.unit(1.21e6, "tons"),
  12959. name: "Back",
  12960. image: {
  12961. source: "./media/characters/sekvra/back.svg",
  12962. extra: 1,
  12963. bottom: 0.005
  12964. }
  12965. },
  12966. },
  12967. [
  12968. {
  12969. name: "Macro",
  12970. height: math.unit(1450, "feet"),
  12971. default: true
  12972. },
  12973. {
  12974. name: "Megamacro",
  12975. height: math.unit(15000, "feet")
  12976. },
  12977. ]
  12978. ))
  12979. characterMakers.push(() => makeCharacter(
  12980. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12981. {
  12982. front: {
  12983. height: math.unit(6, "feet"),
  12984. weight: math.unit(150, "lb"),
  12985. name: "Front",
  12986. image: {
  12987. source: "./media/characters/carmine/front.svg",
  12988. extra: 1,
  12989. bottom: 0.035
  12990. }
  12991. },
  12992. frontArmor: {
  12993. height: math.unit(6, "feet"),
  12994. weight: math.unit(150, "lb"),
  12995. name: "Front (Armor)",
  12996. image: {
  12997. source: "./media/characters/carmine/front-armor.svg",
  12998. extra: 1,
  12999. bottom: 0.035
  13000. }
  13001. },
  13002. },
  13003. [
  13004. {
  13005. name: "Large",
  13006. height: math.unit(1, "mile")
  13007. },
  13008. {
  13009. name: "Huge",
  13010. height: math.unit(40, "miles"),
  13011. default: true
  13012. },
  13013. {
  13014. name: "Colossal",
  13015. height: math.unit(2500, "miles")
  13016. },
  13017. ]
  13018. ))
  13019. characterMakers.push(() => makeCharacter(
  13020. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13021. {
  13022. front: {
  13023. height: math.unit(6, "feet"),
  13024. weight: math.unit(150, "lb"),
  13025. name: "Front",
  13026. image: {
  13027. source: "./media/characters/elyssia/front.svg",
  13028. extra: 2201 / 2035,
  13029. bottom: 0.05
  13030. }
  13031. },
  13032. frontClothed: {
  13033. height: math.unit(6, "feet"),
  13034. weight: math.unit(150, "lb"),
  13035. name: "Front (Clothed)",
  13036. image: {
  13037. source: "./media/characters/elyssia/front-clothed.svg",
  13038. extra: 2201 / 2035,
  13039. bottom: 0.05
  13040. }
  13041. },
  13042. back: {
  13043. height: math.unit(6, "feet"),
  13044. weight: math.unit(150, "lb"),
  13045. name: "Back",
  13046. image: {
  13047. source: "./media/characters/elyssia/back.svg",
  13048. extra: 2201 / 2035,
  13049. bottom: 0.013
  13050. }
  13051. },
  13052. },
  13053. [
  13054. {
  13055. name: "Smaller",
  13056. height: math.unit(150, "feet")
  13057. },
  13058. {
  13059. name: "Standard",
  13060. height: math.unit(1400, "feet"),
  13061. default: true
  13062. },
  13063. {
  13064. name: "Distracted",
  13065. height: math.unit(15000, "feet")
  13066. },
  13067. ]
  13068. ))
  13069. characterMakers.push(() => makeCharacter(
  13070. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13071. {
  13072. front: {
  13073. height: math.unit(7 + 4 / 12, "feet"),
  13074. weight: math.unit(500, "lb"),
  13075. name: "Front",
  13076. image: {
  13077. source: "./media/characters/geno-maxwell/front.svg",
  13078. extra: 2207 / 2040,
  13079. bottom: 0.015
  13080. }
  13081. },
  13082. },
  13083. [
  13084. {
  13085. name: "Micro",
  13086. height: math.unit(3, "inches")
  13087. },
  13088. {
  13089. name: "Normal",
  13090. height: math.unit(7 + 4 / 12, "feet"),
  13091. default: true
  13092. },
  13093. {
  13094. name: "Macro",
  13095. height: math.unit(220, "feet")
  13096. },
  13097. {
  13098. name: "Megamacro",
  13099. height: math.unit(11, "miles")
  13100. },
  13101. ]
  13102. ))
  13103. characterMakers.push(() => makeCharacter(
  13104. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13105. {
  13106. front: {
  13107. height: math.unit(7 + 4 / 12, "feet"),
  13108. weight: math.unit(500, "lb"),
  13109. name: "Front",
  13110. image: {
  13111. source: "./media/characters/regena-maxwell/front.svg",
  13112. extra: 3115 / 2770,
  13113. bottom: 0.02
  13114. }
  13115. },
  13116. },
  13117. [
  13118. {
  13119. name: "Normal",
  13120. height: math.unit(7 + 4 / 12, "feet"),
  13121. default: true
  13122. },
  13123. {
  13124. name: "Macro",
  13125. height: math.unit(220, "feet")
  13126. },
  13127. {
  13128. name: "Megamacro",
  13129. height: math.unit(11, "miles")
  13130. },
  13131. ]
  13132. ))
  13133. characterMakers.push(() => makeCharacter(
  13134. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13135. {
  13136. front: {
  13137. height: math.unit(6, "feet"),
  13138. weight: math.unit(150, "lb"),
  13139. name: "Front",
  13140. image: {
  13141. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13142. extra: 860 / 690,
  13143. bottom: 0.03
  13144. }
  13145. },
  13146. },
  13147. [
  13148. {
  13149. name: "Normal",
  13150. height: math.unit(1.7, "meters"),
  13151. default: true
  13152. },
  13153. ]
  13154. ))
  13155. characterMakers.push(() => makeCharacter(
  13156. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13157. {
  13158. front: {
  13159. height: math.unit(6, "feet"),
  13160. weight: math.unit(150, "lb"),
  13161. name: "Front",
  13162. image: {
  13163. source: "./media/characters/quilly/front.svg",
  13164. extra: 890 / 776
  13165. }
  13166. },
  13167. },
  13168. [
  13169. {
  13170. name: "Gigamacro",
  13171. height: math.unit(404090, "miles"),
  13172. default: true
  13173. },
  13174. ]
  13175. ))
  13176. characterMakers.push(() => makeCharacter(
  13177. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13178. {
  13179. front: {
  13180. height: math.unit(7 + 8 / 12, "feet"),
  13181. weight: math.unit(350, "lb"),
  13182. name: "Front",
  13183. image: {
  13184. source: "./media/characters/tempest/front.svg",
  13185. extra: 1175 / 1086,
  13186. bottom: 0.02
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Normal",
  13193. height: math.unit(7 + 8 / 12, "feet"),
  13194. default: true
  13195. },
  13196. ]
  13197. ))
  13198. characterMakers.push(() => makeCharacter(
  13199. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13200. {
  13201. side: {
  13202. height: math.unit(4 + 5 / 12, "feet"),
  13203. weight: math.unit(80, "lb"),
  13204. name: "Side",
  13205. image: {
  13206. source: "./media/characters/rodger/side.svg",
  13207. extra: 1235 / 1118
  13208. }
  13209. },
  13210. },
  13211. [
  13212. {
  13213. name: "Micro",
  13214. height: math.unit(1, "inch")
  13215. },
  13216. {
  13217. name: "Normal",
  13218. height: math.unit(4 + 5 / 12, "feet"),
  13219. default: true
  13220. },
  13221. {
  13222. name: "Macro",
  13223. height: math.unit(120, "feet")
  13224. },
  13225. ]
  13226. ))
  13227. characterMakers.push(() => makeCharacter(
  13228. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13229. {
  13230. front: {
  13231. height: math.unit(6, "feet"),
  13232. weight: math.unit(150, "lb"),
  13233. name: "Front",
  13234. image: {
  13235. source: "./media/characters/danyel/front.svg",
  13236. extra: 1185 / 1123,
  13237. bottom: 0.05
  13238. }
  13239. },
  13240. },
  13241. [
  13242. {
  13243. name: "Shrunken",
  13244. height: math.unit(0.5, "mm")
  13245. },
  13246. {
  13247. name: "Micro",
  13248. height: math.unit(1, "mm"),
  13249. default: true
  13250. },
  13251. {
  13252. name: "Upsized",
  13253. height: math.unit(5 + 5 / 12, "feet")
  13254. },
  13255. ]
  13256. ))
  13257. characterMakers.push(() => makeCharacter(
  13258. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13259. {
  13260. front: {
  13261. height: math.unit(5 + 6 / 12, "feet"),
  13262. weight: math.unit(200, "lb"),
  13263. name: "Front",
  13264. image: {
  13265. source: "./media/characters/vivian-bijoux/front.svg",
  13266. extra: 1,
  13267. bottom: 0.072
  13268. }
  13269. },
  13270. },
  13271. [
  13272. {
  13273. name: "Normal",
  13274. height: math.unit(5 + 6 / 12, "feet"),
  13275. default: true
  13276. },
  13277. {
  13278. name: "Bad Dream",
  13279. height: math.unit(500, "feet")
  13280. },
  13281. {
  13282. name: "Nightmare",
  13283. height: math.unit(500, "miles")
  13284. },
  13285. ]
  13286. ))
  13287. characterMakers.push(() => makeCharacter(
  13288. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13289. {
  13290. front: {
  13291. height: math.unit(6 + 1 / 12, "feet"),
  13292. weight: math.unit(260, "lb"),
  13293. name: "Front",
  13294. image: {
  13295. source: "./media/characters/zeta/front.svg",
  13296. extra: 1968 / 1889,
  13297. bottom: 0.06
  13298. }
  13299. },
  13300. back: {
  13301. height: math.unit(6 + 1 / 12, "feet"),
  13302. weight: math.unit(260, "lb"),
  13303. name: "Back",
  13304. image: {
  13305. source: "./media/characters/zeta/back.svg",
  13306. extra: 1944 / 1858,
  13307. bottom: 0.03
  13308. }
  13309. },
  13310. hand: {
  13311. height: math.unit(1.112, "feet"),
  13312. name: "Hand",
  13313. image: {
  13314. source: "./media/characters/zeta/hand.svg"
  13315. }
  13316. },
  13317. foot: {
  13318. height: math.unit(1.48, "feet"),
  13319. name: "Foot",
  13320. image: {
  13321. source: "./media/characters/zeta/foot.svg"
  13322. }
  13323. },
  13324. },
  13325. [
  13326. {
  13327. name: "Micro",
  13328. height: math.unit(6, "inches")
  13329. },
  13330. {
  13331. name: "Normal",
  13332. height: math.unit(6 + 1 / 12, "feet"),
  13333. default: true
  13334. },
  13335. {
  13336. name: "Macro",
  13337. height: math.unit(20, "feet")
  13338. },
  13339. ]
  13340. ))
  13341. characterMakers.push(() => makeCharacter(
  13342. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13343. {
  13344. front: {
  13345. height: math.unit(6, "feet"),
  13346. weight: math.unit(150, "lb"),
  13347. name: "Front",
  13348. image: {
  13349. source: "./media/characters/jamie-larsen/front.svg",
  13350. extra: 962 / 933,
  13351. bottom: 0.02
  13352. }
  13353. },
  13354. back: {
  13355. height: math.unit(6, "feet"),
  13356. weight: math.unit(150, "lb"),
  13357. name: "Back",
  13358. image: {
  13359. source: "./media/characters/jamie-larsen/back.svg",
  13360. extra: 997 / 946
  13361. }
  13362. },
  13363. },
  13364. [
  13365. {
  13366. name: "Macro",
  13367. height: math.unit(28 + 7 / 12, "feet"),
  13368. default: true
  13369. },
  13370. {
  13371. name: "Macro+",
  13372. height: math.unit(180, "feet")
  13373. },
  13374. {
  13375. name: "Megamacro",
  13376. height: math.unit(10, "miles")
  13377. },
  13378. {
  13379. name: "Gigamacro",
  13380. height: math.unit(200000, "miles")
  13381. },
  13382. ]
  13383. ))
  13384. characterMakers.push(() => makeCharacter(
  13385. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13386. {
  13387. front: {
  13388. height: math.unit(6, "feet"),
  13389. weight: math.unit(120, "lb"),
  13390. name: "Front",
  13391. image: {
  13392. source: "./media/characters/vance/front.svg",
  13393. extra: 1980 / 1890,
  13394. bottom: 0.09
  13395. }
  13396. },
  13397. back: {
  13398. height: math.unit(6, "feet"),
  13399. weight: math.unit(120, "lb"),
  13400. name: "Back",
  13401. image: {
  13402. source: "./media/characters/vance/back.svg",
  13403. extra: 2081 / 1994,
  13404. bottom: 0.014
  13405. }
  13406. },
  13407. hand: {
  13408. height: math.unit(0.88, "feet"),
  13409. name: "Hand",
  13410. image: {
  13411. source: "./media/characters/vance/hand.svg"
  13412. }
  13413. },
  13414. foot: {
  13415. height: math.unit(0.64, "feet"),
  13416. name: "Foot",
  13417. image: {
  13418. source: "./media/characters/vance/foot.svg"
  13419. }
  13420. },
  13421. },
  13422. [
  13423. {
  13424. name: "Small",
  13425. height: math.unit(90, "feet"),
  13426. default: true
  13427. },
  13428. {
  13429. name: "Macro",
  13430. height: math.unit(100, "meters")
  13431. },
  13432. {
  13433. name: "Megamacro",
  13434. height: math.unit(15, "miles")
  13435. },
  13436. ]
  13437. ))
  13438. characterMakers.push(() => makeCharacter(
  13439. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13440. {
  13441. front: {
  13442. height: math.unit(6, "feet"),
  13443. weight: math.unit(180, "lb"),
  13444. name: "Front",
  13445. image: {
  13446. source: "./media/characters/xochitl/front.svg",
  13447. extra: 2297 / 2261,
  13448. bottom: 0.065
  13449. }
  13450. },
  13451. back: {
  13452. height: math.unit(6, "feet"),
  13453. weight: math.unit(180, "lb"),
  13454. name: "Back",
  13455. image: {
  13456. source: "./media/characters/xochitl/back.svg",
  13457. extra: 2386 / 2354,
  13458. bottom: 0.01
  13459. }
  13460. },
  13461. foot: {
  13462. height: math.unit(6 / 5 * 1.15, "feet"),
  13463. weight: math.unit(150, "lb"),
  13464. name: "Foot",
  13465. image: {
  13466. source: "./media/characters/xochitl/foot.svg"
  13467. }
  13468. },
  13469. },
  13470. [
  13471. {
  13472. name: "Macro",
  13473. height: math.unit(80, "feet")
  13474. },
  13475. {
  13476. name: "Macro+",
  13477. height: math.unit(400, "feet"),
  13478. default: true
  13479. },
  13480. {
  13481. name: "Gigamacro",
  13482. height: math.unit(80000, "miles")
  13483. },
  13484. {
  13485. name: "Gigamacro+",
  13486. height: math.unit(400000, "miles")
  13487. },
  13488. {
  13489. name: "Teramacro",
  13490. height: math.unit(300, "AU")
  13491. },
  13492. ]
  13493. ))
  13494. characterMakers.push(() => makeCharacter(
  13495. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13496. {
  13497. front: {
  13498. height: math.unit(6, "feet"),
  13499. weight: math.unit(150, "lb"),
  13500. name: "Front",
  13501. image: {
  13502. source: "./media/characters/vincent/front.svg",
  13503. extra: 1130 / 1080,
  13504. bottom: 0.055
  13505. }
  13506. },
  13507. beak: {
  13508. height: math.unit(6 * 0.1, "feet"),
  13509. name: "Beak",
  13510. image: {
  13511. source: "./media/characters/vincent/beak.svg"
  13512. }
  13513. },
  13514. hand: {
  13515. height: math.unit(6 * 0.85, "feet"),
  13516. weight: math.unit(150, "lb"),
  13517. name: "Hand",
  13518. image: {
  13519. source: "./media/characters/vincent/hand.svg"
  13520. }
  13521. },
  13522. foot: {
  13523. height: math.unit(6 * 0.19, "feet"),
  13524. weight: math.unit(150, "lb"),
  13525. name: "Foot",
  13526. image: {
  13527. source: "./media/characters/vincent/foot.svg"
  13528. }
  13529. },
  13530. },
  13531. [
  13532. {
  13533. name: "Base",
  13534. height: math.unit(6 + 5 / 12, "feet"),
  13535. default: true
  13536. },
  13537. {
  13538. name: "Macro",
  13539. height: math.unit(300, "feet")
  13540. },
  13541. {
  13542. name: "Megamacro",
  13543. height: math.unit(2, "miles")
  13544. },
  13545. {
  13546. name: "Gigamacro",
  13547. height: math.unit(1000, "miles")
  13548. },
  13549. ]
  13550. ))
  13551. characterMakers.push(() => makeCharacter(
  13552. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13553. {
  13554. front: {
  13555. height: math.unit(2, "meters"),
  13556. weight: math.unit(500, "kg"),
  13557. name: "Front",
  13558. image: {
  13559. source: "./media/characters/coatl/front.svg",
  13560. extra: 3948 / 3500,
  13561. bottom: 0.082
  13562. }
  13563. },
  13564. },
  13565. [
  13566. {
  13567. name: "Normal",
  13568. height: math.unit(4, "meters")
  13569. },
  13570. {
  13571. name: "Macro",
  13572. height: math.unit(100, "meters"),
  13573. default: true
  13574. },
  13575. {
  13576. name: "Macro+",
  13577. height: math.unit(300, "meters")
  13578. },
  13579. {
  13580. name: "Megamacro",
  13581. height: math.unit(3, "gigameters")
  13582. },
  13583. {
  13584. name: "Megamacro+",
  13585. height: math.unit(300, "terameters")
  13586. },
  13587. {
  13588. name: "Megamacro++",
  13589. height: math.unit(3, "lightyears")
  13590. },
  13591. ]
  13592. ))
  13593. characterMakers.push(() => makeCharacter(
  13594. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13595. {
  13596. front: {
  13597. height: math.unit(6, "feet"),
  13598. weight: math.unit(50, "kg"),
  13599. name: "front",
  13600. image: {
  13601. source: "./media/characters/shiroryu/front.svg",
  13602. extra: 1990 / 1935
  13603. }
  13604. },
  13605. },
  13606. [
  13607. {
  13608. name: "Mortal Mingling",
  13609. height: math.unit(3, "meters")
  13610. },
  13611. {
  13612. name: "Kaiju-ish",
  13613. height: math.unit(250, "meters")
  13614. },
  13615. {
  13616. name: "Somewhat Godly",
  13617. height: math.unit(400, "km"),
  13618. default: true
  13619. },
  13620. {
  13621. name: "Planetary",
  13622. height: math.unit(300, "megameters")
  13623. },
  13624. {
  13625. name: "Galaxy-dwarfing",
  13626. height: math.unit(450, "kiloparsecs")
  13627. },
  13628. {
  13629. name: "Universe Eater",
  13630. height: math.unit(150, "gigaparsecs")
  13631. },
  13632. {
  13633. name: "Almost Immeasurable",
  13634. height: math.unit(1.3e266, "yottaparsecs")
  13635. },
  13636. ]
  13637. ))
  13638. characterMakers.push(() => makeCharacter(
  13639. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13640. {
  13641. front: {
  13642. height: math.unit(6, "feet"),
  13643. weight: math.unit(150, "lb"),
  13644. name: "Front",
  13645. image: {
  13646. source: "./media/characters/umeko/front.svg",
  13647. extra: 1,
  13648. bottom: 0.019
  13649. }
  13650. },
  13651. frontArmored: {
  13652. height: math.unit(6, "feet"),
  13653. weight: math.unit(150, "lb"),
  13654. name: "Front (Armored)",
  13655. image: {
  13656. source: "./media/characters/umeko/front-armored.svg",
  13657. extra: 1,
  13658. bottom: 0.021
  13659. }
  13660. },
  13661. },
  13662. [
  13663. {
  13664. name: "Macro",
  13665. height: math.unit(220, "feet"),
  13666. default: true
  13667. },
  13668. {
  13669. name: "Guardian Dragon",
  13670. height: math.unit(50, "miles")
  13671. },
  13672. {
  13673. name: "Cosmic",
  13674. height: math.unit(800000, "miles")
  13675. },
  13676. ]
  13677. ))
  13678. characterMakers.push(() => makeCharacter(
  13679. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13680. {
  13681. front: {
  13682. height: math.unit(6, "feet"),
  13683. weight: math.unit(150, "lb"),
  13684. name: "Front",
  13685. image: {
  13686. source: "./media/characters/cassidy/front.svg",
  13687. extra: 1,
  13688. bottom: 0.043
  13689. }
  13690. },
  13691. },
  13692. [
  13693. {
  13694. name: "Canon Height",
  13695. height: math.unit(120, "feet"),
  13696. default: true
  13697. },
  13698. {
  13699. name: "Macro+",
  13700. height: math.unit(400, "feet")
  13701. },
  13702. {
  13703. name: "Macro++",
  13704. height: math.unit(4000, "feet")
  13705. },
  13706. {
  13707. name: "Megamacro",
  13708. height: math.unit(3, "miles")
  13709. },
  13710. ]
  13711. ))
  13712. characterMakers.push(() => makeCharacter(
  13713. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13714. {
  13715. front: {
  13716. height: math.unit(6, "feet"),
  13717. weight: math.unit(150, "lb"),
  13718. name: "Front",
  13719. image: {
  13720. source: "./media/characters/isaac/front.svg",
  13721. extra: 896 / 815,
  13722. bottom: 0.11
  13723. }
  13724. },
  13725. },
  13726. [
  13727. {
  13728. name: "Human Size",
  13729. height: math.unit(8, "feet"),
  13730. default: true
  13731. },
  13732. {
  13733. name: "Macro",
  13734. height: math.unit(400, "feet")
  13735. },
  13736. {
  13737. name: "Megamacro",
  13738. height: math.unit(50, "miles")
  13739. },
  13740. {
  13741. name: "Canon Height",
  13742. height: math.unit(200, "AU")
  13743. },
  13744. ]
  13745. ))
  13746. characterMakers.push(() => makeCharacter(
  13747. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13748. {
  13749. front: {
  13750. height: math.unit(6, "feet"),
  13751. weight: math.unit(72, "kg"),
  13752. name: "Front",
  13753. image: {
  13754. source: "./media/characters/sleekit/front.svg",
  13755. extra: 4693 / 4487,
  13756. bottom: 0.012
  13757. }
  13758. },
  13759. },
  13760. [
  13761. {
  13762. name: "Minimum Height",
  13763. height: math.unit(10, "meters")
  13764. },
  13765. {
  13766. name: "Smaller",
  13767. height: math.unit(25, "meters")
  13768. },
  13769. {
  13770. name: "Larger",
  13771. height: math.unit(38, "meters"),
  13772. default: true
  13773. },
  13774. {
  13775. name: "Maximum height",
  13776. height: math.unit(100, "meters")
  13777. },
  13778. ]
  13779. ))
  13780. characterMakers.push(() => makeCharacter(
  13781. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13782. {
  13783. front: {
  13784. height: math.unit(6, "feet"),
  13785. weight: math.unit(150, "lb"),
  13786. name: "Front",
  13787. image: {
  13788. source: "./media/characters/nillia/front.svg",
  13789. extra: 2195 / 2037,
  13790. bottom: 0.005
  13791. }
  13792. },
  13793. back: {
  13794. height: math.unit(6, "feet"),
  13795. weight: math.unit(150, "lb"),
  13796. name: "Back",
  13797. image: {
  13798. source: "./media/characters/nillia/back.svg",
  13799. extra: 2195 / 2037,
  13800. bottom: 0.005
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Canon Height",
  13807. height: math.unit(489, "feet"),
  13808. default: true
  13809. }
  13810. ]
  13811. ))
  13812. characterMakers.push(() => makeCharacter(
  13813. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13814. {
  13815. front: {
  13816. height: math.unit(6, "feet"),
  13817. weight: math.unit(150, "lb"),
  13818. name: "Front",
  13819. image: {
  13820. source: "./media/characters/mesmyriza/front.svg",
  13821. extra: 2067 / 1784,
  13822. bottom: 0.035
  13823. }
  13824. },
  13825. foot: {
  13826. height: math.unit(6 / (250 / 35), "feet"),
  13827. name: "Foot",
  13828. image: {
  13829. source: "./media/characters/mesmyriza/foot.svg"
  13830. }
  13831. },
  13832. },
  13833. [
  13834. {
  13835. name: "Macro",
  13836. height: math.unit(457, "meters"),
  13837. default: true
  13838. },
  13839. {
  13840. name: "Megamacro",
  13841. height: math.unit(8, "megameters")
  13842. },
  13843. ]
  13844. ))
  13845. characterMakers.push(() => makeCharacter(
  13846. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13847. {
  13848. front: {
  13849. height: math.unit(6, "feet"),
  13850. weight: math.unit(250, "lb"),
  13851. name: "Front",
  13852. image: {
  13853. source: "./media/characters/saudade/front.svg",
  13854. extra: 1172 / 1139,
  13855. bottom: 0.035
  13856. }
  13857. },
  13858. },
  13859. [
  13860. {
  13861. name: "Micro",
  13862. height: math.unit(3, "inches")
  13863. },
  13864. {
  13865. name: "Normal",
  13866. height: math.unit(6, "feet"),
  13867. default: true
  13868. },
  13869. {
  13870. name: "Macro",
  13871. height: math.unit(50, "feet")
  13872. },
  13873. {
  13874. name: "Megamacro",
  13875. height: math.unit(2800, "feet")
  13876. },
  13877. ]
  13878. ))
  13879. characterMakers.push(() => makeCharacter(
  13880. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13881. {
  13882. front: {
  13883. height: math.unit(5 + 4 / 12, "feet"),
  13884. weight: math.unit(100, "lb"),
  13885. name: "Front",
  13886. image: {
  13887. source: "./media/characters/keireer/front.svg",
  13888. extra: 716 / 666,
  13889. bottom: 0.05
  13890. }
  13891. },
  13892. },
  13893. [
  13894. {
  13895. name: "Normal",
  13896. height: math.unit(5 + 4 / 12, "feet"),
  13897. default: true
  13898. },
  13899. ]
  13900. ))
  13901. characterMakers.push(() => makeCharacter(
  13902. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13903. {
  13904. front: {
  13905. height: math.unit(6, "feet"),
  13906. weight: math.unit(90, "kg"),
  13907. name: "Front",
  13908. image: {
  13909. source: "./media/characters/mirja/front.svg",
  13910. extra: 1789 / 1683,
  13911. bottom: 0.05
  13912. }
  13913. },
  13914. frontDressed: {
  13915. height: math.unit(6, "feet"),
  13916. weight: math.unit(90, "lb"),
  13917. name: "Front (Dressed)",
  13918. image: {
  13919. source: "./media/characters/mirja/front-dressed.svg",
  13920. extra: 1789 / 1683,
  13921. bottom: 0.05
  13922. }
  13923. },
  13924. back: {
  13925. height: math.unit(6, "feet"),
  13926. weight: math.unit(90, "lb"),
  13927. name: "Back",
  13928. image: {
  13929. source: "./media/characters/mirja/back.svg",
  13930. extra: 953 / 917,
  13931. bottom: 0.017
  13932. }
  13933. },
  13934. },
  13935. [
  13936. {
  13937. name: "\"Incognito\"",
  13938. height: math.unit(3, "meters")
  13939. },
  13940. {
  13941. name: "Strolling Size",
  13942. height: math.unit(15, "km")
  13943. },
  13944. {
  13945. name: "Larger Strolling Size",
  13946. height: math.unit(400, "km")
  13947. },
  13948. {
  13949. name: "Preferred Size",
  13950. height: math.unit(5000, "km")
  13951. },
  13952. {
  13953. name: "True Size",
  13954. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13955. default: true
  13956. },
  13957. ]
  13958. ))
  13959. characterMakers.push(() => makeCharacter(
  13960. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13961. {
  13962. front: {
  13963. height: math.unit(15, "feet"),
  13964. weight: math.unit(880, "kg"),
  13965. name: "Front",
  13966. image: {
  13967. source: "./media/characters/nightraver/front.svg",
  13968. extra: 2444 / 2160,
  13969. bottom: 0.027
  13970. }
  13971. },
  13972. back: {
  13973. height: math.unit(15, "feet"),
  13974. weight: math.unit(880, "kg"),
  13975. name: "Back",
  13976. image: {
  13977. source: "./media/characters/nightraver/back.svg",
  13978. extra: 2309 / 2180,
  13979. bottom: 0.005
  13980. }
  13981. },
  13982. sole: {
  13983. height: math.unit(2.878, "feet"),
  13984. name: "Sole",
  13985. image: {
  13986. source: "./media/characters/nightraver/sole.svg"
  13987. }
  13988. },
  13989. foot: {
  13990. height: math.unit(2.285, "feet"),
  13991. name: "Foot",
  13992. image: {
  13993. source: "./media/characters/nightraver/foot.svg"
  13994. }
  13995. },
  13996. maw: {
  13997. height: math.unit(2.67, "feet"),
  13998. name: "Maw",
  13999. image: {
  14000. source: "./media/characters/nightraver/maw.svg"
  14001. }
  14002. },
  14003. },
  14004. [
  14005. {
  14006. name: "Micro",
  14007. height: math.unit(1, "cm")
  14008. },
  14009. {
  14010. name: "Normal",
  14011. height: math.unit(15, "feet"),
  14012. default: true
  14013. },
  14014. {
  14015. name: "Macro",
  14016. height: math.unit(300, "feet")
  14017. },
  14018. {
  14019. name: "Megamacro",
  14020. height: math.unit(300, "miles")
  14021. },
  14022. {
  14023. name: "Gigamacro",
  14024. height: math.unit(10000, "miles")
  14025. },
  14026. ]
  14027. ))
  14028. characterMakers.push(() => makeCharacter(
  14029. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14030. {
  14031. side: {
  14032. height: math.unit(2, "inches"),
  14033. weight: math.unit(5, "grams"),
  14034. name: "Side",
  14035. image: {
  14036. source: "./media/characters/arc/side.svg"
  14037. }
  14038. },
  14039. },
  14040. [
  14041. {
  14042. name: "Micro",
  14043. height: math.unit(2, "inches"),
  14044. default: true
  14045. },
  14046. ]
  14047. ))
  14048. characterMakers.push(() => makeCharacter(
  14049. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14050. {
  14051. front: {
  14052. height: math.unit(1.1938, "meters"),
  14053. weight: math.unit(54, "kg"),
  14054. name: "Front",
  14055. image: {
  14056. source: "./media/characters/nebula-shahar/front.svg",
  14057. extra: 1642 / 1436,
  14058. bottom: 0.06
  14059. }
  14060. },
  14061. },
  14062. [
  14063. {
  14064. name: "Megamicro",
  14065. height: math.unit(0.3, "mm")
  14066. },
  14067. {
  14068. name: "Micro",
  14069. height: math.unit(3, "cm")
  14070. },
  14071. {
  14072. name: "Normal",
  14073. height: math.unit(138, "cm"),
  14074. default: true
  14075. },
  14076. {
  14077. name: "Macro",
  14078. height: math.unit(30, "m")
  14079. },
  14080. ]
  14081. ))
  14082. characterMakers.push(() => makeCharacter(
  14083. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14084. {
  14085. front: {
  14086. height: math.unit(5.24, "feet"),
  14087. weight: math.unit(150, "lb"),
  14088. name: "Front",
  14089. image: {
  14090. source: "./media/characters/shayla/front.svg",
  14091. extra: 1512 / 1414,
  14092. bottom: 0.01
  14093. }
  14094. },
  14095. back: {
  14096. height: math.unit(5.24, "feet"),
  14097. weight: math.unit(150, "lb"),
  14098. name: "Back",
  14099. image: {
  14100. source: "./media/characters/shayla/back.svg",
  14101. extra: 1512 / 1414
  14102. }
  14103. },
  14104. hand: {
  14105. height: math.unit(0.7781496062992126, "feet"),
  14106. name: "Hand",
  14107. image: {
  14108. source: "./media/characters/shayla/hand.svg"
  14109. }
  14110. },
  14111. foot: {
  14112. height: math.unit(1.4206036745406823, "feet"),
  14113. name: "Foot",
  14114. image: {
  14115. source: "./media/characters/shayla/foot.svg"
  14116. }
  14117. },
  14118. },
  14119. [
  14120. {
  14121. name: "Micro",
  14122. height: math.unit(0.32, "feet")
  14123. },
  14124. {
  14125. name: "Normal",
  14126. height: math.unit(5.24, "feet"),
  14127. default: true
  14128. },
  14129. {
  14130. name: "Macro",
  14131. height: math.unit(492.12, "feet")
  14132. },
  14133. {
  14134. name: "Megamacro",
  14135. height: math.unit(186.41, "miles")
  14136. },
  14137. ]
  14138. ))
  14139. characterMakers.push(() => makeCharacter(
  14140. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14141. {
  14142. front: {
  14143. height: math.unit(2.2, "m"),
  14144. weight: math.unit(120, "kg"),
  14145. name: "Front",
  14146. image: {
  14147. source: "./media/characters/pia-jr/front.svg",
  14148. extra: 1000 / 970,
  14149. bottom: 0.035
  14150. }
  14151. },
  14152. hand: {
  14153. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14154. name: "Hand",
  14155. image: {
  14156. source: "./media/characters/pia-jr/hand.svg"
  14157. }
  14158. },
  14159. paw: {
  14160. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14161. name: "Paw",
  14162. image: {
  14163. source: "./media/characters/pia-jr/paw.svg"
  14164. }
  14165. },
  14166. },
  14167. [
  14168. {
  14169. name: "Micro",
  14170. height: math.unit(1.2, "cm")
  14171. },
  14172. {
  14173. name: "Normal",
  14174. height: math.unit(2.2, "m"),
  14175. default: true
  14176. },
  14177. {
  14178. name: "Macro",
  14179. height: math.unit(180, "m")
  14180. },
  14181. {
  14182. name: "Megamacro",
  14183. height: math.unit(420, "km")
  14184. },
  14185. ]
  14186. ))
  14187. characterMakers.push(() => makeCharacter(
  14188. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14189. {
  14190. front: {
  14191. height: math.unit(2, "m"),
  14192. weight: math.unit(115, "kg"),
  14193. name: "Front",
  14194. image: {
  14195. source: "./media/characters/pia-sr/front.svg",
  14196. extra: 760 / 730,
  14197. bottom: 0.015
  14198. }
  14199. },
  14200. back: {
  14201. height: math.unit(2, "m"),
  14202. weight: math.unit(115, "kg"),
  14203. name: "Back",
  14204. image: {
  14205. source: "./media/characters/pia-sr/back.svg",
  14206. extra: 760 / 730,
  14207. bottom: 0.01
  14208. }
  14209. },
  14210. hand: {
  14211. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14212. name: "Hand",
  14213. image: {
  14214. source: "./media/characters/pia-sr/hand.svg"
  14215. }
  14216. },
  14217. foot: {
  14218. height: math.unit(1.83, "feet"),
  14219. name: "Foot",
  14220. image: {
  14221. source: "./media/characters/pia-sr/foot.svg"
  14222. }
  14223. },
  14224. },
  14225. [
  14226. {
  14227. name: "Micro",
  14228. height: math.unit(88, "mm")
  14229. },
  14230. {
  14231. name: "Normal",
  14232. height: math.unit(2, "m"),
  14233. default: true
  14234. },
  14235. {
  14236. name: "Macro",
  14237. height: math.unit(200, "m")
  14238. },
  14239. {
  14240. name: "Megamacro",
  14241. height: math.unit(420, "km")
  14242. },
  14243. ]
  14244. ))
  14245. characterMakers.push(() => makeCharacter(
  14246. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14247. {
  14248. front: {
  14249. height: math.unit(8 + 2 / 12, "feet"),
  14250. weight: math.unit(300, "lb"),
  14251. name: "Front",
  14252. image: {
  14253. source: "./media/characters/kibibyte/front.svg",
  14254. extra: 2221 / 2098,
  14255. bottom: 0.04
  14256. }
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Normal",
  14262. height: math.unit(8 + 2 / 12, "feet"),
  14263. default: true
  14264. },
  14265. {
  14266. name: "Socialable Macro",
  14267. height: math.unit(50, "feet")
  14268. },
  14269. {
  14270. name: "Macro",
  14271. height: math.unit(300, "feet")
  14272. },
  14273. {
  14274. name: "Megamacro",
  14275. height: math.unit(500, "miles")
  14276. },
  14277. ]
  14278. ))
  14279. characterMakers.push(() => makeCharacter(
  14280. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14281. {
  14282. front: {
  14283. height: math.unit(6, "feet"),
  14284. weight: math.unit(150, "lb"),
  14285. name: "Front",
  14286. image: {
  14287. source: "./media/characters/felix/front.svg",
  14288. extra: 762 / 722,
  14289. bottom: 0.02
  14290. }
  14291. },
  14292. frontClothed: {
  14293. height: math.unit(6, "feet"),
  14294. weight: math.unit(150, "lb"),
  14295. name: "Front (Clothed)",
  14296. image: {
  14297. source: "./media/characters/felix/front-clothed.svg",
  14298. extra: 762 / 722,
  14299. bottom: 0.02
  14300. }
  14301. },
  14302. },
  14303. [
  14304. {
  14305. name: "Normal",
  14306. height: math.unit(6 + 8 / 12, "feet"),
  14307. default: true
  14308. },
  14309. {
  14310. name: "Macro",
  14311. height: math.unit(2600, "feet")
  14312. },
  14313. {
  14314. name: "Megamacro",
  14315. height: math.unit(450, "miles")
  14316. },
  14317. ]
  14318. ))
  14319. characterMakers.push(() => makeCharacter(
  14320. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14321. {
  14322. front: {
  14323. height: math.unit(6 + 1 / 12, "feet"),
  14324. weight: math.unit(250, "lb"),
  14325. name: "Front",
  14326. image: {
  14327. source: "./media/characters/tobo/front.svg",
  14328. extra: 608 / 586,
  14329. bottom: 0.023
  14330. }
  14331. },
  14332. back: {
  14333. height: math.unit(6 + 1 / 12, "feet"),
  14334. weight: math.unit(250, "lb"),
  14335. name: "Back",
  14336. image: {
  14337. source: "./media/characters/tobo/back.svg",
  14338. extra: 608 / 586
  14339. }
  14340. },
  14341. },
  14342. [
  14343. {
  14344. name: "Nano",
  14345. height: math.unit(2, "nm")
  14346. },
  14347. {
  14348. name: "Megamicro",
  14349. height: math.unit(0.1, "mm")
  14350. },
  14351. {
  14352. name: "Micro",
  14353. height: math.unit(1, "inch"),
  14354. default: true
  14355. },
  14356. {
  14357. name: "Human-sized",
  14358. height: math.unit(6 + 1 / 12, "feet")
  14359. },
  14360. {
  14361. name: "Macro",
  14362. height: math.unit(250, "feet")
  14363. },
  14364. {
  14365. name: "Megamacro",
  14366. height: math.unit(75, "miles")
  14367. },
  14368. {
  14369. name: "Texas-sized",
  14370. height: math.unit(750, "miles")
  14371. },
  14372. {
  14373. name: "Teramacro",
  14374. height: math.unit(50000, "miles")
  14375. },
  14376. ]
  14377. ))
  14378. characterMakers.push(() => makeCharacter(
  14379. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14380. {
  14381. front: {
  14382. height: math.unit(6, "feet"),
  14383. weight: math.unit(269, "lb"),
  14384. name: "Front",
  14385. image: {
  14386. source: "./media/characters/danny-kapowsky/front.svg",
  14387. extra: 766 / 736,
  14388. bottom: 0.044
  14389. }
  14390. },
  14391. back: {
  14392. height: math.unit(6, "feet"),
  14393. weight: math.unit(269, "lb"),
  14394. name: "Back",
  14395. image: {
  14396. source: "./media/characters/danny-kapowsky/back.svg",
  14397. extra: 797 / 760,
  14398. bottom: 0.025
  14399. }
  14400. },
  14401. },
  14402. [
  14403. {
  14404. name: "Macro",
  14405. height: math.unit(150, "feet"),
  14406. default: true
  14407. },
  14408. {
  14409. name: "Macro+",
  14410. height: math.unit(200, "feet")
  14411. },
  14412. {
  14413. name: "Macro++",
  14414. height: math.unit(300, "feet")
  14415. },
  14416. {
  14417. name: "Macro+++",
  14418. height: math.unit(400, "feet")
  14419. },
  14420. ]
  14421. ))
  14422. characterMakers.push(() => makeCharacter(
  14423. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14424. {
  14425. side: {
  14426. height: math.unit(6, "feet"),
  14427. weight: math.unit(170, "lb"),
  14428. name: "Side",
  14429. image: {
  14430. source: "./media/characters/finn/side.svg",
  14431. extra: 1953 / 1807,
  14432. bottom: 0.057
  14433. }
  14434. },
  14435. },
  14436. [
  14437. {
  14438. name: "Megamacro",
  14439. height: math.unit(14445, "feet"),
  14440. default: true
  14441. },
  14442. ]
  14443. ))
  14444. characterMakers.push(() => makeCharacter(
  14445. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14446. {
  14447. front: {
  14448. height: math.unit(5 + 6 / 12, "feet"),
  14449. weight: math.unit(125, "lb"),
  14450. name: "Front",
  14451. image: {
  14452. source: "./media/characters/roy/front.svg",
  14453. extra: 1,
  14454. bottom: 0.11
  14455. }
  14456. },
  14457. },
  14458. [
  14459. {
  14460. name: "Micro",
  14461. height: math.unit(3, "inches"),
  14462. default: true
  14463. },
  14464. {
  14465. name: "Normal",
  14466. height: math.unit(5 + 6 / 12, "feet")
  14467. },
  14468. {
  14469. name: "Lesser Macro",
  14470. height: math.unit(60, "feet")
  14471. },
  14472. {
  14473. name: "Greater Macro",
  14474. height: math.unit(120, "feet")
  14475. },
  14476. ]
  14477. ))
  14478. characterMakers.push(() => makeCharacter(
  14479. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14480. {
  14481. front: {
  14482. height: math.unit(6, "feet"),
  14483. weight: math.unit(100, "lb"),
  14484. name: "Front",
  14485. image: {
  14486. source: "./media/characters/aevsivs/front.svg",
  14487. extra: 1,
  14488. bottom: 0.03
  14489. }
  14490. },
  14491. back: {
  14492. height: math.unit(6, "feet"),
  14493. weight: math.unit(100, "lb"),
  14494. name: "Back",
  14495. image: {
  14496. source: "./media/characters/aevsivs/back.svg"
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Micro",
  14503. height: math.unit(2, "inches"),
  14504. default: true
  14505. },
  14506. {
  14507. name: "Normal",
  14508. height: math.unit(5, "feet")
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14514. {
  14515. front: {
  14516. height: math.unit(5 + 7 / 12, "feet"),
  14517. weight: math.unit(159, "lb"),
  14518. name: "Front",
  14519. image: {
  14520. source: "./media/characters/hildegard/front.svg",
  14521. extra: 289 / 269,
  14522. bottom: 7.63 / 297.8
  14523. }
  14524. },
  14525. back: {
  14526. height: math.unit(5 + 7 / 12, "feet"),
  14527. weight: math.unit(159, "lb"),
  14528. name: "Back",
  14529. image: {
  14530. source: "./media/characters/hildegard/back.svg",
  14531. extra: 280 / 260,
  14532. bottom: 2.3 / 282
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Normal",
  14539. height: math.unit(5 + 7 / 12, "feet"),
  14540. default: true
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14546. {
  14547. bernard: {
  14548. height: math.unit(2 + 7 / 12, "feet"),
  14549. weight: math.unit(66, "lb"),
  14550. name: "Bernard",
  14551. rename: true,
  14552. image: {
  14553. source: "./media/characters/bernard-wilder/bernard.svg",
  14554. extra: 192 / 128,
  14555. bottom: 0.05
  14556. }
  14557. },
  14558. wilder: {
  14559. height: math.unit(5 + 8 / 12, "feet"),
  14560. weight: math.unit(143, "lb"),
  14561. name: "Wilder",
  14562. rename: true,
  14563. image: {
  14564. source: "./media/characters/bernard-wilder/wilder.svg",
  14565. extra: 361 / 312,
  14566. bottom: 0.02
  14567. }
  14568. },
  14569. },
  14570. [
  14571. {
  14572. name: "Normal",
  14573. height: math.unit(2 + 7 / 12, "feet"),
  14574. default: true
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14580. {
  14581. anthro: {
  14582. height: math.unit(6 + 1 / 12, "feet"),
  14583. weight: math.unit(155, "lb"),
  14584. name: "Anthro",
  14585. image: {
  14586. source: "./media/characters/hearth/anthro.svg",
  14587. extra: 260 / 250,
  14588. bottom: 0.02
  14589. }
  14590. },
  14591. feral: {
  14592. height: math.unit(3.78, "feet"),
  14593. weight: math.unit(35, "kg"),
  14594. name: "Feral",
  14595. image: {
  14596. source: "./media/characters/hearth/feral.svg",
  14597. extra: 153 / 135,
  14598. bottom: 0.03
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Normal",
  14605. height: math.unit(6 + 1 / 12, "feet"),
  14606. default: true
  14607. },
  14608. ]
  14609. ))
  14610. characterMakers.push(() => makeCharacter(
  14611. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14612. {
  14613. front: {
  14614. height: math.unit(6, "feet"),
  14615. weight: math.unit(182, "lb"),
  14616. name: "Front",
  14617. image: {
  14618. source: "./media/characters/ingrid/front.svg",
  14619. extra: 294 / 268,
  14620. bottom: 0.027
  14621. }
  14622. },
  14623. },
  14624. [
  14625. {
  14626. name: "Normal",
  14627. height: math.unit(6, "feet"),
  14628. default: true
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14634. {
  14635. eevee: {
  14636. height: math.unit(2 + 10 / 12, "feet"),
  14637. weight: math.unit(86, "lb"),
  14638. name: "Malgam",
  14639. image: {
  14640. source: "./media/characters/malgam/eevee.svg",
  14641. extra: 218 / 180,
  14642. bottom: 0.2
  14643. }
  14644. },
  14645. sylveon: {
  14646. height: math.unit(4, "feet"),
  14647. weight: math.unit(101, "lb"),
  14648. name: "Future Malgam",
  14649. rename: true,
  14650. image: {
  14651. source: "./media/characters/malgam/sylveon.svg",
  14652. extra: 371 / 325,
  14653. bottom: 0.015
  14654. }
  14655. },
  14656. gigantamax: {
  14657. height: math.unit(50, "feet"),
  14658. name: "Gigantamax Malgam",
  14659. rename: true,
  14660. image: {
  14661. source: "./media/characters/malgam/gigantamax.svg"
  14662. }
  14663. },
  14664. },
  14665. [
  14666. {
  14667. name: "Normal",
  14668. height: math.unit(2 + 10 / 12, "feet"),
  14669. default: true
  14670. },
  14671. ]
  14672. ))
  14673. characterMakers.push(() => makeCharacter(
  14674. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14675. {
  14676. front: {
  14677. height: math.unit(5 + 11 / 12, "feet"),
  14678. weight: math.unit(188, "lb"),
  14679. name: "Front",
  14680. image: {
  14681. source: "./media/characters/fleur/front.svg",
  14682. extra: 309 / 283,
  14683. bottom: 0.007
  14684. }
  14685. },
  14686. },
  14687. [
  14688. {
  14689. name: "Normal",
  14690. height: math.unit(5 + 11 / 12, "feet"),
  14691. default: true
  14692. },
  14693. ]
  14694. ))
  14695. characterMakers.push(() => makeCharacter(
  14696. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14697. {
  14698. front: {
  14699. height: math.unit(5 + 4 / 12, "feet"),
  14700. weight: math.unit(122, "lb"),
  14701. name: "Front",
  14702. image: {
  14703. source: "./media/characters/jude/front.svg",
  14704. extra: 288 / 273,
  14705. bottom: 0.03
  14706. }
  14707. },
  14708. },
  14709. [
  14710. {
  14711. name: "Normal",
  14712. height: math.unit(5 + 4 / 12, "feet"),
  14713. default: true
  14714. },
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14719. {
  14720. front: {
  14721. height: math.unit(5 + 11 / 12, "feet"),
  14722. weight: math.unit(190, "lb"),
  14723. name: "Front",
  14724. image: {
  14725. source: "./media/characters/seara/front.svg",
  14726. extra: 1,
  14727. bottom: 0.05
  14728. }
  14729. },
  14730. },
  14731. [
  14732. {
  14733. name: "Normal",
  14734. height: math.unit(5 + 11 / 12, "feet"),
  14735. default: true
  14736. },
  14737. ]
  14738. ))
  14739. characterMakers.push(() => makeCharacter(
  14740. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14741. {
  14742. front: {
  14743. height: math.unit(16 + 5 / 12, "feet"),
  14744. weight: math.unit(524, "lb"),
  14745. name: "Front",
  14746. image: {
  14747. source: "./media/characters/caspian/front.svg",
  14748. extra: 1,
  14749. bottom: 0.04
  14750. }
  14751. },
  14752. },
  14753. [
  14754. {
  14755. name: "Normal",
  14756. height: math.unit(16 + 5 / 12, "feet"),
  14757. default: true
  14758. },
  14759. ]
  14760. ))
  14761. characterMakers.push(() => makeCharacter(
  14762. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14763. {
  14764. front: {
  14765. height: math.unit(5 + 7 / 12, "feet"),
  14766. weight: math.unit(170, "lb"),
  14767. name: "Front",
  14768. image: {
  14769. source: "./media/characters/mika/front.svg",
  14770. extra: 1,
  14771. bottom: 0.016
  14772. }
  14773. },
  14774. },
  14775. [
  14776. {
  14777. name: "Normal",
  14778. height: math.unit(5 + 7 / 12, "feet"),
  14779. default: true
  14780. },
  14781. ]
  14782. ))
  14783. characterMakers.push(() => makeCharacter(
  14784. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14785. {
  14786. front: {
  14787. height: math.unit(6 + 2 / 12, "feet"),
  14788. weight: math.unit(268, "lb"),
  14789. name: "Front",
  14790. image: {
  14791. source: "./media/characters/sol/front.svg",
  14792. extra: 247 / 231,
  14793. bottom: 0.05
  14794. }
  14795. },
  14796. },
  14797. [
  14798. {
  14799. name: "Normal",
  14800. height: math.unit(6 + 2 / 12, "feet"),
  14801. default: true
  14802. },
  14803. ]
  14804. ))
  14805. characterMakers.push(() => makeCharacter(
  14806. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14807. {
  14808. buizel: {
  14809. height: math.unit(2 + 5 / 12, "feet"),
  14810. weight: math.unit(87, "lb"),
  14811. name: "Buizel",
  14812. image: {
  14813. source: "./media/characters/umiko/buizel.svg",
  14814. extra: 172 / 157,
  14815. bottom: 0.01
  14816. }
  14817. },
  14818. floatzel: {
  14819. height: math.unit(5 + 9 / 12, "feet"),
  14820. weight: math.unit(250, "lb"),
  14821. name: "Floatzel",
  14822. image: {
  14823. source: "./media/characters/umiko/floatzel.svg",
  14824. extra: 262 / 248
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Normal",
  14831. height: math.unit(2 + 5 / 12, "feet"),
  14832. default: true
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14838. {
  14839. front: {
  14840. height: math.unit(6 + 2 / 12, "feet"),
  14841. weight: math.unit(146, "lb"),
  14842. name: "Front",
  14843. image: {
  14844. source: "./media/characters/iliac/front.svg",
  14845. extra: 389 / 365,
  14846. bottom: 0.035
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Normal",
  14853. height: math.unit(6 + 2 / 12, "feet"),
  14854. default: true
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14860. {
  14861. front: {
  14862. height: math.unit(6, "feet"),
  14863. weight: math.unit(170, "lb"),
  14864. name: "Front",
  14865. image: {
  14866. source: "./media/characters/topaz/front.svg",
  14867. extra: 317 / 303,
  14868. bottom: 0.055
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Normal",
  14875. height: math.unit(6, "feet"),
  14876. default: true
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(5 + 11 / 12, "feet"),
  14885. weight: math.unit(144, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/gabriel/front.svg",
  14889. extra: 285 / 262,
  14890. bottom: 0.004
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Normal",
  14897. height: math.unit(5 + 11 / 12, "feet"),
  14898. default: true
  14899. },
  14900. ]
  14901. ))
  14902. characterMakers.push(() => makeCharacter(
  14903. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14904. {
  14905. side: {
  14906. height: math.unit(6 + 5 / 12, "feet"),
  14907. weight: math.unit(300, "lb"),
  14908. name: "Side",
  14909. image: {
  14910. source: "./media/characters/tempest-suicune/side.svg",
  14911. extra: 195 / 154,
  14912. bottom: 0.04
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "Normal",
  14919. height: math.unit(6 + 5 / 12, "feet"),
  14920. default: true
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14926. {
  14927. front: {
  14928. height: math.unit(7 + 2 / 12, "feet"),
  14929. weight: math.unit(322, "lb"),
  14930. name: "Front",
  14931. image: {
  14932. source: "./media/characters/vulcan/front.svg",
  14933. extra: 154 / 147,
  14934. bottom: 0.04
  14935. }
  14936. },
  14937. },
  14938. [
  14939. {
  14940. name: "Normal",
  14941. height: math.unit(7 + 2 / 12, "feet"),
  14942. default: true
  14943. },
  14944. ]
  14945. ))
  14946. characterMakers.push(() => makeCharacter(
  14947. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14948. {
  14949. front: {
  14950. height: math.unit(5 + 10 / 12, "feet"),
  14951. weight: math.unit(264, "lb"),
  14952. name: "Front",
  14953. image: {
  14954. source: "./media/characters/gault/front.svg",
  14955. extra: 161 / 140,
  14956. bottom: 0.028
  14957. }
  14958. },
  14959. },
  14960. [
  14961. {
  14962. name: "Normal",
  14963. height: math.unit(5 + 10 / 12, "feet"),
  14964. default: true
  14965. },
  14966. ]
  14967. ))
  14968. characterMakers.push(() => makeCharacter(
  14969. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14970. {
  14971. front: {
  14972. height: math.unit(6, "feet"),
  14973. weight: math.unit(150, "lb"),
  14974. name: "Front",
  14975. image: {
  14976. source: "./media/characters/shard/front.svg",
  14977. extra: 273 / 238,
  14978. bottom: 0.02
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(3 + 6 / 12, "feet"),
  14986. default: true
  14987. },
  14988. ]
  14989. ))
  14990. characterMakers.push(() => makeCharacter(
  14991. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14992. {
  14993. front: {
  14994. height: math.unit(5 + 11 / 12, "feet"),
  14995. weight: math.unit(146, "lb"),
  14996. name: "Front",
  14997. image: {
  14998. source: "./media/characters/ashe/front.svg",
  14999. extra: 400 / 373,
  15000. bottom: 0.01
  15001. }
  15002. },
  15003. },
  15004. [
  15005. {
  15006. name: "Normal",
  15007. height: math.unit(5 + 11 / 12, "feet"),
  15008. default: true
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15014. {
  15015. front: {
  15016. height: math.unit(5 + 5 / 12, "feet"),
  15017. weight: math.unit(135, "lb"),
  15018. name: "Front",
  15019. image: {
  15020. source: "./media/characters/beatrix/front.svg",
  15021. extra: 392 / 379,
  15022. bottom: 0.01
  15023. }
  15024. },
  15025. },
  15026. [
  15027. {
  15028. name: "Normal",
  15029. height: math.unit(6, "feet"),
  15030. default: true
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15036. {
  15037. front: {
  15038. height: math.unit(6, "feet"),
  15039. weight: math.unit(150, "lb"),
  15040. name: "Front",
  15041. image: {
  15042. source: "./media/characters/ignatius/front.svg",
  15043. extra: 245 / 222,
  15044. bottom: 0.01
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Normal",
  15051. height: math.unit(5 + 5 / 12, "feet"),
  15052. default: true
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15058. {
  15059. front: {
  15060. height: math.unit(6 + 2 / 12, "feet"),
  15061. weight: math.unit(138, "lb"),
  15062. name: "Front",
  15063. image: {
  15064. source: "./media/characters/mei-li/front.svg",
  15065. extra: 237 / 229,
  15066. bottom: 0.03
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(6 + 2 / 12, "feet"),
  15074. default: true
  15075. },
  15076. ]
  15077. ))
  15078. characterMakers.push(() => makeCharacter(
  15079. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15080. {
  15081. front: {
  15082. height: math.unit(2 + 4 / 12, "feet"),
  15083. weight: math.unit(62, "lb"),
  15084. name: "Front",
  15085. image: {
  15086. source: "./media/characters/puru/front.svg",
  15087. extra: 206 / 149,
  15088. bottom: 0.06
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(2 + 4 / 12, "feet"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15102. {
  15103. anthro: {
  15104. height: math.unit(5 + 8/12, "feet"),
  15105. weight: math.unit(200, "lb"),
  15106. energyNeed: math.unit(2000, "kcal"),
  15107. name: "Anthro",
  15108. image: {
  15109. source: "./media/characters/kee/anthro.svg",
  15110. extra: 3251/3184,
  15111. bottom: 250/3501
  15112. }
  15113. },
  15114. taur: {
  15115. height: math.unit(11, "feet"),
  15116. weight: math.unit(500, "lb"),
  15117. energyNeed: math.unit(5000, "kcal"),
  15118. name: "Taur",
  15119. image: {
  15120. source: "./media/characters/kee/taur.svg",
  15121. extra: 1362/1320,
  15122. bottom: 83/1445
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(5 + 8/12, "feet"),
  15130. default: true
  15131. },
  15132. {
  15133. name: "Macro",
  15134. height: math.unit(35, "feet")
  15135. },
  15136. ]
  15137. ))
  15138. characterMakers.push(() => makeCharacter(
  15139. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15140. {
  15141. anthro: {
  15142. height: math.unit(7, "feet"),
  15143. weight: math.unit(190, "lb"),
  15144. name: "Anthro",
  15145. image: {
  15146. source: "./media/characters/cobalt-dracha/anthro.svg",
  15147. extra: 231 / 225,
  15148. bottom: 0.04
  15149. }
  15150. },
  15151. feral: {
  15152. height: math.unit(9 + 7 / 12, "feet"),
  15153. weight: math.unit(294, "lb"),
  15154. name: "Feral",
  15155. image: {
  15156. source: "./media/characters/cobalt-dracha/feral.svg",
  15157. extra: 692 / 633,
  15158. bottom: 0.05
  15159. }
  15160. },
  15161. },
  15162. [
  15163. {
  15164. name: "Normal",
  15165. height: math.unit(7, "feet"),
  15166. default: true
  15167. },
  15168. ]
  15169. ))
  15170. characterMakers.push(() => makeCharacter(
  15171. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15172. {
  15173. fallen: {
  15174. height: math.unit(11 + 8 / 12, "feet"),
  15175. weight: math.unit(485, "lb"),
  15176. name: "Java (Fallen)",
  15177. rename: true,
  15178. image: {
  15179. source: "./media/characters/java/fallen.svg",
  15180. extra: 226 / 208,
  15181. bottom: 0.005
  15182. }
  15183. },
  15184. godkin: {
  15185. height: math.unit(10 + 6 / 12, "feet"),
  15186. weight: math.unit(328, "lb"),
  15187. name: "Java (Godkin)",
  15188. rename: true,
  15189. image: {
  15190. source: "./media/characters/java/godkin.svg",
  15191. extra: 270 / 262,
  15192. bottom: 0.02
  15193. }
  15194. },
  15195. },
  15196. [
  15197. {
  15198. name: "Normal",
  15199. height: math.unit(11 + 8 / 12, "feet"),
  15200. default: true
  15201. },
  15202. ]
  15203. ))
  15204. characterMakers.push(() => makeCharacter(
  15205. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15206. {
  15207. front: {
  15208. height: math.unit(7 + 8 / 12, "feet"),
  15209. weight: math.unit(320, "lb"),
  15210. name: "Front",
  15211. image: {
  15212. source: "./media/characters/skoll/front.svg",
  15213. extra: 232 / 220,
  15214. bottom: 0.02
  15215. }
  15216. },
  15217. },
  15218. [
  15219. {
  15220. name: "Normal",
  15221. height: math.unit(7 + 8 / 12, "feet"),
  15222. default: true
  15223. },
  15224. ]
  15225. ))
  15226. characterMakers.push(() => makeCharacter(
  15227. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15228. {
  15229. front: {
  15230. height: math.unit(5 + 9 / 12, "feet"),
  15231. weight: math.unit(170, "lb"),
  15232. name: "Front",
  15233. image: {
  15234. source: "./media/characters/purna/front.svg",
  15235. extra: 239 / 229,
  15236. bottom: 0.01
  15237. }
  15238. },
  15239. },
  15240. [
  15241. {
  15242. name: "Normal",
  15243. height: math.unit(5 + 9 / 12, "feet"),
  15244. default: true
  15245. },
  15246. ]
  15247. ))
  15248. characterMakers.push(() => makeCharacter(
  15249. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15250. {
  15251. front: {
  15252. height: math.unit(5 + 9 / 12, "feet"),
  15253. weight: math.unit(142, "lb"),
  15254. name: "Front",
  15255. image: {
  15256. source: "./media/characters/kuva/front.svg",
  15257. extra: 281 / 271,
  15258. bottom: 0.006
  15259. }
  15260. },
  15261. },
  15262. [
  15263. {
  15264. name: "Normal",
  15265. height: math.unit(5 + 9 / 12, "feet"),
  15266. default: true
  15267. },
  15268. ]
  15269. ))
  15270. characterMakers.push(() => makeCharacter(
  15271. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15272. {
  15273. anthro: {
  15274. height: math.unit(9 + 2 / 12, "feet"),
  15275. weight: math.unit(270, "lb"),
  15276. name: "Anthro",
  15277. image: {
  15278. source: "./media/characters/embra/anthro.svg",
  15279. extra: 200 / 187,
  15280. bottom: 0.02
  15281. }
  15282. },
  15283. feral: {
  15284. height: math.unit(18 + 8 / 12, "feet"),
  15285. weight: math.unit(576, "lb"),
  15286. name: "Feral",
  15287. image: {
  15288. source: "./media/characters/embra/feral.svg",
  15289. extra: 152 / 137,
  15290. bottom: 0.037
  15291. }
  15292. },
  15293. },
  15294. [
  15295. {
  15296. name: "Normal",
  15297. height: math.unit(9 + 2 / 12, "feet"),
  15298. default: true
  15299. },
  15300. ]
  15301. ))
  15302. characterMakers.push(() => makeCharacter(
  15303. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15304. {
  15305. anthro: {
  15306. height: math.unit(10 + 9 / 12, "feet"),
  15307. weight: math.unit(224, "lb"),
  15308. name: "Anthro",
  15309. image: {
  15310. source: "./media/characters/grottos/anthro.svg",
  15311. extra: 350 / 332,
  15312. bottom: 0.045
  15313. }
  15314. },
  15315. feral: {
  15316. height: math.unit(20 + 7 / 12, "feet"),
  15317. weight: math.unit(629, "lb"),
  15318. name: "Feral",
  15319. image: {
  15320. source: "./media/characters/grottos/feral.svg",
  15321. extra: 207 / 190,
  15322. bottom: 0.05
  15323. }
  15324. },
  15325. },
  15326. [
  15327. {
  15328. name: "Normal",
  15329. height: math.unit(10 + 9 / 12, "feet"),
  15330. default: true
  15331. },
  15332. ]
  15333. ))
  15334. characterMakers.push(() => makeCharacter(
  15335. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15336. {
  15337. anthro: {
  15338. height: math.unit(9 + 6 / 12, "feet"),
  15339. weight: math.unit(298, "lb"),
  15340. name: "Anthro",
  15341. image: {
  15342. source: "./media/characters/frifna/anthro.svg",
  15343. extra: 282 / 269,
  15344. bottom: 0.015
  15345. }
  15346. },
  15347. feral: {
  15348. height: math.unit(16 + 2 / 12, "feet"),
  15349. weight: math.unit(624, "lb"),
  15350. name: "Feral",
  15351. image: {
  15352. source: "./media/characters/frifna/feral.svg"
  15353. }
  15354. },
  15355. },
  15356. [
  15357. {
  15358. name: "Normal",
  15359. height: math.unit(9 + 6 / 12, "feet"),
  15360. default: true
  15361. },
  15362. ]
  15363. ))
  15364. characterMakers.push(() => makeCharacter(
  15365. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15366. {
  15367. front: {
  15368. height: math.unit(6 + 2 / 12, "feet"),
  15369. weight: math.unit(168, "lb"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/elise/front.svg",
  15373. extra: 276 / 271
  15374. }
  15375. },
  15376. },
  15377. [
  15378. {
  15379. name: "Normal",
  15380. height: math.unit(6 + 2 / 12, "feet"),
  15381. default: true
  15382. },
  15383. ]
  15384. ))
  15385. characterMakers.push(() => makeCharacter(
  15386. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15387. {
  15388. front: {
  15389. height: math.unit(5 + 10 / 12, "feet"),
  15390. weight: math.unit(210, "lb"),
  15391. name: "Front",
  15392. image: {
  15393. source: "./media/characters/glade/front.svg",
  15394. extra: 258 / 247,
  15395. bottom: 0.008
  15396. }
  15397. },
  15398. },
  15399. [
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(5 + 10 / 12, "feet"),
  15403. default: true
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15409. {
  15410. front: {
  15411. height: math.unit(5 + 10 / 12, "feet"),
  15412. weight: math.unit(129, "lb"),
  15413. name: "Front",
  15414. image: {
  15415. source: "./media/characters/rina/front.svg",
  15416. extra: 266 / 255,
  15417. bottom: 0.005
  15418. }
  15419. },
  15420. },
  15421. [
  15422. {
  15423. name: "Normal",
  15424. height: math.unit(5 + 10 / 12, "feet"),
  15425. default: true
  15426. },
  15427. ]
  15428. ))
  15429. characterMakers.push(() => makeCharacter(
  15430. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15431. {
  15432. front: {
  15433. height: math.unit(6 + 1 / 12, "feet"),
  15434. weight: math.unit(192, "lb"),
  15435. name: "Front",
  15436. image: {
  15437. source: "./media/characters/veronica/front.svg",
  15438. extra: 319 / 309,
  15439. bottom: 0.005
  15440. }
  15441. },
  15442. },
  15443. [
  15444. {
  15445. name: "Normal",
  15446. height: math.unit(6 + 1 / 12, "feet"),
  15447. default: true
  15448. },
  15449. ]
  15450. ))
  15451. characterMakers.push(() => makeCharacter(
  15452. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15453. {
  15454. front: {
  15455. height: math.unit(9 + 3 / 12, "feet"),
  15456. weight: math.unit(1100, "lb"),
  15457. name: "Front",
  15458. image: {
  15459. source: "./media/characters/braxton/front.svg",
  15460. extra: 1057 / 984,
  15461. bottom: 0.05
  15462. }
  15463. },
  15464. },
  15465. [
  15466. {
  15467. name: "Normal",
  15468. height: math.unit(9 + 3 / 12, "feet")
  15469. },
  15470. {
  15471. name: "Giant",
  15472. height: math.unit(300, "feet"),
  15473. default: true
  15474. },
  15475. {
  15476. name: "Macro",
  15477. height: math.unit(700, "feet")
  15478. },
  15479. {
  15480. name: "Megamacro",
  15481. height: math.unit(6000, "feet")
  15482. },
  15483. ]
  15484. ))
  15485. characterMakers.push(() => makeCharacter(
  15486. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15487. {
  15488. front: {
  15489. height: math.unit(6 + 7 / 12, "feet"),
  15490. weight: math.unit(150, "lb"),
  15491. name: "Front",
  15492. image: {
  15493. source: "./media/characters/blue-feyonics/front.svg",
  15494. extra: 1403 / 1306,
  15495. bottom: 0.047
  15496. }
  15497. },
  15498. },
  15499. [
  15500. {
  15501. name: "Normal",
  15502. height: math.unit(6 + 7 / 12, "feet"),
  15503. default: true
  15504. },
  15505. ]
  15506. ))
  15507. characterMakers.push(() => makeCharacter(
  15508. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15509. {
  15510. front: {
  15511. height: math.unit(1.8, "meters"),
  15512. weight: math.unit(60, "kg"),
  15513. name: "Front",
  15514. image: {
  15515. source: "./media/characters/maxwell/front.svg",
  15516. extra: 2060 / 1873
  15517. }
  15518. },
  15519. },
  15520. [
  15521. {
  15522. name: "Micro",
  15523. height: math.unit(1, "mm")
  15524. },
  15525. {
  15526. name: "Normal",
  15527. height: math.unit(1.8, "meter"),
  15528. default: true
  15529. },
  15530. {
  15531. name: "Macro",
  15532. height: math.unit(30, "meters")
  15533. },
  15534. {
  15535. name: "Megamacro",
  15536. height: math.unit(10, "km")
  15537. },
  15538. ]
  15539. ))
  15540. characterMakers.push(() => makeCharacter(
  15541. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15542. {
  15543. front: {
  15544. height: math.unit(6, "feet"),
  15545. weight: math.unit(150, "lb"),
  15546. name: "Front",
  15547. image: {
  15548. source: "./media/characters/jack/front.svg",
  15549. extra: 1754 / 1640,
  15550. bottom: 0.01
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Normal",
  15557. height: math.unit(80000, "feet"),
  15558. default: true
  15559. },
  15560. {
  15561. name: "Max size",
  15562. height: math.unit(10, "lightyears")
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15568. {
  15569. upright: {
  15570. height: math.unit(7, "feet"),
  15571. weight: math.unit(170, "lb"),
  15572. name: "Upright",
  15573. image: {
  15574. source: "./media/characters/cafat/upright.svg",
  15575. bottom: 0.01
  15576. }
  15577. },
  15578. uprightFull: {
  15579. height: math.unit(7, "feet"),
  15580. weight: math.unit(170, "lb"),
  15581. name: "Upright (Full)",
  15582. image: {
  15583. source: "./media/characters/cafat/upright-full.svg",
  15584. bottom: 0.01
  15585. }
  15586. },
  15587. side: {
  15588. height: math.unit(5, "feet"),
  15589. weight: math.unit(150, "lb"),
  15590. name: "Side",
  15591. image: {
  15592. source: "./media/characters/cafat/side.svg"
  15593. }
  15594. },
  15595. },
  15596. [
  15597. {
  15598. name: "Small",
  15599. height: math.unit(7, "feet"),
  15600. default: true
  15601. },
  15602. {
  15603. name: "Large",
  15604. height: math.unit(15.5, "feet")
  15605. },
  15606. ]
  15607. ))
  15608. characterMakers.push(() => makeCharacter(
  15609. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15610. {
  15611. front: {
  15612. height: math.unit(6, "feet"),
  15613. weight: math.unit(150, "lb"),
  15614. name: "Front",
  15615. image: {
  15616. source: "./media/characters/verin-raharra/front.svg",
  15617. extra: 5019 / 4835,
  15618. bottom: 0.023
  15619. }
  15620. },
  15621. },
  15622. [
  15623. {
  15624. name: "Normal",
  15625. height: math.unit(7 + 5 / 12, "feet"),
  15626. default: true
  15627. },
  15628. {
  15629. name: "Upsized",
  15630. height: math.unit(20, "feet")
  15631. },
  15632. ]
  15633. ))
  15634. characterMakers.push(() => makeCharacter(
  15635. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15636. {
  15637. front: {
  15638. height: math.unit(7, "feet"),
  15639. weight: math.unit(230, "lb"),
  15640. name: "Front",
  15641. image: {
  15642. source: "./media/characters/nakata/front.svg",
  15643. extra: 1.005,
  15644. bottom: 0.01
  15645. }
  15646. },
  15647. },
  15648. [
  15649. {
  15650. name: "Normal",
  15651. height: math.unit(7, "feet"),
  15652. default: true
  15653. },
  15654. {
  15655. name: "Big",
  15656. height: math.unit(14, "feet")
  15657. },
  15658. {
  15659. name: "Macro",
  15660. height: math.unit(400, "feet")
  15661. },
  15662. ]
  15663. ))
  15664. characterMakers.push(() => makeCharacter(
  15665. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15666. {
  15667. front: {
  15668. height: math.unit(4.91, "feet"),
  15669. weight: math.unit(100, "lb"),
  15670. name: "Front",
  15671. image: {
  15672. source: "./media/characters/lily/front.svg",
  15673. extra: 1585 / 1415,
  15674. bottom: 0.02
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Normal",
  15681. height: math.unit(4.91, "feet"),
  15682. default: true
  15683. },
  15684. ]
  15685. ))
  15686. characterMakers.push(() => makeCharacter(
  15687. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15688. {
  15689. laying: {
  15690. height: math.unit(4 + 4 / 12, "feet"),
  15691. weight: math.unit(600, "lb"),
  15692. name: "Laying",
  15693. image: {
  15694. source: "./media/characters/sheila/laying.svg",
  15695. extra: 1333 / 1265,
  15696. bottom: 0.16
  15697. }
  15698. },
  15699. },
  15700. [
  15701. {
  15702. name: "Normal",
  15703. height: math.unit(4 + 4 / 12, "feet"),
  15704. default: true
  15705. },
  15706. ]
  15707. ))
  15708. characterMakers.push(() => makeCharacter(
  15709. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15710. {
  15711. front: {
  15712. height: math.unit(6, "feet"),
  15713. weight: math.unit(190, "lb"),
  15714. name: "Front",
  15715. image: {
  15716. source: "./media/characters/sax/front.svg",
  15717. extra: 1187 / 973,
  15718. bottom: 0.042
  15719. }
  15720. },
  15721. },
  15722. [
  15723. {
  15724. name: "Micro",
  15725. height: math.unit(4, "inches"),
  15726. default: true
  15727. },
  15728. ]
  15729. ))
  15730. characterMakers.push(() => makeCharacter(
  15731. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15732. {
  15733. front: {
  15734. height: math.unit(6, "feet"),
  15735. weight: math.unit(150, "lb"),
  15736. name: "Front",
  15737. image: {
  15738. source: "./media/characters/pandora/front.svg",
  15739. extra: 2720 / 2556,
  15740. bottom: 0.015
  15741. }
  15742. },
  15743. back: {
  15744. height: math.unit(6, "feet"),
  15745. weight: math.unit(150, "lb"),
  15746. name: "Back",
  15747. image: {
  15748. source: "./media/characters/pandora/back.svg",
  15749. extra: 2720 / 2556,
  15750. bottom: 0.01
  15751. }
  15752. },
  15753. beans: {
  15754. height: math.unit(6 / 8, "feet"),
  15755. name: "Beans",
  15756. image: {
  15757. source: "./media/characters/pandora/beans.svg"
  15758. }
  15759. },
  15760. collar: {
  15761. height: math.unit(0.31, "feet"),
  15762. name: "Collar",
  15763. image: {
  15764. source: "./media/characters/pandora/collar.svg"
  15765. }
  15766. },
  15767. skirt: {
  15768. height: math.unit(6, "feet"),
  15769. weight: math.unit(150, "lb"),
  15770. name: "Skirt",
  15771. image: {
  15772. source: "./media/characters/pandora/skirt.svg",
  15773. extra: 1622 / 1525,
  15774. bottom: 0.015
  15775. }
  15776. },
  15777. hoodie: {
  15778. height: math.unit(6, "feet"),
  15779. weight: math.unit(150, "lb"),
  15780. name: "Hoodie",
  15781. image: {
  15782. source: "./media/characters/pandora/hoodie.svg",
  15783. extra: 1622 / 1525,
  15784. bottom: 0.015
  15785. }
  15786. },
  15787. casual: {
  15788. height: math.unit(6, "feet"),
  15789. weight: math.unit(150, "lb"),
  15790. name: "Casual",
  15791. image: {
  15792. source: "./media/characters/pandora/casual.svg",
  15793. extra: 1622 / 1525,
  15794. bottom: 0.015
  15795. }
  15796. },
  15797. },
  15798. [
  15799. {
  15800. name: "Normal",
  15801. height: math.unit(6, "feet")
  15802. },
  15803. {
  15804. name: "Big Steppy",
  15805. height: math.unit(1, "km"),
  15806. default: true
  15807. },
  15808. {
  15809. name: "Galactic Steppy",
  15810. height: math.unit(2, "gigameters")
  15811. },
  15812. ]
  15813. ))
  15814. characterMakers.push(() => makeCharacter(
  15815. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15816. {
  15817. side: {
  15818. height: math.unit(10, "feet"),
  15819. weight: math.unit(800, "kg"),
  15820. name: "Side",
  15821. image: {
  15822. source: "./media/characters/venio-darcony/side.svg",
  15823. extra: 1373 / 1003,
  15824. bottom: 0.037
  15825. }
  15826. },
  15827. front: {
  15828. height: math.unit(19, "feet"),
  15829. weight: math.unit(800, "kg"),
  15830. name: "Front",
  15831. image: {
  15832. source: "./media/characters/venio-darcony/front.svg"
  15833. }
  15834. },
  15835. back: {
  15836. height: math.unit(19, "feet"),
  15837. weight: math.unit(800, "kg"),
  15838. name: "Back",
  15839. image: {
  15840. source: "./media/characters/venio-darcony/back.svg"
  15841. }
  15842. },
  15843. sideNsfw: {
  15844. height: math.unit(10, "feet"),
  15845. weight: math.unit(800, "kg"),
  15846. name: "Side (NSFW)",
  15847. image: {
  15848. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15849. extra: 1373 / 1003,
  15850. bottom: 0.037
  15851. }
  15852. },
  15853. frontNsfw: {
  15854. height: math.unit(19, "feet"),
  15855. weight: math.unit(800, "kg"),
  15856. name: "Front (NSFW)",
  15857. image: {
  15858. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15859. }
  15860. },
  15861. backNsfw: {
  15862. height: math.unit(19, "feet"),
  15863. weight: math.unit(800, "kg"),
  15864. name: "Back (NSFW)",
  15865. image: {
  15866. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15867. }
  15868. },
  15869. sideArmored: {
  15870. height: math.unit(10, "feet"),
  15871. weight: math.unit(800, "kg"),
  15872. name: "Side (Armored)",
  15873. image: {
  15874. source: "./media/characters/venio-darcony/side-armored.svg",
  15875. extra: 1373 / 1003,
  15876. bottom: 0.037
  15877. }
  15878. },
  15879. frontArmored: {
  15880. height: math.unit(19, "feet"),
  15881. weight: math.unit(900, "kg"),
  15882. name: "Front (Armored)",
  15883. image: {
  15884. source: "./media/characters/venio-darcony/front-armored.svg"
  15885. }
  15886. },
  15887. backArmored: {
  15888. height: math.unit(19, "feet"),
  15889. weight: math.unit(900, "kg"),
  15890. name: "Back (Armored)",
  15891. image: {
  15892. source: "./media/characters/venio-darcony/back-armored.svg"
  15893. }
  15894. },
  15895. sword: {
  15896. height: math.unit(10, "feet"),
  15897. weight: math.unit(50, "lb"),
  15898. name: "Sword",
  15899. image: {
  15900. source: "./media/characters/venio-darcony/sword.svg"
  15901. }
  15902. },
  15903. },
  15904. [
  15905. {
  15906. name: "Normal",
  15907. height: math.unit(10, "feet")
  15908. },
  15909. {
  15910. name: "Macro",
  15911. height: math.unit(130, "feet"),
  15912. default: true
  15913. },
  15914. {
  15915. name: "Macro+",
  15916. height: math.unit(240, "feet")
  15917. },
  15918. ]
  15919. ))
  15920. characterMakers.push(() => makeCharacter(
  15921. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15922. {
  15923. front: {
  15924. height: math.unit(6, "feet"),
  15925. weight: math.unit(150, "lb"),
  15926. name: "Front",
  15927. image: {
  15928. source: "./media/characters/veski/front.svg",
  15929. extra: 1299 / 1225,
  15930. bottom: 0.04
  15931. }
  15932. },
  15933. back: {
  15934. height: math.unit(6, "feet"),
  15935. weight: math.unit(150, "lb"),
  15936. name: "Back",
  15937. image: {
  15938. source: "./media/characters/veski/back.svg",
  15939. extra: 1299 / 1225,
  15940. bottom: 0.008
  15941. }
  15942. },
  15943. maw: {
  15944. height: math.unit(1.5 * 1.21, "feet"),
  15945. name: "Maw",
  15946. image: {
  15947. source: "./media/characters/veski/maw.svg"
  15948. }
  15949. },
  15950. },
  15951. [
  15952. {
  15953. name: "Macro",
  15954. height: math.unit(2, "km"),
  15955. default: true
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15961. {
  15962. front: {
  15963. height: math.unit(5 + 7 / 12, "feet"),
  15964. name: "Front",
  15965. image: {
  15966. source: "./media/characters/isabelle/front.svg",
  15967. extra: 2130 / 1976,
  15968. bottom: 0.05
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "Supermicro",
  15975. height: math.unit(10, "micrometers")
  15976. },
  15977. {
  15978. name: "Micro",
  15979. height: math.unit(1, "inch")
  15980. },
  15981. {
  15982. name: "Tiny",
  15983. height: math.unit(5, "inches")
  15984. },
  15985. {
  15986. name: "Standard",
  15987. height: math.unit(5 + 7 / 12, "inches")
  15988. },
  15989. {
  15990. name: "Macro",
  15991. height: math.unit(80, "meters"),
  15992. default: true
  15993. },
  15994. {
  15995. name: "Megamacro",
  15996. height: math.unit(250, "meters")
  15997. },
  15998. {
  15999. name: "Gigamacro",
  16000. height: math.unit(5, "km")
  16001. },
  16002. {
  16003. name: "Cosmic",
  16004. height: math.unit(2.5e6, "miles")
  16005. },
  16006. ]
  16007. ))
  16008. characterMakers.push(() => makeCharacter(
  16009. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16010. {
  16011. front: {
  16012. height: math.unit(6, "feet"),
  16013. weight: math.unit(150, "lb"),
  16014. name: "Front",
  16015. image: {
  16016. source: "./media/characters/hanzo/front.svg",
  16017. extra: 374 / 344,
  16018. bottom: 0.02
  16019. }
  16020. },
  16021. },
  16022. [
  16023. {
  16024. name: "Normal",
  16025. height: math.unit(8, "feet"),
  16026. default: true
  16027. },
  16028. ]
  16029. ))
  16030. characterMakers.push(() => makeCharacter(
  16031. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16032. {
  16033. front: {
  16034. height: math.unit(7, "feet"),
  16035. weight: math.unit(130, "lb"),
  16036. name: "Front",
  16037. image: {
  16038. source: "./media/characters/anna/front.svg",
  16039. extra: 169 / 145,
  16040. bottom: 0.06
  16041. }
  16042. },
  16043. full: {
  16044. height: math.unit(4.96, "feet"),
  16045. weight: math.unit(220, "lb"),
  16046. name: "Full",
  16047. image: {
  16048. source: "./media/characters/anna/full.svg",
  16049. extra: 138 / 114,
  16050. bottom: 0.15
  16051. }
  16052. },
  16053. tongue: {
  16054. height: math.unit(2.53, "feet"),
  16055. name: "Tongue",
  16056. image: {
  16057. source: "./media/characters/anna/tongue.svg"
  16058. }
  16059. },
  16060. },
  16061. [
  16062. {
  16063. name: "Normal",
  16064. height: math.unit(7, "feet"),
  16065. default: true
  16066. },
  16067. ]
  16068. ))
  16069. characterMakers.push(() => makeCharacter(
  16070. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16071. {
  16072. front: {
  16073. height: math.unit(7, "feet"),
  16074. weight: math.unit(150, "lb"),
  16075. name: "Front",
  16076. image: {
  16077. source: "./media/characters/ian-corvid/front.svg",
  16078. extra: 150 / 142,
  16079. bottom: 0.02
  16080. }
  16081. },
  16082. back: {
  16083. height: math.unit(7, "feet"),
  16084. weight: math.unit(150, "lb"),
  16085. name: "Back",
  16086. image: {
  16087. source: "./media/characters/ian-corvid/back.svg",
  16088. extra: 150 / 143,
  16089. bottom: 0.01
  16090. }
  16091. },
  16092. stomping: {
  16093. height: math.unit(7, "feet"),
  16094. weight: math.unit(150, "lb"),
  16095. name: "Stomping",
  16096. image: {
  16097. source: "./media/characters/ian-corvid/stomping.svg",
  16098. extra: 76 / 72
  16099. }
  16100. },
  16101. sitting: {
  16102. height: math.unit(7 / 1.8, "feet"),
  16103. weight: math.unit(150, "lb"),
  16104. name: "Sitting",
  16105. image: {
  16106. source: "./media/characters/ian-corvid/sitting.svg",
  16107. extra: 1400 / 1269,
  16108. bottom: 0.15
  16109. }
  16110. },
  16111. },
  16112. [
  16113. {
  16114. name: "Tiny Microw",
  16115. height: math.unit(1, "inch")
  16116. },
  16117. {
  16118. name: "Microw",
  16119. height: math.unit(6, "inches")
  16120. },
  16121. {
  16122. name: "Crow",
  16123. height: math.unit(7 + 1 / 12, "feet"),
  16124. default: true
  16125. },
  16126. {
  16127. name: "Macrow",
  16128. height: math.unit(176, "feet")
  16129. },
  16130. ]
  16131. ))
  16132. characterMakers.push(() => makeCharacter(
  16133. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16134. {
  16135. front: {
  16136. height: math.unit(5 + 7 / 12, "feet"),
  16137. weight: math.unit(147, "lb"),
  16138. name: "Front",
  16139. image: {
  16140. source: "./media/characters/natalie-kellon/front.svg",
  16141. extra: 1214 / 1141,
  16142. bottom: 0.02
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Micro",
  16149. height: math.unit(1 / 16, "inch")
  16150. },
  16151. {
  16152. name: "Tiny",
  16153. height: math.unit(4, "inches")
  16154. },
  16155. {
  16156. name: "Normal",
  16157. height: math.unit(5 + 7 / 12, "feet"),
  16158. default: true
  16159. },
  16160. {
  16161. name: "Amazon",
  16162. height: math.unit(12, "feet")
  16163. },
  16164. {
  16165. name: "Giantess",
  16166. height: math.unit(160, "meters")
  16167. },
  16168. {
  16169. name: "Titaness",
  16170. height: math.unit(800, "meters")
  16171. },
  16172. ]
  16173. ))
  16174. characterMakers.push(() => makeCharacter(
  16175. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16176. {
  16177. front: {
  16178. height: math.unit(6, "feet"),
  16179. weight: math.unit(150, "lb"),
  16180. name: "Front",
  16181. image: {
  16182. source: "./media/characters/alluria/front.svg",
  16183. extra: 806 / 738,
  16184. bottom: 0.01
  16185. }
  16186. },
  16187. side: {
  16188. height: math.unit(6, "feet"),
  16189. weight: math.unit(150, "lb"),
  16190. name: "Side",
  16191. image: {
  16192. source: "./media/characters/alluria/side.svg",
  16193. extra: 800 / 750,
  16194. }
  16195. },
  16196. back: {
  16197. height: math.unit(6, "feet"),
  16198. weight: math.unit(150, "lb"),
  16199. name: "Back",
  16200. image: {
  16201. source: "./media/characters/alluria/back.svg",
  16202. extra: 806 / 738,
  16203. }
  16204. },
  16205. frontMaid: {
  16206. height: math.unit(6, "feet"),
  16207. weight: math.unit(150, "lb"),
  16208. name: "Front (Maid)",
  16209. image: {
  16210. source: "./media/characters/alluria/front-maid.svg",
  16211. extra: 806 / 738,
  16212. bottom: 0.01
  16213. }
  16214. },
  16215. sideMaid: {
  16216. height: math.unit(6, "feet"),
  16217. weight: math.unit(150, "lb"),
  16218. name: "Side (Maid)",
  16219. image: {
  16220. source: "./media/characters/alluria/side-maid.svg",
  16221. extra: 800 / 750,
  16222. bottom: 0.005
  16223. }
  16224. },
  16225. backMaid: {
  16226. height: math.unit(6, "feet"),
  16227. weight: math.unit(150, "lb"),
  16228. name: "Back (Maid)",
  16229. image: {
  16230. source: "./media/characters/alluria/back-maid.svg",
  16231. extra: 806 / 738,
  16232. }
  16233. },
  16234. },
  16235. [
  16236. {
  16237. name: "Micro",
  16238. height: math.unit(6, "inches"),
  16239. default: true
  16240. },
  16241. ]
  16242. ))
  16243. characterMakers.push(() => makeCharacter(
  16244. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16245. {
  16246. front: {
  16247. height: math.unit(6, "feet"),
  16248. weight: math.unit(150, "lb"),
  16249. name: "Front",
  16250. image: {
  16251. source: "./media/characters/kyle/front.svg",
  16252. extra: 1069 / 962,
  16253. bottom: 77.228 / 1727.45
  16254. }
  16255. },
  16256. },
  16257. [
  16258. {
  16259. name: "Macro",
  16260. height: math.unit(150, "feet"),
  16261. default: true
  16262. },
  16263. ]
  16264. ))
  16265. characterMakers.push(() => makeCharacter(
  16266. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16267. {
  16268. front: {
  16269. height: math.unit(6, "feet"),
  16270. weight: math.unit(300, "lb"),
  16271. name: "Front",
  16272. image: {
  16273. source: "./media/characters/duncan/front.svg",
  16274. extra: 1650 / 1482,
  16275. bottom: 0.05
  16276. }
  16277. },
  16278. },
  16279. [
  16280. {
  16281. name: "Macro",
  16282. height: math.unit(100, "feet"),
  16283. default: true
  16284. },
  16285. ]
  16286. ))
  16287. characterMakers.push(() => makeCharacter(
  16288. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16289. {
  16290. front: {
  16291. height: math.unit(5 + 4 / 12, "feet"),
  16292. weight: math.unit(220, "lb"),
  16293. name: "Front",
  16294. image: {
  16295. source: "./media/characters/memory/front.svg",
  16296. extra: 3641 / 3545,
  16297. bottom: 0.03
  16298. }
  16299. },
  16300. back: {
  16301. height: math.unit(5 + 4 / 12, "feet"),
  16302. weight: math.unit(220, "lb"),
  16303. name: "Back",
  16304. image: {
  16305. source: "./media/characters/memory/back.svg",
  16306. extra: 3641 / 3545,
  16307. bottom: 0.025
  16308. }
  16309. },
  16310. frontSkirt: {
  16311. height: math.unit(5 + 4 / 12, "feet"),
  16312. weight: math.unit(220, "lb"),
  16313. name: "Front (Skirt)",
  16314. image: {
  16315. source: "./media/characters/memory/front-skirt.svg",
  16316. extra: 3641 / 3545,
  16317. bottom: 0.03
  16318. }
  16319. },
  16320. frontDress: {
  16321. height: math.unit(5 + 4 / 12, "feet"),
  16322. weight: math.unit(220, "lb"),
  16323. name: "Front (Dress)",
  16324. image: {
  16325. source: "./media/characters/memory/front-dress.svg",
  16326. extra: 3641 / 3545,
  16327. bottom: 0.03
  16328. }
  16329. },
  16330. },
  16331. [
  16332. {
  16333. name: "Micro",
  16334. height: math.unit(6, "inches"),
  16335. default: true
  16336. },
  16337. {
  16338. name: "Normal",
  16339. height: math.unit(5 + 4 / 12, "feet")
  16340. },
  16341. ]
  16342. ))
  16343. characterMakers.push(() => makeCharacter(
  16344. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16345. {
  16346. front: {
  16347. height: math.unit(4 + 11 / 12, "feet"),
  16348. weight: math.unit(100, "lb"),
  16349. name: "Front",
  16350. image: {
  16351. source: "./media/characters/luno/front.svg",
  16352. extra: 1535 / 1487,
  16353. bottom: 0.03
  16354. }
  16355. },
  16356. },
  16357. [
  16358. {
  16359. name: "Micro",
  16360. height: math.unit(3, "inches")
  16361. },
  16362. {
  16363. name: "Normal",
  16364. height: math.unit(4 + 11 / 12, "feet"),
  16365. default: true
  16366. },
  16367. {
  16368. name: "Macro",
  16369. height: math.unit(300, "feet")
  16370. },
  16371. {
  16372. name: "Megamacro",
  16373. height: math.unit(700, "miles")
  16374. },
  16375. ]
  16376. ))
  16377. characterMakers.push(() => makeCharacter(
  16378. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16379. {
  16380. front: {
  16381. height: math.unit(6 + 2 / 12, "feet"),
  16382. weight: math.unit(170, "lb"),
  16383. name: "Front",
  16384. image: {
  16385. source: "./media/characters/jamesy/front.svg",
  16386. extra: 440 / 382,
  16387. bottom: 0.005
  16388. }
  16389. },
  16390. },
  16391. [
  16392. {
  16393. name: "Micro",
  16394. height: math.unit(3, "inches")
  16395. },
  16396. {
  16397. name: "Normal",
  16398. height: math.unit(6 + 2 / 12, "feet"),
  16399. default: true
  16400. },
  16401. {
  16402. name: "Macro",
  16403. height: math.unit(300, "feet")
  16404. },
  16405. {
  16406. name: "Megamacro",
  16407. height: math.unit(700, "miles")
  16408. },
  16409. ]
  16410. ))
  16411. characterMakers.push(() => makeCharacter(
  16412. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16413. {
  16414. front: {
  16415. height: math.unit(6, "feet"),
  16416. weight: math.unit(160, "lb"),
  16417. name: "Front",
  16418. image: {
  16419. source: "./media/characters/mark/front.svg",
  16420. extra: 3300 / 3100,
  16421. bottom: 136.42 / 3440.47
  16422. }
  16423. },
  16424. },
  16425. [
  16426. {
  16427. name: "Macro",
  16428. height: math.unit(120, "meters")
  16429. },
  16430. {
  16431. name: "Bigger Macro",
  16432. height: math.unit(350, "meters")
  16433. },
  16434. {
  16435. name: "Megamacro",
  16436. height: math.unit(8, "km"),
  16437. default: true
  16438. },
  16439. {
  16440. name: "Continental",
  16441. height: math.unit(4550, "km")
  16442. },
  16443. {
  16444. name: "Planetary",
  16445. height: math.unit(65000, "km")
  16446. },
  16447. ]
  16448. ))
  16449. characterMakers.push(() => makeCharacter(
  16450. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16451. {
  16452. front: {
  16453. height: math.unit(6, "feet"),
  16454. weight: math.unit(400, "lb"),
  16455. name: "Front",
  16456. image: {
  16457. source: "./media/characters/mac/front.svg",
  16458. extra: 1048 / 987.7,
  16459. bottom: 60 / 1107.6,
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Macro",
  16466. height: math.unit(500, "feet"),
  16467. default: true
  16468. },
  16469. ]
  16470. ))
  16471. characterMakers.push(() => makeCharacter(
  16472. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16473. {
  16474. front: {
  16475. height: math.unit(5 + 2 / 12, "feet"),
  16476. weight: math.unit(190, "lb"),
  16477. name: "Front",
  16478. image: {
  16479. source: "./media/characters/bari/front.svg",
  16480. extra: 3156 / 2880,
  16481. bottom: 0.03
  16482. }
  16483. },
  16484. back: {
  16485. height: math.unit(5 + 2 / 12, "feet"),
  16486. weight: math.unit(190, "lb"),
  16487. name: "Back",
  16488. image: {
  16489. source: "./media/characters/bari/back.svg",
  16490. extra: 3260 / 2834,
  16491. bottom: 0.025
  16492. }
  16493. },
  16494. frontPlush: {
  16495. height: math.unit(5 + 2 / 12, "feet"),
  16496. weight: math.unit(190, "lb"),
  16497. name: "Front (Plush)",
  16498. image: {
  16499. source: "./media/characters/bari/front-plush.svg",
  16500. extra: 1112 / 1061,
  16501. bottom: 0.002
  16502. }
  16503. },
  16504. },
  16505. [
  16506. {
  16507. name: "Micro",
  16508. height: math.unit(3, "inches")
  16509. },
  16510. {
  16511. name: "Normal",
  16512. height: math.unit(5 + 2 / 12, "feet"),
  16513. default: true
  16514. },
  16515. {
  16516. name: "Macro",
  16517. height: math.unit(20, "feet")
  16518. },
  16519. ]
  16520. ))
  16521. characterMakers.push(() => makeCharacter(
  16522. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16523. {
  16524. front: {
  16525. height: math.unit(6 + 1 / 12, "feet"),
  16526. weight: math.unit(275, "lb"),
  16527. name: "Front",
  16528. image: {
  16529. source: "./media/characters/hunter-misha-raven/front.svg"
  16530. }
  16531. },
  16532. },
  16533. [
  16534. {
  16535. name: "Mortal",
  16536. height: math.unit(6 + 1 / 12, "feet")
  16537. },
  16538. {
  16539. name: "Divine",
  16540. height: math.unit(1.12134e34, "parsecs"),
  16541. default: true
  16542. },
  16543. ]
  16544. ))
  16545. characterMakers.push(() => makeCharacter(
  16546. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16547. {
  16548. front: {
  16549. height: math.unit(6 + 3 / 12, "feet"),
  16550. weight: math.unit(220, "lb"),
  16551. name: "Front",
  16552. image: {
  16553. source: "./media/characters/max-calore/front.svg",
  16554. extra: 1700 / 1648,
  16555. bottom: 0.01
  16556. }
  16557. },
  16558. back: {
  16559. height: math.unit(6 + 3 / 12, "feet"),
  16560. weight: math.unit(220, "lb"),
  16561. name: "Back",
  16562. image: {
  16563. source: "./media/characters/max-calore/back.svg",
  16564. extra: 1700 / 1648,
  16565. bottom: 0.01
  16566. }
  16567. },
  16568. },
  16569. [
  16570. {
  16571. name: "Normal",
  16572. height: math.unit(6 + 3 / 12, "feet"),
  16573. default: true
  16574. },
  16575. ]
  16576. ))
  16577. characterMakers.push(() => makeCharacter(
  16578. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16579. {
  16580. side: {
  16581. height: math.unit(2 + 8 / 12, "feet"),
  16582. weight: math.unit(99, "lb"),
  16583. name: "Side",
  16584. image: {
  16585. source: "./media/characters/aspen/side.svg",
  16586. extra: 152 / 138,
  16587. bottom: 0.032
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Normal",
  16594. height: math.unit(2 + 8 / 12, "feet"),
  16595. default: true
  16596. },
  16597. ]
  16598. ))
  16599. characterMakers.push(() => makeCharacter(
  16600. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16601. {
  16602. side: {
  16603. height: math.unit(3 + 2 / 12, "feet"),
  16604. weight: math.unit(224, "lb"),
  16605. name: "Side",
  16606. image: {
  16607. source: "./media/characters/sheila-feral-wolf/side.svg",
  16608. extra: 179 / 166,
  16609. bottom: 0.03
  16610. }
  16611. },
  16612. },
  16613. [
  16614. {
  16615. name: "Normal",
  16616. height: math.unit(3 + 2 / 12, "feet"),
  16617. default: true
  16618. },
  16619. ]
  16620. ))
  16621. characterMakers.push(() => makeCharacter(
  16622. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16623. {
  16624. side: {
  16625. height: math.unit(1 + 9 / 12, "feet"),
  16626. weight: math.unit(38, "lb"),
  16627. name: "Side",
  16628. image: {
  16629. source: "./media/characters/michelle/side.svg",
  16630. extra: 147 / 136.7,
  16631. bottom: 0.03
  16632. }
  16633. },
  16634. },
  16635. [
  16636. {
  16637. name: "Normal",
  16638. height: math.unit(1 + 9 / 12, "feet"),
  16639. default: true
  16640. },
  16641. ]
  16642. ))
  16643. characterMakers.push(() => makeCharacter(
  16644. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16645. {
  16646. front: {
  16647. height: math.unit(1 + 1 / 12, "feet"),
  16648. weight: math.unit(18, "lb"),
  16649. name: "Front",
  16650. image: {
  16651. source: "./media/characters/nino/front.svg"
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "Normal",
  16658. height: math.unit(1 + 1 / 12, "feet"),
  16659. default: true
  16660. },
  16661. ]
  16662. ))
  16663. characterMakers.push(() => makeCharacter(
  16664. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16665. {
  16666. front: {
  16667. height: math.unit(1, "feet"),
  16668. weight: math.unit(16, "lb"),
  16669. name: "Front",
  16670. image: {
  16671. source: "./media/characters/viola/front.svg"
  16672. }
  16673. },
  16674. },
  16675. [
  16676. {
  16677. name: "Normal",
  16678. height: math.unit(1, "feet"),
  16679. default: true
  16680. },
  16681. ]
  16682. ))
  16683. characterMakers.push(() => makeCharacter(
  16684. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16685. {
  16686. front: {
  16687. height: math.unit(6 + 5 / 12, "feet"),
  16688. weight: math.unit(580, "lb"),
  16689. name: "Front",
  16690. image: {
  16691. source: "./media/characters/atlas/front.svg",
  16692. extra: 298.5 / 290,
  16693. bottom: 0.015
  16694. }
  16695. },
  16696. },
  16697. [
  16698. {
  16699. name: "Normal",
  16700. height: math.unit(6 + 5 / 12, "feet"),
  16701. default: true
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16707. {
  16708. side: {
  16709. height: math.unit(1 + 10 / 12, "feet"),
  16710. weight: math.unit(25, "lb"),
  16711. name: "Side",
  16712. image: {
  16713. source: "./media/characters/davy/side.svg",
  16714. extra: 200 / 170,
  16715. bottom: 0.01
  16716. }
  16717. },
  16718. },
  16719. [
  16720. {
  16721. name: "Normal",
  16722. height: math.unit(1 + 10 / 12, "feet"),
  16723. default: true
  16724. },
  16725. ]
  16726. ))
  16727. characterMakers.push(() => makeCharacter(
  16728. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16729. {
  16730. side: {
  16731. height: math.unit(4 + 8 / 12, "feet"),
  16732. weight: math.unit(166, "lb"),
  16733. name: "Side",
  16734. image: {
  16735. source: "./media/characters/fiona/side.svg",
  16736. extra: 232 / 220,
  16737. bottom: 0.03
  16738. }
  16739. },
  16740. },
  16741. [
  16742. {
  16743. name: "Normal",
  16744. height: math.unit(4 + 8 / 12, "feet"),
  16745. default: true
  16746. },
  16747. ]
  16748. ))
  16749. characterMakers.push(() => makeCharacter(
  16750. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16751. {
  16752. front: {
  16753. height: math.unit(2, "feet"),
  16754. weight: math.unit(62, "lb"),
  16755. name: "Front",
  16756. image: {
  16757. source: "./media/characters/lyla/front.svg",
  16758. bottom: 0.1
  16759. }
  16760. },
  16761. },
  16762. [
  16763. {
  16764. name: "Normal",
  16765. height: math.unit(2, "feet"),
  16766. default: true
  16767. },
  16768. ]
  16769. ))
  16770. characterMakers.push(() => makeCharacter(
  16771. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16772. {
  16773. side: {
  16774. height: math.unit(1.8, "feet"),
  16775. weight: math.unit(44, "lb"),
  16776. name: "Side",
  16777. image: {
  16778. source: "./media/characters/perseus/side.svg",
  16779. bottom: 0.21
  16780. }
  16781. },
  16782. },
  16783. [
  16784. {
  16785. name: "Normal",
  16786. height: math.unit(1.8, "feet"),
  16787. default: true
  16788. },
  16789. ]
  16790. ))
  16791. characterMakers.push(() => makeCharacter(
  16792. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16793. {
  16794. side: {
  16795. height: math.unit(4 + 2 / 12, "feet"),
  16796. weight: math.unit(20, "lb"),
  16797. name: "Side",
  16798. image: {
  16799. source: "./media/characters/remus/side.svg"
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(4 + 2 / 12, "feet"),
  16807. default: true
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16813. {
  16814. front: {
  16815. height: math.unit(4 + 11 / 12, "feet"),
  16816. weight: math.unit(114, "lb"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/raf/front.svg",
  16820. bottom: 20.5 / 1863
  16821. }
  16822. },
  16823. side: {
  16824. height: math.unit(4 + 11 / 12, "feet"),
  16825. weight: math.unit(114, "lb"),
  16826. name: "Side",
  16827. image: {
  16828. source: "./media/characters/raf/side.svg",
  16829. bottom: 22 / 1822
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Micro",
  16836. height: math.unit(2, "inches")
  16837. },
  16838. {
  16839. name: "Normal",
  16840. height: math.unit(4 + 11 / 12, "feet"),
  16841. default: true
  16842. },
  16843. {
  16844. name: "Macro",
  16845. height: math.unit(70, "feet")
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16851. {
  16852. front: {
  16853. height: math.unit(1.5, "meters"),
  16854. weight: math.unit(68, "kg"),
  16855. name: "Front",
  16856. image: {
  16857. source: "./media/characters/liam-einarr/front.svg",
  16858. extra: 2822 / 2666
  16859. }
  16860. },
  16861. back: {
  16862. height: math.unit(1.5, "meters"),
  16863. weight: math.unit(68, "kg"),
  16864. name: "Back",
  16865. image: {
  16866. source: "./media/characters/liam-einarr/back.svg",
  16867. extra: 2822 / 2666,
  16868. bottom: 0.015
  16869. }
  16870. },
  16871. },
  16872. [
  16873. {
  16874. name: "Normal",
  16875. height: math.unit(1.5, "meters"),
  16876. default: true
  16877. },
  16878. {
  16879. name: "Macro",
  16880. height: math.unit(150, "meters")
  16881. },
  16882. {
  16883. name: "Megamacro",
  16884. height: math.unit(35, "km")
  16885. },
  16886. ]
  16887. ))
  16888. characterMakers.push(() => makeCharacter(
  16889. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16890. {
  16891. front: {
  16892. height: math.unit(6, "feet"),
  16893. weight: math.unit(75, "kg"),
  16894. name: "Front",
  16895. image: {
  16896. source: "./media/characters/linda/front.svg",
  16897. extra: 930 / 874,
  16898. bottom: 0.004
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Normal",
  16905. height: math.unit(6, "feet"),
  16906. default: true
  16907. },
  16908. ]
  16909. ))
  16910. characterMakers.push(() => makeCharacter(
  16911. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16912. {
  16913. front: {
  16914. height: math.unit(6 + 8 / 12, "feet"),
  16915. weight: math.unit(220, "lb"),
  16916. name: "Front",
  16917. image: {
  16918. source: "./media/characters/caylex/front.svg",
  16919. extra: 821 / 772,
  16920. bottom: 0.07
  16921. }
  16922. },
  16923. back: {
  16924. height: math.unit(6 + 8 / 12, "feet"),
  16925. weight: math.unit(220, "lb"),
  16926. name: "Back",
  16927. image: {
  16928. source: "./media/characters/caylex/back.svg",
  16929. extra: 821 / 772,
  16930. bottom: 0.022
  16931. }
  16932. },
  16933. hand: {
  16934. height: math.unit(1.25, "feet"),
  16935. name: "Hand",
  16936. image: {
  16937. source: "./media/characters/caylex/hand.svg"
  16938. }
  16939. },
  16940. foot: {
  16941. height: math.unit(1.6, "feet"),
  16942. name: "Foot",
  16943. image: {
  16944. source: "./media/characters/caylex/foot.svg"
  16945. }
  16946. },
  16947. armored: {
  16948. height: math.unit(6 + 8 / 12, "feet"),
  16949. weight: math.unit(250, "lb"),
  16950. name: "Armored",
  16951. image: {
  16952. source: "./media/characters/caylex/armored.svg",
  16953. extra: 1420 / 1310,
  16954. bottom: 0.045
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Normal",
  16961. height: math.unit(6 + 8 / 12, "feet"),
  16962. default: true
  16963. },
  16964. {
  16965. name: "Normal+",
  16966. height: math.unit(12, "feet")
  16967. },
  16968. ]
  16969. ))
  16970. characterMakers.push(() => makeCharacter(
  16971. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16972. {
  16973. front: {
  16974. height: math.unit(7 + 6 / 12, "feet"),
  16975. weight: math.unit(288, "lb"),
  16976. name: "Front",
  16977. image: {
  16978. source: "./media/characters/alana/front.svg",
  16979. extra: 679 / 653,
  16980. bottom: 22.5 / 701
  16981. }
  16982. },
  16983. },
  16984. [
  16985. {
  16986. name: "Normal",
  16987. height: math.unit(7 + 6 / 12, "feet")
  16988. },
  16989. {
  16990. name: "Large",
  16991. height: math.unit(50, "feet")
  16992. },
  16993. {
  16994. name: "Macro",
  16995. height: math.unit(100, "feet"),
  16996. default: true
  16997. },
  16998. {
  16999. name: "Macro+",
  17000. height: math.unit(200, "feet")
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17006. {
  17007. front: {
  17008. height: math.unit(6 + 1 / 12, "feet"),
  17009. weight: math.unit(210, "lb"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/hasani/front.svg",
  17013. extra: 244 / 232,
  17014. bottom: 0.01
  17015. }
  17016. },
  17017. back: {
  17018. height: math.unit(6 + 1 / 12, "feet"),
  17019. weight: math.unit(210, "lb"),
  17020. name: "Back",
  17021. image: {
  17022. source: "./media/characters/hasani/back.svg",
  17023. extra: 244 / 232,
  17024. bottom: 0.01
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Normal",
  17031. height: math.unit(6 + 1 / 12, "feet")
  17032. },
  17033. {
  17034. name: "Macro",
  17035. height: math.unit(175, "feet"),
  17036. default: true
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17042. {
  17043. front: {
  17044. height: math.unit(1.82, "meters"),
  17045. weight: math.unit(140, "lb"),
  17046. name: "Front",
  17047. image: {
  17048. source: "./media/characters/nita/front.svg",
  17049. extra: 2473 / 2363,
  17050. bottom: 0.01
  17051. }
  17052. },
  17053. },
  17054. [
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(1.82, "m")
  17058. },
  17059. {
  17060. name: "Macro",
  17061. height: math.unit(300, "m")
  17062. },
  17063. {
  17064. name: "Mistake Canon",
  17065. height: math.unit(0.5, "miles"),
  17066. default: true
  17067. },
  17068. {
  17069. name: "Big Mistake",
  17070. height: math.unit(13, "miles")
  17071. },
  17072. {
  17073. name: "Playing God",
  17074. height: math.unit(2450, "miles")
  17075. },
  17076. ]
  17077. ))
  17078. characterMakers.push(() => makeCharacter(
  17079. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17080. {
  17081. front: {
  17082. height: math.unit(4, "feet"),
  17083. weight: math.unit(120, "lb"),
  17084. name: "Front",
  17085. image: {
  17086. source: "./media/characters/shiriko/front.svg",
  17087. extra: 195 / 188
  17088. }
  17089. },
  17090. },
  17091. [
  17092. {
  17093. name: "Normal",
  17094. height: math.unit(4, "feet"),
  17095. default: true
  17096. },
  17097. ]
  17098. ))
  17099. characterMakers.push(() => makeCharacter(
  17100. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17101. {
  17102. front: {
  17103. height: math.unit(6, "feet"),
  17104. name: "front",
  17105. image: {
  17106. source: "./media/characters/deja/front.svg",
  17107. extra: 926 / 840,
  17108. bottom: 0.07
  17109. }
  17110. },
  17111. },
  17112. [
  17113. {
  17114. name: "Planck Length",
  17115. height: math.unit(1.6e-35, "meters")
  17116. },
  17117. {
  17118. name: "Normal",
  17119. height: math.unit(30.48, "meters"),
  17120. default: true
  17121. },
  17122. {
  17123. name: "Universal",
  17124. height: math.unit(8.8e26, "meters")
  17125. },
  17126. ]
  17127. ))
  17128. characterMakers.push(() => makeCharacter(
  17129. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17130. {
  17131. side: {
  17132. height: math.unit(8, "feet"),
  17133. weight: math.unit(6300, "lb"),
  17134. name: "Side",
  17135. image: {
  17136. source: "./media/characters/anima/side.svg",
  17137. bottom: 0.035
  17138. }
  17139. },
  17140. },
  17141. [
  17142. {
  17143. name: "Normal",
  17144. height: math.unit(8, "feet"),
  17145. default: true
  17146. },
  17147. ]
  17148. ))
  17149. characterMakers.push(() => makeCharacter(
  17150. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17151. {
  17152. front: {
  17153. height: math.unit(8, "feet"),
  17154. weight: math.unit(350, "lb"),
  17155. name: "Front",
  17156. image: {
  17157. source: "./media/characters/bianca/front.svg",
  17158. extra: 234 / 225,
  17159. bottom: 0.03
  17160. }
  17161. },
  17162. },
  17163. [
  17164. {
  17165. name: "Normal",
  17166. height: math.unit(8, "feet"),
  17167. default: true
  17168. },
  17169. ]
  17170. ))
  17171. characterMakers.push(() => makeCharacter(
  17172. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17173. {
  17174. front: {
  17175. height: math.unit(6, "feet"),
  17176. weight: math.unit(150, "lb"),
  17177. name: "Front",
  17178. image: {
  17179. source: "./media/characters/adinia/front.svg",
  17180. extra: 1845 / 1672,
  17181. bottom: 0.02
  17182. }
  17183. },
  17184. back: {
  17185. height: math.unit(6, "feet"),
  17186. weight: math.unit(150, "lb"),
  17187. name: "Back",
  17188. image: {
  17189. source: "./media/characters/adinia/back.svg",
  17190. extra: 1845 / 1672,
  17191. bottom: 0.002
  17192. }
  17193. },
  17194. },
  17195. [
  17196. {
  17197. name: "Normal",
  17198. height: math.unit(11 + 5 / 12, "feet"),
  17199. default: true
  17200. },
  17201. ]
  17202. ))
  17203. characterMakers.push(() => makeCharacter(
  17204. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17205. {
  17206. front: {
  17207. height: math.unit(3, "meters"),
  17208. weight: math.unit(200, "kg"),
  17209. name: "Front",
  17210. image: {
  17211. source: "./media/characters/lykasa/front.svg",
  17212. extra: 1076 / 976,
  17213. bottom: 0.06
  17214. }
  17215. },
  17216. },
  17217. [
  17218. {
  17219. name: "Normal",
  17220. height: math.unit(3, "meters")
  17221. },
  17222. {
  17223. name: "Kaiju",
  17224. height: math.unit(120, "meters"),
  17225. default: true
  17226. },
  17227. {
  17228. name: "Mega Kaiju",
  17229. height: math.unit(240, "km")
  17230. },
  17231. {
  17232. name: "Giga Kaiju",
  17233. height: math.unit(400, "megameters")
  17234. },
  17235. {
  17236. name: "Tera Kaiju",
  17237. height: math.unit(800, "gigameters")
  17238. },
  17239. {
  17240. name: "Kaiju Dragon Goddess",
  17241. height: math.unit(26, "zettaparsecs")
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17247. {
  17248. side: {
  17249. height: math.unit(283 / 124 * 6, "feet"),
  17250. weight: math.unit(35000, "lb"),
  17251. name: "Side",
  17252. image: {
  17253. source: "./media/characters/malfaren/side.svg",
  17254. extra: 2500 / 1010,
  17255. bottom: 0.01
  17256. }
  17257. },
  17258. front: {
  17259. height: math.unit(22.36, "feet"),
  17260. weight: math.unit(35000, "lb"),
  17261. name: "Front",
  17262. image: {
  17263. source: "./media/characters/malfaren/front.svg",
  17264. extra: 1631 / 1476,
  17265. bottom: 0.01
  17266. }
  17267. },
  17268. maw: {
  17269. height: math.unit(6.9, "feet"),
  17270. name: "Maw",
  17271. image: {
  17272. source: "./media/characters/malfaren/maw.svg"
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Big",
  17279. height: math.unit(283 / 162 * 6, "feet"),
  17280. },
  17281. {
  17282. name: "Bigger",
  17283. height: math.unit(283 / 124 * 6, "feet")
  17284. },
  17285. {
  17286. name: "Massive",
  17287. height: math.unit(283 / 92 * 6, "feet"),
  17288. default: true
  17289. },
  17290. {
  17291. name: "👀💦",
  17292. height: math.unit(283 / 73 * 6, "feet"),
  17293. },
  17294. ]
  17295. ))
  17296. characterMakers.push(() => makeCharacter(
  17297. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17298. {
  17299. front: {
  17300. height: math.unit(1.7, "m"),
  17301. weight: math.unit(70, "kg"),
  17302. name: "Front",
  17303. image: {
  17304. source: "./media/characters/kernel/front.svg",
  17305. extra: 222 / 210,
  17306. bottom: 0.007
  17307. }
  17308. },
  17309. },
  17310. [
  17311. {
  17312. name: "Nano",
  17313. height: math.unit(17, "micrometers")
  17314. },
  17315. {
  17316. name: "Micro",
  17317. height: math.unit(1.7, "mm")
  17318. },
  17319. {
  17320. name: "Small",
  17321. height: math.unit(1.7, "cm")
  17322. },
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(1.7, "m"),
  17326. default: true
  17327. },
  17328. ]
  17329. ))
  17330. characterMakers.push(() => makeCharacter(
  17331. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17332. {
  17333. front: {
  17334. height: math.unit(1.75, "meters"),
  17335. weight: math.unit(65, "kg"),
  17336. name: "Front",
  17337. image: {
  17338. source: "./media/characters/jayne-folest/front.svg",
  17339. extra: 2115 / 2007,
  17340. bottom: 0.02
  17341. }
  17342. },
  17343. back: {
  17344. height: math.unit(1.75, "meters"),
  17345. weight: math.unit(65, "kg"),
  17346. name: "Back",
  17347. image: {
  17348. source: "./media/characters/jayne-folest/back.svg",
  17349. extra: 2115 / 2007,
  17350. bottom: 0.005
  17351. }
  17352. },
  17353. frontClothed: {
  17354. height: math.unit(1.75, "meters"),
  17355. weight: math.unit(65, "kg"),
  17356. name: "Front (Clothed)",
  17357. image: {
  17358. source: "./media/characters/jayne-folest/front-clothed.svg",
  17359. extra: 2115 / 2007,
  17360. bottom: 0.035
  17361. }
  17362. },
  17363. hand: {
  17364. height: math.unit(1 / 1.260, "feet"),
  17365. name: "Hand",
  17366. image: {
  17367. source: "./media/characters/jayne-folest/hand.svg"
  17368. }
  17369. },
  17370. foot: {
  17371. height: math.unit(1 / 0.918, "feet"),
  17372. name: "Foot",
  17373. image: {
  17374. source: "./media/characters/jayne-folest/foot.svg"
  17375. }
  17376. },
  17377. },
  17378. [
  17379. {
  17380. name: "Micro",
  17381. height: math.unit(4, "cm")
  17382. },
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(1.75, "meters")
  17386. },
  17387. {
  17388. name: "Macro",
  17389. height: math.unit(47.5, "meters"),
  17390. default: true
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17396. {
  17397. front: {
  17398. height: math.unit(180, "cm"),
  17399. weight: math.unit(70, "kg"),
  17400. name: "Front",
  17401. image: {
  17402. source: "./media/characters/algier/front.svg",
  17403. extra: 596 / 572,
  17404. bottom: 0.04
  17405. }
  17406. },
  17407. back: {
  17408. height: math.unit(180, "cm"),
  17409. weight: math.unit(70, "kg"),
  17410. name: "Back",
  17411. image: {
  17412. source: "./media/characters/algier/back.svg",
  17413. extra: 596 / 572,
  17414. bottom: 0.025
  17415. }
  17416. },
  17417. frontdressed: {
  17418. height: math.unit(180, "cm"),
  17419. weight: math.unit(150, "kg"),
  17420. name: "Front-dressed",
  17421. image: {
  17422. source: "./media/characters/algier/front-dressed.svg",
  17423. extra: 596 / 572,
  17424. bottom: 0.038
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Micro",
  17431. height: math.unit(5, "cm")
  17432. },
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(180, "cm"),
  17436. default: true
  17437. },
  17438. {
  17439. name: "Macro",
  17440. height: math.unit(64, "m")
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17446. {
  17447. upright: {
  17448. height: math.unit(7, "feet"),
  17449. weight: math.unit(300, "lb"),
  17450. name: "Upright",
  17451. image: {
  17452. source: "./media/characters/pretzel/upright.svg",
  17453. extra: 534 / 522,
  17454. bottom: 0.065
  17455. }
  17456. },
  17457. sprawling: {
  17458. height: math.unit(3.75, "feet"),
  17459. weight: math.unit(300, "lb"),
  17460. name: "Sprawling",
  17461. image: {
  17462. source: "./media/characters/pretzel/sprawling.svg",
  17463. extra: 314 / 281,
  17464. bottom: 0.1
  17465. }
  17466. },
  17467. tongue: {
  17468. height: math.unit(2, "feet"),
  17469. name: "Tongue",
  17470. image: {
  17471. source: "./media/characters/pretzel/tongue.svg"
  17472. }
  17473. },
  17474. },
  17475. [
  17476. {
  17477. name: "Normal",
  17478. height: math.unit(7, "feet"),
  17479. default: true
  17480. },
  17481. {
  17482. name: "Oversized",
  17483. height: math.unit(15, "feet")
  17484. },
  17485. {
  17486. name: "Huge",
  17487. height: math.unit(30, "feet")
  17488. },
  17489. {
  17490. name: "Macro",
  17491. height: math.unit(250, "feet")
  17492. },
  17493. ]
  17494. ))
  17495. characterMakers.push(() => makeCharacter(
  17496. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17497. {
  17498. sideFront: {
  17499. height: math.unit(5 + 2 / 12, "feet"),
  17500. weight: math.unit(120, "lb"),
  17501. name: "Front Side",
  17502. image: {
  17503. source: "./media/characters/roxi/side-front.svg",
  17504. extra: 2924 / 2717,
  17505. bottom: 0.08
  17506. }
  17507. },
  17508. sideBack: {
  17509. height: math.unit(5 + 2 / 12, "feet"),
  17510. weight: math.unit(120, "lb"),
  17511. name: "Back Side",
  17512. image: {
  17513. source: "./media/characters/roxi/side-back.svg",
  17514. extra: 2904 / 2693,
  17515. bottom: 0.06
  17516. }
  17517. },
  17518. front: {
  17519. height: math.unit(5 + 2 / 12, "feet"),
  17520. weight: math.unit(120, "lb"),
  17521. name: "Front",
  17522. image: {
  17523. source: "./media/characters/roxi/front.svg",
  17524. extra: 2028 / 1907,
  17525. bottom: 0.01
  17526. }
  17527. },
  17528. frontAlt: {
  17529. height: math.unit(5 + 2 / 12, "feet"),
  17530. weight: math.unit(120, "lb"),
  17531. name: "Front (Alt)",
  17532. image: {
  17533. source: "./media/characters/roxi/front-alt.svg",
  17534. extra: 1828 / 1798,
  17535. bottom: 0.01
  17536. }
  17537. },
  17538. sitting: {
  17539. height: math.unit(2.8, "feet"),
  17540. weight: math.unit(120, "lb"),
  17541. name: "Sitting",
  17542. image: {
  17543. source: "./media/characters/roxi/sitting.svg",
  17544. extra: 2660 / 2462,
  17545. bottom: 0.1
  17546. }
  17547. },
  17548. },
  17549. [
  17550. {
  17551. name: "Normal",
  17552. height: math.unit(5 + 2 / 12, "feet"),
  17553. default: true
  17554. },
  17555. ]
  17556. ))
  17557. characterMakers.push(() => makeCharacter(
  17558. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17559. {
  17560. side: {
  17561. height: math.unit(55, "feet"),
  17562. weight: math.unit(153, "tons"),
  17563. name: "Side",
  17564. image: {
  17565. source: "./media/characters/shadow/side.svg",
  17566. extra: 701 / 628,
  17567. bottom: 0.02
  17568. }
  17569. },
  17570. flying: {
  17571. height: math.unit(145, "feet"),
  17572. weight: math.unit(153, "tons"),
  17573. name: "Flying",
  17574. image: {
  17575. source: "./media/characters/shadow/flying.svg"
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(55, "feet"),
  17583. default: true
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17589. {
  17590. front: {
  17591. height: math.unit(6, "feet"),
  17592. weight: math.unit(200, "lb"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/marcie/front.svg",
  17596. extra: 960 / 876,
  17597. bottom: 58 / 1017.87
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Macro",
  17604. height: math.unit(1, "mile"),
  17605. default: true
  17606. },
  17607. ]
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17611. {
  17612. front: {
  17613. height: math.unit(7, "feet"),
  17614. weight: math.unit(200, "lb"),
  17615. name: "Front",
  17616. image: {
  17617. source: "./media/characters/kachina/front.svg",
  17618. extra: 1290.68 / 1119,
  17619. bottom: 36.5 / 1327.18
  17620. }
  17621. },
  17622. },
  17623. [
  17624. {
  17625. name: "Normal",
  17626. height: math.unit(7, "feet"),
  17627. default: true
  17628. },
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17633. {
  17634. looking: {
  17635. height: math.unit(2, "meters"),
  17636. weight: math.unit(300, "kg"),
  17637. name: "Looking",
  17638. image: {
  17639. source: "./media/characters/kash/looking.svg",
  17640. extra: 474 / 344,
  17641. bottom: 0.03
  17642. }
  17643. },
  17644. side: {
  17645. height: math.unit(2, "meters"),
  17646. weight: math.unit(300, "kg"),
  17647. name: "Side",
  17648. image: {
  17649. source: "./media/characters/kash/side.svg",
  17650. extra: 302 / 251,
  17651. bottom: 0.03
  17652. }
  17653. },
  17654. front: {
  17655. height: math.unit(2, "meters"),
  17656. weight: math.unit(300, "kg"),
  17657. name: "Front",
  17658. image: {
  17659. source: "./media/characters/kash/front.svg",
  17660. extra: 495 / 360,
  17661. bottom: 0.015
  17662. }
  17663. },
  17664. },
  17665. [
  17666. {
  17667. name: "Normal",
  17668. height: math.unit(2, "meters"),
  17669. default: true
  17670. },
  17671. {
  17672. name: "Big",
  17673. height: math.unit(3, "meters")
  17674. },
  17675. {
  17676. name: "Large",
  17677. height: math.unit(5, "meters")
  17678. },
  17679. ]
  17680. ))
  17681. characterMakers.push(() => makeCharacter(
  17682. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17683. {
  17684. feeding: {
  17685. height: math.unit(6.7, "feet"),
  17686. weight: math.unit(350, "lb"),
  17687. name: "Feeding",
  17688. image: {
  17689. source: "./media/characters/lalim/feeding.svg",
  17690. }
  17691. },
  17692. },
  17693. [
  17694. {
  17695. name: "Normal",
  17696. height: math.unit(6.7, "feet"),
  17697. default: true
  17698. },
  17699. ]
  17700. ))
  17701. characterMakers.push(() => makeCharacter(
  17702. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17703. {
  17704. front: {
  17705. height: math.unit(9.5, "feet"),
  17706. weight: math.unit(600, "lb"),
  17707. name: "Front",
  17708. image: {
  17709. source: "./media/characters/de'vout/front.svg",
  17710. extra: 1443 / 1328,
  17711. bottom: 0.025
  17712. }
  17713. },
  17714. back: {
  17715. height: math.unit(9.5, "feet"),
  17716. weight: math.unit(600, "lb"),
  17717. name: "Back",
  17718. image: {
  17719. source: "./media/characters/de'vout/back.svg",
  17720. extra: 1443 / 1328
  17721. }
  17722. },
  17723. frontDressed: {
  17724. height: math.unit(9.5, "feet"),
  17725. weight: math.unit(600, "lb"),
  17726. name: "Front (Dressed",
  17727. image: {
  17728. source: "./media/characters/de'vout/front-dressed.svg",
  17729. extra: 1443 / 1328,
  17730. bottom: 0.025
  17731. }
  17732. },
  17733. backDressed: {
  17734. height: math.unit(9.5, "feet"),
  17735. weight: math.unit(600, "lb"),
  17736. name: "Back (Dressed",
  17737. image: {
  17738. source: "./media/characters/de'vout/back-dressed.svg",
  17739. extra: 1443 / 1328
  17740. }
  17741. },
  17742. },
  17743. [
  17744. {
  17745. name: "Normal",
  17746. height: math.unit(9.5, "feet"),
  17747. default: true
  17748. },
  17749. ]
  17750. ))
  17751. characterMakers.push(() => makeCharacter(
  17752. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17753. {
  17754. front: {
  17755. height: math.unit(8, "feet"),
  17756. weight: math.unit(225, "lb"),
  17757. name: "Front",
  17758. image: {
  17759. source: "./media/characters/talana/front.svg",
  17760. extra: 1410 / 1300,
  17761. bottom: 0.015
  17762. }
  17763. },
  17764. frontDressed: {
  17765. height: math.unit(8, "feet"),
  17766. weight: math.unit(225, "lb"),
  17767. name: "Front (Dressed",
  17768. image: {
  17769. source: "./media/characters/talana/front-dressed.svg",
  17770. extra: 1410 / 1300,
  17771. bottom: 0.015
  17772. }
  17773. },
  17774. },
  17775. [
  17776. {
  17777. name: "Normal",
  17778. height: math.unit(8, "feet"),
  17779. default: true
  17780. },
  17781. ]
  17782. ))
  17783. characterMakers.push(() => makeCharacter(
  17784. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17785. {
  17786. side: {
  17787. height: math.unit(7.2, "feet"),
  17788. weight: math.unit(150, "lb"),
  17789. name: "Side",
  17790. image: {
  17791. source: "./media/characters/xeauvok/side.svg",
  17792. extra: 1975 / 1523,
  17793. bottom: 0.07
  17794. }
  17795. },
  17796. },
  17797. [
  17798. {
  17799. name: "Normal",
  17800. height: math.unit(7.2, "feet"),
  17801. default: true
  17802. },
  17803. ]
  17804. ))
  17805. characterMakers.push(() => makeCharacter(
  17806. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17807. {
  17808. side: {
  17809. height: math.unit(10, "feet"),
  17810. weight: math.unit(900, "kg"),
  17811. name: "Side",
  17812. image: {
  17813. source: "./media/characters/zara/side.svg",
  17814. extra: 504 / 498
  17815. }
  17816. },
  17817. },
  17818. [
  17819. {
  17820. name: "Normal",
  17821. height: math.unit(10, "feet"),
  17822. default: true
  17823. },
  17824. ]
  17825. ))
  17826. characterMakers.push(() => makeCharacter(
  17827. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17828. {
  17829. side: {
  17830. height: math.unit(6, "feet"),
  17831. weight: math.unit(150, "lb"),
  17832. name: "Side",
  17833. image: {
  17834. source: "./media/characters/richard-dragon/side.svg",
  17835. extra: 845 / 340,
  17836. bottom: 0.017
  17837. }
  17838. },
  17839. maw: {
  17840. height: math.unit(2.97, "feet"),
  17841. name: "Maw",
  17842. image: {
  17843. source: "./media/characters/richard-dragon/maw.svg"
  17844. }
  17845. },
  17846. },
  17847. [
  17848. ]
  17849. ))
  17850. characterMakers.push(() => makeCharacter(
  17851. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17852. {
  17853. front: {
  17854. height: math.unit(4, "feet"),
  17855. weight: math.unit(100, "lb"),
  17856. name: "Front",
  17857. image: {
  17858. source: "./media/characters/richard-smeargle/front.svg",
  17859. extra: 2952 / 2820,
  17860. bottom: 0.028
  17861. }
  17862. },
  17863. },
  17864. [
  17865. {
  17866. name: "Normal",
  17867. height: math.unit(4, "feet"),
  17868. default: true
  17869. },
  17870. {
  17871. name: "Dynamax",
  17872. height: math.unit(20, "meters")
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17878. {
  17879. front: {
  17880. height: math.unit(6, "feet"),
  17881. weight: math.unit(110, "lb"),
  17882. name: "Front",
  17883. image: {
  17884. source: "./media/characters/klay/front.svg",
  17885. extra: 962 / 883,
  17886. bottom: 0.04
  17887. }
  17888. },
  17889. back: {
  17890. height: math.unit(6, "feet"),
  17891. weight: math.unit(110, "lb"),
  17892. name: "Back",
  17893. image: {
  17894. source: "./media/characters/klay/back.svg",
  17895. extra: 962 / 883
  17896. }
  17897. },
  17898. beans: {
  17899. height: math.unit(1.15, "feet"),
  17900. name: "Beans",
  17901. image: {
  17902. source: "./media/characters/klay/beans.svg"
  17903. }
  17904. },
  17905. },
  17906. [
  17907. {
  17908. name: "Micro",
  17909. height: math.unit(6, "inches")
  17910. },
  17911. {
  17912. name: "Mini",
  17913. height: math.unit(3, "feet")
  17914. },
  17915. {
  17916. name: "Normal",
  17917. height: math.unit(6, "feet"),
  17918. default: true
  17919. },
  17920. {
  17921. name: "Big",
  17922. height: math.unit(25, "feet")
  17923. },
  17924. {
  17925. name: "Macro",
  17926. height: math.unit(100, "feet")
  17927. },
  17928. {
  17929. name: "Megamacro",
  17930. height: math.unit(400, "feet")
  17931. },
  17932. ]
  17933. ))
  17934. characterMakers.push(() => makeCharacter(
  17935. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17936. {
  17937. front: {
  17938. height: math.unit(6, "feet"),
  17939. weight: math.unit(160, "lb"),
  17940. name: "Front",
  17941. image: {
  17942. source: "./media/characters/marcus/front.svg",
  17943. extra: 734 / 676,
  17944. bottom: 0.03
  17945. }
  17946. },
  17947. },
  17948. [
  17949. {
  17950. name: "Little",
  17951. height: math.unit(6, "feet")
  17952. },
  17953. {
  17954. name: "Normal",
  17955. height: math.unit(110, "feet"),
  17956. default: true
  17957. },
  17958. {
  17959. name: "Macro",
  17960. height: math.unit(250, "feet")
  17961. },
  17962. {
  17963. name: "Megamacro",
  17964. height: math.unit(1000, "feet")
  17965. },
  17966. ]
  17967. ))
  17968. characterMakers.push(() => makeCharacter(
  17969. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17970. {
  17971. front: {
  17972. height: math.unit(7, "feet"),
  17973. weight: math.unit(275, "lb"),
  17974. name: "Front",
  17975. image: {
  17976. source: "./media/characters/claude-delroute/front.svg",
  17977. extra: 230 / 214,
  17978. bottom: 0.007
  17979. }
  17980. },
  17981. side: {
  17982. height: math.unit(7, "feet"),
  17983. weight: math.unit(275, "lb"),
  17984. name: "Side",
  17985. image: {
  17986. source: "./media/characters/claude-delroute/side.svg",
  17987. extra: 222 / 214,
  17988. bottom: 0.01
  17989. }
  17990. },
  17991. back: {
  17992. height: math.unit(7, "feet"),
  17993. weight: math.unit(275, "lb"),
  17994. name: "Back",
  17995. image: {
  17996. source: "./media/characters/claude-delroute/back.svg",
  17997. extra: 230 / 214,
  17998. bottom: 0.015
  17999. }
  18000. },
  18001. maw: {
  18002. height: math.unit(0.6407, "meters"),
  18003. name: "Maw",
  18004. image: {
  18005. source: "./media/characters/claude-delroute/maw.svg"
  18006. }
  18007. },
  18008. },
  18009. [
  18010. {
  18011. name: "Normal",
  18012. height: math.unit(7, "feet"),
  18013. default: true
  18014. },
  18015. {
  18016. name: "Lorge",
  18017. height: math.unit(20, "feet")
  18018. },
  18019. ]
  18020. ))
  18021. characterMakers.push(() => makeCharacter(
  18022. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18023. {
  18024. front: {
  18025. height: math.unit(8 + 4 / 12, "feet"),
  18026. weight: math.unit(600, "lb"),
  18027. name: "Front",
  18028. image: {
  18029. source: "./media/characters/dragonien/front.svg",
  18030. extra: 100 / 94,
  18031. bottom: 3.3 / 103.3445
  18032. }
  18033. },
  18034. back: {
  18035. height: math.unit(8 + 4 / 12, "feet"),
  18036. weight: math.unit(600, "lb"),
  18037. name: "Back",
  18038. image: {
  18039. source: "./media/characters/dragonien/back.svg",
  18040. extra: 776 / 746,
  18041. bottom: 6.4 / 782.0616
  18042. }
  18043. },
  18044. foot: {
  18045. height: math.unit(1.54, "feet"),
  18046. name: "Foot",
  18047. image: {
  18048. source: "./media/characters/dragonien/foot.svg",
  18049. }
  18050. },
  18051. },
  18052. [
  18053. {
  18054. name: "Normal",
  18055. height: math.unit(8 + 4 / 12, "feet"),
  18056. default: true
  18057. },
  18058. {
  18059. name: "Macro",
  18060. height: math.unit(200, "feet")
  18061. },
  18062. {
  18063. name: "Megamacro",
  18064. height: math.unit(1, "mile")
  18065. },
  18066. {
  18067. name: "Gigamacro",
  18068. height: math.unit(1000, "miles")
  18069. },
  18070. ]
  18071. ))
  18072. characterMakers.push(() => makeCharacter(
  18073. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18074. {
  18075. front: {
  18076. height: math.unit(5 + 2 / 12, "feet"),
  18077. weight: math.unit(110, "lb"),
  18078. name: "Front",
  18079. image: {
  18080. source: "./media/characters/desta/front.svg",
  18081. extra: 767 / 726,
  18082. bottom: 11.7 / 779
  18083. }
  18084. },
  18085. back: {
  18086. height: math.unit(5 + 2 / 12, "feet"),
  18087. weight: math.unit(110, "lb"),
  18088. name: "Back",
  18089. image: {
  18090. source: "./media/characters/desta/back.svg",
  18091. extra: 777 / 728,
  18092. bottom: 6 / 784
  18093. }
  18094. },
  18095. frontAlt: {
  18096. height: math.unit(5 + 2 / 12, "feet"),
  18097. weight: math.unit(110, "lb"),
  18098. name: "Front",
  18099. image: {
  18100. source: "./media/characters/desta/front-alt.svg",
  18101. extra: 1482 / 1417
  18102. }
  18103. },
  18104. side: {
  18105. height: math.unit(5 + 2 / 12, "feet"),
  18106. weight: math.unit(110, "lb"),
  18107. name: "Side",
  18108. image: {
  18109. source: "./media/characters/desta/side.svg",
  18110. extra: 2579 / 2491,
  18111. bottom: 0.053
  18112. }
  18113. },
  18114. },
  18115. [
  18116. {
  18117. name: "Micro",
  18118. height: math.unit(6, "inches")
  18119. },
  18120. {
  18121. name: "Normal",
  18122. height: math.unit(5 + 2 / 12, "feet"),
  18123. default: true
  18124. },
  18125. {
  18126. name: "Macro",
  18127. height: math.unit(62, "feet")
  18128. },
  18129. {
  18130. name: "Megamacro",
  18131. height: math.unit(1800, "feet")
  18132. },
  18133. ]
  18134. ))
  18135. characterMakers.push(() => makeCharacter(
  18136. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18137. {
  18138. front: {
  18139. height: math.unit(10, "feet"),
  18140. weight: math.unit(700, "lb"),
  18141. name: "Front",
  18142. image: {
  18143. source: "./media/characters/storm-alystar/front.svg",
  18144. extra: 2112 / 1898,
  18145. bottom: 0.034
  18146. }
  18147. },
  18148. },
  18149. [
  18150. {
  18151. name: "Micro",
  18152. height: math.unit(3.5, "inches")
  18153. },
  18154. {
  18155. name: "Normal",
  18156. height: math.unit(10, "feet"),
  18157. default: true
  18158. },
  18159. {
  18160. name: "Macro",
  18161. height: math.unit(400, "feet")
  18162. },
  18163. {
  18164. name: "Deific",
  18165. height: math.unit(60, "miles")
  18166. },
  18167. ]
  18168. ))
  18169. characterMakers.push(() => makeCharacter(
  18170. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18171. {
  18172. front: {
  18173. height: math.unit(2.35, "meters"),
  18174. weight: math.unit(119, "kg"),
  18175. name: "Front",
  18176. image: {
  18177. source: "./media/characters/ilia/front.svg",
  18178. extra: 1285 / 1255,
  18179. bottom: 0.06
  18180. }
  18181. },
  18182. },
  18183. [
  18184. {
  18185. name: "Normal",
  18186. height: math.unit(2.35, "meters")
  18187. },
  18188. {
  18189. name: "Macro",
  18190. height: math.unit(140, "meters"),
  18191. default: true
  18192. },
  18193. {
  18194. name: "Megamacro",
  18195. height: math.unit(100, "miles")
  18196. },
  18197. ]
  18198. ))
  18199. characterMakers.push(() => makeCharacter(
  18200. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18201. {
  18202. front: {
  18203. height: math.unit(6 + 5 / 12, "feet"),
  18204. weight: math.unit(190, "lb"),
  18205. name: "Front",
  18206. image: {
  18207. source: "./media/characters/kingdead/front.svg",
  18208. extra: 1228 / 1177
  18209. }
  18210. },
  18211. },
  18212. [
  18213. {
  18214. name: "Micro",
  18215. height: math.unit(7, "inches")
  18216. },
  18217. {
  18218. name: "Normal",
  18219. height: math.unit(6 + 5 / 12, "feet")
  18220. },
  18221. {
  18222. name: "Macro",
  18223. height: math.unit(150, "feet"),
  18224. default: true
  18225. },
  18226. {
  18227. name: "Megamacro",
  18228. height: math.unit(200, "miles")
  18229. },
  18230. ]
  18231. ))
  18232. characterMakers.push(() => makeCharacter(
  18233. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18234. {
  18235. front: {
  18236. height: math.unit(8, "feet"),
  18237. weight: math.unit(600, "lb"),
  18238. name: "Front",
  18239. image: {
  18240. source: "./media/characters/kyrehx/front.svg",
  18241. extra: 1195 / 1095,
  18242. bottom: 0.034
  18243. }
  18244. },
  18245. },
  18246. [
  18247. {
  18248. name: "Micro",
  18249. height: math.unit(2, "inches")
  18250. },
  18251. {
  18252. name: "Normal",
  18253. height: math.unit(8, "feet"),
  18254. default: true
  18255. },
  18256. {
  18257. name: "Macro",
  18258. height: math.unit(255, "feet")
  18259. },
  18260. ]
  18261. ))
  18262. characterMakers.push(() => makeCharacter(
  18263. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18264. {
  18265. front: {
  18266. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18267. weight: math.unit(184, "lb"),
  18268. name: "Front",
  18269. image: {
  18270. source: "./media/characters/xang/front.svg",
  18271. extra: 845 / 755
  18272. }
  18273. },
  18274. },
  18275. [
  18276. {
  18277. name: "Normal",
  18278. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18279. default: true
  18280. },
  18281. {
  18282. name: "Macro",
  18283. height: math.unit(0.935 * 146, "feet")
  18284. },
  18285. {
  18286. name: "Megamacro",
  18287. height: math.unit(0.935 * 3, "miles")
  18288. },
  18289. ]
  18290. ))
  18291. characterMakers.push(() => makeCharacter(
  18292. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18293. {
  18294. frontDressed: {
  18295. height: math.unit(5 + 7 / 12, "feet"),
  18296. weight: math.unit(140, "lb"),
  18297. name: "Front (Dressed)",
  18298. image: {
  18299. source: "./media/characters/doc-weardno/front-dressed.svg",
  18300. extra: 263 / 234
  18301. }
  18302. },
  18303. backDressed: {
  18304. height: math.unit(5 + 7 / 12, "feet"),
  18305. weight: math.unit(140, "lb"),
  18306. name: "Back (Dressed)",
  18307. image: {
  18308. source: "./media/characters/doc-weardno/back-dressed.svg",
  18309. extra: 266 / 238
  18310. }
  18311. },
  18312. front: {
  18313. height: math.unit(5 + 7 / 12, "feet"),
  18314. weight: math.unit(140, "lb"),
  18315. name: "Front",
  18316. image: {
  18317. source: "./media/characters/doc-weardno/front.svg",
  18318. extra: 254 / 233
  18319. }
  18320. },
  18321. },
  18322. [
  18323. {
  18324. name: "Micro",
  18325. height: math.unit(3, "inches")
  18326. },
  18327. {
  18328. name: "Normal",
  18329. height: math.unit(5 + 7 / 12, "feet"),
  18330. default: true
  18331. },
  18332. {
  18333. name: "Macro",
  18334. height: math.unit(25, "feet")
  18335. },
  18336. {
  18337. name: "Megamacro",
  18338. height: math.unit(2, "miles")
  18339. },
  18340. ]
  18341. ))
  18342. characterMakers.push(() => makeCharacter(
  18343. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18344. {
  18345. front: {
  18346. height: math.unit(6 + 2 / 12, "feet"),
  18347. weight: math.unit(153, "lb"),
  18348. name: "Front",
  18349. image: {
  18350. source: "./media/characters/seth-whilst/front.svg",
  18351. bottom: 0.07
  18352. }
  18353. },
  18354. },
  18355. [
  18356. {
  18357. name: "Micro",
  18358. height: math.unit(5, "inches")
  18359. },
  18360. {
  18361. name: "Normal",
  18362. height: math.unit(6 + 2 / 12, "feet"),
  18363. default: true
  18364. },
  18365. ]
  18366. ))
  18367. characterMakers.push(() => makeCharacter(
  18368. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18369. {
  18370. front: {
  18371. height: math.unit(3, "inches"),
  18372. weight: math.unit(8, "grams"),
  18373. name: "Front",
  18374. image: {
  18375. source: "./media/characters/pocket-jabari/front.svg",
  18376. extra: 1024 / 974,
  18377. bottom: 0.039
  18378. }
  18379. },
  18380. },
  18381. [
  18382. {
  18383. name: "Minimicro",
  18384. height: math.unit(8, "mm")
  18385. },
  18386. {
  18387. name: "Micro",
  18388. height: math.unit(3, "inches"),
  18389. default: true
  18390. },
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(3, "feet")
  18394. },
  18395. ]
  18396. ))
  18397. characterMakers.push(() => makeCharacter(
  18398. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18399. {
  18400. front: {
  18401. height: math.unit(15, "feet"),
  18402. weight: math.unit(3280, "lb"),
  18403. name: "Front",
  18404. image: {
  18405. source: "./media/characters/sapphy/front.svg",
  18406. extra: 671 / 577,
  18407. bottom: 0.085
  18408. }
  18409. },
  18410. back: {
  18411. height: math.unit(15, "feet"),
  18412. weight: math.unit(3280, "lb"),
  18413. name: "Back",
  18414. image: {
  18415. source: "./media/characters/sapphy/back.svg",
  18416. extra: 631 / 607,
  18417. bottom: 0.045
  18418. }
  18419. },
  18420. },
  18421. [
  18422. {
  18423. name: "Normal",
  18424. height: math.unit(15, "feet")
  18425. },
  18426. {
  18427. name: "Casual Macro",
  18428. height: math.unit(120, "feet")
  18429. },
  18430. {
  18431. name: "Macro",
  18432. height: math.unit(2150, "feet"),
  18433. default: true
  18434. },
  18435. {
  18436. name: "Megamacro",
  18437. height: math.unit(8, "miles")
  18438. },
  18439. {
  18440. name: "Galaxy Mom",
  18441. height: math.unit(6, "megalightyears")
  18442. },
  18443. ]
  18444. ))
  18445. characterMakers.push(() => makeCharacter(
  18446. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18447. {
  18448. front: {
  18449. height: math.unit(6, "feet"),
  18450. weight: math.unit(170, "lb"),
  18451. name: "Front",
  18452. image: {
  18453. source: "./media/characters/kiro/front.svg",
  18454. extra: 1064 / 1012,
  18455. bottom: 0.052
  18456. }
  18457. },
  18458. },
  18459. [
  18460. {
  18461. name: "Micro",
  18462. height: math.unit(6, "inches")
  18463. },
  18464. {
  18465. name: "Normal",
  18466. height: math.unit(6, "feet"),
  18467. default: true
  18468. },
  18469. {
  18470. name: "Macro",
  18471. height: math.unit(72, "feet")
  18472. },
  18473. ]
  18474. ))
  18475. characterMakers.push(() => makeCharacter(
  18476. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18477. {
  18478. front: {
  18479. height: math.unit(5 + 9 / 12, "feet"),
  18480. weight: math.unit(175, "lb"),
  18481. name: "Front",
  18482. image: {
  18483. source: "./media/characters/irishfox/front.svg",
  18484. extra: 1912 / 1680,
  18485. bottom: 0.02
  18486. }
  18487. },
  18488. },
  18489. [
  18490. {
  18491. name: "Nano",
  18492. height: math.unit(1, "mm")
  18493. },
  18494. {
  18495. name: "Micro",
  18496. height: math.unit(2, "inches")
  18497. },
  18498. {
  18499. name: "Normal",
  18500. height: math.unit(5 + 9 / 12, "feet"),
  18501. default: true
  18502. },
  18503. {
  18504. name: "Macro",
  18505. height: math.unit(45, "feet")
  18506. },
  18507. ]
  18508. ))
  18509. characterMakers.push(() => makeCharacter(
  18510. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18511. {
  18512. front: {
  18513. height: math.unit(6 + 1 / 12, "feet"),
  18514. weight: math.unit(75, "lb"),
  18515. name: "Front",
  18516. image: {
  18517. source: "./media/characters/aronai-sieyes/front.svg",
  18518. extra: 1556 / 1480,
  18519. bottom: 0.015
  18520. }
  18521. },
  18522. side: {
  18523. height: math.unit(6 + 1 / 12, "feet"),
  18524. weight: math.unit(75, "lb"),
  18525. name: "Side",
  18526. image: {
  18527. source: "./media/characters/aronai-sieyes/side.svg",
  18528. extra: 1433 / 1390,
  18529. bottom: 0.0393
  18530. }
  18531. },
  18532. back: {
  18533. height: math.unit(6 + 1 / 12, "feet"),
  18534. weight: math.unit(75, "lb"),
  18535. name: "Back",
  18536. image: {
  18537. source: "./media/characters/aronai-sieyes/back.svg",
  18538. extra: 1544 / 1494,
  18539. bottom: 0.02
  18540. }
  18541. },
  18542. frontClothed: {
  18543. height: math.unit(6 + 1 / 12, "feet"),
  18544. weight: math.unit(75, "lb"),
  18545. name: "Front (Clothed)",
  18546. image: {
  18547. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18548. extra: 1582 / 1527
  18549. }
  18550. },
  18551. feral: {
  18552. height: math.unit(18, "feet"),
  18553. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18554. name: "Feral",
  18555. image: {
  18556. source: "./media/characters/aronai-sieyes/feral.svg",
  18557. extra: 1530 / 1240,
  18558. bottom: 0.035
  18559. }
  18560. },
  18561. },
  18562. [
  18563. {
  18564. name: "Micro",
  18565. height: math.unit(2, "inches")
  18566. },
  18567. {
  18568. name: "Normal",
  18569. height: math.unit(6 + 1 / 12, "feet"),
  18570. default: true
  18571. }
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18576. {
  18577. front: {
  18578. height: math.unit(12, "feet"),
  18579. weight: math.unit(410, "kg"),
  18580. name: "Front",
  18581. image: {
  18582. source: "./media/characters/xuna/front.svg",
  18583. extra: 2184 / 1980
  18584. }
  18585. },
  18586. side: {
  18587. height: math.unit(12, "feet"),
  18588. weight: math.unit(410, "kg"),
  18589. name: "Side",
  18590. image: {
  18591. source: "./media/characters/xuna/side.svg",
  18592. extra: 2184 / 1980
  18593. }
  18594. },
  18595. back: {
  18596. height: math.unit(12, "feet"),
  18597. weight: math.unit(410, "kg"),
  18598. name: "Back",
  18599. image: {
  18600. source: "./media/characters/xuna/back.svg",
  18601. extra: 2184 / 1980
  18602. }
  18603. },
  18604. },
  18605. [
  18606. {
  18607. name: "Nano glow",
  18608. height: math.unit(10, "nm")
  18609. },
  18610. {
  18611. name: "Micro floof",
  18612. height: math.unit(0.3, "m")
  18613. },
  18614. {
  18615. name: "Huggable softy boi",
  18616. height: math.unit(3.6576, "m"),
  18617. default: true
  18618. },
  18619. {
  18620. name: "Admirable floof",
  18621. height: math.unit(80, "meters")
  18622. },
  18623. {
  18624. name: "Gentle macro",
  18625. height: math.unit(300, "meters")
  18626. },
  18627. {
  18628. name: "Very careful floof",
  18629. height: math.unit(3200, "meters")
  18630. },
  18631. {
  18632. name: "The mega floof",
  18633. height: math.unit(36000, "meters")
  18634. },
  18635. {
  18636. name: "Giga-fur-Wicker",
  18637. height: math.unit(4800000, "meters")
  18638. },
  18639. {
  18640. name: "Licky world",
  18641. height: math.unit(20000000, "meters")
  18642. },
  18643. {
  18644. name: "Floofy cyan sun",
  18645. height: math.unit(1500000000, "meters")
  18646. },
  18647. {
  18648. name: "Milky Wicker",
  18649. height: math.unit(1000000000000000000000, "meters")
  18650. },
  18651. {
  18652. name: "The observing Wicker",
  18653. height: math.unit(999999999999999999999999999, "meters")
  18654. },
  18655. ]
  18656. ))
  18657. characterMakers.push(() => makeCharacter(
  18658. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18659. {
  18660. front: {
  18661. height: math.unit(5 + 9 / 12, "feet"),
  18662. weight: math.unit(150, "lb"),
  18663. name: "Front",
  18664. image: {
  18665. source: "./media/characters/arokha-sieyes/front.svg",
  18666. extra: 1425 / 1284,
  18667. bottom: 0.05
  18668. }
  18669. },
  18670. },
  18671. [
  18672. {
  18673. name: "Normal",
  18674. height: math.unit(5 + 9 / 12, "feet")
  18675. },
  18676. {
  18677. name: "Macro",
  18678. height: math.unit(30, "meters"),
  18679. default: true
  18680. },
  18681. ]
  18682. ))
  18683. characterMakers.push(() => makeCharacter(
  18684. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18685. {
  18686. front: {
  18687. height: math.unit(6, "feet"),
  18688. weight: math.unit(180, "lb"),
  18689. name: "Front",
  18690. image: {
  18691. source: "./media/characters/arokh-sieyes/front.svg",
  18692. extra: 1830 / 1769,
  18693. bottom: 0.01
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Normal",
  18700. height: math.unit(6, "feet")
  18701. },
  18702. {
  18703. name: "Macro",
  18704. height: math.unit(30, "meters"),
  18705. default: true
  18706. },
  18707. ]
  18708. ))
  18709. characterMakers.push(() => makeCharacter(
  18710. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18711. {
  18712. side: {
  18713. height: math.unit(13 + 1 / 12, "feet"),
  18714. weight: math.unit(8.5, "tonnes"),
  18715. name: "Side",
  18716. image: {
  18717. source: "./media/characters/goldeneye/side.svg",
  18718. extra: 1182 / 778,
  18719. bottom: 0.067
  18720. }
  18721. },
  18722. paw: {
  18723. height: math.unit(3.4, "feet"),
  18724. name: "Paw",
  18725. image: {
  18726. source: "./media/characters/goldeneye/paw.svg"
  18727. }
  18728. },
  18729. },
  18730. [
  18731. {
  18732. name: "Normal",
  18733. height: math.unit(13 + 1 / 12, "feet"),
  18734. default: true
  18735. },
  18736. ]
  18737. ))
  18738. characterMakers.push(() => makeCharacter(
  18739. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18740. {
  18741. front: {
  18742. height: math.unit(6 + 1 / 12, "feet"),
  18743. weight: math.unit(210, "lb"),
  18744. name: "Front",
  18745. image: {
  18746. source: "./media/characters/leonardo-lycheborne/front.svg",
  18747. extra: 390 / 365,
  18748. bottom: 0.032
  18749. }
  18750. },
  18751. side: {
  18752. height: math.unit(6 + 1 / 12, "feet"),
  18753. weight: math.unit(210, "lb"),
  18754. name: "Side",
  18755. image: {
  18756. source: "./media/characters/leonardo-lycheborne/side.svg",
  18757. extra: 390 / 365,
  18758. bottom: 0.005
  18759. }
  18760. },
  18761. back: {
  18762. height: math.unit(6 + 1 / 12, "feet"),
  18763. weight: math.unit(210, "lb"),
  18764. name: "Back",
  18765. image: {
  18766. source: "./media/characters/leonardo-lycheborne/back.svg",
  18767. extra: 392 / 366,
  18768. bottom: 0.01
  18769. }
  18770. },
  18771. hand: {
  18772. height: math.unit(1.08, "feet"),
  18773. name: "Hand",
  18774. image: {
  18775. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18776. }
  18777. },
  18778. foot: {
  18779. height: math.unit(1.32, "feet"),
  18780. name: "Foot",
  18781. image: {
  18782. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18783. }
  18784. },
  18785. were: {
  18786. height: math.unit(20, "feet"),
  18787. weight: math.unit(7800, "lb"),
  18788. name: "Were",
  18789. image: {
  18790. source: "./media/characters/leonardo-lycheborne/were.svg",
  18791. extra: 308 / 294,
  18792. bottom: 0.048
  18793. }
  18794. },
  18795. feral: {
  18796. height: math.unit(7.5, "feet"),
  18797. weight: math.unit(600, "lb"),
  18798. name: "Feral",
  18799. image: {
  18800. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18801. extra: 210 / 186,
  18802. bottom: 0.108
  18803. }
  18804. },
  18805. taur: {
  18806. height: math.unit(11, "feet"),
  18807. weight: math.unit(3300, "lb"),
  18808. name: "Taur",
  18809. image: {
  18810. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18811. extra: 320 / 303,
  18812. bottom: 0.025
  18813. }
  18814. },
  18815. barghest: {
  18816. height: math.unit(11, "feet"),
  18817. weight: math.unit(1300, "lb"),
  18818. name: "Barghest",
  18819. image: {
  18820. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18821. extra: 323 / 302,
  18822. bottom: 0.027
  18823. }
  18824. },
  18825. dick: {
  18826. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18827. name: "Dick",
  18828. image: {
  18829. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18830. }
  18831. },
  18832. dickWere: {
  18833. height: math.unit((20) / 3.8, "feet"),
  18834. name: "Dick (Were)",
  18835. image: {
  18836. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18837. }
  18838. },
  18839. },
  18840. [
  18841. {
  18842. name: "Normal",
  18843. height: math.unit(6 + 1 / 12, "feet"),
  18844. default: true
  18845. },
  18846. ]
  18847. ))
  18848. characterMakers.push(() => makeCharacter(
  18849. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18850. {
  18851. front: {
  18852. height: math.unit(10, "feet"),
  18853. weight: math.unit(350, "lb"),
  18854. name: "Front",
  18855. image: {
  18856. source: "./media/characters/jet/front.svg",
  18857. extra: 2050 / 1980,
  18858. bottom: 0.013
  18859. }
  18860. },
  18861. back: {
  18862. height: math.unit(10, "feet"),
  18863. weight: math.unit(350, "lb"),
  18864. name: "Back",
  18865. image: {
  18866. source: "./media/characters/jet/back.svg",
  18867. extra: 2050 / 1980,
  18868. bottom: 0.013
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Micro",
  18875. height: math.unit(6, "inches")
  18876. },
  18877. {
  18878. name: "Normal",
  18879. height: math.unit(10, "feet"),
  18880. default: true
  18881. },
  18882. {
  18883. name: "Macro",
  18884. height: math.unit(100, "feet")
  18885. },
  18886. ]
  18887. ))
  18888. characterMakers.push(() => makeCharacter(
  18889. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18890. {
  18891. front: {
  18892. height: math.unit(15, "feet"),
  18893. weight: math.unit(2800, "lb"),
  18894. name: "Front",
  18895. image: {
  18896. source: "./media/characters/tanarath/front.svg",
  18897. extra: 2392 / 2220,
  18898. bottom: 0.03
  18899. }
  18900. },
  18901. back: {
  18902. height: math.unit(15, "feet"),
  18903. weight: math.unit(2800, "lb"),
  18904. name: "Back",
  18905. image: {
  18906. source: "./media/characters/tanarath/back.svg",
  18907. extra: 2392 / 2220,
  18908. bottom: 0.03
  18909. }
  18910. },
  18911. },
  18912. [
  18913. {
  18914. name: "Normal",
  18915. height: math.unit(15, "feet"),
  18916. default: true
  18917. },
  18918. ]
  18919. ))
  18920. characterMakers.push(() => makeCharacter(
  18921. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18922. {
  18923. front: {
  18924. height: math.unit(7 + 1 / 12, "feet"),
  18925. weight: math.unit(175, "lb"),
  18926. name: "Front",
  18927. image: {
  18928. source: "./media/characters/patty-cattybatty/front.svg",
  18929. extra: 908 / 874,
  18930. bottom: 0.025
  18931. }
  18932. },
  18933. },
  18934. [
  18935. {
  18936. name: "Micro",
  18937. height: math.unit(1, "inch")
  18938. },
  18939. {
  18940. name: "Normal",
  18941. height: math.unit(7 + 1 / 12, "feet")
  18942. },
  18943. {
  18944. name: "Mini Macro",
  18945. height: math.unit(155, "feet")
  18946. },
  18947. {
  18948. name: "Macro",
  18949. height: math.unit(1077, "feet")
  18950. },
  18951. {
  18952. name: "Mega Macro",
  18953. height: math.unit(47650, "feet"),
  18954. default: true
  18955. },
  18956. {
  18957. name: "Giga Macro",
  18958. height: math.unit(440, "miles")
  18959. },
  18960. {
  18961. name: "Tera Macro",
  18962. height: math.unit(8700, "miles")
  18963. },
  18964. {
  18965. name: "Planetary Macro",
  18966. height: math.unit(32700, "miles")
  18967. },
  18968. {
  18969. name: "Solar Macro",
  18970. height: math.unit(550000, "miles")
  18971. },
  18972. {
  18973. name: "Celestial Macro",
  18974. height: math.unit(2.5, "AU")
  18975. },
  18976. ]
  18977. ))
  18978. characterMakers.push(() => makeCharacter(
  18979. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18980. {
  18981. front: {
  18982. height: math.unit(4 + 5 / 12, "feet"),
  18983. weight: math.unit(90, "lb"),
  18984. name: "Front",
  18985. image: {
  18986. source: "./media/characters/cappu/front.svg",
  18987. extra: 1247 / 1152,
  18988. bottom: 0.012
  18989. }
  18990. },
  18991. },
  18992. [
  18993. {
  18994. name: "Normal",
  18995. height: math.unit(4 + 5 / 12, "feet"),
  18996. default: true
  18997. },
  18998. ]
  18999. ))
  19000. characterMakers.push(() => makeCharacter(
  19001. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19002. {
  19003. frontDressed: {
  19004. height: math.unit(70, "cm"),
  19005. weight: math.unit(6, "kg"),
  19006. name: "Front (Dressed)",
  19007. image: {
  19008. source: "./media/characters/sebi/front-dressed.svg",
  19009. extra: 713.5 / 686.5,
  19010. bottom: 0.003
  19011. }
  19012. },
  19013. front: {
  19014. height: math.unit(70, "cm"),
  19015. weight: math.unit(5, "kg"),
  19016. name: "Front",
  19017. image: {
  19018. source: "./media/characters/sebi/front.svg",
  19019. extra: 713.5 / 686.5,
  19020. bottom: 0.003
  19021. }
  19022. }
  19023. },
  19024. [
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(70, "cm"),
  19028. default: true
  19029. },
  19030. {
  19031. name: "Macro",
  19032. height: math.unit(8, "meters")
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19038. {
  19039. front: {
  19040. height: math.unit(6, "feet"),
  19041. weight: math.unit(150, "lb"),
  19042. name: "Front",
  19043. image: {
  19044. source: "./media/characters/typhek/front.svg",
  19045. extra: 1948 / 1929,
  19046. bottom: 0.025
  19047. }
  19048. },
  19049. side: {
  19050. height: math.unit(6, "feet"),
  19051. weight: math.unit(150, "lb"),
  19052. name: "Side",
  19053. image: {
  19054. source: "./media/characters/typhek/side.svg",
  19055. extra: 2034 / 2010,
  19056. bottom: 0.003
  19057. }
  19058. },
  19059. back: {
  19060. height: math.unit(6, "feet"),
  19061. weight: math.unit(150, "lb"),
  19062. name: "Back",
  19063. image: {
  19064. source: "./media/characters/typhek/back.svg",
  19065. extra: 2005 / 1978,
  19066. bottom: 0.004
  19067. }
  19068. },
  19069. palm: {
  19070. height: math.unit(1.2, "feet"),
  19071. name: "Palm",
  19072. image: {
  19073. source: "./media/characters/typhek/palm.svg"
  19074. }
  19075. },
  19076. fist: {
  19077. height: math.unit(1.1, "feet"),
  19078. name: "Fist",
  19079. image: {
  19080. source: "./media/characters/typhek/fist.svg"
  19081. }
  19082. },
  19083. foot: {
  19084. height: math.unit(1.57, "feet"),
  19085. name: "Foot",
  19086. image: {
  19087. source: "./media/characters/typhek/foot.svg"
  19088. }
  19089. },
  19090. sole: {
  19091. height: math.unit(2.05, "feet"),
  19092. name: "Sole",
  19093. image: {
  19094. source: "./media/characters/typhek/sole.svg"
  19095. }
  19096. },
  19097. },
  19098. [
  19099. {
  19100. name: "Macro",
  19101. height: math.unit(40, "stories"),
  19102. default: true
  19103. },
  19104. {
  19105. name: "Megamacro",
  19106. height: math.unit(1, "mile")
  19107. },
  19108. {
  19109. name: "Gigamacro",
  19110. height: math.unit(4000, "solarradii")
  19111. },
  19112. {
  19113. name: "Universal",
  19114. height: math.unit(1.1, "universes")
  19115. }
  19116. ]
  19117. ))
  19118. characterMakers.push(() => makeCharacter(
  19119. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19120. {
  19121. side: {
  19122. height: math.unit(5 + 7 / 12, "feet"),
  19123. weight: math.unit(150, "lb"),
  19124. name: "Side",
  19125. image: {
  19126. source: "./media/characters/kassy/side.svg",
  19127. extra: 1280 / 1225,
  19128. bottom: 0.002
  19129. }
  19130. },
  19131. front: {
  19132. height: math.unit(5 + 7 / 12, "feet"),
  19133. weight: math.unit(150, "lb"),
  19134. name: "Front",
  19135. image: {
  19136. source: "./media/characters/kassy/front.svg",
  19137. extra: 1280 / 1225,
  19138. bottom: 0.025
  19139. }
  19140. },
  19141. back: {
  19142. height: math.unit(5 + 7 / 12, "feet"),
  19143. weight: math.unit(150, "lb"),
  19144. name: "Back",
  19145. image: {
  19146. source: "./media/characters/kassy/back.svg",
  19147. extra: 1280 / 1225,
  19148. bottom: 0.002
  19149. }
  19150. },
  19151. foot: {
  19152. height: math.unit(1.266, "feet"),
  19153. name: "Foot",
  19154. image: {
  19155. source: "./media/characters/kassy/foot.svg"
  19156. }
  19157. },
  19158. },
  19159. [
  19160. {
  19161. name: "Normal",
  19162. height: math.unit(5 + 7 / 12, "feet")
  19163. },
  19164. {
  19165. name: "Macro",
  19166. height: math.unit(137, "feet"),
  19167. default: true
  19168. },
  19169. {
  19170. name: "Megamacro",
  19171. height: math.unit(1, "mile")
  19172. },
  19173. ]
  19174. ))
  19175. characterMakers.push(() => makeCharacter(
  19176. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19177. {
  19178. front: {
  19179. height: math.unit(6 + 1 / 12, "feet"),
  19180. weight: math.unit(200, "lb"),
  19181. name: "Front",
  19182. image: {
  19183. source: "./media/characters/neil/front.svg",
  19184. extra: 1326 / 1250,
  19185. bottom: 0.023
  19186. }
  19187. },
  19188. },
  19189. [
  19190. {
  19191. name: "Normal",
  19192. height: math.unit(6 + 1 / 12, "feet"),
  19193. default: true
  19194. },
  19195. {
  19196. name: "Macro",
  19197. height: math.unit(200, "feet")
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19203. {
  19204. front: {
  19205. height: math.unit(5 + 9 / 12, "feet"),
  19206. weight: math.unit(190, "lb"),
  19207. name: "Front",
  19208. image: {
  19209. source: "./media/characters/atticus/front.svg",
  19210. extra: 2934 / 2785,
  19211. bottom: 0.025
  19212. }
  19213. },
  19214. },
  19215. [
  19216. {
  19217. name: "Normal",
  19218. height: math.unit(5 + 9 / 12, "feet"),
  19219. default: true
  19220. },
  19221. {
  19222. name: "Macro",
  19223. height: math.unit(180, "feet")
  19224. },
  19225. ]
  19226. ))
  19227. characterMakers.push(() => makeCharacter(
  19228. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19229. {
  19230. side: {
  19231. height: math.unit(9, "feet"),
  19232. weight: math.unit(650, "lb"),
  19233. name: "Side",
  19234. image: {
  19235. source: "./media/characters/milo/side.svg",
  19236. extra: 2644 / 2310,
  19237. bottom: 0.032
  19238. }
  19239. },
  19240. },
  19241. [
  19242. {
  19243. name: "Normal",
  19244. height: math.unit(9, "feet"),
  19245. default: true
  19246. },
  19247. {
  19248. name: "Macro",
  19249. height: math.unit(300, "feet")
  19250. },
  19251. ]
  19252. ))
  19253. characterMakers.push(() => makeCharacter(
  19254. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19255. {
  19256. side: {
  19257. height: math.unit(8, "meters"),
  19258. weight: math.unit(90000, "kg"),
  19259. name: "Side",
  19260. image: {
  19261. source: "./media/characters/ijzer/side.svg",
  19262. extra: 2756 / 1600,
  19263. bottom: 0.01
  19264. }
  19265. },
  19266. },
  19267. [
  19268. {
  19269. name: "Small",
  19270. height: math.unit(3, "meters")
  19271. },
  19272. {
  19273. name: "Normal",
  19274. height: math.unit(8, "meters"),
  19275. default: true
  19276. },
  19277. {
  19278. name: "Normal+",
  19279. height: math.unit(10, "meters")
  19280. },
  19281. {
  19282. name: "Bigger",
  19283. height: math.unit(24, "meters")
  19284. },
  19285. {
  19286. name: "Huge",
  19287. height: math.unit(80, "meters")
  19288. },
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19293. {
  19294. front: {
  19295. height: math.unit(6 + 2 / 12, "feet"),
  19296. weight: math.unit(153, "lb"),
  19297. name: "Front",
  19298. image: {
  19299. source: "./media/characters/luca-cervicum/front.svg",
  19300. extra: 370 / 327,
  19301. bottom: 0.015
  19302. }
  19303. },
  19304. back: {
  19305. height: math.unit(6 + 2 / 12, "feet"),
  19306. weight: math.unit(153, "lb"),
  19307. name: "Back",
  19308. image: {
  19309. source: "./media/characters/luca-cervicum/back.svg",
  19310. extra: 367 / 333,
  19311. bottom: 0.005
  19312. }
  19313. },
  19314. frontGear: {
  19315. height: math.unit(6 + 2 / 12, "feet"),
  19316. weight: math.unit(173, "lb"),
  19317. name: "Front (Gear)",
  19318. image: {
  19319. source: "./media/characters/luca-cervicum/front-gear.svg",
  19320. extra: 377 / 333,
  19321. bottom: 0.006
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(6 + 2 / 12, "feet"),
  19329. default: true
  19330. },
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19335. {
  19336. front: {
  19337. height: math.unit(6 + 1 / 12, "feet"),
  19338. weight: math.unit(304, "lb"),
  19339. name: "Front",
  19340. image: {
  19341. source: "./media/characters/oliver/front.svg",
  19342. extra: 157 / 143,
  19343. bottom: 0.08
  19344. }
  19345. },
  19346. },
  19347. [
  19348. {
  19349. name: "Normal",
  19350. height: math.unit(6 + 1 / 12, "feet"),
  19351. default: true
  19352. },
  19353. ]
  19354. ))
  19355. characterMakers.push(() => makeCharacter(
  19356. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19357. {
  19358. front: {
  19359. height: math.unit(5 + 7 / 12, "feet"),
  19360. weight: math.unit(140, "lb"),
  19361. name: "Front",
  19362. image: {
  19363. source: "./media/characters/shane/front.svg",
  19364. extra: 304 / 289,
  19365. bottom: 0.005
  19366. }
  19367. },
  19368. },
  19369. [
  19370. {
  19371. name: "Normal",
  19372. height: math.unit(5 + 7 / 12, "feet"),
  19373. default: true
  19374. },
  19375. ]
  19376. ))
  19377. characterMakers.push(() => makeCharacter(
  19378. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19379. {
  19380. front: {
  19381. height: math.unit(5 + 9 / 12, "feet"),
  19382. weight: math.unit(178, "lb"),
  19383. name: "Front",
  19384. image: {
  19385. source: "./media/characters/shin/front.svg",
  19386. extra: 159 / 151,
  19387. bottom: 0.015
  19388. }
  19389. },
  19390. },
  19391. [
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(5 + 9 / 12, "feet"),
  19395. default: true
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19401. {
  19402. front: {
  19403. height: math.unit(5 + 10 / 12, "feet"),
  19404. weight: math.unit(168, "lb"),
  19405. name: "Front",
  19406. image: {
  19407. source: "./media/characters/xerxes/front.svg",
  19408. extra: 282 / 260,
  19409. bottom: 0.045
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(5 + 10 / 12, "feet"),
  19417. default: true
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19423. {
  19424. front: {
  19425. height: math.unit(6 + 7 / 12, "feet"),
  19426. weight: math.unit(208, "lb"),
  19427. name: "Front",
  19428. image: {
  19429. source: "./media/characters/chaska/front.svg",
  19430. extra: 332 / 319,
  19431. bottom: 0.015
  19432. }
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Normal",
  19438. height: math.unit(6 + 7 / 12, "feet"),
  19439. default: true
  19440. },
  19441. ]
  19442. ))
  19443. characterMakers.push(() => makeCharacter(
  19444. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19445. {
  19446. front: {
  19447. height: math.unit(5 + 8 / 12, "feet"),
  19448. weight: math.unit(208, "lb"),
  19449. name: "Front",
  19450. image: {
  19451. source: "./media/characters/enuk/front.svg",
  19452. extra: 437 / 406,
  19453. bottom: 0.02
  19454. }
  19455. },
  19456. },
  19457. [
  19458. {
  19459. name: "Normal",
  19460. height: math.unit(5 + 8 / 12, "feet"),
  19461. default: true
  19462. },
  19463. ]
  19464. ))
  19465. characterMakers.push(() => makeCharacter(
  19466. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19467. {
  19468. front: {
  19469. height: math.unit(5 + 10 / 12, "feet"),
  19470. weight: math.unit(252, "lb"),
  19471. name: "Front",
  19472. image: {
  19473. source: "./media/characters/bruun/front.svg",
  19474. extra: 197 / 187,
  19475. bottom: 0.012
  19476. }
  19477. },
  19478. },
  19479. [
  19480. {
  19481. name: "Normal",
  19482. height: math.unit(5 + 10 / 12, "feet"),
  19483. default: true
  19484. },
  19485. ]
  19486. ))
  19487. characterMakers.push(() => makeCharacter(
  19488. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19489. {
  19490. front: {
  19491. height: math.unit(6 + 10 / 12, "feet"),
  19492. weight: math.unit(255, "lb"),
  19493. name: "Front",
  19494. image: {
  19495. source: "./media/characters/alexeev/front.svg",
  19496. extra: 213 / 200,
  19497. bottom: 0.05
  19498. }
  19499. },
  19500. },
  19501. [
  19502. {
  19503. name: "Normal",
  19504. height: math.unit(6 + 10 / 12, "feet"),
  19505. default: true
  19506. },
  19507. ]
  19508. ))
  19509. characterMakers.push(() => makeCharacter(
  19510. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19511. {
  19512. front: {
  19513. height: math.unit(2 + 8 / 12, "feet"),
  19514. weight: math.unit(22, "lb"),
  19515. name: "Front",
  19516. image: {
  19517. source: "./media/characters/evelyn/front.svg",
  19518. extra: 208 / 180
  19519. }
  19520. },
  19521. },
  19522. [
  19523. {
  19524. name: "Normal",
  19525. height: math.unit(2 + 8 / 12, "feet"),
  19526. default: true
  19527. },
  19528. ]
  19529. ))
  19530. characterMakers.push(() => makeCharacter(
  19531. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19532. {
  19533. front: {
  19534. height: math.unit(5 + 9 / 12, "feet"),
  19535. weight: math.unit(139, "lb"),
  19536. name: "Front",
  19537. image: {
  19538. source: "./media/characters/inca/front.svg",
  19539. extra: 294 / 291,
  19540. bottom: 0.03
  19541. }
  19542. },
  19543. },
  19544. [
  19545. {
  19546. name: "Normal",
  19547. height: math.unit(5 + 9 / 12, "feet"),
  19548. default: true
  19549. },
  19550. ]
  19551. ))
  19552. characterMakers.push(() => makeCharacter(
  19553. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19554. {
  19555. front: {
  19556. height: math.unit(5 + 1 / 12, "feet"),
  19557. weight: math.unit(84, "lb"),
  19558. name: "Front",
  19559. image: {
  19560. source: "./media/characters/magdalene/front.svg",
  19561. extra: 293 / 273
  19562. }
  19563. },
  19564. },
  19565. [
  19566. {
  19567. name: "Normal",
  19568. height: math.unit(5 + 1 / 12, "feet"),
  19569. default: true
  19570. },
  19571. ]
  19572. ))
  19573. characterMakers.push(() => makeCharacter(
  19574. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19575. {
  19576. front: {
  19577. height: math.unit(6 + 3 / 12, "feet"),
  19578. weight: math.unit(185, "lb"),
  19579. name: "Front",
  19580. image: {
  19581. source: "./media/characters/mera/front.svg",
  19582. extra: 291 / 277,
  19583. bottom: 0.03
  19584. }
  19585. },
  19586. },
  19587. [
  19588. {
  19589. name: "Normal",
  19590. height: math.unit(6 + 3 / 12, "feet"),
  19591. default: true
  19592. },
  19593. ]
  19594. ))
  19595. characterMakers.push(() => makeCharacter(
  19596. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19597. {
  19598. front: {
  19599. height: math.unit(6 + 7 / 12, "feet"),
  19600. weight: math.unit(160, "lb"),
  19601. name: "Front",
  19602. image: {
  19603. source: "./media/characters/ceres/front.svg",
  19604. extra: 1023 / 950,
  19605. bottom: 0.027
  19606. }
  19607. },
  19608. back: {
  19609. height: math.unit(6 + 7 / 12, "feet"),
  19610. weight: math.unit(160, "lb"),
  19611. name: "Back",
  19612. image: {
  19613. source: "./media/characters/ceres/back.svg",
  19614. extra: 1023 / 950
  19615. }
  19616. },
  19617. },
  19618. [
  19619. {
  19620. name: "Normal",
  19621. height: math.unit(6 + 7 / 12, "feet"),
  19622. default: true
  19623. },
  19624. ]
  19625. ))
  19626. characterMakers.push(() => makeCharacter(
  19627. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19628. {
  19629. front: {
  19630. height: math.unit(5 + 10 / 12, "feet"),
  19631. weight: math.unit(150, "lb"),
  19632. name: "Front",
  19633. image: {
  19634. source: "./media/characters/kris/front.svg",
  19635. extra: 885 / 803,
  19636. bottom: 0.03
  19637. }
  19638. },
  19639. },
  19640. [
  19641. {
  19642. name: "Normal",
  19643. height: math.unit(5 + 10 / 12, "feet"),
  19644. default: true
  19645. },
  19646. ]
  19647. ))
  19648. characterMakers.push(() => makeCharacter(
  19649. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19650. {
  19651. front: {
  19652. height: math.unit(7, "feet"),
  19653. weight: math.unit(120, "kg"),
  19654. name: "Front",
  19655. image: {
  19656. source: "./media/characters/taluthus/front.svg",
  19657. extra: 903 / 833,
  19658. bottom: 0.015
  19659. }
  19660. },
  19661. },
  19662. [
  19663. {
  19664. name: "Normal",
  19665. height: math.unit(7, "feet"),
  19666. default: true
  19667. },
  19668. {
  19669. name: "Macro",
  19670. height: math.unit(300, "feet")
  19671. },
  19672. ]
  19673. ))
  19674. characterMakers.push(() => makeCharacter(
  19675. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19676. {
  19677. front: {
  19678. height: math.unit(5 + 9 / 12, "feet"),
  19679. weight: math.unit(145, "lb"),
  19680. name: "Front",
  19681. image: {
  19682. source: "./media/characters/dawn/front.svg",
  19683. extra: 2094 / 2016,
  19684. bottom: 0.025
  19685. }
  19686. },
  19687. back: {
  19688. height: math.unit(5 + 9 / 12, "feet"),
  19689. weight: math.unit(160, "lb"),
  19690. name: "Back",
  19691. image: {
  19692. source: "./media/characters/dawn/back.svg",
  19693. extra: 2112 / 2080,
  19694. bottom: 0.005
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(6 + 7 / 12, "feet"),
  19702. default: true
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19708. {
  19709. anthro: {
  19710. height: math.unit(8 + 3 / 12, "feet"),
  19711. weight: math.unit(450, "lb"),
  19712. name: "Anthro",
  19713. image: {
  19714. source: "./media/characters/arador/anthro.svg",
  19715. extra: 1835 / 1718,
  19716. bottom: 0.025
  19717. }
  19718. },
  19719. feral: {
  19720. height: math.unit(4, "feet"),
  19721. weight: math.unit(200, "lb"),
  19722. name: "Feral",
  19723. image: {
  19724. source: "./media/characters/arador/feral.svg",
  19725. extra: 1683 / 1514,
  19726. bottom: 0.07
  19727. }
  19728. },
  19729. },
  19730. [
  19731. {
  19732. name: "Normal",
  19733. height: math.unit(8 + 3 / 12, "feet")
  19734. },
  19735. {
  19736. name: "Macro",
  19737. height: math.unit(82.5, "feet"),
  19738. default: true
  19739. },
  19740. ]
  19741. ))
  19742. characterMakers.push(() => makeCharacter(
  19743. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19744. {
  19745. front: {
  19746. height: math.unit(5 + 10 / 12, "feet"),
  19747. weight: math.unit(125, "lb"),
  19748. name: "Front",
  19749. image: {
  19750. source: "./media/characters/dharsi/front.svg",
  19751. extra: 716 / 630,
  19752. bottom: 0.035
  19753. }
  19754. },
  19755. },
  19756. [
  19757. {
  19758. name: "Nano",
  19759. height: math.unit(100, "nm")
  19760. },
  19761. {
  19762. name: "Micro",
  19763. height: math.unit(2, "inches")
  19764. },
  19765. {
  19766. name: "Normal",
  19767. height: math.unit(5 + 10 / 12, "feet"),
  19768. default: true
  19769. },
  19770. {
  19771. name: "Macro",
  19772. height: math.unit(1000, "feet")
  19773. },
  19774. {
  19775. name: "Megamacro",
  19776. height: math.unit(10, "miles")
  19777. },
  19778. {
  19779. name: "Gigamacro",
  19780. height: math.unit(3000, "miles")
  19781. },
  19782. {
  19783. name: "Teramacro",
  19784. height: math.unit(500000, "miles")
  19785. },
  19786. {
  19787. name: "Teramacro+",
  19788. height: math.unit(30, "galaxies")
  19789. },
  19790. ]
  19791. ))
  19792. characterMakers.push(() => makeCharacter(
  19793. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19794. {
  19795. front: {
  19796. height: math.unit(6, "feet"),
  19797. weight: math.unit(150, "lb"),
  19798. name: "Front",
  19799. image: {
  19800. source: "./media/characters/deathy/front.svg",
  19801. extra: 1552 / 1463,
  19802. bottom: 0.025
  19803. }
  19804. },
  19805. side: {
  19806. height: math.unit(6, "feet"),
  19807. weight: math.unit(150, "lb"),
  19808. name: "Side",
  19809. image: {
  19810. source: "./media/characters/deathy/side.svg",
  19811. extra: 1604 / 1455,
  19812. bottom: 0.025
  19813. }
  19814. },
  19815. back: {
  19816. height: math.unit(6, "feet"),
  19817. weight: math.unit(150, "lb"),
  19818. name: "Back",
  19819. image: {
  19820. source: "./media/characters/deathy/back.svg",
  19821. extra: 1580 / 1463,
  19822. bottom: 0.005
  19823. }
  19824. },
  19825. },
  19826. [
  19827. {
  19828. name: "Micro",
  19829. height: math.unit(5, "millimeters")
  19830. },
  19831. {
  19832. name: "Normal",
  19833. height: math.unit(6 + 5 / 12, "feet"),
  19834. default: true
  19835. },
  19836. ]
  19837. ))
  19838. characterMakers.push(() => makeCharacter(
  19839. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19840. {
  19841. front: {
  19842. height: math.unit(16, "feet"),
  19843. weight: math.unit(4000, "lb"),
  19844. name: "Front",
  19845. image: {
  19846. source: "./media/characters/juniper/front.svg",
  19847. bottom: 0.04
  19848. }
  19849. },
  19850. },
  19851. [
  19852. {
  19853. name: "Normal",
  19854. height: math.unit(16, "feet"),
  19855. default: true
  19856. },
  19857. ]
  19858. ))
  19859. characterMakers.push(() => makeCharacter(
  19860. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19861. {
  19862. front: {
  19863. height: math.unit(6, "feet"),
  19864. weight: math.unit(150, "lb"),
  19865. name: "Front",
  19866. image: {
  19867. source: "./media/characters/hipster/front.svg",
  19868. extra: 1312 / 1209,
  19869. bottom: 0.025
  19870. }
  19871. },
  19872. back: {
  19873. height: math.unit(6, "feet"),
  19874. weight: math.unit(150, "lb"),
  19875. name: "Back",
  19876. image: {
  19877. source: "./media/characters/hipster/back.svg",
  19878. extra: 1281 / 1196,
  19879. bottom: 0.01
  19880. }
  19881. },
  19882. },
  19883. [
  19884. {
  19885. name: "Micro",
  19886. height: math.unit(1, "mm")
  19887. },
  19888. {
  19889. name: "Normal",
  19890. height: math.unit(4, "inches"),
  19891. default: true
  19892. },
  19893. {
  19894. name: "Macro",
  19895. height: math.unit(500, "feet")
  19896. },
  19897. {
  19898. name: "Megamacro",
  19899. height: math.unit(1000, "miles")
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19905. {
  19906. front: {
  19907. height: math.unit(6, "feet"),
  19908. weight: math.unit(150, "lb"),
  19909. name: "Front",
  19910. image: {
  19911. source: "./media/characters/tendirmuldr/front.svg",
  19912. extra: 1878 / 1772,
  19913. bottom: 0.015
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Megamacro",
  19920. height: math.unit(1500, "miles"),
  19921. default: true
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19927. {
  19928. front: {
  19929. height: math.unit(14, "feet"),
  19930. weight: math.unit(12000, "lb"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/mort/front.svg",
  19934. extra: 365 / 318,
  19935. bottom: 0.01
  19936. }
  19937. },
  19938. side: {
  19939. height: math.unit(14, "feet"),
  19940. weight: math.unit(12000, "lb"),
  19941. name: "Side",
  19942. image: {
  19943. source: "./media/characters/mort/side.svg",
  19944. extra: 365 / 318,
  19945. bottom: 0.052
  19946. },
  19947. default: true
  19948. },
  19949. back: {
  19950. height: math.unit(14, "feet"),
  19951. weight: math.unit(12000, "lb"),
  19952. name: "Back",
  19953. image: {
  19954. source: "./media/characters/mort/back.svg",
  19955. extra: 371 / 332,
  19956. bottom: 0.18
  19957. }
  19958. },
  19959. },
  19960. [
  19961. {
  19962. name: "Normal",
  19963. height: math.unit(14, "feet"),
  19964. default: true
  19965. },
  19966. ]
  19967. ))
  19968. characterMakers.push(() => makeCharacter(
  19969. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19970. {
  19971. front: {
  19972. height: math.unit(8, "feet"),
  19973. weight: math.unit(1, "ton"),
  19974. name: "Front",
  19975. image: {
  19976. source: "./media/characters/lycoa/front.svg",
  19977. extra: 1875 / 1789,
  19978. bottom: 0.022
  19979. }
  19980. },
  19981. back: {
  19982. height: math.unit(8, "feet"),
  19983. weight: math.unit(1, "ton"),
  19984. name: "Back",
  19985. image: {
  19986. source: "./media/characters/lycoa/back.svg",
  19987. extra: 1835 / 1781,
  19988. bottom: 0.03
  19989. }
  19990. },
  19991. head: {
  19992. height: math.unit(2.1, "feet"),
  19993. name: "Head",
  19994. image: {
  19995. source: "./media/characters/lycoa/head.svg"
  19996. }
  19997. },
  19998. tailmaw: {
  19999. height: math.unit(1.9, "feet"),
  20000. name: "Tailmaw",
  20001. image: {
  20002. source: "./media/characters/lycoa/tailmaw.svg"
  20003. }
  20004. },
  20005. tentacles: {
  20006. height: math.unit(2.1, "feet"),
  20007. name: "Tentacles",
  20008. image: {
  20009. source: "./media/characters/lycoa/tentacles.svg"
  20010. }
  20011. },
  20012. dick: {
  20013. height: math.unit(1.73, "feet"),
  20014. name: "Dick",
  20015. image: {
  20016. source: "./media/characters/lycoa/dick.svg"
  20017. }
  20018. },
  20019. },
  20020. [
  20021. {
  20022. name: "Normal",
  20023. height: math.unit(8, "feet"),
  20024. default: true
  20025. },
  20026. {
  20027. name: "Macro",
  20028. height: math.unit(30, "feet")
  20029. },
  20030. ]
  20031. ))
  20032. characterMakers.push(() => makeCharacter(
  20033. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20034. {
  20035. front: {
  20036. height: math.unit(4 + 2 / 12, "feet"),
  20037. weight: math.unit(70, "lb"),
  20038. name: "Front",
  20039. image: {
  20040. source: "./media/characters/naldara/front.svg",
  20041. extra: 841 / 720,
  20042. bottom: 0.04
  20043. }
  20044. },
  20045. naga: {
  20046. height: math.unit(23, "feet"),
  20047. weight: math.unit(15000, "kg"),
  20048. name: "Naga",
  20049. image: {
  20050. source: "./media/characters/naldara/naga.svg",
  20051. extra: 3290 / 2959,
  20052. bottom: 124 / 3432
  20053. }
  20054. },
  20055. },
  20056. [
  20057. {
  20058. name: "Normal",
  20059. height: math.unit(4 + 2 / 12, "feet"),
  20060. default: true
  20061. },
  20062. ]
  20063. ))
  20064. characterMakers.push(() => makeCharacter(
  20065. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20066. {
  20067. front: {
  20068. height: math.unit(13 + 7 / 12, "feet"),
  20069. weight: math.unit(1500, "lb"),
  20070. name: "Front",
  20071. image: {
  20072. source: "./media/characters/briar/front.svg",
  20073. extra: 626 / 596,
  20074. bottom: 0.08
  20075. }
  20076. },
  20077. },
  20078. [
  20079. {
  20080. name: "Normal",
  20081. height: math.unit(13 + 7 / 12, "feet"),
  20082. default: true
  20083. },
  20084. ]
  20085. ))
  20086. characterMakers.push(() => makeCharacter(
  20087. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20088. {
  20089. side: {
  20090. height: math.unit(10, "feet"),
  20091. weight: math.unit(500, "lb"),
  20092. name: "Side",
  20093. image: {
  20094. source: "./media/characters/vanguard/side.svg",
  20095. extra: 502 / 425,
  20096. bottom: 0.087
  20097. }
  20098. },
  20099. },
  20100. [
  20101. {
  20102. name: "Normal",
  20103. height: math.unit(10, "feet"),
  20104. default: true
  20105. },
  20106. ]
  20107. ))
  20108. characterMakers.push(() => makeCharacter(
  20109. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20110. {
  20111. front: {
  20112. height: math.unit(7.5, "feet"),
  20113. weight: math.unit(2, "lb"),
  20114. name: "Front",
  20115. image: {
  20116. source: "./media/characters/artemis/front.svg",
  20117. extra: 1192 / 1075,
  20118. bottom: 0.07
  20119. }
  20120. },
  20121. frontNsfw: {
  20122. height: math.unit(7.5, "feet"),
  20123. weight: math.unit(2, "lb"),
  20124. name: "Front (NSFW)",
  20125. image: {
  20126. source: "./media/characters/artemis/front-nsfw.svg",
  20127. extra: 1192 / 1075,
  20128. bottom: 0.07
  20129. }
  20130. },
  20131. frontNsfwer: {
  20132. height: math.unit(7.5, "feet"),
  20133. weight: math.unit(2, "lb"),
  20134. name: "Front (NSFW-er)",
  20135. image: {
  20136. source: "./media/characters/artemis/front-nsfwer.svg",
  20137. extra: 1192 / 1075,
  20138. bottom: 0.07
  20139. }
  20140. },
  20141. side: {
  20142. height: math.unit(7.5, "feet"),
  20143. weight: math.unit(2, "lb"),
  20144. name: "Side",
  20145. image: {
  20146. source: "./media/characters/artemis/side.svg",
  20147. extra: 1192 / 1075,
  20148. bottom: 0.07
  20149. }
  20150. },
  20151. sideNsfw: {
  20152. height: math.unit(7.5, "feet"),
  20153. weight: math.unit(2, "lb"),
  20154. name: "Side (NSFW)",
  20155. image: {
  20156. source: "./media/characters/artemis/side-nsfw.svg",
  20157. extra: 1192 / 1075,
  20158. bottom: 0.07
  20159. }
  20160. },
  20161. sideNsfwer: {
  20162. height: math.unit(7.5, "feet"),
  20163. weight: math.unit(2, "lb"),
  20164. name: "Side (NSFW-er)",
  20165. image: {
  20166. source: "./media/characters/artemis/side-nsfwer.svg",
  20167. extra: 1192 / 1075,
  20168. bottom: 0.07
  20169. }
  20170. },
  20171. maw: {
  20172. height: math.unit(1.1, "feet"),
  20173. name: "Maw",
  20174. image: {
  20175. source: "./media/characters/artemis/maw.svg"
  20176. }
  20177. },
  20178. stomach: {
  20179. height: math.unit(0.95, "feet"),
  20180. name: "Stomach",
  20181. image: {
  20182. source: "./media/characters/artemis/stomach.svg"
  20183. }
  20184. },
  20185. dickCanine: {
  20186. height: math.unit(1, "feet"),
  20187. name: "Dick (Canine)",
  20188. image: {
  20189. source: "./media/characters/artemis/dick-canine.svg"
  20190. }
  20191. },
  20192. dickEquine: {
  20193. height: math.unit(0.85, "feet"),
  20194. name: "Dick (Equine)",
  20195. image: {
  20196. source: "./media/characters/artemis/dick-equine.svg"
  20197. }
  20198. },
  20199. dickExotic: {
  20200. height: math.unit(0.85, "feet"),
  20201. name: "Dick (Exotic)",
  20202. image: {
  20203. source: "./media/characters/artemis/dick-exotic.svg"
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Normal",
  20210. height: math.unit(7.5, "feet"),
  20211. default: true
  20212. },
  20213. {
  20214. name: "Enlarged",
  20215. height: math.unit(12, "feet")
  20216. },
  20217. ]
  20218. ))
  20219. characterMakers.push(() => makeCharacter(
  20220. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20221. {
  20222. front: {
  20223. height: math.unit(5 + 3 / 12, "feet"),
  20224. weight: math.unit(160, "lb"),
  20225. name: "Front",
  20226. image: {
  20227. source: "./media/characters/kira/front.svg",
  20228. extra: 906 / 786,
  20229. bottom: 0.01
  20230. }
  20231. },
  20232. back: {
  20233. height: math.unit(5 + 3 / 12, "feet"),
  20234. weight: math.unit(160, "lb"),
  20235. name: "Back",
  20236. image: {
  20237. source: "./media/characters/kira/back.svg",
  20238. extra: 882 / 757,
  20239. bottom: 0.005
  20240. }
  20241. },
  20242. frontDressed: {
  20243. height: math.unit(5 + 3 / 12, "feet"),
  20244. weight: math.unit(160, "lb"),
  20245. name: "Front (Dressed)",
  20246. image: {
  20247. source: "./media/characters/kira/front-dressed.svg",
  20248. extra: 906 / 786,
  20249. bottom: 0.01
  20250. }
  20251. },
  20252. beans: {
  20253. height: math.unit(0.92, "feet"),
  20254. name: "Beans",
  20255. image: {
  20256. source: "./media/characters/kira/beans.svg"
  20257. }
  20258. },
  20259. },
  20260. [
  20261. {
  20262. name: "Normal",
  20263. height: math.unit(5 + 3 / 12, "feet"),
  20264. default: true
  20265. },
  20266. ]
  20267. ))
  20268. characterMakers.push(() => makeCharacter(
  20269. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20270. {
  20271. front: {
  20272. height: math.unit(5 + 4 / 12, "feet"),
  20273. weight: math.unit(145, "lb"),
  20274. name: "Front",
  20275. image: {
  20276. source: "./media/characters/scramble/front.svg",
  20277. extra: 763 / 727,
  20278. bottom: 0.05
  20279. }
  20280. },
  20281. back: {
  20282. height: math.unit(5 + 4 / 12, "feet"),
  20283. weight: math.unit(145, "lb"),
  20284. name: "Back",
  20285. image: {
  20286. source: "./media/characters/scramble/back.svg",
  20287. extra: 826 / 737,
  20288. bottom: 0.002
  20289. }
  20290. },
  20291. },
  20292. [
  20293. {
  20294. name: "Normal",
  20295. height: math.unit(5 + 4 / 12, "feet"),
  20296. default: true
  20297. },
  20298. ]
  20299. ))
  20300. characterMakers.push(() => makeCharacter(
  20301. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20302. {
  20303. side: {
  20304. height: math.unit(6 + 2 / 12, "feet"),
  20305. weight: math.unit(190, "lb"),
  20306. name: "Side",
  20307. image: {
  20308. source: "./media/characters/biscuit/side.svg",
  20309. extra: 858 / 791,
  20310. bottom: 0.044
  20311. }
  20312. },
  20313. },
  20314. [
  20315. {
  20316. name: "Normal",
  20317. height: math.unit(6 + 2 / 12, "feet"),
  20318. default: true
  20319. },
  20320. ]
  20321. ))
  20322. characterMakers.push(() => makeCharacter(
  20323. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20324. {
  20325. front: {
  20326. height: math.unit(5 + 2 / 12, "feet"),
  20327. weight: math.unit(120, "lb"),
  20328. name: "Front",
  20329. image: {
  20330. source: "./media/characters/poffin/front.svg",
  20331. extra: 786 / 680,
  20332. bottom: 0.005
  20333. }
  20334. },
  20335. },
  20336. [
  20337. {
  20338. name: "Normal",
  20339. height: math.unit(5 + 2 / 12, "feet"),
  20340. default: true
  20341. },
  20342. ]
  20343. ))
  20344. characterMakers.push(() => makeCharacter(
  20345. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20346. {
  20347. front: {
  20348. height: math.unit(6 + 3 / 12, "feet"),
  20349. weight: math.unit(519, "lb"),
  20350. name: "Front",
  20351. image: {
  20352. source: "./media/characters/dhari/front.svg",
  20353. extra: 1048 / 946,
  20354. bottom: 0.015
  20355. }
  20356. },
  20357. back: {
  20358. height: math.unit(6 + 3 / 12, "feet"),
  20359. weight: math.unit(519, "lb"),
  20360. name: "Back",
  20361. image: {
  20362. source: "./media/characters/dhari/back.svg",
  20363. extra: 1048 / 931,
  20364. bottom: 0.005
  20365. }
  20366. },
  20367. frontDressed: {
  20368. height: math.unit(6 + 3 / 12, "feet"),
  20369. weight: math.unit(519, "lb"),
  20370. name: "Front (Dressed)",
  20371. image: {
  20372. source: "./media/characters/dhari/front-dressed.svg",
  20373. extra: 1713 / 1546,
  20374. bottom: 0.02
  20375. }
  20376. },
  20377. backDressed: {
  20378. height: math.unit(6 + 3 / 12, "feet"),
  20379. weight: math.unit(519, "lb"),
  20380. name: "Back (Dressed)",
  20381. image: {
  20382. source: "./media/characters/dhari/back-dressed.svg",
  20383. extra: 1699 / 1537,
  20384. bottom: 0.01
  20385. }
  20386. },
  20387. maw: {
  20388. height: math.unit(0.95, "feet"),
  20389. name: "Maw",
  20390. image: {
  20391. source: "./media/characters/dhari/maw.svg"
  20392. }
  20393. },
  20394. wereFront: {
  20395. height: math.unit(12 + 8 / 12, "feet"),
  20396. weight: math.unit(4000, "lb"),
  20397. name: "Front (Were)",
  20398. image: {
  20399. source: "./media/characters/dhari/were-front.svg",
  20400. extra: 1065 / 969,
  20401. bottom: 0.015
  20402. }
  20403. },
  20404. wereBack: {
  20405. height: math.unit(12 + 8 / 12, "feet"),
  20406. weight: math.unit(4000, "lb"),
  20407. name: "Back (Were)",
  20408. image: {
  20409. source: "./media/characters/dhari/were-back.svg",
  20410. extra: 1065 / 969,
  20411. bottom: 0.012
  20412. }
  20413. },
  20414. wereMaw: {
  20415. height: math.unit(0.625, "meters"),
  20416. name: "Maw (Were)",
  20417. image: {
  20418. source: "./media/characters/dhari/were-maw.svg"
  20419. }
  20420. },
  20421. },
  20422. [
  20423. {
  20424. name: "Normal",
  20425. height: math.unit(6 + 3 / 12, "feet"),
  20426. default: true
  20427. },
  20428. ]
  20429. ))
  20430. characterMakers.push(() => makeCharacter(
  20431. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20432. {
  20433. anthro: {
  20434. height: math.unit(5 + 7 / 12, "feet"),
  20435. weight: math.unit(175, "lb"),
  20436. name: "Anthro",
  20437. image: {
  20438. source: "./media/characters/rena-dyne/anthro.svg",
  20439. extra: 1849 / 1785,
  20440. bottom: 0.005
  20441. }
  20442. },
  20443. taur: {
  20444. height: math.unit(15 + 6 / 12, "feet"),
  20445. weight: math.unit(8000, "lb"),
  20446. name: "Taur",
  20447. image: {
  20448. source: "./media/characters/rena-dyne/taur.svg",
  20449. extra: 2315 / 2234,
  20450. bottom: 0.033
  20451. }
  20452. },
  20453. },
  20454. [
  20455. {
  20456. name: "Normal",
  20457. height: math.unit(5 + 7 / 12, "feet"),
  20458. default: true
  20459. },
  20460. ]
  20461. ))
  20462. characterMakers.push(() => makeCharacter(
  20463. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20464. {
  20465. front: {
  20466. height: math.unit(8, "feet"),
  20467. weight: math.unit(600, "lb"),
  20468. name: "Front",
  20469. image: {
  20470. source: "./media/characters/weremeep/front.svg",
  20471. extra: 967 / 862,
  20472. bottom: 0.01
  20473. }
  20474. },
  20475. },
  20476. [
  20477. {
  20478. name: "Normal",
  20479. height: math.unit(8, "feet"),
  20480. default: true
  20481. },
  20482. {
  20483. name: "Lorg",
  20484. height: math.unit(12, "feet")
  20485. },
  20486. {
  20487. name: "Oh Lawd She Comin'",
  20488. height: math.unit(20, "feet")
  20489. },
  20490. ]
  20491. ))
  20492. characterMakers.push(() => makeCharacter(
  20493. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20494. {
  20495. front: {
  20496. height: math.unit(4, "feet"),
  20497. weight: math.unit(90, "lb"),
  20498. name: "Front",
  20499. image: {
  20500. source: "./media/characters/reza/front.svg",
  20501. extra: 1183 / 1111,
  20502. bottom: 0.017
  20503. }
  20504. },
  20505. back: {
  20506. height: math.unit(4, "feet"),
  20507. weight: math.unit(90, "lb"),
  20508. name: "Back",
  20509. image: {
  20510. source: "./media/characters/reza/back.svg",
  20511. extra: 1183 / 1111,
  20512. bottom: 0.01
  20513. }
  20514. },
  20515. drake: {
  20516. height: math.unit(30, "feet"),
  20517. weight: math.unit(246960, "lb"),
  20518. name: "Drake",
  20519. image: {
  20520. source: "./media/characters/reza/drake.svg",
  20521. extra: 2350 / 2024,
  20522. bottom: 60.7 / 2403
  20523. }
  20524. },
  20525. },
  20526. [
  20527. {
  20528. name: "Normal",
  20529. height: math.unit(4, "feet"),
  20530. default: true
  20531. },
  20532. ]
  20533. ))
  20534. characterMakers.push(() => makeCharacter(
  20535. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20536. {
  20537. side: {
  20538. height: math.unit(15, "feet"),
  20539. weight: math.unit(14, "tons"),
  20540. name: "Side",
  20541. image: {
  20542. source: "./media/characters/athea/side.svg",
  20543. extra: 960 / 540,
  20544. bottom: 0.003
  20545. }
  20546. },
  20547. sitting: {
  20548. height: math.unit(6 * 2.85, "feet"),
  20549. weight: math.unit(14, "tons"),
  20550. name: "Sitting",
  20551. image: {
  20552. source: "./media/characters/athea/sitting.svg",
  20553. extra: 621 / 581,
  20554. bottom: 0.075
  20555. }
  20556. },
  20557. maw: {
  20558. height: math.unit(7.59498031496063, "feet"),
  20559. name: "Maw",
  20560. image: {
  20561. source: "./media/characters/athea/maw.svg"
  20562. }
  20563. },
  20564. },
  20565. [
  20566. {
  20567. name: "Lap Cat",
  20568. height: math.unit(2.5, "feet")
  20569. },
  20570. {
  20571. name: "Minimacro",
  20572. height: math.unit(15, "feet"),
  20573. default: true
  20574. },
  20575. {
  20576. name: "Macro",
  20577. height: math.unit(120, "feet")
  20578. },
  20579. {
  20580. name: "Macro+",
  20581. height: math.unit(640, "feet")
  20582. },
  20583. {
  20584. name: "Colossus",
  20585. height: math.unit(2.2, "miles")
  20586. },
  20587. ]
  20588. ))
  20589. characterMakers.push(() => makeCharacter(
  20590. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20591. {
  20592. front: {
  20593. height: math.unit(8 + 8 / 12, "feet"),
  20594. weight: math.unit(130, "kg"),
  20595. name: "Front",
  20596. image: {
  20597. source: "./media/characters/seroko/front.svg",
  20598. extra: 1385 / 1280,
  20599. bottom: 0.025
  20600. }
  20601. },
  20602. back: {
  20603. height: math.unit(8 + 8 / 12, "feet"),
  20604. weight: math.unit(130, "kg"),
  20605. name: "Back",
  20606. image: {
  20607. source: "./media/characters/seroko/back.svg",
  20608. extra: 1369 / 1238,
  20609. bottom: 0.018
  20610. }
  20611. },
  20612. frontDressed: {
  20613. height: math.unit(8 + 8 / 12, "feet"),
  20614. weight: math.unit(130, "kg"),
  20615. name: "Front (Dressed)",
  20616. image: {
  20617. source: "./media/characters/seroko/front-dressed.svg",
  20618. extra: 1366 / 1275,
  20619. bottom: 0.03
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(8 + 8 / 12, "feet"),
  20627. default: true
  20628. },
  20629. ]
  20630. ))
  20631. characterMakers.push(() => makeCharacter(
  20632. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20633. {
  20634. front: {
  20635. height: math.unit(5.5, "feet"),
  20636. weight: math.unit(160, "lb"),
  20637. name: "Front",
  20638. image: {
  20639. source: "./media/characters/quatzi/front.svg",
  20640. extra: 2346 / 2242,
  20641. bottom: 0.015
  20642. }
  20643. },
  20644. },
  20645. [
  20646. {
  20647. name: "Normal",
  20648. height: math.unit(5.5, "feet"),
  20649. default: true
  20650. },
  20651. {
  20652. name: "Big",
  20653. height: math.unit(7.7, "feet")
  20654. },
  20655. ]
  20656. ))
  20657. characterMakers.push(() => makeCharacter(
  20658. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20659. {
  20660. front: {
  20661. height: math.unit(5 + 11 / 12, "feet"),
  20662. weight: math.unit(180, "lb"),
  20663. name: "Front",
  20664. image: {
  20665. source: "./media/characters/sen/front.svg",
  20666. extra: 1321 / 1254,
  20667. bottom: 0.015
  20668. }
  20669. },
  20670. side: {
  20671. height: math.unit(5 + 11 / 12, "feet"),
  20672. weight: math.unit(180, "lb"),
  20673. name: "Side",
  20674. image: {
  20675. source: "./media/characters/sen/side.svg",
  20676. extra: 1321 / 1254,
  20677. bottom: 0.007
  20678. }
  20679. },
  20680. back: {
  20681. height: math.unit(5 + 11 / 12, "feet"),
  20682. weight: math.unit(180, "lb"),
  20683. name: "Back",
  20684. image: {
  20685. source: "./media/characters/sen/back.svg",
  20686. extra: 1321 / 1254
  20687. }
  20688. },
  20689. },
  20690. [
  20691. {
  20692. name: "Normal",
  20693. height: math.unit(5 + 11 / 12, "feet"),
  20694. default: true
  20695. },
  20696. ]
  20697. ))
  20698. characterMakers.push(() => makeCharacter(
  20699. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20700. {
  20701. front: {
  20702. height: math.unit(166.6, "cm"),
  20703. weight: math.unit(66.6, "kg"),
  20704. name: "Front",
  20705. image: {
  20706. source: "./media/characters/fruity/front.svg",
  20707. extra: 1510 / 1386,
  20708. bottom: 0.04
  20709. }
  20710. },
  20711. back: {
  20712. height: math.unit(166.6, "cm"),
  20713. weight: math.unit(66.6, "lb"),
  20714. name: "Back",
  20715. image: {
  20716. source: "./media/characters/fruity/back.svg",
  20717. extra: 1563 / 1435,
  20718. bottom: 0.005
  20719. }
  20720. },
  20721. },
  20722. [
  20723. {
  20724. name: "Normal",
  20725. height: math.unit(166.6, "cm"),
  20726. default: true
  20727. },
  20728. {
  20729. name: "Demonic",
  20730. height: math.unit(166.6, "feet")
  20731. },
  20732. ]
  20733. ))
  20734. characterMakers.push(() => makeCharacter(
  20735. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20736. {
  20737. side: {
  20738. height: math.unit(10, "feet"),
  20739. weight: math.unit(500, "lb"),
  20740. name: "Side",
  20741. image: {
  20742. source: "./media/characters/zost/side.svg",
  20743. extra: 966 / 880,
  20744. bottom: 0.075
  20745. }
  20746. },
  20747. mawFront: {
  20748. height: math.unit(1.08, "meters"),
  20749. name: "Maw (Front)",
  20750. image: {
  20751. source: "./media/characters/zost/maw-front.svg"
  20752. }
  20753. },
  20754. mawSide: {
  20755. height: math.unit(2.66, "feet"),
  20756. name: "Maw (Side)",
  20757. image: {
  20758. source: "./media/characters/zost/maw-side.svg"
  20759. }
  20760. },
  20761. },
  20762. [
  20763. {
  20764. name: "Normal",
  20765. height: math.unit(10, "feet"),
  20766. default: true
  20767. },
  20768. ]
  20769. ))
  20770. characterMakers.push(() => makeCharacter(
  20771. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20772. {
  20773. front: {
  20774. height: math.unit(5 + 4 / 12, "feet"),
  20775. weight: math.unit(120, "lb"),
  20776. name: "Front",
  20777. image: {
  20778. source: "./media/characters/luci/front.svg",
  20779. extra: 1985 / 1884,
  20780. bottom: 0.04
  20781. }
  20782. },
  20783. back: {
  20784. height: math.unit(5 + 4 / 12, "feet"),
  20785. weight: math.unit(120, "lb"),
  20786. name: "Back",
  20787. image: {
  20788. source: "./media/characters/luci/back.svg",
  20789. extra: 1892 / 1791,
  20790. bottom: 0.002
  20791. }
  20792. },
  20793. },
  20794. [
  20795. {
  20796. name: "Normal",
  20797. height: math.unit(5 + 4 / 12, "feet"),
  20798. default: true
  20799. },
  20800. ]
  20801. ))
  20802. characterMakers.push(() => makeCharacter(
  20803. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20804. {
  20805. front: {
  20806. height: math.unit(1500, "feet"),
  20807. weight: math.unit(3.8e6, "tons"),
  20808. name: "Front",
  20809. image: {
  20810. source: "./media/characters/2th/front.svg",
  20811. extra: 3489 / 3350,
  20812. bottom: 0.1
  20813. }
  20814. },
  20815. foot: {
  20816. height: math.unit(461, "feet"),
  20817. name: "Foot",
  20818. image: {
  20819. source: "./media/characters/2th/foot.svg"
  20820. }
  20821. },
  20822. },
  20823. [
  20824. {
  20825. name: "\"Micro\"",
  20826. height: math.unit(15 + 7 / 12, "feet")
  20827. },
  20828. {
  20829. name: "Normal",
  20830. height: math.unit(1500, "feet"),
  20831. default: true
  20832. },
  20833. {
  20834. name: "Macro",
  20835. height: math.unit(5000, "feet")
  20836. },
  20837. {
  20838. name: "Megamacro",
  20839. height: math.unit(15, "miles")
  20840. },
  20841. {
  20842. name: "Gigamacro",
  20843. height: math.unit(4000, "miles")
  20844. },
  20845. {
  20846. name: "Galactic",
  20847. height: math.unit(50, "AU")
  20848. },
  20849. ]
  20850. ))
  20851. characterMakers.push(() => makeCharacter(
  20852. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20853. {
  20854. front: {
  20855. height: math.unit(5 + 6 / 12, "feet"),
  20856. weight: math.unit(220, "lb"),
  20857. name: "Front",
  20858. image: {
  20859. source: "./media/characters/amethyst/front.svg",
  20860. extra: 2078 / 2040,
  20861. bottom: 0.045
  20862. }
  20863. },
  20864. back: {
  20865. height: math.unit(5 + 6 / 12, "feet"),
  20866. weight: math.unit(220, "lb"),
  20867. name: "Back",
  20868. image: {
  20869. source: "./media/characters/amethyst/back.svg",
  20870. extra: 2021 / 1989,
  20871. bottom: 0.02
  20872. }
  20873. },
  20874. },
  20875. [
  20876. {
  20877. name: "Normal",
  20878. height: math.unit(5 + 6 / 12, "feet"),
  20879. default: true
  20880. },
  20881. ]
  20882. ))
  20883. characterMakers.push(() => makeCharacter(
  20884. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20885. {
  20886. front: {
  20887. height: math.unit(4 + 11 / 12, "feet"),
  20888. weight: math.unit(120, "lb"),
  20889. name: "Front",
  20890. image: {
  20891. source: "./media/characters/yumi-akiyama/front.svg",
  20892. extra: 1327 / 1235,
  20893. bottom: 0.02
  20894. }
  20895. },
  20896. back: {
  20897. height: math.unit(4 + 11 / 12, "feet"),
  20898. weight: math.unit(120, "lb"),
  20899. name: "Back",
  20900. image: {
  20901. source: "./media/characters/yumi-akiyama/back.svg",
  20902. extra: 1287 / 1245,
  20903. bottom: 0.002
  20904. }
  20905. },
  20906. },
  20907. [
  20908. {
  20909. name: "Galactic",
  20910. height: math.unit(50, "galaxies"),
  20911. default: true
  20912. },
  20913. {
  20914. name: "Universal",
  20915. height: math.unit(100, "universes")
  20916. },
  20917. ]
  20918. ))
  20919. characterMakers.push(() => makeCharacter(
  20920. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20921. {
  20922. front: {
  20923. height: math.unit(8, "feet"),
  20924. weight: math.unit(500, "lb"),
  20925. name: "Front",
  20926. image: {
  20927. source: "./media/characters/rifter-yrmori/front.svg",
  20928. extra: 1180 / 1125,
  20929. bottom: 0.02
  20930. }
  20931. },
  20932. back: {
  20933. height: math.unit(8, "feet"),
  20934. weight: math.unit(500, "lb"),
  20935. name: "Back",
  20936. image: {
  20937. source: "./media/characters/rifter-yrmori/back.svg",
  20938. extra: 1190 / 1145,
  20939. bottom: 0.001
  20940. }
  20941. },
  20942. wings: {
  20943. height: math.unit(7.75, "feet"),
  20944. weight: math.unit(500, "lb"),
  20945. name: "Wings",
  20946. image: {
  20947. source: "./media/characters/rifter-yrmori/wings.svg",
  20948. extra: 1357 / 1285
  20949. }
  20950. },
  20951. maw: {
  20952. height: math.unit(0.8, "feet"),
  20953. name: "Maw",
  20954. image: {
  20955. source: "./media/characters/rifter-yrmori/maw.svg"
  20956. }
  20957. },
  20958. mawfront: {
  20959. height: math.unit(1.45, "feet"),
  20960. name: "Maw (Front)",
  20961. image: {
  20962. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20963. }
  20964. },
  20965. },
  20966. [
  20967. {
  20968. name: "Normal",
  20969. height: math.unit(8, "feet"),
  20970. default: true
  20971. },
  20972. {
  20973. name: "Macro",
  20974. height: math.unit(42, "meters")
  20975. },
  20976. ]
  20977. ))
  20978. characterMakers.push(() => makeCharacter(
  20979. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20980. {
  20981. were: {
  20982. height: math.unit(25 + 6 / 12, "feet"),
  20983. weight: math.unit(10000, "lb"),
  20984. name: "Were",
  20985. image: {
  20986. source: "./media/characters/tahajin/were.svg",
  20987. extra: 801 / 770,
  20988. bottom: 0.042
  20989. }
  20990. },
  20991. aquatic: {
  20992. height: math.unit(6 + 4 / 12, "feet"),
  20993. weight: math.unit(160, "lb"),
  20994. name: "Aquatic",
  20995. image: {
  20996. source: "./media/characters/tahajin/aquatic.svg",
  20997. extra: 572 / 542,
  20998. bottom: 0.04
  20999. }
  21000. },
  21001. chow: {
  21002. height: math.unit(8 + 11 / 12, "feet"),
  21003. weight: math.unit(450, "lb"),
  21004. name: "Chow",
  21005. image: {
  21006. source: "./media/characters/tahajin/chow.svg",
  21007. extra: 660 / 640,
  21008. bottom: 0.015
  21009. }
  21010. },
  21011. demiNaga: {
  21012. height: math.unit(6 + 8 / 12, "feet"),
  21013. weight: math.unit(300, "lb"),
  21014. name: "Demi Naga",
  21015. image: {
  21016. source: "./media/characters/tahajin/demi-naga.svg",
  21017. extra: 643 / 615,
  21018. bottom: 0.1
  21019. }
  21020. },
  21021. data: {
  21022. height: math.unit(5, "inches"),
  21023. weight: math.unit(0.1, "lb"),
  21024. name: "Data",
  21025. image: {
  21026. source: "./media/characters/tahajin/data.svg"
  21027. }
  21028. },
  21029. fluu: {
  21030. height: math.unit(5 + 7 / 12, "feet"),
  21031. weight: math.unit(140, "lb"),
  21032. name: "Fluu",
  21033. image: {
  21034. source: "./media/characters/tahajin/fluu.svg",
  21035. extra: 628 / 592,
  21036. bottom: 0.02
  21037. }
  21038. },
  21039. starWarrior: {
  21040. height: math.unit(4 + 5 / 12, "feet"),
  21041. weight: math.unit(50, "lb"),
  21042. name: "Star Warrior",
  21043. image: {
  21044. source: "./media/characters/tahajin/star-warrior.svg"
  21045. }
  21046. },
  21047. },
  21048. [
  21049. {
  21050. name: "Normal",
  21051. height: math.unit(25 + 6 / 12, "feet"),
  21052. default: true
  21053. },
  21054. ]
  21055. ))
  21056. characterMakers.push(() => makeCharacter(
  21057. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21058. {
  21059. front: {
  21060. height: math.unit(8, "feet"),
  21061. weight: math.unit(350, "lb"),
  21062. name: "Front",
  21063. image: {
  21064. source: "./media/characters/gabira/front.svg",
  21065. extra: 608 / 580,
  21066. bottom: 0.03
  21067. }
  21068. },
  21069. back: {
  21070. height: math.unit(8, "feet"),
  21071. weight: math.unit(350, "lb"),
  21072. name: "Back",
  21073. image: {
  21074. source: "./media/characters/gabira/back.svg",
  21075. extra: 608 / 580,
  21076. bottom: 0.03
  21077. }
  21078. },
  21079. },
  21080. [
  21081. {
  21082. name: "Normal",
  21083. height: math.unit(8, "feet"),
  21084. default: true
  21085. },
  21086. ]
  21087. ))
  21088. characterMakers.push(() => makeCharacter(
  21089. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21090. {
  21091. front: {
  21092. height: math.unit(5 + 3 / 12, "feet"),
  21093. weight: math.unit(137, "lb"),
  21094. name: "Front",
  21095. image: {
  21096. source: "./media/characters/sasha-katraine/front.svg",
  21097. bottom: 0.045
  21098. }
  21099. },
  21100. },
  21101. [
  21102. {
  21103. name: "Micro",
  21104. height: math.unit(5, "inches")
  21105. },
  21106. {
  21107. name: "Normal",
  21108. height: math.unit(5 + 3 / 12, "feet"),
  21109. default: true
  21110. },
  21111. ]
  21112. ))
  21113. characterMakers.push(() => makeCharacter(
  21114. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21115. {
  21116. side: {
  21117. height: math.unit(4, "inches"),
  21118. weight: math.unit(200, "grams"),
  21119. name: "Side",
  21120. image: {
  21121. source: "./media/characters/der/side.svg",
  21122. extra: 719 / 400,
  21123. bottom: 30.6 / 749.9187
  21124. }
  21125. },
  21126. },
  21127. [
  21128. {
  21129. name: "Micro",
  21130. height: math.unit(4, "inches"),
  21131. default: true
  21132. },
  21133. ]
  21134. ))
  21135. characterMakers.push(() => makeCharacter(
  21136. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21137. {
  21138. side: {
  21139. height: math.unit(30, "meters"),
  21140. weight: math.unit(700, "tonnes"),
  21141. name: "Side",
  21142. image: {
  21143. source: "./media/characters/fixerdragon/side.svg",
  21144. extra: (1293.0514 - 116.03) / 1106.86,
  21145. bottom: 116.03 / 1293.0514
  21146. }
  21147. },
  21148. },
  21149. [
  21150. {
  21151. name: "Planck",
  21152. height: math.unit(1.6e-35, "meters")
  21153. },
  21154. {
  21155. name: "Micro",
  21156. height: math.unit(0.4, "meters")
  21157. },
  21158. {
  21159. name: "Normal",
  21160. height: math.unit(30, "meters"),
  21161. default: true
  21162. },
  21163. {
  21164. name: "Megamacro",
  21165. height: math.unit(1.2, "megameters")
  21166. },
  21167. {
  21168. name: "Teramacro",
  21169. height: math.unit(130, "terameters")
  21170. },
  21171. {
  21172. name: "Yottamacro",
  21173. height: math.unit(6200, "yottameters")
  21174. },
  21175. ]
  21176. ));
  21177. characterMakers.push(() => makeCharacter(
  21178. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21179. {
  21180. front: {
  21181. height: math.unit(8, "feet"),
  21182. weight: math.unit(250, "lb"),
  21183. name: "Front",
  21184. image: {
  21185. source: "./media/characters/kite/front.svg",
  21186. extra: 2796 / 2659,
  21187. bottom: 0.002
  21188. }
  21189. },
  21190. },
  21191. [
  21192. {
  21193. name: "Normal",
  21194. height: math.unit(8, "feet"),
  21195. default: true
  21196. },
  21197. {
  21198. name: "Macro",
  21199. height: math.unit(360, "feet")
  21200. },
  21201. {
  21202. name: "Megamacro",
  21203. height: math.unit(1500, "feet")
  21204. },
  21205. ]
  21206. ))
  21207. characterMakers.push(() => makeCharacter(
  21208. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21209. {
  21210. front: {
  21211. height: math.unit(5 + 10 / 12, "feet"),
  21212. weight: math.unit(150, "lb"),
  21213. name: "Front",
  21214. image: {
  21215. source: "./media/characters/poojawa-vynar/front.svg",
  21216. extra: (1506.1547 - 55) / 1356.6,
  21217. bottom: 55 / 1506.1547
  21218. }
  21219. },
  21220. frontTailless: {
  21221. height: math.unit(5 + 10 / 12, "feet"),
  21222. weight: math.unit(150, "lb"),
  21223. name: "Front (Tailless)",
  21224. image: {
  21225. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21226. extra: (1506.1547 - 55) / 1356.6,
  21227. bottom: 55 / 1506.1547
  21228. }
  21229. },
  21230. },
  21231. [
  21232. {
  21233. name: "Normal",
  21234. height: math.unit(5 + 10 / 12, "feet"),
  21235. default: true
  21236. },
  21237. ]
  21238. ))
  21239. characterMakers.push(() => makeCharacter(
  21240. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21241. {
  21242. front: {
  21243. height: math.unit(293, "meters"),
  21244. weight: math.unit(70400, "tons"),
  21245. name: "Front",
  21246. image: {
  21247. source: "./media/characters/violette/front.svg",
  21248. extra: 1227 / 1180,
  21249. bottom: 0.005
  21250. }
  21251. },
  21252. back: {
  21253. height: math.unit(293, "meters"),
  21254. weight: math.unit(70400, "tons"),
  21255. name: "Back",
  21256. image: {
  21257. source: "./media/characters/violette/back.svg",
  21258. extra: 1227 / 1180,
  21259. bottom: 0.005
  21260. }
  21261. },
  21262. },
  21263. [
  21264. {
  21265. name: "Macro",
  21266. height: math.unit(293, "meters"),
  21267. default: true
  21268. },
  21269. ]
  21270. ))
  21271. characterMakers.push(() => makeCharacter(
  21272. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21273. {
  21274. front: {
  21275. height: math.unit(1050, "feet"),
  21276. weight: math.unit(200000, "tons"),
  21277. name: "Front",
  21278. image: {
  21279. source: "./media/characters/alessandra/front.svg",
  21280. extra: 960 / 912,
  21281. bottom: 0.06
  21282. }
  21283. },
  21284. },
  21285. [
  21286. {
  21287. name: "Macro",
  21288. height: math.unit(1050, "feet")
  21289. },
  21290. {
  21291. name: "Macro+",
  21292. height: math.unit(900, "meters"),
  21293. default: true
  21294. },
  21295. ]
  21296. ))
  21297. characterMakers.push(() => makeCharacter(
  21298. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21299. {
  21300. front: {
  21301. height: math.unit(5, "feet"),
  21302. weight: math.unit(187, "lb"),
  21303. name: "Front",
  21304. image: {
  21305. source: "./media/characters/person/front.svg",
  21306. extra: 3087 / 2945,
  21307. bottom: 91 / 3181
  21308. }
  21309. },
  21310. },
  21311. [
  21312. {
  21313. name: "Micro",
  21314. height: math.unit(3, "inches")
  21315. },
  21316. {
  21317. name: "Normal",
  21318. height: math.unit(5, "feet"),
  21319. default: true
  21320. },
  21321. {
  21322. name: "Macro",
  21323. height: math.unit(90, "feet")
  21324. },
  21325. {
  21326. name: "Max Size",
  21327. height: math.unit(280, "feet")
  21328. },
  21329. ]
  21330. ))
  21331. characterMakers.push(() => makeCharacter(
  21332. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21333. {
  21334. front: {
  21335. height: math.unit(4.5, "meters"),
  21336. weight: math.unit(3200, "lb"),
  21337. name: "Front",
  21338. image: {
  21339. source: "./media/characters/ty/front.svg",
  21340. extra: 1038 / 960,
  21341. bottom: 31.156 / 1068
  21342. }
  21343. },
  21344. back: {
  21345. height: math.unit(4.5, "meters"),
  21346. weight: math.unit(3200, "lb"),
  21347. name: "Back",
  21348. image: {
  21349. source: "./media/characters/ty/back.svg",
  21350. extra: 1044 / 966,
  21351. bottom: 7.48 / 1049
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(4.5, "meters"),
  21359. default: true
  21360. },
  21361. ]
  21362. ))
  21363. characterMakers.push(() => makeCharacter(
  21364. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21365. {
  21366. front: {
  21367. height: math.unit(5 + 4 / 12, "feet"),
  21368. weight: math.unit(115, "lb"),
  21369. name: "Front",
  21370. image: {
  21371. source: "./media/characters/rocky/front.svg",
  21372. extra: 1012 / 975,
  21373. bottom: 54 / 1066
  21374. }
  21375. },
  21376. },
  21377. [
  21378. {
  21379. name: "Normal",
  21380. height: math.unit(5 + 4 / 12, "feet"),
  21381. default: true
  21382. },
  21383. ]
  21384. ))
  21385. characterMakers.push(() => makeCharacter(
  21386. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21387. {
  21388. upright: {
  21389. height: math.unit(6, "meters"),
  21390. weight: math.unit(4000, "kg"),
  21391. name: "Upright",
  21392. image: {
  21393. source: "./media/characters/ruin/upright.svg",
  21394. extra: 668 / 661,
  21395. bottom: 42 / 799.8396
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(6, "meters"),
  21403. default: true
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21409. {
  21410. front: {
  21411. height: math.unit(5, "feet"),
  21412. weight: math.unit(106, "lb"),
  21413. name: "Front",
  21414. image: {
  21415. source: "./media/characters/robin/front.svg",
  21416. extra: 862 / 799,
  21417. bottom: 42.4 / 914.8856
  21418. }
  21419. },
  21420. },
  21421. [
  21422. {
  21423. name: "Normal",
  21424. height: math.unit(5, "feet"),
  21425. default: true
  21426. },
  21427. ]
  21428. ))
  21429. characterMakers.push(() => makeCharacter(
  21430. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21431. {
  21432. side: {
  21433. height: math.unit(3, "feet"),
  21434. weight: math.unit(225, "lb"),
  21435. name: "Side",
  21436. image: {
  21437. source: "./media/characters/saian/side.svg",
  21438. extra: 566 / 356,
  21439. bottom: 79.7 / 643
  21440. }
  21441. },
  21442. maw: {
  21443. height: math.unit(2.85, "feet"),
  21444. name: "Maw",
  21445. image: {
  21446. source: "./media/characters/saian/maw.svg"
  21447. }
  21448. },
  21449. },
  21450. [
  21451. {
  21452. name: "Normal",
  21453. height: math.unit(3, "feet"),
  21454. default: true
  21455. },
  21456. ]
  21457. ))
  21458. characterMakers.push(() => makeCharacter(
  21459. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21460. {
  21461. side: {
  21462. height: math.unit(8, "feet"),
  21463. weight: math.unit(300, "lb"),
  21464. name: "Side",
  21465. image: {
  21466. source: "./media/characters/equus-silvermane/side.svg",
  21467. extra: 2176 / 2050,
  21468. bottom: 65.7 / 2245
  21469. }
  21470. },
  21471. front: {
  21472. height: math.unit(8, "feet"),
  21473. weight: math.unit(300, "lb"),
  21474. name: "Front",
  21475. image: {
  21476. source: "./media/characters/equus-silvermane/front.svg",
  21477. extra: 4633 / 4400,
  21478. bottom: 71.3 / 4706.915
  21479. }
  21480. },
  21481. sideStepping: {
  21482. height: math.unit(8, "feet"),
  21483. weight: math.unit(300, "lb"),
  21484. name: "Side (Stepping)",
  21485. image: {
  21486. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21487. extra: 1968 / 1860,
  21488. bottom: 16.4 / 1989
  21489. }
  21490. },
  21491. },
  21492. [
  21493. {
  21494. name: "Normal",
  21495. height: math.unit(8, "feet")
  21496. },
  21497. {
  21498. name: "Minimacro",
  21499. height: math.unit(75, "feet"),
  21500. default: true
  21501. },
  21502. {
  21503. name: "Macro",
  21504. height: math.unit(150, "feet")
  21505. },
  21506. {
  21507. name: "Macro+",
  21508. height: math.unit(1000, "feet")
  21509. },
  21510. {
  21511. name: "Megamacro",
  21512. height: math.unit(1, "mile")
  21513. },
  21514. ]
  21515. ))
  21516. characterMakers.push(() => makeCharacter(
  21517. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21518. {
  21519. side: {
  21520. height: math.unit(20, "feet"),
  21521. weight: math.unit(30000, "kg"),
  21522. name: "Side",
  21523. image: {
  21524. source: "./media/characters/windar/side.svg",
  21525. extra: 1491 / 1248,
  21526. bottom: 82.56 / 1568
  21527. }
  21528. },
  21529. },
  21530. [
  21531. {
  21532. name: "Normal",
  21533. height: math.unit(20, "feet"),
  21534. default: true
  21535. },
  21536. ]
  21537. ))
  21538. characterMakers.push(() => makeCharacter(
  21539. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21540. {
  21541. side: {
  21542. height: math.unit(15.66, "feet"),
  21543. weight: math.unit(150, "lb"),
  21544. name: "Side",
  21545. image: {
  21546. source: "./media/characters/melody/side.svg",
  21547. extra: 1097 / 944,
  21548. bottom: 11.8 / 1109
  21549. }
  21550. },
  21551. sideOutfit: {
  21552. height: math.unit(15.66, "feet"),
  21553. weight: math.unit(150, "lb"),
  21554. name: "Side (Outfit)",
  21555. image: {
  21556. source: "./media/characters/melody/side-outfit.svg",
  21557. extra: 1097 / 944,
  21558. bottom: 11.8 / 1109
  21559. }
  21560. },
  21561. },
  21562. [
  21563. {
  21564. name: "Normal",
  21565. height: math.unit(15.66, "feet"),
  21566. default: true
  21567. },
  21568. ]
  21569. ))
  21570. characterMakers.push(() => makeCharacter(
  21571. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21572. {
  21573. front: {
  21574. height: math.unit(8, "feet"),
  21575. weight: math.unit(325, "lb"),
  21576. name: "Front",
  21577. image: {
  21578. source: "./media/characters/windera/front.svg",
  21579. extra: 3180 / 2845,
  21580. bottom: 178 / 3365
  21581. }
  21582. },
  21583. },
  21584. [
  21585. {
  21586. name: "Normal",
  21587. height: math.unit(8, "feet"),
  21588. default: true
  21589. },
  21590. ]
  21591. ))
  21592. characterMakers.push(() => makeCharacter(
  21593. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21594. {
  21595. front: {
  21596. height: math.unit(28.75, "feet"),
  21597. weight: math.unit(2000, "kg"),
  21598. name: "Front",
  21599. image: {
  21600. source: "./media/characters/sonear/front.svg",
  21601. extra: 1041.1 / 964.9,
  21602. bottom: 53.7 / 1096.6
  21603. }
  21604. },
  21605. },
  21606. [
  21607. {
  21608. name: "Normal",
  21609. height: math.unit(28.75, "feet"),
  21610. default: true
  21611. },
  21612. ]
  21613. ))
  21614. characterMakers.push(() => makeCharacter(
  21615. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21616. {
  21617. side: {
  21618. height: math.unit(25.5, "feet"),
  21619. weight: math.unit(23000, "kg"),
  21620. name: "Side",
  21621. image: {
  21622. source: "./media/characters/kanara/side.svg"
  21623. }
  21624. },
  21625. },
  21626. [
  21627. {
  21628. name: "Normal",
  21629. height: math.unit(25.5, "feet"),
  21630. default: true
  21631. },
  21632. ]
  21633. ))
  21634. characterMakers.push(() => makeCharacter(
  21635. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21636. {
  21637. side: {
  21638. height: math.unit(10, "feet"),
  21639. weight: math.unit(1000, "kg"),
  21640. name: "Side",
  21641. image: {
  21642. source: "./media/characters/ereus/side.svg",
  21643. extra: 1157 / 959,
  21644. bottom: 153 / 1312.5
  21645. }
  21646. },
  21647. },
  21648. [
  21649. {
  21650. name: "Normal",
  21651. height: math.unit(10, "feet"),
  21652. default: true
  21653. },
  21654. ]
  21655. ))
  21656. characterMakers.push(() => makeCharacter(
  21657. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21658. {
  21659. side: {
  21660. height: math.unit(4.5, "feet"),
  21661. weight: math.unit(500, "lb"),
  21662. name: "Side",
  21663. image: {
  21664. source: "./media/characters/e-ter/side.svg",
  21665. extra: 1550 / 1248,
  21666. bottom: 146 / 1694
  21667. }
  21668. },
  21669. },
  21670. [
  21671. {
  21672. name: "Normal",
  21673. height: math.unit(4.5, "feet"),
  21674. default: true
  21675. },
  21676. ]
  21677. ))
  21678. characterMakers.push(() => makeCharacter(
  21679. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21680. {
  21681. side: {
  21682. height: math.unit(9.7, "feet"),
  21683. weight: math.unit(4000, "kg"),
  21684. name: "Side",
  21685. image: {
  21686. source: "./media/characters/yamie/side.svg"
  21687. }
  21688. },
  21689. },
  21690. [
  21691. {
  21692. name: "Normal",
  21693. height: math.unit(9.7, "feet"),
  21694. default: true
  21695. },
  21696. ]
  21697. ))
  21698. characterMakers.push(() => makeCharacter(
  21699. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21700. {
  21701. front: {
  21702. height: math.unit(50, "feet"),
  21703. weight: math.unit(50000, "kg"),
  21704. name: "Front",
  21705. image: {
  21706. source: "./media/characters/anders/front.svg",
  21707. extra: 570 / 539,
  21708. bottom: 14.7 / 586.7
  21709. }
  21710. },
  21711. },
  21712. [
  21713. {
  21714. name: "Large",
  21715. height: math.unit(50, "feet")
  21716. },
  21717. {
  21718. name: "Macro",
  21719. height: math.unit(2000, "feet"),
  21720. default: true
  21721. },
  21722. {
  21723. name: "Megamacro",
  21724. height: math.unit(12, "miles")
  21725. },
  21726. ]
  21727. ))
  21728. characterMakers.push(() => makeCharacter(
  21729. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21730. {
  21731. front: {
  21732. height: math.unit(7 + 2 / 12, "feet"),
  21733. weight: math.unit(300, "lb"),
  21734. name: "Front",
  21735. image: {
  21736. source: "./media/characters/reban/front.svg",
  21737. extra: 516 / 487,
  21738. bottom: 42.82 / 558.356
  21739. }
  21740. },
  21741. dick: {
  21742. height: math.unit(7 / 5, "feet"),
  21743. name: "Dick",
  21744. image: {
  21745. source: "./media/characters/reban/dick.svg"
  21746. }
  21747. },
  21748. },
  21749. [
  21750. {
  21751. name: "Natural Height",
  21752. height: math.unit(7 + 2 / 12, "feet")
  21753. },
  21754. {
  21755. name: "Macro",
  21756. height: math.unit(500, "feet"),
  21757. default: true
  21758. },
  21759. {
  21760. name: "Canon Height",
  21761. height: math.unit(50, "AU")
  21762. },
  21763. ]
  21764. ))
  21765. characterMakers.push(() => makeCharacter(
  21766. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21767. {
  21768. front: {
  21769. height: math.unit(6, "feet"),
  21770. weight: math.unit(150, "lb"),
  21771. name: "Front",
  21772. image: {
  21773. source: "./media/characters/terrance-keayes/front.svg",
  21774. extra: 1.005,
  21775. bottom: 151 / 1615
  21776. }
  21777. },
  21778. side: {
  21779. height: math.unit(6, "feet"),
  21780. weight: math.unit(150, "lb"),
  21781. name: "Side",
  21782. image: {
  21783. source: "./media/characters/terrance-keayes/side.svg",
  21784. extra: 1.005,
  21785. bottom: 129.4 / 1544
  21786. }
  21787. },
  21788. back: {
  21789. height: math.unit(6, "feet"),
  21790. weight: math.unit(150, "lb"),
  21791. name: "Back",
  21792. image: {
  21793. source: "./media/characters/terrance-keayes/back.svg",
  21794. extra: 1.005,
  21795. bottom: 58.4 / 1557.3
  21796. }
  21797. },
  21798. dick: {
  21799. height: math.unit(6 * 0.208, "feet"),
  21800. name: "Dick",
  21801. image: {
  21802. source: "./media/characters/terrance-keayes/dick.svg"
  21803. }
  21804. },
  21805. },
  21806. [
  21807. {
  21808. name: "Canon Height",
  21809. height: math.unit(35, "miles"),
  21810. default: true
  21811. },
  21812. ]
  21813. ))
  21814. characterMakers.push(() => makeCharacter(
  21815. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21816. {
  21817. front: {
  21818. height: math.unit(6, "feet"),
  21819. weight: math.unit(150, "lb"),
  21820. name: "Front",
  21821. image: {
  21822. source: "./media/characters/ofelia/front.svg",
  21823. extra: 546 / 541,
  21824. bottom: 39 / 583
  21825. }
  21826. },
  21827. back: {
  21828. height: math.unit(6, "feet"),
  21829. weight: math.unit(150, "lb"),
  21830. name: "Back",
  21831. image: {
  21832. source: "./media/characters/ofelia/back.svg",
  21833. extra: 564 / 559.5,
  21834. bottom: 8.69 / 573.02
  21835. }
  21836. },
  21837. maw: {
  21838. height: math.unit(1, "feet"),
  21839. name: "Maw",
  21840. image: {
  21841. source: "./media/characters/ofelia/maw.svg"
  21842. }
  21843. },
  21844. foot: {
  21845. height: math.unit(1.949, "feet"),
  21846. name: "Foot",
  21847. image: {
  21848. source: "./media/characters/ofelia/foot.svg"
  21849. }
  21850. },
  21851. },
  21852. [
  21853. {
  21854. name: "Canon Height",
  21855. height: math.unit(2000, "miles"),
  21856. default: true
  21857. },
  21858. ]
  21859. ))
  21860. characterMakers.push(() => makeCharacter(
  21861. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21862. {
  21863. front: {
  21864. height: math.unit(6, "feet"),
  21865. weight: math.unit(150, "lb"),
  21866. name: "Front",
  21867. image: {
  21868. source: "./media/characters/samuel/front.svg",
  21869. extra: 265 / 258,
  21870. bottom: 2 / 266.1566
  21871. }
  21872. },
  21873. },
  21874. [
  21875. {
  21876. name: "Macro",
  21877. height: math.unit(100, "feet"),
  21878. default: true
  21879. },
  21880. {
  21881. name: "Full Size",
  21882. height: math.unit(1000, "miles")
  21883. },
  21884. ]
  21885. ))
  21886. characterMakers.push(() => makeCharacter(
  21887. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21888. {
  21889. front: {
  21890. height: math.unit(6, "feet"),
  21891. weight: math.unit(300, "lb"),
  21892. name: "Front",
  21893. image: {
  21894. source: "./media/characters/beishir-kiel/front.svg",
  21895. extra: 569 / 547,
  21896. bottom: 41.9 / 609
  21897. }
  21898. },
  21899. maw: {
  21900. height: math.unit(6 * 0.202, "feet"),
  21901. name: "Maw",
  21902. image: {
  21903. source: "./media/characters/beishir-kiel/maw.svg"
  21904. }
  21905. },
  21906. },
  21907. [
  21908. {
  21909. name: "Macro",
  21910. height: math.unit(300, "feet"),
  21911. default: true
  21912. },
  21913. ]
  21914. ))
  21915. characterMakers.push(() => makeCharacter(
  21916. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21917. {
  21918. front: {
  21919. height: math.unit(5 + 8 / 12, "feet"),
  21920. weight: math.unit(120, "lb"),
  21921. name: "Front",
  21922. image: {
  21923. source: "./media/characters/logan-grey/front.svg",
  21924. extra: 2539 / 2393,
  21925. bottom: 97.6 / 2636.37
  21926. }
  21927. },
  21928. frontAlt: {
  21929. height: math.unit(5 + 8 / 12, "feet"),
  21930. weight: math.unit(120, "lb"),
  21931. name: "Front (Alt)",
  21932. image: {
  21933. source: "./media/characters/logan-grey/front-alt.svg",
  21934. extra: 958 / 893,
  21935. bottom: 15 / 970.768
  21936. }
  21937. },
  21938. back: {
  21939. height: math.unit(5 + 8 / 12, "feet"),
  21940. weight: math.unit(120, "lb"),
  21941. name: "Back",
  21942. image: {
  21943. source: "./media/characters/logan-grey/back.svg",
  21944. extra: 958 / 893,
  21945. bottom: 2.1881 / 970.9788
  21946. }
  21947. },
  21948. dick: {
  21949. height: math.unit(1.437, "feet"),
  21950. name: "Dick",
  21951. image: {
  21952. source: "./media/characters/logan-grey/dick.svg"
  21953. }
  21954. },
  21955. },
  21956. [
  21957. {
  21958. name: "Normal",
  21959. height: math.unit(5 + 8 / 12, "feet")
  21960. },
  21961. {
  21962. name: "The 500 Foot Femboy",
  21963. height: math.unit(500, "feet"),
  21964. default: true
  21965. },
  21966. {
  21967. name: "Megmacro",
  21968. height: math.unit(20, "miles")
  21969. },
  21970. ]
  21971. ))
  21972. characterMakers.push(() => makeCharacter(
  21973. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21974. {
  21975. front: {
  21976. height: math.unit(8 + 2 / 12, "feet"),
  21977. weight: math.unit(275, "lb"),
  21978. name: "Front",
  21979. image: {
  21980. source: "./media/characters/draganta/front.svg",
  21981. extra: 1177 / 1135,
  21982. bottom: 33.46 / 1212.1
  21983. }
  21984. },
  21985. },
  21986. [
  21987. {
  21988. name: "Normal",
  21989. height: math.unit(8 + 6 / 12, "feet"),
  21990. default: true
  21991. },
  21992. {
  21993. name: "Macro",
  21994. height: math.unit(150, "feet")
  21995. },
  21996. {
  21997. name: "Megamacro",
  21998. height: math.unit(1000, "miles")
  21999. },
  22000. ]
  22001. ))
  22002. characterMakers.push(() => makeCharacter(
  22003. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22004. {
  22005. front: {
  22006. height: math.unit(1.72, "m"),
  22007. weight: math.unit(80, "lb"),
  22008. name: "Front",
  22009. image: {
  22010. source: "./media/characters/voski/front.svg",
  22011. extra: 2076.22 / 2022.4,
  22012. bottom: 102.7 / 2177.3866
  22013. }
  22014. },
  22015. frontNsfw: {
  22016. height: math.unit(1.72, "m"),
  22017. weight: math.unit(80, "lb"),
  22018. name: "Front (NSFW)",
  22019. image: {
  22020. source: "./media/characters/voski/front-nsfw.svg",
  22021. extra: 2076.22 / 2022.4,
  22022. bottom: 102.7 / 2177.3866
  22023. }
  22024. },
  22025. back: {
  22026. height: math.unit(1.72, "m"),
  22027. weight: math.unit(80, "lb"),
  22028. name: "Back",
  22029. image: {
  22030. source: "./media/characters/voski/back.svg",
  22031. extra: 2104 / 2051,
  22032. bottom: 10.45 / 2113.63
  22033. }
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Normal",
  22039. height: math.unit(1.72, "m")
  22040. },
  22041. {
  22042. name: "Macro",
  22043. height: math.unit(55, "m"),
  22044. default: true
  22045. },
  22046. {
  22047. name: "Macro+",
  22048. height: math.unit(300, "m")
  22049. },
  22050. {
  22051. name: "Macro++",
  22052. height: math.unit(700, "m")
  22053. },
  22054. {
  22055. name: "Macro+++",
  22056. height: math.unit(4500, "m")
  22057. },
  22058. {
  22059. name: "Macro++++",
  22060. height: math.unit(45, "km")
  22061. },
  22062. {
  22063. name: "Macro+++++",
  22064. height: math.unit(1220, "km")
  22065. },
  22066. ]
  22067. ))
  22068. characterMakers.push(() => makeCharacter(
  22069. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22070. {
  22071. front: {
  22072. height: math.unit(2.3, "m"),
  22073. weight: math.unit(304, "kg"),
  22074. name: "Front",
  22075. image: {
  22076. source: "./media/characters/icowom-lee/front.svg",
  22077. extra: 985 / 955,
  22078. bottom: 25.4 / 1012
  22079. }
  22080. },
  22081. fronttentacles: {
  22082. height: math.unit(2.3, "m"),
  22083. weight: math.unit(304, "kg"),
  22084. name: "Front-tentacles",
  22085. image: {
  22086. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22087. extra: 985 / 955,
  22088. bottom: 25.4 / 1012
  22089. }
  22090. },
  22091. back: {
  22092. height: math.unit(2.3, "m"),
  22093. weight: math.unit(304, "kg"),
  22094. name: "Back",
  22095. image: {
  22096. source: "./media/characters/icowom-lee/back.svg",
  22097. extra: 975 / 954,
  22098. bottom: 9.5 / 985
  22099. }
  22100. },
  22101. backtentacles: {
  22102. height: math.unit(2.3, "m"),
  22103. weight: math.unit(304, "kg"),
  22104. name: "Back-tentacles",
  22105. image: {
  22106. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22107. extra: 975 / 954,
  22108. bottom: 9.5 / 985
  22109. }
  22110. },
  22111. frontDressed: {
  22112. height: math.unit(2.3, "m"),
  22113. weight: math.unit(304, "kg"),
  22114. name: "Front (Dressed)",
  22115. image: {
  22116. source: "./media/characters/icowom-lee/front-dressed.svg",
  22117. extra: 3076 / 2933,
  22118. bottom: 51.4 / 3125.1889
  22119. }
  22120. },
  22121. rump: {
  22122. height: math.unit(0.776, "meters"),
  22123. name: "Rump",
  22124. image: {
  22125. source: "./media/characters/icowom-lee/rump.svg"
  22126. }
  22127. },
  22128. genitals: {
  22129. height: math.unit(0.78, "meters"),
  22130. name: "Genitals",
  22131. image: {
  22132. source: "./media/characters/icowom-lee/genitals.svg"
  22133. }
  22134. },
  22135. },
  22136. [
  22137. {
  22138. name: "Normal",
  22139. height: math.unit(2.3, "meters"),
  22140. default: true
  22141. },
  22142. {
  22143. name: "Macro",
  22144. height: math.unit(94, "meters"),
  22145. default: true
  22146. },
  22147. ]
  22148. ))
  22149. characterMakers.push(() => makeCharacter(
  22150. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22151. {
  22152. front: {
  22153. height: math.unit(22, "meters"),
  22154. weight: math.unit(21000, "kg"),
  22155. name: "Front",
  22156. image: {
  22157. source: "./media/characters/shock-diamond/front.svg",
  22158. extra: 2204 / 2053,
  22159. bottom: 65 / 2239.47
  22160. }
  22161. },
  22162. frontNude: {
  22163. height: math.unit(22, "meters"),
  22164. weight: math.unit(21000, "kg"),
  22165. name: "Front (Nude)",
  22166. image: {
  22167. source: "./media/characters/shock-diamond/front-nude.svg",
  22168. extra: 2514 / 2285,
  22169. bottom: 13 / 2527.56
  22170. }
  22171. },
  22172. },
  22173. [
  22174. {
  22175. name: "Normal",
  22176. height: math.unit(3, "meters")
  22177. },
  22178. {
  22179. name: "Macro",
  22180. height: math.unit(22, "meters"),
  22181. default: true
  22182. },
  22183. ]
  22184. ))
  22185. characterMakers.push(() => makeCharacter(
  22186. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22187. {
  22188. front: {
  22189. height: math.unit(5 + 4 / 12, "feet"),
  22190. weight: math.unit(120, "lb"),
  22191. name: "Front",
  22192. image: {
  22193. source: "./media/characters/rory/front.svg",
  22194. extra: 589 / 556,
  22195. bottom: 45.7 / 635.76
  22196. }
  22197. },
  22198. frontNude: {
  22199. height: math.unit(5 + 4 / 12, "feet"),
  22200. weight: math.unit(120, "lb"),
  22201. name: "Front (Nude)",
  22202. image: {
  22203. source: "./media/characters/rory/front-nude.svg",
  22204. extra: 589 / 556,
  22205. bottom: 45.7 / 635.76
  22206. }
  22207. },
  22208. side: {
  22209. height: math.unit(5 + 4 / 12, "feet"),
  22210. weight: math.unit(120, "lb"),
  22211. name: "Side",
  22212. image: {
  22213. source: "./media/characters/rory/side.svg",
  22214. extra: 597 / 564,
  22215. bottom: 55 / 653
  22216. }
  22217. },
  22218. back: {
  22219. height: math.unit(5 + 4 / 12, "feet"),
  22220. weight: math.unit(120, "lb"),
  22221. name: "Back",
  22222. image: {
  22223. source: "./media/characters/rory/back.svg",
  22224. extra: 620 / 585,
  22225. bottom: 8.86 / 630.43
  22226. }
  22227. },
  22228. dick: {
  22229. height: math.unit(0.86, "feet"),
  22230. name: "Dick",
  22231. image: {
  22232. source: "./media/characters/rory/dick.svg"
  22233. }
  22234. },
  22235. },
  22236. [
  22237. {
  22238. name: "Normal",
  22239. height: math.unit(5 + 4 / 12, "feet"),
  22240. default: true
  22241. },
  22242. {
  22243. name: "Macro",
  22244. height: math.unit(100, "feet")
  22245. },
  22246. {
  22247. name: "Macro+",
  22248. height: math.unit(140, "feet")
  22249. },
  22250. {
  22251. name: "Macro++",
  22252. height: math.unit(300, "feet")
  22253. },
  22254. ]
  22255. ))
  22256. characterMakers.push(() => makeCharacter(
  22257. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22258. {
  22259. front: {
  22260. height: math.unit(5 + 9 / 12, "feet"),
  22261. weight: math.unit(190, "lb"),
  22262. name: "Front",
  22263. image: {
  22264. source: "./media/characters/sprisk/front.svg",
  22265. extra: 1225 / 1180,
  22266. bottom: 42.7 / 1266.4
  22267. }
  22268. },
  22269. frontNsfw: {
  22270. height: math.unit(5 + 9 / 12, "feet"),
  22271. weight: math.unit(190, "lb"),
  22272. name: "Front (NSFW)",
  22273. image: {
  22274. source: "./media/characters/sprisk/front-nsfw.svg",
  22275. extra: 1225 / 1180,
  22276. bottom: 42.7 / 1266.4
  22277. }
  22278. },
  22279. back: {
  22280. height: math.unit(5 + 9 / 12, "feet"),
  22281. weight: math.unit(190, "lb"),
  22282. name: "Back",
  22283. image: {
  22284. source: "./media/characters/sprisk/back.svg",
  22285. extra: 1247 / 1200,
  22286. bottom: 5.6 / 1253.04
  22287. }
  22288. },
  22289. },
  22290. [
  22291. {
  22292. name: "Tiny",
  22293. height: math.unit(2, "inches")
  22294. },
  22295. {
  22296. name: "Normal",
  22297. height: math.unit(5 + 9 / 12, "feet"),
  22298. default: true
  22299. },
  22300. {
  22301. name: "Mini Macro",
  22302. height: math.unit(18, "feet")
  22303. },
  22304. {
  22305. name: "Macro",
  22306. height: math.unit(100, "feet")
  22307. },
  22308. {
  22309. name: "MACRO",
  22310. height: math.unit(50, "miles")
  22311. },
  22312. {
  22313. name: "M A C R O",
  22314. height: math.unit(300, "miles")
  22315. },
  22316. ]
  22317. ))
  22318. characterMakers.push(() => makeCharacter(
  22319. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22320. {
  22321. side: {
  22322. height: math.unit(15.6, "meters"),
  22323. weight: math.unit(700000, "kg"),
  22324. name: "Side",
  22325. image: {
  22326. source: "./media/characters/bunsen/side.svg",
  22327. extra: 1644 / 358
  22328. }
  22329. },
  22330. foot: {
  22331. height: math.unit(1.611 * 1644 / 358, "meter"),
  22332. name: "Foot",
  22333. image: {
  22334. source: "./media/characters/bunsen/foot.svg"
  22335. }
  22336. },
  22337. },
  22338. [
  22339. {
  22340. name: "Small",
  22341. height: math.unit(10, "feet")
  22342. },
  22343. {
  22344. name: "Normal",
  22345. height: math.unit(15.6, "meters"),
  22346. default: true
  22347. },
  22348. ]
  22349. ))
  22350. characterMakers.push(() => makeCharacter(
  22351. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22352. {
  22353. front: {
  22354. height: math.unit(4 + 11 / 12, "feet"),
  22355. weight: math.unit(140, "lb"),
  22356. name: "Front",
  22357. image: {
  22358. source: "./media/characters/sesh/front.svg",
  22359. extra: 3420 / 3231,
  22360. bottom: 72 / 3949.5
  22361. }
  22362. },
  22363. },
  22364. [
  22365. {
  22366. name: "Normal",
  22367. height: math.unit(4 + 11 / 12, "feet")
  22368. },
  22369. {
  22370. name: "Grown",
  22371. height: math.unit(15, "feet"),
  22372. default: true
  22373. },
  22374. {
  22375. name: "Macro",
  22376. height: math.unit(1500, "feet")
  22377. },
  22378. {
  22379. name: "Megamacro",
  22380. height: math.unit(30, "miles")
  22381. },
  22382. {
  22383. name: "Continental",
  22384. height: math.unit(3000, "miles")
  22385. },
  22386. {
  22387. name: "Gravity Mass",
  22388. height: math.unit(300000, "miles")
  22389. },
  22390. {
  22391. name: "Planet Buster",
  22392. height: math.unit(30000000, "miles")
  22393. },
  22394. {
  22395. name: "Big",
  22396. height: math.unit(3000000000, "miles")
  22397. },
  22398. ]
  22399. ))
  22400. characterMakers.push(() => makeCharacter(
  22401. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22402. {
  22403. front: {
  22404. height: math.unit(9, "feet"),
  22405. weight: math.unit(350, "lb"),
  22406. name: "Front",
  22407. image: {
  22408. source: "./media/characters/pepper/front.svg",
  22409. extra: 1448 / 1312,
  22410. bottom: 9.4 / 1457.88
  22411. }
  22412. },
  22413. back: {
  22414. height: math.unit(9, "feet"),
  22415. weight: math.unit(350, "lb"),
  22416. name: "Back",
  22417. image: {
  22418. source: "./media/characters/pepper/back.svg",
  22419. extra: 1423 / 1300,
  22420. bottom: 4.6 / 1429
  22421. }
  22422. },
  22423. maw: {
  22424. height: math.unit(0.932, "feet"),
  22425. name: "Maw",
  22426. image: {
  22427. source: "./media/characters/pepper/maw.svg"
  22428. }
  22429. },
  22430. },
  22431. [
  22432. {
  22433. name: "Normal",
  22434. height: math.unit(9, "feet"),
  22435. default: true
  22436. },
  22437. ]
  22438. ))
  22439. characterMakers.push(() => makeCharacter(
  22440. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22441. {
  22442. front: {
  22443. height: math.unit(6, "feet"),
  22444. weight: math.unit(150, "lb"),
  22445. name: "Front",
  22446. image: {
  22447. source: "./media/characters/maelstrom/front.svg",
  22448. extra: 2100 / 1883,
  22449. bottom: 94 / 2196.7
  22450. }
  22451. },
  22452. },
  22453. [
  22454. {
  22455. name: "Less Kaiju",
  22456. height: math.unit(200, "feet")
  22457. },
  22458. {
  22459. name: "Kaiju",
  22460. height: math.unit(400, "feet"),
  22461. default: true
  22462. },
  22463. {
  22464. name: "Kaiju-er",
  22465. height: math.unit(600, "feet")
  22466. },
  22467. ]
  22468. ))
  22469. characterMakers.push(() => makeCharacter(
  22470. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22471. {
  22472. front: {
  22473. height: math.unit(6 + 5 / 12, "feet"),
  22474. weight: math.unit(180, "lb"),
  22475. name: "Front",
  22476. image: {
  22477. source: "./media/characters/lexir/front.svg",
  22478. extra: 180 / 172,
  22479. bottom: 12 / 192
  22480. }
  22481. },
  22482. back: {
  22483. height: math.unit(6 + 5 / 12, "feet"),
  22484. weight: math.unit(180, "lb"),
  22485. name: "Back",
  22486. image: {
  22487. source: "./media/characters/lexir/back.svg",
  22488. extra: 183.84 / 175.5,
  22489. bottom: 3.1 / 187
  22490. }
  22491. },
  22492. },
  22493. [
  22494. {
  22495. name: "Very Smal",
  22496. height: math.unit(1, "nm")
  22497. },
  22498. {
  22499. name: "Normal",
  22500. height: math.unit(6 + 5 / 12, "feet"),
  22501. default: true
  22502. },
  22503. {
  22504. name: "Macro",
  22505. height: math.unit(1, "mile")
  22506. },
  22507. {
  22508. name: "Megamacro",
  22509. height: math.unit(50, "miles")
  22510. },
  22511. ]
  22512. ))
  22513. characterMakers.push(() => makeCharacter(
  22514. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22515. {
  22516. front: {
  22517. height: math.unit(1.5, "meters"),
  22518. weight: math.unit(100, "lb"),
  22519. name: "Front",
  22520. image: {
  22521. source: "./media/characters/maksio/front.svg",
  22522. extra: 1549 / 1531,
  22523. bottom: 123.7 / 1674.5429
  22524. }
  22525. },
  22526. back: {
  22527. height: math.unit(1.5, "meters"),
  22528. weight: math.unit(100, "lb"),
  22529. name: "Back",
  22530. image: {
  22531. source: "./media/characters/maksio/back.svg",
  22532. extra: 1541 / 1509,
  22533. bottom: 97 / 1639
  22534. }
  22535. },
  22536. hand: {
  22537. height: math.unit(0.621, "feet"),
  22538. name: "Hand",
  22539. image: {
  22540. source: "./media/characters/maksio/hand.svg"
  22541. }
  22542. },
  22543. foot: {
  22544. height: math.unit(1.611, "feet"),
  22545. name: "Foot",
  22546. image: {
  22547. source: "./media/characters/maksio/foot.svg"
  22548. }
  22549. },
  22550. },
  22551. [
  22552. {
  22553. name: "Shrunken",
  22554. height: math.unit(10, "cm")
  22555. },
  22556. {
  22557. name: "Normal",
  22558. height: math.unit(150, "cm"),
  22559. default: true
  22560. },
  22561. ]
  22562. ))
  22563. characterMakers.push(() => makeCharacter(
  22564. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22565. {
  22566. front: {
  22567. height: math.unit(100, "feet"),
  22568. name: "Front",
  22569. image: {
  22570. source: "./media/characters/erza-bear/front.svg",
  22571. extra: 2449 / 2390,
  22572. bottom: 46 / 2494
  22573. }
  22574. },
  22575. back: {
  22576. height: math.unit(100, "feet"),
  22577. name: "Back",
  22578. image: {
  22579. source: "./media/characters/erza-bear/back.svg",
  22580. extra: 2489 / 2430,
  22581. bottom: 85.4 / 2480
  22582. }
  22583. },
  22584. tail: {
  22585. height: math.unit(42, "feet"),
  22586. name: "Tail",
  22587. image: {
  22588. source: "./media/characters/erza-bear/tail.svg"
  22589. }
  22590. },
  22591. tongue: {
  22592. height: math.unit(8, "feet"),
  22593. name: "Tongue",
  22594. image: {
  22595. source: "./media/characters/erza-bear/tongue.svg"
  22596. }
  22597. },
  22598. dick: {
  22599. height: math.unit(10.5, "feet"),
  22600. name: "Dick",
  22601. image: {
  22602. source: "./media/characters/erza-bear/dick.svg"
  22603. }
  22604. },
  22605. dickVertical: {
  22606. height: math.unit(16.9, "feet"),
  22607. name: "Dick (Vertical)",
  22608. image: {
  22609. source: "./media/characters/erza-bear/dick-vertical.svg"
  22610. }
  22611. },
  22612. },
  22613. [
  22614. {
  22615. name: "Macro",
  22616. height: math.unit(100, "feet"),
  22617. default: true
  22618. },
  22619. ]
  22620. ))
  22621. characterMakers.push(() => makeCharacter(
  22622. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22623. {
  22624. front: {
  22625. height: math.unit(172, "cm"),
  22626. weight: math.unit(73, "kg"),
  22627. name: "Front",
  22628. image: {
  22629. source: "./media/characters/violet-flor/front.svg",
  22630. extra: 1530 / 1442,
  22631. bottom: 61.9 / 1588.8
  22632. }
  22633. },
  22634. back: {
  22635. height: math.unit(180, "cm"),
  22636. weight: math.unit(73, "kg"),
  22637. name: "Back",
  22638. image: {
  22639. source: "./media/characters/violet-flor/back.svg",
  22640. extra: 1692 / 1630,
  22641. bottom: 20 / 1712
  22642. }
  22643. },
  22644. },
  22645. [
  22646. {
  22647. name: "Normal",
  22648. height: math.unit(172, "cm"),
  22649. default: true
  22650. },
  22651. ]
  22652. ))
  22653. characterMakers.push(() => makeCharacter(
  22654. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22655. {
  22656. front: {
  22657. height: math.unit(6, "feet"),
  22658. weight: math.unit(220, "lb"),
  22659. name: "Front",
  22660. image: {
  22661. source: "./media/characters/lynn-rhea/front.svg",
  22662. extra: 310 / 273
  22663. }
  22664. },
  22665. back: {
  22666. height: math.unit(6, "feet"),
  22667. weight: math.unit(220, "lb"),
  22668. name: "Back",
  22669. image: {
  22670. source: "./media/characters/lynn-rhea/back.svg",
  22671. extra: 310 / 273
  22672. }
  22673. },
  22674. dicks: {
  22675. height: math.unit(0.9, "feet"),
  22676. name: "Dicks",
  22677. image: {
  22678. source: "./media/characters/lynn-rhea/dicks.svg"
  22679. }
  22680. },
  22681. slit: {
  22682. height: math.unit(0.4, "feet"),
  22683. name: "Slit",
  22684. image: {
  22685. source: "./media/characters/lynn-rhea/slit.svg"
  22686. }
  22687. },
  22688. },
  22689. [
  22690. {
  22691. name: "Micro",
  22692. height: math.unit(1, "inch")
  22693. },
  22694. {
  22695. name: "Macro",
  22696. height: math.unit(60, "feet"),
  22697. default: true
  22698. },
  22699. {
  22700. name: "Megamacro",
  22701. height: math.unit(2, "miles")
  22702. },
  22703. {
  22704. name: "Gigamacro",
  22705. height: math.unit(3, "earths")
  22706. },
  22707. {
  22708. name: "Galactic",
  22709. height: math.unit(0.8, "galaxies")
  22710. },
  22711. ]
  22712. ))
  22713. characterMakers.push(() => makeCharacter(
  22714. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22715. {
  22716. front: {
  22717. height: math.unit(1600, "feet"),
  22718. weight: math.unit(85758785169, "kg"),
  22719. name: "Front",
  22720. image: {
  22721. source: "./media/characters/valathos/front.svg",
  22722. extra: 1451 / 1339
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Macro",
  22729. height: math.unit(1600, "feet"),
  22730. default: true
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22736. {
  22737. front: {
  22738. height: math.unit(7 + 5 / 12, "feet"),
  22739. weight: math.unit(300, "lb"),
  22740. name: "Front",
  22741. image: {
  22742. source: "./media/characters/azula/front.svg",
  22743. extra: 3208 / 2880,
  22744. bottom: 80.2 / 3277
  22745. }
  22746. },
  22747. back: {
  22748. height: math.unit(7 + 5 / 12, "feet"),
  22749. weight: math.unit(300, "lb"),
  22750. name: "Back",
  22751. image: {
  22752. source: "./media/characters/azula/back.svg",
  22753. extra: 3169 / 2822,
  22754. bottom: 150.6 / 3321
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Normal",
  22761. height: math.unit(7 + 5 / 12, "feet"),
  22762. default: true
  22763. },
  22764. {
  22765. name: "Big",
  22766. height: math.unit(20, "feet")
  22767. },
  22768. ]
  22769. ))
  22770. characterMakers.push(() => makeCharacter(
  22771. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22772. {
  22773. front: {
  22774. height: math.unit(5 + 1 / 12, "feet"),
  22775. weight: math.unit(110, "lb"),
  22776. name: "Front",
  22777. image: {
  22778. source: "./media/characters/rupert/front.svg",
  22779. extra: 1549 / 1495,
  22780. bottom: 54.2 / 1604.4
  22781. }
  22782. },
  22783. },
  22784. [
  22785. {
  22786. name: "Normal",
  22787. height: math.unit(5 + 1 / 12, "feet"),
  22788. default: true
  22789. },
  22790. ]
  22791. ))
  22792. characterMakers.push(() => makeCharacter(
  22793. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22794. {
  22795. front: {
  22796. height: math.unit(8 + 4 / 12, "feet"),
  22797. weight: math.unit(350, "lb"),
  22798. name: "Front",
  22799. image: {
  22800. source: "./media/characters/sheera-castellar/front.svg",
  22801. extra: 1957 / 1894,
  22802. bottom: 26.97 / 1975.017
  22803. }
  22804. },
  22805. side: {
  22806. height: math.unit(8 + 4 / 12, "feet"),
  22807. weight: math.unit(350, "lb"),
  22808. name: "Side",
  22809. image: {
  22810. source: "./media/characters/sheera-castellar/side.svg",
  22811. extra: 1957 / 1894
  22812. }
  22813. },
  22814. back: {
  22815. height: math.unit(8 + 4 / 12, "feet"),
  22816. weight: math.unit(350, "lb"),
  22817. name: "Back",
  22818. image: {
  22819. source: "./media/characters/sheera-castellar/back.svg",
  22820. extra: 1957 / 1894
  22821. }
  22822. },
  22823. angled: {
  22824. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22825. weight: math.unit(350, "lb"),
  22826. name: "Angled",
  22827. image: {
  22828. source: "./media/characters/sheera-castellar/angled.svg",
  22829. extra: 1807 / 1707,
  22830. bottom: 68 / 1875
  22831. }
  22832. },
  22833. genitals: {
  22834. height: math.unit(2.2, "feet"),
  22835. name: "Genitals",
  22836. image: {
  22837. source: "./media/characters/sheera-castellar/genitals.svg"
  22838. }
  22839. },
  22840. taur: {
  22841. height: math.unit(10 + 6/12, "feet"),
  22842. name: "Taur",
  22843. image: {
  22844. source: "./media/characters/sheera-castellar/taur.svg",
  22845. extra: 2017/1909,
  22846. bottom: 185/2202
  22847. }
  22848. },
  22849. },
  22850. [
  22851. {
  22852. name: "Normal",
  22853. height: math.unit(8 + 4 / 12, "feet")
  22854. },
  22855. {
  22856. name: "Macro",
  22857. height: math.unit(150, "feet"),
  22858. default: true
  22859. },
  22860. {
  22861. name: "Macro+",
  22862. height: math.unit(800, "feet")
  22863. },
  22864. ]
  22865. ))
  22866. characterMakers.push(() => makeCharacter(
  22867. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22868. {
  22869. front: {
  22870. height: math.unit(6, "feet"),
  22871. weight: math.unit(150, "lb"),
  22872. name: "Front",
  22873. image: {
  22874. source: "./media/characters/jaipur/front.svg",
  22875. extra: 3860 / 3731,
  22876. bottom: 287 / 4140
  22877. }
  22878. },
  22879. back: {
  22880. height: math.unit(6, "feet"),
  22881. weight: math.unit(150, "lb"),
  22882. name: "Back",
  22883. image: {
  22884. source: "./media/characters/jaipur/back.svg",
  22885. extra: 4060 / 3930,
  22886. bottom: 151 / 4200
  22887. }
  22888. },
  22889. },
  22890. [
  22891. {
  22892. name: "Normal",
  22893. height: math.unit(1.85, "meters"),
  22894. default: true
  22895. },
  22896. {
  22897. name: "Macro",
  22898. height: math.unit(150, "meters")
  22899. },
  22900. {
  22901. name: "Macro+",
  22902. height: math.unit(0.5, "miles")
  22903. },
  22904. {
  22905. name: "Macro++",
  22906. height: math.unit(2.5, "miles")
  22907. },
  22908. {
  22909. name: "Macro+++",
  22910. height: math.unit(12, "miles")
  22911. },
  22912. {
  22913. name: "Macro++++",
  22914. height: math.unit(120, "miles")
  22915. },
  22916. {
  22917. name: "Macro+++++",
  22918. height: math.unit(1200, "miles")
  22919. },
  22920. ]
  22921. ))
  22922. characterMakers.push(() => makeCharacter(
  22923. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22924. {
  22925. front: {
  22926. height: math.unit(6, "feet"),
  22927. weight: math.unit(150, "lb"),
  22928. name: "Front",
  22929. image: {
  22930. source: "./media/characters/sheila-wolf/front.svg",
  22931. extra: 1931 / 1808,
  22932. bottom: 29.5 / 1960
  22933. }
  22934. },
  22935. dick: {
  22936. height: math.unit(1.464, "feet"),
  22937. name: "Dick",
  22938. image: {
  22939. source: "./media/characters/sheila-wolf/dick.svg"
  22940. }
  22941. },
  22942. muzzle: {
  22943. height: math.unit(0.513, "feet"),
  22944. name: "Muzzle",
  22945. image: {
  22946. source: "./media/characters/sheila-wolf/muzzle.svg"
  22947. }
  22948. },
  22949. },
  22950. [
  22951. {
  22952. name: "Macro",
  22953. height: math.unit(70, "feet"),
  22954. default: true
  22955. },
  22956. ]
  22957. ))
  22958. characterMakers.push(() => makeCharacter(
  22959. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22960. {
  22961. front: {
  22962. height: math.unit(32, "meters"),
  22963. weight: math.unit(300000, "kg"),
  22964. name: "Front",
  22965. image: {
  22966. source: "./media/characters/almor/front.svg",
  22967. extra: 1408 / 1322,
  22968. bottom: 94.6 / 1506.5
  22969. }
  22970. },
  22971. },
  22972. [
  22973. {
  22974. name: "Macro",
  22975. height: math.unit(32, "meters"),
  22976. default: true
  22977. },
  22978. ]
  22979. ))
  22980. characterMakers.push(() => makeCharacter(
  22981. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22982. {
  22983. front: {
  22984. height: math.unit(7, "feet"),
  22985. weight: math.unit(200, "lb"),
  22986. name: "Front",
  22987. image: {
  22988. source: "./media/characters/silver/front.svg",
  22989. extra: 472.1 / 450.5,
  22990. bottom: 26.5 / 499.424
  22991. }
  22992. },
  22993. },
  22994. [
  22995. {
  22996. name: "Normal",
  22997. height: math.unit(7, "feet"),
  22998. default: true
  22999. },
  23000. {
  23001. name: "Macro",
  23002. height: math.unit(800, "feet")
  23003. },
  23004. {
  23005. name: "Megamacro",
  23006. height: math.unit(250, "miles")
  23007. },
  23008. ]
  23009. ))
  23010. characterMakers.push(() => makeCharacter(
  23011. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23012. {
  23013. front: {
  23014. height: math.unit(6, "feet"),
  23015. weight: math.unit(150, "lb"),
  23016. name: "Front",
  23017. image: {
  23018. source: "./media/characters/pliskin/front.svg",
  23019. extra: 1469 / 1359,
  23020. bottom: 70 / 1540
  23021. }
  23022. },
  23023. },
  23024. [
  23025. {
  23026. name: "Micro",
  23027. height: math.unit(3, "inches")
  23028. },
  23029. {
  23030. name: "Normal",
  23031. height: math.unit(5 + 11 / 12, "feet"),
  23032. default: true
  23033. },
  23034. {
  23035. name: "Macro",
  23036. height: math.unit(120, "feet")
  23037. },
  23038. ]
  23039. ))
  23040. characterMakers.push(() => makeCharacter(
  23041. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23042. {
  23043. front: {
  23044. height: math.unit(6, "feet"),
  23045. weight: math.unit(150, "lb"),
  23046. name: "Front",
  23047. image: {
  23048. source: "./media/characters/sammy/front.svg",
  23049. extra: 1193 / 1089,
  23050. bottom: 30.5 / 1226
  23051. }
  23052. },
  23053. },
  23054. [
  23055. {
  23056. name: "Macro",
  23057. height: math.unit(1700, "feet"),
  23058. default: true
  23059. },
  23060. {
  23061. name: "Examacro",
  23062. height: math.unit(2.5e9, "lightyears")
  23063. },
  23064. ]
  23065. ))
  23066. characterMakers.push(() => makeCharacter(
  23067. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23068. {
  23069. front: {
  23070. height: math.unit(21, "meters"),
  23071. weight: math.unit(12, "tonnes"),
  23072. name: "Front",
  23073. image: {
  23074. source: "./media/characters/kuru/front.svg",
  23075. extra: 4301 / 3785,
  23076. bottom: 371.3 / 4691
  23077. }
  23078. },
  23079. },
  23080. [
  23081. {
  23082. name: "Macro",
  23083. height: math.unit(21, "meters"),
  23084. default: true
  23085. },
  23086. ]
  23087. ))
  23088. characterMakers.push(() => makeCharacter(
  23089. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23090. {
  23091. front: {
  23092. height: math.unit(23, "meters"),
  23093. weight: math.unit(12.2, "tonnes"),
  23094. name: "Front",
  23095. image: {
  23096. source: "./media/characters/rakka/front.svg",
  23097. extra: 4670 / 4169,
  23098. bottom: 301 / 4968.7
  23099. }
  23100. },
  23101. },
  23102. [
  23103. {
  23104. name: "Macro",
  23105. height: math.unit(23, "meters"),
  23106. default: true
  23107. },
  23108. ]
  23109. ))
  23110. characterMakers.push(() => makeCharacter(
  23111. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23112. {
  23113. front: {
  23114. height: math.unit(6, "feet"),
  23115. weight: math.unit(150, "lb"),
  23116. name: "Front",
  23117. image: {
  23118. source: "./media/characters/rhys-feline/front.svg",
  23119. extra: 2488 / 2308,
  23120. bottom: 35.67 / 2519.19
  23121. }
  23122. },
  23123. },
  23124. [
  23125. {
  23126. name: "Really Small",
  23127. height: math.unit(1, "nm")
  23128. },
  23129. {
  23130. name: "Micro",
  23131. height: math.unit(4, "inches")
  23132. },
  23133. {
  23134. name: "Normal",
  23135. height: math.unit(4 + 10 / 12, "feet"),
  23136. default: true
  23137. },
  23138. {
  23139. name: "Macro",
  23140. height: math.unit(100, "feet")
  23141. },
  23142. {
  23143. name: "Megamacto",
  23144. height: math.unit(50, "miles")
  23145. },
  23146. ]
  23147. ))
  23148. characterMakers.push(() => makeCharacter(
  23149. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23150. {
  23151. side: {
  23152. height: math.unit(30, "feet"),
  23153. weight: math.unit(35000, "kg"),
  23154. name: "Side",
  23155. image: {
  23156. source: "./media/characters/alydar/side.svg",
  23157. extra: 234 / 222,
  23158. bottom: 6.5 / 241
  23159. }
  23160. },
  23161. front: {
  23162. height: math.unit(30, "feet"),
  23163. weight: math.unit(35000, "kg"),
  23164. name: "Front",
  23165. image: {
  23166. source: "./media/characters/alydar/front.svg",
  23167. extra: 223.37 / 210.2,
  23168. bottom: 22.3 / 246.76
  23169. }
  23170. },
  23171. top: {
  23172. height: math.unit(64.54, "feet"),
  23173. weight: math.unit(35000, "kg"),
  23174. name: "Top",
  23175. image: {
  23176. source: "./media/characters/alydar/top.svg"
  23177. }
  23178. },
  23179. anthro: {
  23180. height: math.unit(30, "feet"),
  23181. weight: math.unit(9000, "kg"),
  23182. name: "Anthro",
  23183. image: {
  23184. source: "./media/characters/alydar/anthro.svg",
  23185. extra: 432 / 421,
  23186. bottom: 7.18 / 440
  23187. }
  23188. },
  23189. maw: {
  23190. height: math.unit(11.693, "feet"),
  23191. name: "Maw",
  23192. image: {
  23193. source: "./media/characters/alydar/maw.svg"
  23194. }
  23195. },
  23196. head: {
  23197. height: math.unit(11.693, "feet"),
  23198. name: "Head",
  23199. image: {
  23200. source: "./media/characters/alydar/head.svg"
  23201. }
  23202. },
  23203. headAlt: {
  23204. height: math.unit(12.861, "feet"),
  23205. name: "Head (Alt)",
  23206. image: {
  23207. source: "./media/characters/alydar/head-alt.svg"
  23208. }
  23209. },
  23210. wing: {
  23211. height: math.unit(20.712, "feet"),
  23212. name: "Wing",
  23213. image: {
  23214. source: "./media/characters/alydar/wing.svg"
  23215. }
  23216. },
  23217. wingFeather: {
  23218. height: math.unit(9.662, "feet"),
  23219. name: "Wing Feather",
  23220. image: {
  23221. source: "./media/characters/alydar/wing-feather.svg"
  23222. }
  23223. },
  23224. countourFeather: {
  23225. height: math.unit(4.154, "feet"),
  23226. name: "Contour Feather",
  23227. image: {
  23228. source: "./media/characters/alydar/contour-feather.svg"
  23229. }
  23230. },
  23231. },
  23232. [
  23233. {
  23234. name: "Diplomatic",
  23235. height: math.unit(13, "feet"),
  23236. default: true
  23237. },
  23238. {
  23239. name: "Small",
  23240. height: math.unit(30, "feet")
  23241. },
  23242. {
  23243. name: "Normal",
  23244. height: math.unit(95, "feet"),
  23245. default: true
  23246. },
  23247. {
  23248. name: "Large",
  23249. height: math.unit(285, "feet")
  23250. },
  23251. {
  23252. name: "Incomprehensible",
  23253. height: math.unit(450, "megameters")
  23254. },
  23255. ]
  23256. ))
  23257. characterMakers.push(() => makeCharacter(
  23258. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23259. {
  23260. side: {
  23261. height: math.unit(11, "feet"),
  23262. weight: math.unit(1750, "kg"),
  23263. name: "Side",
  23264. image: {
  23265. source: "./media/characters/selicia/side.svg",
  23266. extra: 440 / 396,
  23267. bottom: 24.8 / 465.979
  23268. }
  23269. },
  23270. maw: {
  23271. height: math.unit(4.665, "feet"),
  23272. name: "Maw",
  23273. image: {
  23274. source: "./media/characters/selicia/maw.svg"
  23275. }
  23276. },
  23277. },
  23278. [
  23279. {
  23280. name: "Normal",
  23281. height: math.unit(11, "feet"),
  23282. default: true
  23283. },
  23284. ]
  23285. ))
  23286. characterMakers.push(() => makeCharacter(
  23287. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23288. {
  23289. side: {
  23290. height: math.unit(2 + 6 / 12, "feet"),
  23291. weight: math.unit(30, "lb"),
  23292. name: "Side",
  23293. image: {
  23294. source: "./media/characters/layla/side.svg",
  23295. extra: 244 / 188,
  23296. bottom: 18.2 / 262.1
  23297. }
  23298. },
  23299. back: {
  23300. height: math.unit(2 + 6 / 12, "feet"),
  23301. weight: math.unit(30, "lb"),
  23302. name: "Back",
  23303. image: {
  23304. source: "./media/characters/layla/back.svg",
  23305. extra: 308 / 241.5,
  23306. bottom: 8.9 / 316.8
  23307. }
  23308. },
  23309. cumming: {
  23310. height: math.unit(2 + 6 / 12, "feet"),
  23311. weight: math.unit(30, "lb"),
  23312. name: "Cumming",
  23313. image: {
  23314. source: "./media/characters/layla/cumming.svg",
  23315. extra: 342 / 279,
  23316. bottom: 595 / 938
  23317. }
  23318. },
  23319. dickFlaccid: {
  23320. height: math.unit(2.595, "feet"),
  23321. name: "Flaccid Genitals",
  23322. image: {
  23323. source: "./media/characters/layla/dick-flaccid.svg"
  23324. }
  23325. },
  23326. dickErect: {
  23327. height: math.unit(2.359, "feet"),
  23328. name: "Erect Genitals",
  23329. image: {
  23330. source: "./media/characters/layla/dick-erect.svg"
  23331. }
  23332. },
  23333. dragon: {
  23334. height: math.unit(40, "feet"),
  23335. name: "Dragon",
  23336. image: {
  23337. source: "./media/characters/layla/dragon.svg",
  23338. extra: 610/535,
  23339. bottom: 367/977
  23340. }
  23341. },
  23342. taur: {
  23343. height: math.unit(30, "feet"),
  23344. name: "Taur",
  23345. image: {
  23346. source: "./media/characters/layla/taur.svg",
  23347. extra: 1268/1199,
  23348. bottom: 112/1380
  23349. }
  23350. },
  23351. },
  23352. [
  23353. {
  23354. name: "Micro",
  23355. height: math.unit(1, "inch")
  23356. },
  23357. {
  23358. name: "Small",
  23359. height: math.unit(1, "foot")
  23360. },
  23361. {
  23362. name: "Normal",
  23363. height: math.unit(2 + 6 / 12, "feet"),
  23364. default: true
  23365. },
  23366. {
  23367. name: "Macro",
  23368. height: math.unit(200, "feet")
  23369. },
  23370. {
  23371. name: "Megamacro",
  23372. height: math.unit(1000, "miles")
  23373. },
  23374. {
  23375. name: "Planetary",
  23376. height: math.unit(8000, "miles")
  23377. },
  23378. {
  23379. name: "True Layla",
  23380. height: math.unit(200000 * 7, "multiverses")
  23381. },
  23382. ]
  23383. ))
  23384. characterMakers.push(() => makeCharacter(
  23385. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23386. {
  23387. back: {
  23388. height: math.unit(10.5, "feet"),
  23389. weight: math.unit(800, "lb"),
  23390. name: "Back",
  23391. image: {
  23392. source: "./media/characters/knox/back.svg",
  23393. extra: 1486 / 1089,
  23394. bottom: 107 / 1601.4
  23395. }
  23396. },
  23397. side: {
  23398. height: math.unit(10.5, "feet"),
  23399. weight: math.unit(800, "lb"),
  23400. name: "Side",
  23401. image: {
  23402. source: "./media/characters/knox/side.svg",
  23403. extra: 244 / 218,
  23404. bottom: 14 / 260
  23405. }
  23406. },
  23407. },
  23408. [
  23409. {
  23410. name: "Compact",
  23411. height: math.unit(10.5, "feet"),
  23412. default: true
  23413. },
  23414. {
  23415. name: "Dynamax",
  23416. height: math.unit(210, "feet")
  23417. },
  23418. {
  23419. name: "Full Macro",
  23420. height: math.unit(850, "feet")
  23421. },
  23422. ]
  23423. ))
  23424. characterMakers.push(() => makeCharacter(
  23425. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23426. {
  23427. front: {
  23428. height: math.unit(6, "feet"),
  23429. weight: math.unit(152, "lb"),
  23430. name: "Front",
  23431. image: {
  23432. source: "./media/characters/shin-pikachu/front.svg",
  23433. extra: 1854/1602,
  23434. bottom: 166/2020
  23435. }
  23436. },
  23437. hand: {
  23438. height: math.unit(1.055, "feet"),
  23439. name: "Hand",
  23440. image: {
  23441. source: "./media/characters/shin-pikachu/hand.svg"
  23442. }
  23443. },
  23444. foot: {
  23445. height: math.unit(1.1, "feet"),
  23446. name: "Foot",
  23447. image: {
  23448. source: "./media/characters/shin-pikachu/foot.svg"
  23449. }
  23450. },
  23451. collar: {
  23452. height: math.unit(0.386, "feet"),
  23453. name: "Collar",
  23454. image: {
  23455. source: "./media/characters/shin-pikachu/collar.svg"
  23456. }
  23457. },
  23458. },
  23459. [
  23460. {
  23461. name: "Smallest",
  23462. height: math.unit(0.5, "inches")
  23463. },
  23464. {
  23465. name: "Micro",
  23466. height: math.unit(6, "inches")
  23467. },
  23468. {
  23469. name: "Normal",
  23470. height: math.unit(6, "feet"),
  23471. default: true
  23472. },
  23473. {
  23474. name: "Macro",
  23475. height: math.unit(150, "feet")
  23476. },
  23477. ]
  23478. ))
  23479. characterMakers.push(() => makeCharacter(
  23480. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23481. {
  23482. front: {
  23483. height: math.unit(28, "feet"),
  23484. weight: math.unit(10500, "lb"),
  23485. name: "Front",
  23486. image: {
  23487. source: "./media/characters/kayda/front.svg",
  23488. extra: 1536 / 1428,
  23489. bottom: 68.7 / 1603
  23490. }
  23491. },
  23492. back: {
  23493. height: math.unit(28, "feet"),
  23494. weight: math.unit(10500, "lb"),
  23495. name: "Back",
  23496. image: {
  23497. source: "./media/characters/kayda/back.svg",
  23498. extra: 1557 / 1464,
  23499. bottom: 39.5 / 1597.49
  23500. }
  23501. },
  23502. dick: {
  23503. height: math.unit(3.858, "feet"),
  23504. name: "Dick",
  23505. image: {
  23506. source: "./media/characters/kayda/dick.svg"
  23507. }
  23508. },
  23509. },
  23510. [
  23511. {
  23512. name: "Macro",
  23513. height: math.unit(28, "feet"),
  23514. default: true
  23515. },
  23516. ]
  23517. ))
  23518. characterMakers.push(() => makeCharacter(
  23519. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23520. {
  23521. front: {
  23522. height: math.unit(10 + 11 / 12, "feet"),
  23523. weight: math.unit(1400, "lb"),
  23524. name: "Front",
  23525. image: {
  23526. source: "./media/characters/brian/front.svg",
  23527. extra: 737 / 692,
  23528. bottom: 55.4 / 785
  23529. }
  23530. },
  23531. },
  23532. [
  23533. {
  23534. name: "Normal",
  23535. height: math.unit(10 + 11 / 12, "feet"),
  23536. default: true
  23537. },
  23538. ]
  23539. ))
  23540. characterMakers.push(() => makeCharacter(
  23541. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23542. {
  23543. front: {
  23544. height: math.unit(5 + 8 / 12, "feet"),
  23545. weight: math.unit(140, "lb"),
  23546. name: "Front",
  23547. image: {
  23548. source: "./media/characters/khemri/front.svg",
  23549. extra: 4780 / 4059,
  23550. bottom: 80.1 / 4859.25
  23551. }
  23552. },
  23553. },
  23554. [
  23555. {
  23556. name: "Micro",
  23557. height: math.unit(6, "inches")
  23558. },
  23559. {
  23560. name: "Normal",
  23561. height: math.unit(5 + 8 / 12, "feet"),
  23562. default: true
  23563. },
  23564. ]
  23565. ))
  23566. characterMakers.push(() => makeCharacter(
  23567. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23568. {
  23569. front: {
  23570. height: math.unit(13, "feet"),
  23571. weight: math.unit(1700, "lb"),
  23572. name: "Front",
  23573. image: {
  23574. source: "./media/characters/felix-braveheart/front.svg",
  23575. extra: 1222 / 1157,
  23576. bottom: 53.2 / 1280
  23577. }
  23578. },
  23579. back: {
  23580. height: math.unit(13, "feet"),
  23581. weight: math.unit(1700, "lb"),
  23582. name: "Back",
  23583. image: {
  23584. source: "./media/characters/felix-braveheart/back.svg",
  23585. extra: 1277 / 1203,
  23586. bottom: 50.2 / 1327
  23587. }
  23588. },
  23589. feral: {
  23590. height: math.unit(6, "feet"),
  23591. weight: math.unit(400, "lb"),
  23592. name: "Feral",
  23593. image: {
  23594. source: "./media/characters/felix-braveheart/feral.svg",
  23595. extra: 682 / 625,
  23596. bottom: 6.9 / 688
  23597. }
  23598. },
  23599. },
  23600. [
  23601. {
  23602. name: "Normal",
  23603. height: math.unit(13, "feet"),
  23604. default: true
  23605. },
  23606. ]
  23607. ))
  23608. characterMakers.push(() => makeCharacter(
  23609. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23610. {
  23611. side: {
  23612. height: math.unit(5 + 11 / 12, "feet"),
  23613. weight: math.unit(1400, "lb"),
  23614. name: "Side",
  23615. image: {
  23616. source: "./media/characters/shadow-blade/side.svg",
  23617. extra: 1726 / 1267,
  23618. bottom: 58.4 / 1785
  23619. }
  23620. },
  23621. },
  23622. [
  23623. {
  23624. name: "Normal",
  23625. height: math.unit(5 + 11 / 12, "feet"),
  23626. default: true
  23627. },
  23628. ]
  23629. ))
  23630. characterMakers.push(() => makeCharacter(
  23631. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23632. {
  23633. front: {
  23634. height: math.unit(1 + 6 / 12, "feet"),
  23635. weight: math.unit(25, "lb"),
  23636. name: "Front",
  23637. image: {
  23638. source: "./media/characters/karla-halldor/front.svg",
  23639. extra: 1459 / 1383,
  23640. bottom: 12 / 1472
  23641. }
  23642. },
  23643. },
  23644. [
  23645. {
  23646. name: "Normal",
  23647. height: math.unit(1 + 6 / 12, "feet"),
  23648. default: true
  23649. },
  23650. ]
  23651. ))
  23652. characterMakers.push(() => makeCharacter(
  23653. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23654. {
  23655. front: {
  23656. height: math.unit(6 + 2 / 12, "feet"),
  23657. weight: math.unit(160, "lb"),
  23658. name: "Front",
  23659. image: {
  23660. source: "./media/characters/ariam/front.svg",
  23661. extra: 714 / 617,
  23662. bottom: 23.4 / 737,
  23663. }
  23664. },
  23665. squatting: {
  23666. height: math.unit(4.1, "feet"),
  23667. weight: math.unit(160, "lb"),
  23668. name: "Squatting",
  23669. image: {
  23670. source: "./media/characters/ariam/squatting.svg",
  23671. extra: 2617 / 2112,
  23672. bottom: 61.2 / 2681,
  23673. }
  23674. },
  23675. },
  23676. [
  23677. {
  23678. name: "Normal",
  23679. height: math.unit(6 + 2 / 12, "feet"),
  23680. default: true
  23681. },
  23682. {
  23683. name: "Normal+",
  23684. height: math.unit(4, "meters")
  23685. },
  23686. {
  23687. name: "Macro",
  23688. height: math.unit(50, "meters")
  23689. },
  23690. {
  23691. name: "Macro+",
  23692. height: math.unit(100, "meters")
  23693. },
  23694. {
  23695. name: "Megamacro",
  23696. height: math.unit(20, "km")
  23697. },
  23698. ]
  23699. ))
  23700. characterMakers.push(() => makeCharacter(
  23701. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23702. {
  23703. front: {
  23704. height: math.unit(1.67, "meters"),
  23705. weight: math.unit(140, "lb"),
  23706. name: "Front",
  23707. image: {
  23708. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23709. extra: 438 / 410,
  23710. bottom: 0.75 / 439
  23711. }
  23712. },
  23713. },
  23714. [
  23715. {
  23716. name: "Shrunken",
  23717. height: math.unit(7.6, "cm")
  23718. },
  23719. {
  23720. name: "Human Scale",
  23721. height: math.unit(1.67, "meters")
  23722. },
  23723. {
  23724. name: "Wolxi Scale",
  23725. height: math.unit(36.7, "meters"),
  23726. default: true
  23727. },
  23728. ]
  23729. ))
  23730. characterMakers.push(() => makeCharacter(
  23731. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23732. {
  23733. front: {
  23734. height: math.unit(1.73, "meters"),
  23735. weight: math.unit(240, "lb"),
  23736. name: "Front",
  23737. image: {
  23738. source: "./media/characters/izue-two-mothers/front.svg",
  23739. extra: 469 / 437,
  23740. bottom: 1.24 / 470.6
  23741. }
  23742. },
  23743. },
  23744. [
  23745. {
  23746. name: "Shrunken",
  23747. height: math.unit(7.86, "cm")
  23748. },
  23749. {
  23750. name: "Human Scale",
  23751. height: math.unit(1.73, "meters")
  23752. },
  23753. {
  23754. name: "Wolxi Scale",
  23755. height: math.unit(38, "meters"),
  23756. default: true
  23757. },
  23758. ]
  23759. ))
  23760. characterMakers.push(() => makeCharacter(
  23761. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23762. {
  23763. front: {
  23764. height: math.unit(1.55, "meters"),
  23765. weight: math.unit(120, "lb"),
  23766. name: "Front",
  23767. image: {
  23768. source: "./media/characters/teeku-love-shack/front.svg",
  23769. extra: 387 / 362,
  23770. bottom: 1.51 / 388
  23771. }
  23772. },
  23773. },
  23774. [
  23775. {
  23776. name: "Shrunken",
  23777. height: math.unit(7, "cm")
  23778. },
  23779. {
  23780. name: "Human Scale",
  23781. height: math.unit(1.55, "meters")
  23782. },
  23783. {
  23784. name: "Wolxi Scale",
  23785. height: math.unit(34.1, "meters"),
  23786. default: true
  23787. },
  23788. ]
  23789. ))
  23790. characterMakers.push(() => makeCharacter(
  23791. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23792. {
  23793. front: {
  23794. height: math.unit(1.83, "meters"),
  23795. weight: math.unit(135, "lb"),
  23796. name: "Front",
  23797. image: {
  23798. source: "./media/characters/dejma-the-red/front.svg",
  23799. extra: 480 / 458,
  23800. bottom: 1.8 / 482
  23801. }
  23802. },
  23803. },
  23804. [
  23805. {
  23806. name: "Shrunken",
  23807. height: math.unit(8.3, "cm")
  23808. },
  23809. {
  23810. name: "Human Scale",
  23811. height: math.unit(1.83, "meters")
  23812. },
  23813. {
  23814. name: "Wolxi Scale",
  23815. height: math.unit(40, "meters"),
  23816. default: true
  23817. },
  23818. ]
  23819. ))
  23820. characterMakers.push(() => makeCharacter(
  23821. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23822. {
  23823. front: {
  23824. height: math.unit(1.78, "meters"),
  23825. weight: math.unit(65, "kg"),
  23826. name: "Front",
  23827. image: {
  23828. source: "./media/characters/aki/front.svg",
  23829. extra: 452 / 415
  23830. }
  23831. },
  23832. frontNsfw: {
  23833. height: math.unit(1.78, "meters"),
  23834. weight: math.unit(65, "kg"),
  23835. name: "Front (NSFW)",
  23836. image: {
  23837. source: "./media/characters/aki/front-nsfw.svg",
  23838. extra: 452 / 415
  23839. }
  23840. },
  23841. back: {
  23842. height: math.unit(1.78, "meters"),
  23843. weight: math.unit(65, "kg"),
  23844. name: "Back",
  23845. image: {
  23846. source: "./media/characters/aki/back.svg",
  23847. extra: 452 / 415
  23848. }
  23849. },
  23850. rump: {
  23851. height: math.unit(2.05, "feet"),
  23852. name: "Rump",
  23853. image: {
  23854. source: "./media/characters/aki/rump.svg"
  23855. }
  23856. },
  23857. dick: {
  23858. height: math.unit(0.95, "feet"),
  23859. name: "Dick",
  23860. image: {
  23861. source: "./media/characters/aki/dick.svg"
  23862. }
  23863. },
  23864. },
  23865. [
  23866. {
  23867. name: "Micro",
  23868. height: math.unit(15, "cm")
  23869. },
  23870. {
  23871. name: "Normal",
  23872. height: math.unit(178, "cm"),
  23873. default: true
  23874. },
  23875. {
  23876. name: "Macro",
  23877. height: math.unit(214, "m")
  23878. },
  23879. {
  23880. name: "Macro+",
  23881. height: math.unit(534, "m")
  23882. },
  23883. ]
  23884. ))
  23885. characterMakers.push(() => makeCharacter(
  23886. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23887. {
  23888. front: {
  23889. height: math.unit(5 + 5 / 12, "feet"),
  23890. weight: math.unit(120, "lb"),
  23891. name: "Front",
  23892. image: {
  23893. source: "./media/characters/ari/front.svg",
  23894. extra: 714.5 / 682,
  23895. bottom: 8 / 722.5
  23896. }
  23897. },
  23898. },
  23899. [
  23900. {
  23901. name: "Normal",
  23902. height: math.unit(5 + 5 / 12, "feet")
  23903. },
  23904. {
  23905. name: "Macro",
  23906. height: math.unit(100, "feet"),
  23907. default: true
  23908. },
  23909. {
  23910. name: "Megamacro",
  23911. height: math.unit(100, "miles")
  23912. },
  23913. {
  23914. name: "Gigamacro",
  23915. height: math.unit(80000, "miles")
  23916. },
  23917. ]
  23918. ))
  23919. characterMakers.push(() => makeCharacter(
  23920. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23921. {
  23922. side: {
  23923. height: math.unit(9, "feet"),
  23924. weight: math.unit(400, "kg"),
  23925. name: "Side",
  23926. image: {
  23927. source: "./media/characters/bolt/side.svg",
  23928. extra: 1126 / 896,
  23929. bottom: 60 / 1187.3,
  23930. }
  23931. },
  23932. },
  23933. [
  23934. {
  23935. name: "Micro",
  23936. height: math.unit(5, "inches")
  23937. },
  23938. {
  23939. name: "Normal",
  23940. height: math.unit(9, "feet"),
  23941. default: true
  23942. },
  23943. {
  23944. name: "Macro",
  23945. height: math.unit(700, "feet")
  23946. },
  23947. {
  23948. name: "Max Size",
  23949. height: math.unit(1.52e22, "yottameters")
  23950. },
  23951. ]
  23952. ))
  23953. characterMakers.push(() => makeCharacter(
  23954. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23955. {
  23956. front: {
  23957. height: math.unit(4.53, "meters"),
  23958. weight: math.unit(3, "tons"),
  23959. name: "Front",
  23960. image: {
  23961. source: "./media/characters/draekon-sylviar/front.svg",
  23962. extra: 1228 / 1068,
  23963. bottom: 41 / 1270
  23964. }
  23965. },
  23966. tail: {
  23967. height: math.unit(1.772, "meter"),
  23968. name: "Tail",
  23969. image: {
  23970. source: "./media/characters/draekon-sylviar/tail.svg"
  23971. }
  23972. },
  23973. head: {
  23974. height: math.unit(1.331, "meter"),
  23975. name: "Head",
  23976. image: {
  23977. source: "./media/characters/draekon-sylviar/head.svg"
  23978. }
  23979. },
  23980. hand: {
  23981. height: math.unit(0.564, "meter"),
  23982. name: "Hand",
  23983. image: {
  23984. source: "./media/characters/draekon-sylviar/hand.svg"
  23985. }
  23986. },
  23987. foot: {
  23988. height: math.unit(0.621, "meter"),
  23989. name: "Foot",
  23990. image: {
  23991. source: "./media/characters/draekon-sylviar/foot.svg",
  23992. bottom: 32 / 324
  23993. }
  23994. },
  23995. dick: {
  23996. height: math.unit(61, "cm"),
  23997. name: "Dick",
  23998. image: {
  23999. source: "./media/characters/draekon-sylviar/dick.svg"
  24000. }
  24001. },
  24002. dickseparated: {
  24003. height: math.unit(61, "cm"),
  24004. name: "Dick-separated",
  24005. image: {
  24006. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24007. }
  24008. },
  24009. },
  24010. [
  24011. {
  24012. name: "Small",
  24013. height: math.unit(4.53 / 2, "meters"),
  24014. default: true
  24015. },
  24016. {
  24017. name: "Normal",
  24018. height: math.unit(4.53, "meters"),
  24019. default: true
  24020. },
  24021. {
  24022. name: "Large",
  24023. height: math.unit(4.53 * 2, "meters"),
  24024. },
  24025. ]
  24026. ))
  24027. characterMakers.push(() => makeCharacter(
  24028. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24029. {
  24030. front: {
  24031. height: math.unit(6 + 2 / 12, "feet"),
  24032. weight: math.unit(180, "lb"),
  24033. name: "Front",
  24034. image: {
  24035. source: "./media/characters/brawler/front.svg",
  24036. extra: 3301 / 3027,
  24037. bottom: 138 / 3439
  24038. }
  24039. },
  24040. },
  24041. [
  24042. {
  24043. name: "Normal",
  24044. height: math.unit(6 + 2 / 12, "feet"),
  24045. default: true
  24046. },
  24047. ]
  24048. ))
  24049. characterMakers.push(() => makeCharacter(
  24050. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24051. {
  24052. front: {
  24053. height: math.unit(11, "feet"),
  24054. weight: math.unit(1000, "lb"),
  24055. name: "Front",
  24056. image: {
  24057. source: "./media/characters/alex/front.svg",
  24058. bottom: 44.5 / 620
  24059. }
  24060. },
  24061. },
  24062. [
  24063. {
  24064. name: "Micro",
  24065. height: math.unit(5, "inches")
  24066. },
  24067. {
  24068. name: "Normal",
  24069. height: math.unit(11, "feet"),
  24070. default: true
  24071. },
  24072. {
  24073. name: "Macro",
  24074. height: math.unit(9.5e9, "feet")
  24075. },
  24076. {
  24077. name: "Max Size",
  24078. height: math.unit(1.4e283, "yottameters")
  24079. },
  24080. ]
  24081. ))
  24082. characterMakers.push(() => makeCharacter(
  24083. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24084. {
  24085. female: {
  24086. height: math.unit(29.9, "m"),
  24087. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24088. name: "Female",
  24089. image: {
  24090. source: "./media/characters/zenari/female.svg",
  24091. extra: 3281.6 / 3217,
  24092. bottom: 72.2 / 3353
  24093. }
  24094. },
  24095. male: {
  24096. height: math.unit(27.7, "m"),
  24097. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24098. name: "Male",
  24099. image: {
  24100. source: "./media/characters/zenari/male.svg",
  24101. extra: 3008 / 2991,
  24102. bottom: 54.6 / 3069
  24103. }
  24104. },
  24105. },
  24106. [
  24107. {
  24108. name: "Macro",
  24109. height: math.unit(29.7, "meters"),
  24110. default: true
  24111. },
  24112. ]
  24113. ))
  24114. characterMakers.push(() => makeCharacter(
  24115. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24116. {
  24117. female: {
  24118. height: math.unit(23.8, "m"),
  24119. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24120. name: "Female",
  24121. image: {
  24122. source: "./media/characters/mactarian/female.svg",
  24123. extra: 2662 / 2569,
  24124. bottom: 73 / 2736
  24125. }
  24126. },
  24127. male: {
  24128. height: math.unit(23.8, "m"),
  24129. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24130. name: "Male",
  24131. image: {
  24132. source: "./media/characters/mactarian/male.svg",
  24133. extra: 2673 / 2600,
  24134. bottom: 76 / 2750
  24135. }
  24136. },
  24137. },
  24138. [
  24139. {
  24140. name: "Macro",
  24141. height: math.unit(23.8, "meters"),
  24142. default: true
  24143. },
  24144. ]
  24145. ))
  24146. characterMakers.push(() => makeCharacter(
  24147. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24148. {
  24149. female: {
  24150. height: math.unit(19.3, "m"),
  24151. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24152. name: "Female",
  24153. image: {
  24154. source: "./media/characters/umok/female.svg",
  24155. extra: 2186 / 2078,
  24156. bottom: 87 / 2277
  24157. }
  24158. },
  24159. male: {
  24160. height: math.unit(19.5, "m"),
  24161. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24162. name: "Male",
  24163. image: {
  24164. source: "./media/characters/umok/male.svg",
  24165. extra: 2233 / 2140,
  24166. bottom: 24.4 / 2258
  24167. }
  24168. },
  24169. },
  24170. [
  24171. {
  24172. name: "Macro",
  24173. height: math.unit(19.3, "meters"),
  24174. default: true
  24175. },
  24176. ]
  24177. ))
  24178. characterMakers.push(() => makeCharacter(
  24179. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24180. {
  24181. female: {
  24182. height: math.unit(26.15, "m"),
  24183. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24184. name: "Female",
  24185. image: {
  24186. source: "./media/characters/joraxian/female.svg",
  24187. extra: 2912 / 2824,
  24188. bottom: 36 / 2956
  24189. }
  24190. },
  24191. male: {
  24192. height: math.unit(25.4, "m"),
  24193. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24194. name: "Male",
  24195. image: {
  24196. source: "./media/characters/joraxian/male.svg",
  24197. extra: 2877 / 2721,
  24198. bottom: 82 / 2967
  24199. }
  24200. },
  24201. },
  24202. [
  24203. {
  24204. name: "Macro",
  24205. height: math.unit(26.15, "meters"),
  24206. default: true
  24207. },
  24208. ]
  24209. ))
  24210. characterMakers.push(() => makeCharacter(
  24211. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24212. {
  24213. female: {
  24214. height: math.unit(21.6, "m"),
  24215. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24216. name: "Female",
  24217. image: {
  24218. source: "./media/characters/sthara/female.svg",
  24219. extra: 2516 / 2347,
  24220. bottom: 21.5 / 2537
  24221. }
  24222. },
  24223. male: {
  24224. height: math.unit(24, "m"),
  24225. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24226. name: "Male",
  24227. image: {
  24228. source: "./media/characters/sthara/male.svg",
  24229. extra: 2732 / 2607,
  24230. bottom: 23 / 2732
  24231. }
  24232. },
  24233. },
  24234. [
  24235. {
  24236. name: "Macro",
  24237. height: math.unit(21.6, "meters"),
  24238. default: true
  24239. },
  24240. ]
  24241. ))
  24242. characterMakers.push(() => makeCharacter(
  24243. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24244. {
  24245. front: {
  24246. height: math.unit(6 + 4 / 12, "feet"),
  24247. weight: math.unit(175, "lb"),
  24248. name: "Front",
  24249. image: {
  24250. source: "./media/characters/luka-bryzant/front.svg",
  24251. extra: 311 / 289,
  24252. bottom: 4 / 315
  24253. }
  24254. },
  24255. back: {
  24256. height: math.unit(6 + 4 / 12, "feet"),
  24257. weight: math.unit(175, "lb"),
  24258. name: "Back",
  24259. image: {
  24260. source: "./media/characters/luka-bryzant/back.svg",
  24261. extra: 311 / 289,
  24262. bottom: 3.8 / 313.7
  24263. }
  24264. },
  24265. },
  24266. [
  24267. {
  24268. name: "Micro",
  24269. height: math.unit(10, "inches")
  24270. },
  24271. {
  24272. name: "Normal",
  24273. height: math.unit(6 + 4 / 12, "feet"),
  24274. default: true
  24275. },
  24276. {
  24277. name: "Large",
  24278. height: math.unit(12, "feet")
  24279. },
  24280. ]
  24281. ))
  24282. characterMakers.push(() => makeCharacter(
  24283. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24284. {
  24285. front: {
  24286. height: math.unit(5 + 7 / 12, "feet"),
  24287. weight: math.unit(185, "lb"),
  24288. name: "Front",
  24289. image: {
  24290. source: "./media/characters/aman-aquila/front.svg",
  24291. extra: 1013 / 976,
  24292. bottom: 45.6 / 1057
  24293. }
  24294. },
  24295. side: {
  24296. height: math.unit(5 + 7 / 12, "feet"),
  24297. weight: math.unit(185, "lb"),
  24298. name: "Side",
  24299. image: {
  24300. source: "./media/characters/aman-aquila/side.svg",
  24301. extra: 1054 / 1011,
  24302. bottom: 15 / 1070
  24303. }
  24304. },
  24305. back: {
  24306. height: math.unit(5 + 7 / 12, "feet"),
  24307. weight: math.unit(185, "lb"),
  24308. name: "Back",
  24309. image: {
  24310. source: "./media/characters/aman-aquila/back.svg",
  24311. extra: 1026 / 970,
  24312. bottom: 12 / 1039
  24313. }
  24314. },
  24315. head: {
  24316. height: math.unit(1.211, "feet"),
  24317. name: "Head",
  24318. image: {
  24319. source: "./media/characters/aman-aquila/head.svg",
  24320. }
  24321. },
  24322. },
  24323. [
  24324. {
  24325. name: "Minimicro",
  24326. height: math.unit(0.057, "inches")
  24327. },
  24328. {
  24329. name: "Micro",
  24330. height: math.unit(7, "inches")
  24331. },
  24332. {
  24333. name: "Mini",
  24334. height: math.unit(3 + 7 / 12, "feet")
  24335. },
  24336. {
  24337. name: "Normal",
  24338. height: math.unit(5 + 7 / 12, "feet"),
  24339. default: true
  24340. },
  24341. {
  24342. name: "Macro",
  24343. height: math.unit(157 + 7 / 12, "feet")
  24344. },
  24345. {
  24346. name: "Megamacro",
  24347. height: math.unit(1557 + 7 / 12, "feet")
  24348. },
  24349. {
  24350. name: "Gigamacro",
  24351. height: math.unit(15557 + 7 / 12, "feet")
  24352. },
  24353. ]
  24354. ))
  24355. characterMakers.push(() => makeCharacter(
  24356. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24357. {
  24358. front: {
  24359. height: math.unit(3 + 2 / 12, "inches"),
  24360. weight: math.unit(0.3, "ounces"),
  24361. name: "Front",
  24362. image: {
  24363. source: "./media/characters/hiphae/front.svg",
  24364. extra: 1931 / 1683,
  24365. bottom: 24 / 1955
  24366. }
  24367. },
  24368. },
  24369. [
  24370. {
  24371. name: "Normal",
  24372. height: math.unit(3 + 1 / 2, "inches"),
  24373. default: true
  24374. },
  24375. ]
  24376. ))
  24377. characterMakers.push(() => makeCharacter(
  24378. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24379. {
  24380. front: {
  24381. height: math.unit(5 + 10 / 12, "feet"),
  24382. weight: math.unit(165, "lb"),
  24383. name: "Front",
  24384. image: {
  24385. source: "./media/characters/nicky/front.svg",
  24386. extra: 3144 / 2886,
  24387. bottom: 45.6 / 3192
  24388. }
  24389. },
  24390. back: {
  24391. height: math.unit(5 + 10 / 12, "feet"),
  24392. weight: math.unit(165, "lb"),
  24393. name: "Back",
  24394. image: {
  24395. source: "./media/characters/nicky/back.svg",
  24396. extra: 3055 / 2804,
  24397. bottom: 28.4 / 3087
  24398. }
  24399. },
  24400. frontclothed: {
  24401. height: math.unit(5 + 10 / 12, "feet"),
  24402. weight: math.unit(165, "lb"),
  24403. name: "Front-clothed",
  24404. image: {
  24405. source: "./media/characters/nicky/front-clothed.svg",
  24406. extra: 3184.9 / 2926.9,
  24407. bottom: 86.5 / 3239.9
  24408. }
  24409. },
  24410. foot: {
  24411. height: math.unit(1.16, "feet"),
  24412. name: "Foot",
  24413. image: {
  24414. source: "./media/characters/nicky/foot.svg"
  24415. }
  24416. },
  24417. feet: {
  24418. height: math.unit(1.34, "feet"),
  24419. name: "Feet",
  24420. image: {
  24421. source: "./media/characters/nicky/feet.svg"
  24422. }
  24423. },
  24424. maw: {
  24425. height: math.unit(0.9, "feet"),
  24426. name: "Maw",
  24427. image: {
  24428. source: "./media/characters/nicky/maw.svg"
  24429. }
  24430. },
  24431. },
  24432. [
  24433. {
  24434. name: "Normal",
  24435. height: math.unit(5 + 10 / 12, "feet"),
  24436. default: true
  24437. },
  24438. {
  24439. name: "Macro",
  24440. height: math.unit(60, "feet")
  24441. },
  24442. {
  24443. name: "Megamacro",
  24444. height: math.unit(1, "mile")
  24445. },
  24446. ]
  24447. ))
  24448. characterMakers.push(() => makeCharacter(
  24449. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24450. {
  24451. side: {
  24452. height: math.unit(10, "feet"),
  24453. weight: math.unit(600, "lb"),
  24454. name: "Side",
  24455. image: {
  24456. source: "./media/characters/blair/side.svg",
  24457. bottom: 16.6 / 475,
  24458. extra: 458 / 431
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Micro",
  24465. height: math.unit(8, "inches")
  24466. },
  24467. {
  24468. name: "Normal",
  24469. height: math.unit(10, "feet"),
  24470. default: true
  24471. },
  24472. {
  24473. name: "Macro",
  24474. height: math.unit(180, "feet")
  24475. },
  24476. ]
  24477. ))
  24478. characterMakers.push(() => makeCharacter(
  24479. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24480. {
  24481. front: {
  24482. height: math.unit(5 + 4 / 12, "feet"),
  24483. weight: math.unit(125, "lb"),
  24484. name: "Front",
  24485. image: {
  24486. source: "./media/characters/fisher/front.svg",
  24487. extra: 444 / 390,
  24488. bottom: 2 / 444.8
  24489. }
  24490. },
  24491. },
  24492. [
  24493. {
  24494. name: "Micro",
  24495. height: math.unit(4, "inches")
  24496. },
  24497. {
  24498. name: "Normal",
  24499. height: math.unit(5 + 4 / 12, "feet"),
  24500. default: true
  24501. },
  24502. {
  24503. name: "Macro",
  24504. height: math.unit(100, "feet")
  24505. },
  24506. ]
  24507. ))
  24508. characterMakers.push(() => makeCharacter(
  24509. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24510. {
  24511. front: {
  24512. height: math.unit(6.71, "feet"),
  24513. weight: math.unit(200, "lb"),
  24514. capacity: math.unit(1000000, "people"),
  24515. name: "Front",
  24516. image: {
  24517. source: "./media/characters/gliss/front.svg",
  24518. extra: 2347 / 2231,
  24519. bottom: 113 / 2462
  24520. }
  24521. },
  24522. hammerspaceSize: {
  24523. height: math.unit(6.71 * 717, "feet"),
  24524. weight: math.unit(200, "lb"),
  24525. capacity: math.unit(1000000, "people"),
  24526. name: "Hammerspace Size",
  24527. image: {
  24528. source: "./media/characters/gliss/front.svg",
  24529. extra: 2347 / 2231,
  24530. bottom: 113 / 2462
  24531. }
  24532. },
  24533. },
  24534. [
  24535. {
  24536. name: "Normal",
  24537. height: math.unit(6.71, "feet"),
  24538. default: true
  24539. },
  24540. ]
  24541. ))
  24542. characterMakers.push(() => makeCharacter(
  24543. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24544. {
  24545. side: {
  24546. height: math.unit(1.44, "m"),
  24547. weight: math.unit(80, "kg"),
  24548. name: "Side",
  24549. image: {
  24550. source: "./media/characters/dune-anderson/side.svg",
  24551. bottom: 49 / 1426
  24552. }
  24553. },
  24554. },
  24555. [
  24556. {
  24557. name: "Wolf-sized",
  24558. height: math.unit(1.44, "meters")
  24559. },
  24560. {
  24561. name: "Normal",
  24562. height: math.unit(5.05, "meters"),
  24563. default: true
  24564. },
  24565. {
  24566. name: "Big",
  24567. height: math.unit(14.4, "meters")
  24568. },
  24569. {
  24570. name: "Huge",
  24571. height: math.unit(144, "meters")
  24572. },
  24573. ]
  24574. ))
  24575. characterMakers.push(() => makeCharacter(
  24576. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24577. {
  24578. front: {
  24579. height: math.unit(7, "feet"),
  24580. weight: math.unit(425, "lb"),
  24581. name: "Front",
  24582. image: {
  24583. source: "./media/characters/hind/front.svg",
  24584. extra: 2091 / 1860,
  24585. bottom: 129 / 2220
  24586. }
  24587. },
  24588. back: {
  24589. height: math.unit(7, "feet"),
  24590. weight: math.unit(425, "lb"),
  24591. name: "Back",
  24592. image: {
  24593. source: "./media/characters/hind/back.svg",
  24594. extra: 2091 / 1860,
  24595. bottom: 24.6 / 2309
  24596. }
  24597. },
  24598. tail: {
  24599. height: math.unit(2.8, "feet"),
  24600. name: "Tail",
  24601. image: {
  24602. source: "./media/characters/hind/tail.svg"
  24603. }
  24604. },
  24605. head: {
  24606. height: math.unit(2.55, "feet"),
  24607. name: "Head",
  24608. image: {
  24609. source: "./media/characters/hind/head.svg"
  24610. }
  24611. },
  24612. },
  24613. [
  24614. {
  24615. name: "XS",
  24616. height: math.unit(0.7, "feet")
  24617. },
  24618. {
  24619. name: "Normal",
  24620. height: math.unit(7, "feet"),
  24621. default: true
  24622. },
  24623. {
  24624. name: "XL",
  24625. height: math.unit(70, "feet")
  24626. },
  24627. ]
  24628. ))
  24629. characterMakers.push(() => makeCharacter(
  24630. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24631. {
  24632. front: {
  24633. height: math.unit(6, "feet"),
  24634. weight: math.unit(150, "lb"),
  24635. name: "Front",
  24636. image: {
  24637. source: "./media/characters/dylan-skaven/front.svg",
  24638. extra: 2318 / 2063,
  24639. bottom: 93.4 / 2410
  24640. }
  24641. },
  24642. },
  24643. [
  24644. {
  24645. name: "Nano",
  24646. height: math.unit(1, "mm")
  24647. },
  24648. {
  24649. name: "Micro",
  24650. height: math.unit(1, "cm")
  24651. },
  24652. {
  24653. name: "Normal",
  24654. height: math.unit(2.1, "meters"),
  24655. default: true
  24656. },
  24657. ]
  24658. ))
  24659. characterMakers.push(() => makeCharacter(
  24660. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24661. {
  24662. front: {
  24663. height: math.unit(7 + 5 / 12, "feet"),
  24664. weight: math.unit(357, "lb"),
  24665. name: "Front",
  24666. image: {
  24667. source: "./media/characters/solex-draconov/front.svg",
  24668. extra: 1993 / 1865,
  24669. bottom: 117 / 2111
  24670. }
  24671. },
  24672. },
  24673. [
  24674. {
  24675. name: "Natural Height",
  24676. height: math.unit(7 + 5 / 12, "feet"),
  24677. default: true
  24678. },
  24679. {
  24680. name: "Macro",
  24681. height: math.unit(350, "feet")
  24682. },
  24683. {
  24684. name: "Macro+",
  24685. height: math.unit(1000, "feet")
  24686. },
  24687. {
  24688. name: "Megamacro",
  24689. height: math.unit(20, "km")
  24690. },
  24691. {
  24692. name: "Megamacro+",
  24693. height: math.unit(1000, "km")
  24694. },
  24695. {
  24696. name: "Gigamacro",
  24697. height: math.unit(2.5, "Gm")
  24698. },
  24699. {
  24700. name: "Teramacro",
  24701. height: math.unit(15, "Tm")
  24702. },
  24703. {
  24704. name: "Galactic",
  24705. height: math.unit(30, "Zm")
  24706. },
  24707. {
  24708. name: "Universal",
  24709. height: math.unit(21000, "Ym")
  24710. },
  24711. {
  24712. name: "Omniversal",
  24713. height: math.unit(9.861e50, "Ym")
  24714. },
  24715. {
  24716. name: "Existential",
  24717. height: math.unit(1e300, "meters")
  24718. },
  24719. ]
  24720. ))
  24721. characterMakers.push(() => makeCharacter(
  24722. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24723. {
  24724. side: {
  24725. height: math.unit(25, "feet"),
  24726. weight: math.unit(90000, "lb"),
  24727. name: "Side",
  24728. image: {
  24729. source: "./media/characters/mandarax/side.svg",
  24730. extra: 614 / 332,
  24731. bottom: 55 / 630
  24732. }
  24733. },
  24734. head: {
  24735. height: math.unit(11.4, "feet"),
  24736. name: "Head",
  24737. image: {
  24738. source: "./media/characters/mandarax/head.svg"
  24739. }
  24740. },
  24741. belly: {
  24742. height: math.unit(33, "feet"),
  24743. name: "Belly",
  24744. capacity: math.unit(500, "people"),
  24745. image: {
  24746. source: "./media/characters/mandarax/belly.svg"
  24747. }
  24748. },
  24749. dick: {
  24750. height: math.unit(8.46, "feet"),
  24751. name: "Dick",
  24752. image: {
  24753. source: "./media/characters/mandarax/dick.svg"
  24754. }
  24755. },
  24756. top: {
  24757. height: math.unit(28, "meters"),
  24758. name: "Top",
  24759. image: {
  24760. source: "./media/characters/mandarax/top.svg"
  24761. }
  24762. },
  24763. },
  24764. [
  24765. {
  24766. name: "Normal",
  24767. height: math.unit(25, "feet"),
  24768. default: true
  24769. },
  24770. ]
  24771. ))
  24772. characterMakers.push(() => makeCharacter(
  24773. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24774. {
  24775. front: {
  24776. height: math.unit(5, "feet"),
  24777. weight: math.unit(90, "lb"),
  24778. name: "Front",
  24779. image: {
  24780. source: "./media/characters/pixil/front.svg",
  24781. extra: 2000 / 1618,
  24782. bottom: 12.3 / 2011
  24783. }
  24784. },
  24785. },
  24786. [
  24787. {
  24788. name: "Normal",
  24789. height: math.unit(5, "feet"),
  24790. default: true
  24791. },
  24792. {
  24793. name: "Megamacro",
  24794. height: math.unit(10, "miles"),
  24795. },
  24796. ]
  24797. ))
  24798. characterMakers.push(() => makeCharacter(
  24799. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24800. {
  24801. front: {
  24802. height: math.unit(7 + 2 / 12, "feet"),
  24803. weight: math.unit(200, "lb"),
  24804. name: "Front",
  24805. image: {
  24806. source: "./media/characters/angel/front.svg",
  24807. extra: 1830 / 1737,
  24808. bottom: 22.6 / 1854,
  24809. }
  24810. },
  24811. },
  24812. [
  24813. {
  24814. name: "Normal",
  24815. height: math.unit(7 + 2 / 12, "feet"),
  24816. default: true
  24817. },
  24818. {
  24819. name: "Macro",
  24820. height: math.unit(1000, "feet")
  24821. },
  24822. {
  24823. name: "Megamacro",
  24824. height: math.unit(2, "miles")
  24825. },
  24826. {
  24827. name: "Gigamacro",
  24828. height: math.unit(20, "earths")
  24829. },
  24830. ]
  24831. ))
  24832. characterMakers.push(() => makeCharacter(
  24833. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24834. {
  24835. front: {
  24836. height: math.unit(5, "feet"),
  24837. weight: math.unit(180, "lb"),
  24838. name: "Front",
  24839. image: {
  24840. source: "./media/characters/mekana/front.svg",
  24841. extra: 1671 / 1605,
  24842. bottom: 3.5 / 1691
  24843. }
  24844. },
  24845. side: {
  24846. height: math.unit(5, "feet"),
  24847. weight: math.unit(180, "lb"),
  24848. name: "Side",
  24849. image: {
  24850. source: "./media/characters/mekana/side.svg",
  24851. extra: 1671 / 1605,
  24852. bottom: 3.5 / 1691
  24853. }
  24854. },
  24855. back: {
  24856. height: math.unit(5, "feet"),
  24857. weight: math.unit(180, "lb"),
  24858. name: "Back",
  24859. image: {
  24860. source: "./media/characters/mekana/back.svg",
  24861. extra: 1671 / 1605,
  24862. bottom: 3.5 / 1691
  24863. }
  24864. },
  24865. },
  24866. [
  24867. {
  24868. name: "Normal",
  24869. height: math.unit(5, "feet"),
  24870. default: true
  24871. },
  24872. ]
  24873. ))
  24874. characterMakers.push(() => makeCharacter(
  24875. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24876. {
  24877. front: {
  24878. height: math.unit(4 + 6 / 12, "feet"),
  24879. weight: math.unit(80, "lb"),
  24880. name: "Front",
  24881. image: {
  24882. source: "./media/characters/pixie/front.svg",
  24883. extra: 1924 / 1825,
  24884. bottom: 22.4 / 1946
  24885. }
  24886. },
  24887. },
  24888. [
  24889. {
  24890. name: "Normal",
  24891. height: math.unit(4 + 6 / 12, "feet"),
  24892. default: true
  24893. },
  24894. {
  24895. name: "Macro",
  24896. height: math.unit(40, "feet")
  24897. },
  24898. ]
  24899. ))
  24900. characterMakers.push(() => makeCharacter(
  24901. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24902. {
  24903. front: {
  24904. height: math.unit(2.1, "meters"),
  24905. weight: math.unit(200, "lb"),
  24906. name: "Front",
  24907. image: {
  24908. source: "./media/characters/the-lascivious/front.svg",
  24909. extra: 1 / 0.893,
  24910. bottom: 3.5 / 573.7
  24911. }
  24912. },
  24913. },
  24914. [
  24915. {
  24916. name: "Human Scale",
  24917. height: math.unit(2.1, "meters")
  24918. },
  24919. {
  24920. name: "Wolxi Scale",
  24921. height: math.unit(46.2, "m"),
  24922. default: true
  24923. },
  24924. {
  24925. name: "Boinker of Buildings",
  24926. height: math.unit(10, "km")
  24927. },
  24928. {
  24929. name: "Shagger of Skyscrapers",
  24930. height: math.unit(40, "km")
  24931. },
  24932. {
  24933. name: "Banger of Boroughs",
  24934. height: math.unit(4000, "km")
  24935. },
  24936. {
  24937. name: "Screwer of States",
  24938. height: math.unit(100000, "km")
  24939. },
  24940. {
  24941. name: "Pounder of Planets",
  24942. height: math.unit(2000000, "km")
  24943. },
  24944. ]
  24945. ))
  24946. characterMakers.push(() => makeCharacter(
  24947. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24948. {
  24949. front: {
  24950. height: math.unit(6, "feet"),
  24951. weight: math.unit(150, "lb"),
  24952. name: "Front",
  24953. image: {
  24954. source: "./media/characters/aj/front.svg",
  24955. extra: 2039 / 1562,
  24956. bottom: 40 / 2079
  24957. }
  24958. },
  24959. },
  24960. [
  24961. {
  24962. name: "Normal",
  24963. height: math.unit(11 + 6 / 12, "feet"),
  24964. default: true
  24965. },
  24966. {
  24967. name: "Megamacro",
  24968. height: math.unit(60, "megameters")
  24969. },
  24970. ]
  24971. ))
  24972. characterMakers.push(() => makeCharacter(
  24973. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24974. {
  24975. side: {
  24976. height: math.unit(31 + 8 / 12, "feet"),
  24977. weight: math.unit(75000, "kg"),
  24978. name: "Side",
  24979. image: {
  24980. source: "./media/characters/koros/side.svg",
  24981. extra: 1442 / 1297,
  24982. bottom: 122.7 / 1562
  24983. }
  24984. },
  24985. dicksKingsCrown: {
  24986. height: math.unit(6, "feet"),
  24987. name: "Dicks (King's Crown)",
  24988. image: {
  24989. source: "./media/characters/koros/dicks-kings-crown.svg"
  24990. }
  24991. },
  24992. dicksTailSet: {
  24993. height: math.unit(3, "feet"),
  24994. name: "Dicks (Tail Set)",
  24995. image: {
  24996. source: "./media/characters/koros/dicks-tail-set.svg"
  24997. }
  24998. },
  24999. dickCumming: {
  25000. height: math.unit(7.98, "feet"),
  25001. name: "Dick (Cumming)",
  25002. image: {
  25003. source: "./media/characters/koros/dick-cumming.svg"
  25004. }
  25005. },
  25006. dicksBack: {
  25007. height: math.unit(5.9, "feet"),
  25008. name: "Dicks (Back)",
  25009. image: {
  25010. source: "./media/characters/koros/dicks-back.svg"
  25011. }
  25012. },
  25013. dicksFront: {
  25014. height: math.unit(3.72, "feet"),
  25015. name: "Dicks (Front)",
  25016. image: {
  25017. source: "./media/characters/koros/dicks-front.svg"
  25018. }
  25019. },
  25020. dicksPeeking: {
  25021. height: math.unit(3.0, "feet"),
  25022. name: "Dicks (Peeking)",
  25023. image: {
  25024. source: "./media/characters/koros/dicks-peeking.svg"
  25025. }
  25026. },
  25027. eye: {
  25028. height: math.unit(1.7, "feet"),
  25029. name: "Eye",
  25030. image: {
  25031. source: "./media/characters/koros/eye.svg"
  25032. }
  25033. },
  25034. headFront: {
  25035. height: math.unit(11.69, "feet"),
  25036. name: "Head (Front)",
  25037. image: {
  25038. source: "./media/characters/koros/head-front.svg"
  25039. }
  25040. },
  25041. headSide: {
  25042. height: math.unit(14, "feet"),
  25043. name: "Head (Side)",
  25044. image: {
  25045. source: "./media/characters/koros/head-side.svg"
  25046. }
  25047. },
  25048. leg: {
  25049. height: math.unit(17, "feet"),
  25050. name: "Leg",
  25051. image: {
  25052. source: "./media/characters/koros/leg.svg"
  25053. }
  25054. },
  25055. mawSide: {
  25056. height: math.unit(12.8, "feet"),
  25057. name: "Maw (Side)",
  25058. image: {
  25059. source: "./media/characters/koros/maw-side.svg"
  25060. }
  25061. },
  25062. mawSpitting: {
  25063. height: math.unit(17, "feet"),
  25064. name: "Maw (Spitting)",
  25065. image: {
  25066. source: "./media/characters/koros/maw-spitting.svg"
  25067. }
  25068. },
  25069. slit: {
  25070. height: math.unit(2.8, "feet"),
  25071. name: "Slit",
  25072. image: {
  25073. source: "./media/characters/koros/slit.svg"
  25074. }
  25075. },
  25076. stomach: {
  25077. height: math.unit(6.8, "feet"),
  25078. capacity: math.unit(20, "people"),
  25079. name: "Stomach",
  25080. image: {
  25081. source: "./media/characters/koros/stomach.svg"
  25082. }
  25083. },
  25084. wingspanBottom: {
  25085. height: math.unit(114, "feet"),
  25086. name: "Wingspan (Bottom)",
  25087. image: {
  25088. source: "./media/characters/koros/wingspan-bottom.svg"
  25089. }
  25090. },
  25091. wingspanTop: {
  25092. height: math.unit(104, "feet"),
  25093. name: "Wingspan (Top)",
  25094. image: {
  25095. source: "./media/characters/koros/wingspan-top.svg"
  25096. }
  25097. },
  25098. },
  25099. [
  25100. {
  25101. name: "Normal",
  25102. height: math.unit(31 + 8 / 12, "feet"),
  25103. default: true
  25104. },
  25105. ]
  25106. ))
  25107. characterMakers.push(() => makeCharacter(
  25108. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25109. {
  25110. front: {
  25111. height: math.unit(18 + 5 / 12, "feet"),
  25112. weight: math.unit(3750, "kg"),
  25113. name: "Front",
  25114. image: {
  25115. source: "./media/characters/vexx/front.svg",
  25116. extra: 426 / 396,
  25117. bottom: 31.5 / 458
  25118. }
  25119. },
  25120. maw: {
  25121. height: math.unit(6, "feet"),
  25122. name: "Maw",
  25123. image: {
  25124. source: "./media/characters/vexx/maw.svg"
  25125. }
  25126. },
  25127. },
  25128. [
  25129. {
  25130. name: "Normal",
  25131. height: math.unit(18 + 5 / 12, "feet"),
  25132. default: true
  25133. },
  25134. ]
  25135. ))
  25136. characterMakers.push(() => makeCharacter(
  25137. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25138. {
  25139. front: {
  25140. height: math.unit(17 + 6 / 12, "feet"),
  25141. weight: math.unit(150, "lb"),
  25142. name: "Front",
  25143. image: {
  25144. source: "./media/characters/baadra/front.svg",
  25145. extra: 3137 / 2890,
  25146. bottom: 168.4 / 3305
  25147. }
  25148. },
  25149. back: {
  25150. height: math.unit(17 + 6 / 12, "feet"),
  25151. weight: math.unit(150, "lb"),
  25152. name: "Back",
  25153. image: {
  25154. source: "./media/characters/baadra/back.svg",
  25155. extra: 3142 / 2890,
  25156. bottom: 220 / 3371
  25157. }
  25158. },
  25159. head: {
  25160. height: math.unit(5.45, "feet"),
  25161. name: "Head",
  25162. image: {
  25163. source: "./media/characters/baadra/head.svg"
  25164. }
  25165. },
  25166. headAngry: {
  25167. height: math.unit(4.95, "feet"),
  25168. name: "Head (Angry)",
  25169. image: {
  25170. source: "./media/characters/baadra/head-angry.svg"
  25171. }
  25172. },
  25173. headOpen: {
  25174. height: math.unit(6, "feet"),
  25175. name: "Head (Open)",
  25176. image: {
  25177. source: "./media/characters/baadra/head-open.svg"
  25178. }
  25179. },
  25180. },
  25181. [
  25182. {
  25183. name: "Normal",
  25184. height: math.unit(17 + 6 / 12, "feet"),
  25185. default: true
  25186. },
  25187. ]
  25188. ))
  25189. characterMakers.push(() => makeCharacter(
  25190. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25191. {
  25192. front: {
  25193. height: math.unit(7 + 3 / 12, "feet"),
  25194. weight: math.unit(180, "lb"),
  25195. name: "Front",
  25196. image: {
  25197. source: "./media/characters/juri/front.svg",
  25198. extra: 1401 / 1237,
  25199. bottom: 18.5 / 1418
  25200. }
  25201. },
  25202. side: {
  25203. height: math.unit(7 + 3 / 12, "feet"),
  25204. weight: math.unit(180, "lb"),
  25205. name: "Side",
  25206. image: {
  25207. source: "./media/characters/juri/side.svg",
  25208. extra: 1424 / 1242,
  25209. bottom: 18.5 / 1447
  25210. }
  25211. },
  25212. sitting: {
  25213. height: math.unit(6, "feet"),
  25214. weight: math.unit(180, "lb"),
  25215. name: "Sitting",
  25216. image: {
  25217. source: "./media/characters/juri/sitting.svg",
  25218. extra: 1270 / 1143,
  25219. bottom: 100 / 1343
  25220. }
  25221. },
  25222. back: {
  25223. height: math.unit(7 + 3 / 12, "feet"),
  25224. weight: math.unit(180, "lb"),
  25225. name: "Back",
  25226. image: {
  25227. source: "./media/characters/juri/back.svg",
  25228. extra: 1377 / 1240,
  25229. bottom: 23.7 / 1405
  25230. }
  25231. },
  25232. maw: {
  25233. height: math.unit(2.8, "feet"),
  25234. name: "Maw",
  25235. image: {
  25236. source: "./media/characters/juri/maw.svg"
  25237. }
  25238. },
  25239. stomach: {
  25240. height: math.unit(0.89, "feet"),
  25241. capacity: math.unit(4, "liters"),
  25242. name: "Stomach",
  25243. image: {
  25244. source: "./media/characters/juri/stomach.svg"
  25245. }
  25246. },
  25247. },
  25248. [
  25249. {
  25250. name: "Normal",
  25251. height: math.unit(7 + 3 / 12, "feet"),
  25252. default: true
  25253. },
  25254. ]
  25255. ))
  25256. characterMakers.push(() => makeCharacter(
  25257. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25258. {
  25259. fox: {
  25260. height: math.unit(5 + 6 / 12, "feet"),
  25261. weight: math.unit(140, "lb"),
  25262. name: "Fox",
  25263. image: {
  25264. source: "./media/characters/maxene-sita/fox.svg",
  25265. extra: 146 / 138,
  25266. bottom: 2.1 / 148.19
  25267. }
  25268. },
  25269. foxLaying: {
  25270. height: math.unit(1.70, "feet"),
  25271. weight: math.unit(140, "lb"),
  25272. name: "Fox (Laying)",
  25273. image: {
  25274. source: "./media/characters/maxene-sita/fox-laying.svg",
  25275. extra: 910 / 572,
  25276. bottom: 71 / 981
  25277. }
  25278. },
  25279. kitsune: {
  25280. height: math.unit(10, "feet"),
  25281. weight: math.unit(800, "lb"),
  25282. name: "Kitsune",
  25283. image: {
  25284. source: "./media/characters/maxene-sita/kitsune.svg",
  25285. extra: 185 / 176,
  25286. bottom: 4.7 / 189.9
  25287. }
  25288. },
  25289. hellhound: {
  25290. height: math.unit(10, "feet"),
  25291. weight: math.unit(700, "lb"),
  25292. name: "Hellhound",
  25293. image: {
  25294. source: "./media/characters/maxene-sita/hellhound.svg",
  25295. extra: 1600 / 1545,
  25296. bottom: 81 / 1681
  25297. }
  25298. },
  25299. },
  25300. [
  25301. {
  25302. name: "Normal",
  25303. height: math.unit(5 + 6 / 12, "feet"),
  25304. default: true
  25305. },
  25306. ]
  25307. ))
  25308. characterMakers.push(() => makeCharacter(
  25309. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25310. {
  25311. front: {
  25312. height: math.unit(3 + 4 / 12, "feet"),
  25313. weight: math.unit(70, "lb"),
  25314. name: "Front",
  25315. image: {
  25316. source: "./media/characters/maia/front.svg",
  25317. extra: 227 / 219.5,
  25318. bottom: 40 / 267
  25319. }
  25320. },
  25321. back: {
  25322. height: math.unit(3 + 4 / 12, "feet"),
  25323. weight: math.unit(70, "lb"),
  25324. name: "Back",
  25325. image: {
  25326. source: "./media/characters/maia/back.svg",
  25327. extra: 237 / 225
  25328. }
  25329. },
  25330. },
  25331. [
  25332. {
  25333. name: "Normal",
  25334. height: math.unit(3 + 4 / 12, "feet"),
  25335. default: true
  25336. },
  25337. ]
  25338. ))
  25339. characterMakers.push(() => makeCharacter(
  25340. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25341. {
  25342. front: {
  25343. height: math.unit(5 + 10 / 12, "feet"),
  25344. weight: math.unit(197, "lb"),
  25345. name: "Front",
  25346. image: {
  25347. source: "./media/characters/jabaro/front.svg",
  25348. extra: 225 / 216,
  25349. bottom: 5.06 / 230
  25350. }
  25351. },
  25352. back: {
  25353. height: math.unit(5 + 10 / 12, "feet"),
  25354. weight: math.unit(197, "lb"),
  25355. name: "Back",
  25356. image: {
  25357. source: "./media/characters/jabaro/back.svg",
  25358. extra: 225 / 219,
  25359. bottom: 1.9 / 227
  25360. }
  25361. },
  25362. },
  25363. [
  25364. {
  25365. name: "Normal",
  25366. height: math.unit(5 + 10 / 12, "feet"),
  25367. default: true
  25368. },
  25369. ]
  25370. ))
  25371. characterMakers.push(() => makeCharacter(
  25372. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25373. {
  25374. front: {
  25375. height: math.unit(5 + 8 / 12, "feet"),
  25376. weight: math.unit(139, "lb"),
  25377. name: "Front",
  25378. image: {
  25379. source: "./media/characters/risa/front.svg",
  25380. extra: 270 / 260,
  25381. bottom: 11.2 / 282
  25382. }
  25383. },
  25384. back: {
  25385. height: math.unit(5 + 8 / 12, "feet"),
  25386. weight: math.unit(139, "lb"),
  25387. name: "Back",
  25388. image: {
  25389. source: "./media/characters/risa/back.svg",
  25390. extra: 264 / 255,
  25391. bottom: 4 / 268
  25392. }
  25393. },
  25394. },
  25395. [
  25396. {
  25397. name: "Normal",
  25398. height: math.unit(5 + 8 / 12, "feet"),
  25399. default: true
  25400. },
  25401. ]
  25402. ))
  25403. characterMakers.push(() => makeCharacter(
  25404. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25405. {
  25406. front: {
  25407. height: math.unit(2 + 11 / 12, "feet"),
  25408. weight: math.unit(30, "lb"),
  25409. name: "Front",
  25410. image: {
  25411. source: "./media/characters/weatley/front.svg",
  25412. bottom: 10.7 / 414,
  25413. extra: 403.5 / 362
  25414. }
  25415. },
  25416. back: {
  25417. height: math.unit(2 + 11 / 12, "feet"),
  25418. weight: math.unit(30, "lb"),
  25419. name: "Back",
  25420. image: {
  25421. source: "./media/characters/weatley/back.svg",
  25422. bottom: 10.7 / 414,
  25423. extra: 403.5 / 362
  25424. }
  25425. },
  25426. },
  25427. [
  25428. {
  25429. name: "Normal",
  25430. height: math.unit(2 + 11 / 12, "feet"),
  25431. default: true
  25432. },
  25433. ]
  25434. ))
  25435. characterMakers.push(() => makeCharacter(
  25436. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25437. {
  25438. front: {
  25439. height: math.unit(5 + 2 / 12, "feet"),
  25440. weight: math.unit(50, "kg"),
  25441. name: "Front",
  25442. image: {
  25443. source: "./media/characters/mercury-crescent/front.svg",
  25444. extra: 1088 / 1033,
  25445. bottom: 18.9 / 1109
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Normal",
  25452. height: math.unit(5 + 2 / 12, "feet"),
  25453. default: true
  25454. },
  25455. ]
  25456. ))
  25457. characterMakers.push(() => makeCharacter(
  25458. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25459. {
  25460. front: {
  25461. height: math.unit(2, "feet"),
  25462. weight: math.unit(15, "kg"),
  25463. name: "Front",
  25464. image: {
  25465. source: "./media/characters/diamond-jones/front.svg",
  25466. extra: 727/723,
  25467. bottom: 46/773
  25468. }
  25469. },
  25470. },
  25471. [
  25472. {
  25473. name: "Normal",
  25474. height: math.unit(2, "feet"),
  25475. default: true
  25476. },
  25477. ]
  25478. ))
  25479. characterMakers.push(() => makeCharacter(
  25480. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25481. {
  25482. front: {
  25483. height: math.unit(3, "feet"),
  25484. weight: math.unit(30, "kg"),
  25485. name: "Front",
  25486. image: {
  25487. source: "./media/characters/sweet-bit/front.svg",
  25488. extra: 675 / 567,
  25489. bottom: 27.7 / 703
  25490. }
  25491. },
  25492. },
  25493. [
  25494. {
  25495. name: "Normal",
  25496. height: math.unit(3, "feet"),
  25497. default: true
  25498. },
  25499. ]
  25500. ))
  25501. characterMakers.push(() => makeCharacter(
  25502. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25503. {
  25504. side: {
  25505. height: math.unit(9.178, "feet"),
  25506. weight: math.unit(500, "lb"),
  25507. name: "Side",
  25508. image: {
  25509. source: "./media/characters/umbrazen/side.svg",
  25510. extra: 1730 / 1473,
  25511. bottom: 34.6 / 1765
  25512. }
  25513. },
  25514. },
  25515. [
  25516. {
  25517. name: "Normal",
  25518. height: math.unit(9.178, "feet"),
  25519. default: true
  25520. },
  25521. ]
  25522. ))
  25523. characterMakers.push(() => makeCharacter(
  25524. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25525. {
  25526. front: {
  25527. height: math.unit(10, "feet"),
  25528. weight: math.unit(750, "lb"),
  25529. name: "Front",
  25530. image: {
  25531. source: "./media/characters/arlist/front.svg",
  25532. extra: 961 / 778,
  25533. bottom: 6.2 / 986
  25534. }
  25535. },
  25536. },
  25537. [
  25538. {
  25539. name: "Normal",
  25540. height: math.unit(10, "feet"),
  25541. default: true
  25542. },
  25543. ]
  25544. ))
  25545. characterMakers.push(() => makeCharacter(
  25546. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25547. {
  25548. front: {
  25549. height: math.unit(5 + 1 / 12, "feet"),
  25550. weight: math.unit(110, "lb"),
  25551. name: "Front",
  25552. image: {
  25553. source: "./media/characters/aradel/front.svg",
  25554. extra: 324 / 303,
  25555. bottom: 3.6 / 329.4
  25556. }
  25557. },
  25558. },
  25559. [
  25560. {
  25561. name: "Normal",
  25562. height: math.unit(5 + 1 / 12, "feet"),
  25563. default: true
  25564. },
  25565. ]
  25566. ))
  25567. characterMakers.push(() => makeCharacter(
  25568. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25569. {
  25570. front: {
  25571. height: math.unit(3 + 8 / 12, "feet"),
  25572. weight: math.unit(50, "lb"),
  25573. name: "Front",
  25574. image: {
  25575. source: "./media/characters/serryn/front.svg",
  25576. extra: 1792 / 1656,
  25577. bottom: 43.5 / 1840
  25578. }
  25579. },
  25580. },
  25581. [
  25582. {
  25583. name: "Normal",
  25584. height: math.unit(3 + 8 / 12, "feet"),
  25585. default: true
  25586. },
  25587. ]
  25588. ))
  25589. characterMakers.push(() => makeCharacter(
  25590. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25591. {
  25592. front: {
  25593. height: math.unit(7 + 10 / 12, "feet"),
  25594. weight: math.unit(255, "lb"),
  25595. name: "Front",
  25596. image: {
  25597. source: "./media/characters/xavier-thyme/front.svg",
  25598. extra: 3733 / 3642,
  25599. bottom: 131 / 3869
  25600. }
  25601. },
  25602. frontRaven: {
  25603. height: math.unit(7 + 10 / 12, "feet"),
  25604. weight: math.unit(255, "lb"),
  25605. name: "Front (Raven)",
  25606. image: {
  25607. source: "./media/characters/xavier-thyme/front-raven.svg",
  25608. extra: 4385 / 3642,
  25609. bottom: 131 / 4517
  25610. }
  25611. },
  25612. },
  25613. [
  25614. {
  25615. name: "Normal",
  25616. height: math.unit(7 + 10 / 12, "feet"),
  25617. default: true
  25618. },
  25619. ]
  25620. ))
  25621. characterMakers.push(() => makeCharacter(
  25622. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25623. {
  25624. front: {
  25625. height: math.unit(1.6, "m"),
  25626. weight: math.unit(50, "kg"),
  25627. name: "Front",
  25628. image: {
  25629. source: "./media/characters/kiki/front.svg",
  25630. extra: 4682 / 3610,
  25631. bottom: 115 / 4777
  25632. }
  25633. },
  25634. },
  25635. [
  25636. {
  25637. name: "Normal",
  25638. height: math.unit(1.6, "meters"),
  25639. default: true
  25640. },
  25641. ]
  25642. ))
  25643. characterMakers.push(() => makeCharacter(
  25644. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25645. {
  25646. front: {
  25647. height: math.unit(50, "m"),
  25648. weight: math.unit(500, "tonnes"),
  25649. name: "Front",
  25650. image: {
  25651. source: "./media/characters/ryoko/front.svg",
  25652. extra: 4632 / 3926,
  25653. bottom: 193 / 4823
  25654. }
  25655. },
  25656. },
  25657. [
  25658. {
  25659. name: "Normal",
  25660. height: math.unit(50, "meters"),
  25661. default: true
  25662. },
  25663. ]
  25664. ))
  25665. characterMakers.push(() => makeCharacter(
  25666. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25667. {
  25668. front: {
  25669. height: math.unit(30, "m"),
  25670. weight: math.unit(22, "tonnes"),
  25671. name: "Front",
  25672. image: {
  25673. source: "./media/characters/elio/front.svg",
  25674. extra: 4582 / 3720,
  25675. bottom: 236 / 4828
  25676. }
  25677. },
  25678. },
  25679. [
  25680. {
  25681. name: "Normal",
  25682. height: math.unit(30, "meters"),
  25683. default: true
  25684. },
  25685. ]
  25686. ))
  25687. characterMakers.push(() => makeCharacter(
  25688. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25689. {
  25690. front: {
  25691. height: math.unit(6 + 3 / 12, "feet"),
  25692. weight: math.unit(120, "lb"),
  25693. name: "Front",
  25694. image: {
  25695. source: "./media/characters/azura/front.svg",
  25696. extra: 1149 / 1135,
  25697. bottom: 45 / 1194
  25698. }
  25699. },
  25700. frontClothed: {
  25701. height: math.unit(6 + 3 / 12, "feet"),
  25702. weight: math.unit(120, "lb"),
  25703. name: "Front (Clothed)",
  25704. image: {
  25705. source: "./media/characters/azura/front-clothed.svg",
  25706. extra: 1149 / 1135,
  25707. bottom: 45 / 1194
  25708. }
  25709. },
  25710. },
  25711. [
  25712. {
  25713. name: "Normal",
  25714. height: math.unit(6 + 3 / 12, "feet"),
  25715. default: true
  25716. },
  25717. {
  25718. name: "Macro",
  25719. height: math.unit(20 + 6 / 12, "feet")
  25720. },
  25721. {
  25722. name: "Megamacro",
  25723. height: math.unit(12, "miles")
  25724. },
  25725. {
  25726. name: "Gigamacro",
  25727. height: math.unit(10000, "miles")
  25728. },
  25729. {
  25730. name: "Teramacro",
  25731. height: math.unit(900000, "miles")
  25732. },
  25733. ]
  25734. ))
  25735. characterMakers.push(() => makeCharacter(
  25736. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25737. {
  25738. front: {
  25739. height: math.unit(12, "feet"),
  25740. weight: math.unit(1, "ton"),
  25741. capacity: math.unit(660000, "gallons"),
  25742. name: "Front",
  25743. image: {
  25744. source: "./media/characters/zeus/front.svg",
  25745. extra: 5005 / 4717,
  25746. bottom: 363 / 5388
  25747. }
  25748. },
  25749. },
  25750. [
  25751. {
  25752. name: "Normal",
  25753. height: math.unit(12, "feet")
  25754. },
  25755. {
  25756. name: "Preferred Size",
  25757. height: math.unit(0.5, "miles"),
  25758. default: true
  25759. },
  25760. {
  25761. name: "Giga Horse",
  25762. height: math.unit(300, "miles")
  25763. },
  25764. {
  25765. name: "Riding Planets",
  25766. height: math.unit(30, "megameters")
  25767. },
  25768. {
  25769. name: "Cosmic Giant",
  25770. height: math.unit(3, "zettameters")
  25771. },
  25772. {
  25773. name: "Breeding God",
  25774. height: math.unit(9.92e22, "yottameters")
  25775. },
  25776. ]
  25777. ))
  25778. characterMakers.push(() => makeCharacter(
  25779. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25780. {
  25781. side: {
  25782. height: math.unit(9, "feet"),
  25783. weight: math.unit(1500, "kg"),
  25784. name: "Side",
  25785. image: {
  25786. source: "./media/characters/fang/side.svg",
  25787. extra: 924 / 866,
  25788. bottom: 47.5 / 972.3
  25789. }
  25790. },
  25791. },
  25792. [
  25793. {
  25794. name: "Normal",
  25795. height: math.unit(9, "feet"),
  25796. default: true
  25797. },
  25798. {
  25799. name: "Macro",
  25800. height: math.unit(75 + 6 / 12, "feet")
  25801. },
  25802. {
  25803. name: "Teramacro",
  25804. height: math.unit(50000, "miles")
  25805. },
  25806. ]
  25807. ))
  25808. characterMakers.push(() => makeCharacter(
  25809. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25810. {
  25811. front: {
  25812. height: math.unit(10, "feet"),
  25813. weight: math.unit(2, "tons"),
  25814. name: "Front",
  25815. image: {
  25816. source: "./media/characters/rekhit/front.svg",
  25817. extra: 2796 / 2590,
  25818. bottom: 225 / 3022
  25819. }
  25820. },
  25821. },
  25822. [
  25823. {
  25824. name: "Normal",
  25825. height: math.unit(10, "feet"),
  25826. default: true
  25827. },
  25828. {
  25829. name: "Macro",
  25830. height: math.unit(500, "feet")
  25831. },
  25832. ]
  25833. ))
  25834. characterMakers.push(() => makeCharacter(
  25835. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  25836. {
  25837. front: {
  25838. height: math.unit(7 + 6.451 / 12, "feet"),
  25839. weight: math.unit(310, "lb"),
  25840. name: "Front",
  25841. image: {
  25842. source: "./media/characters/dahlia-verrick/front.svg",
  25843. extra: 1488 / 1365,
  25844. bottom: 6.2 / 1495
  25845. }
  25846. },
  25847. back: {
  25848. height: math.unit(7 + 6.451 / 12, "feet"),
  25849. weight: math.unit(310, "lb"),
  25850. name: "Back",
  25851. image: {
  25852. source: "./media/characters/dahlia-verrick/back.svg",
  25853. extra: 1472 / 1351,
  25854. bottom: 5.28 / 1477
  25855. }
  25856. },
  25857. frontBusiness: {
  25858. height: math.unit(7 + 6.451 / 12, "feet"),
  25859. weight: math.unit(200, "lb"),
  25860. name: "Front (Business)",
  25861. image: {
  25862. source: "./media/characters/dahlia-verrick/front-business.svg",
  25863. extra: 1478 / 1381,
  25864. bottom: 5.5 / 1484
  25865. }
  25866. },
  25867. frontCasual: {
  25868. height: math.unit(7 + 6.451 / 12, "feet"),
  25869. weight: math.unit(200, "lb"),
  25870. name: "Front (Casual)",
  25871. image: {
  25872. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25873. extra: 1478 / 1381,
  25874. bottom: 5.5 / 1484
  25875. }
  25876. },
  25877. },
  25878. [
  25879. {
  25880. name: "Travel-Sized",
  25881. height: math.unit(7.45, "inches")
  25882. },
  25883. {
  25884. name: "Normal",
  25885. height: math.unit(7 + 6.451 / 12, "feet"),
  25886. default: true
  25887. },
  25888. {
  25889. name: "Hitting the Town",
  25890. height: math.unit(37 + 8 / 12, "feet")
  25891. },
  25892. {
  25893. name: "Stomp in the Suburbs",
  25894. height: math.unit(964 + 9.728 / 12, "feet")
  25895. },
  25896. {
  25897. name: "Sit on the City",
  25898. height: math.unit(61747 + 10.592 / 12, "feet")
  25899. },
  25900. {
  25901. name: "Glomp the Globe",
  25902. height: math.unit(252919327 + 4.832 / 12, "feet")
  25903. },
  25904. ]
  25905. ))
  25906. characterMakers.push(() => makeCharacter(
  25907. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25908. {
  25909. front: {
  25910. height: math.unit(6 + 4 / 12, "feet"),
  25911. weight: math.unit(320, "lb"),
  25912. name: "Front",
  25913. image: {
  25914. source: "./media/characters/balina-mahigan/front.svg",
  25915. extra: 447 / 428,
  25916. bottom: 18 / 466
  25917. }
  25918. },
  25919. back: {
  25920. height: math.unit(6 + 4 / 12, "feet"),
  25921. weight: math.unit(320, "lb"),
  25922. name: "Back",
  25923. image: {
  25924. source: "./media/characters/balina-mahigan/back.svg",
  25925. extra: 445 / 428,
  25926. bottom: 4.07 / 448
  25927. }
  25928. },
  25929. arm: {
  25930. height: math.unit(1.88, "feet"),
  25931. name: "Arm",
  25932. image: {
  25933. source: "./media/characters/balina-mahigan/arm.svg"
  25934. }
  25935. },
  25936. backPort: {
  25937. height: math.unit(0.685, "feet"),
  25938. name: "Back Port",
  25939. image: {
  25940. source: "./media/characters/balina-mahigan/back-port.svg"
  25941. }
  25942. },
  25943. hoofpaw: {
  25944. height: math.unit(1.41, "feet"),
  25945. name: "Hoofpaw",
  25946. image: {
  25947. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25948. }
  25949. },
  25950. leftHandBack: {
  25951. height: math.unit(0.938, "feet"),
  25952. name: "Left Hand (Back)",
  25953. image: {
  25954. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25955. }
  25956. },
  25957. leftHandFront: {
  25958. height: math.unit(0.938, "feet"),
  25959. name: "Left Hand (Front)",
  25960. image: {
  25961. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25962. }
  25963. },
  25964. rightHandBack: {
  25965. height: math.unit(0.95, "feet"),
  25966. name: "Right Hand (Back)",
  25967. image: {
  25968. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25969. }
  25970. },
  25971. rightHandFront: {
  25972. height: math.unit(0.95, "feet"),
  25973. name: "Right Hand (Front)",
  25974. image: {
  25975. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25976. }
  25977. },
  25978. },
  25979. [
  25980. {
  25981. name: "Normal",
  25982. height: math.unit(6 + 4 / 12, "feet"),
  25983. default: true
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  25989. {
  25990. front: {
  25991. height: math.unit(6, "feet"),
  25992. weight: math.unit(320, "lb"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/balina-mejeri/front.svg",
  25996. extra: 517 / 488,
  25997. bottom: 44.2 / 561
  25998. }
  25999. },
  26000. },
  26001. [
  26002. {
  26003. name: "Normal",
  26004. height: math.unit(6 + 4 / 12, "feet")
  26005. },
  26006. {
  26007. name: "Business",
  26008. height: math.unit(155, "feet"),
  26009. default: true
  26010. },
  26011. ]
  26012. ))
  26013. characterMakers.push(() => makeCharacter(
  26014. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26015. {
  26016. kneeling: {
  26017. height: math.unit(6 + 4 / 12, "feet"),
  26018. weight: math.unit(300 * 20, "lb"),
  26019. name: "Kneeling",
  26020. image: {
  26021. source: "./media/characters/balbarian/kneeling.svg",
  26022. extra: 922 / 862,
  26023. bottom: 42.4 / 965
  26024. }
  26025. },
  26026. },
  26027. [
  26028. {
  26029. name: "Normal",
  26030. height: math.unit(6 + 4 / 12, "feet")
  26031. },
  26032. {
  26033. name: "Treasured",
  26034. height: math.unit(18 + 9 / 12, "feet"),
  26035. default: true
  26036. },
  26037. {
  26038. name: "Macro",
  26039. height: math.unit(900, "feet")
  26040. },
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26045. {
  26046. front: {
  26047. height: math.unit(6 + 4 / 12, "feet"),
  26048. weight: math.unit(325, "lb"),
  26049. name: "Front",
  26050. image: {
  26051. source: "./media/characters/balina-amarini/front.svg",
  26052. extra: 415 / 403,
  26053. bottom: 19 / 433.4
  26054. }
  26055. },
  26056. back: {
  26057. height: math.unit(6 + 4 / 12, "feet"),
  26058. weight: math.unit(325, "lb"),
  26059. name: "Back",
  26060. image: {
  26061. source: "./media/characters/balina-amarini/back.svg",
  26062. extra: 415 / 403,
  26063. bottom: 13.5 / 432
  26064. }
  26065. },
  26066. overdrive: {
  26067. height: math.unit(6 + 4 / 12, "feet"),
  26068. weight: math.unit(400, "lb"),
  26069. name: "Overdrive",
  26070. image: {
  26071. source: "./media/characters/balina-amarini/overdrive.svg",
  26072. extra: 269 / 259,
  26073. bottom: 12 / 282
  26074. }
  26075. },
  26076. },
  26077. [
  26078. {
  26079. name: "Boom",
  26080. height: math.unit(9 + 10 / 12, "feet"),
  26081. default: true
  26082. },
  26083. {
  26084. name: "Macro",
  26085. height: math.unit(280, "feet")
  26086. },
  26087. ]
  26088. ))
  26089. characterMakers.push(() => makeCharacter(
  26090. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26091. {
  26092. goddess: {
  26093. height: math.unit(600, "feet"),
  26094. weight: math.unit(2000000, "tons"),
  26095. name: "Goddess",
  26096. image: {
  26097. source: "./media/characters/lady-kubwa/goddess.svg",
  26098. extra: 1240.5 / 1223,
  26099. bottom: 22 / 1263
  26100. }
  26101. },
  26102. goddesser: {
  26103. height: math.unit(900, "feet"),
  26104. weight: math.unit(20000000, "lb"),
  26105. name: "Goddess-er",
  26106. image: {
  26107. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26108. extra: 899 / 888,
  26109. bottom: 12.6 / 912
  26110. }
  26111. },
  26112. },
  26113. [
  26114. {
  26115. name: "Macro",
  26116. height: math.unit(600, "feet"),
  26117. default: true
  26118. },
  26119. {
  26120. name: "Megamacro",
  26121. height: math.unit(250, "miles")
  26122. },
  26123. ]
  26124. ))
  26125. characterMakers.push(() => makeCharacter(
  26126. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26127. {
  26128. front: {
  26129. height: math.unit(7 + 7 / 12, "feet"),
  26130. weight: math.unit(250, "lb"),
  26131. name: "Front",
  26132. image: {
  26133. source: "./media/characters/tala-grovehorn/front.svg",
  26134. extra: 2636 / 2525,
  26135. bottom: 147 / 2781
  26136. }
  26137. },
  26138. back: {
  26139. height: math.unit(7 + 7 / 12, "feet"),
  26140. weight: math.unit(250, "lb"),
  26141. name: "Back",
  26142. image: {
  26143. source: "./media/characters/tala-grovehorn/back.svg",
  26144. extra: 2635 / 2539,
  26145. bottom: 100 / 2732.8
  26146. }
  26147. },
  26148. mouth: {
  26149. height: math.unit(1.15, "feet"),
  26150. name: "Mouth",
  26151. image: {
  26152. source: "./media/characters/tala-grovehorn/mouth.svg"
  26153. }
  26154. },
  26155. dick: {
  26156. height: math.unit(2.36, "feet"),
  26157. name: "Dick",
  26158. image: {
  26159. source: "./media/characters/tala-grovehorn/dick.svg"
  26160. }
  26161. },
  26162. slit: {
  26163. height: math.unit(0.61, "feet"),
  26164. name: "Slit",
  26165. image: {
  26166. source: "./media/characters/tala-grovehorn/slit.svg"
  26167. }
  26168. },
  26169. },
  26170. [
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26175. {
  26176. front: {
  26177. height: math.unit(7 + 7 / 12, "feet"),
  26178. weight: math.unit(225, "lb"),
  26179. name: "Front",
  26180. image: {
  26181. source: "./media/characters/epona/front.svg",
  26182. extra: 2445 / 2290,
  26183. bottom: 251 / 2696
  26184. }
  26185. },
  26186. back: {
  26187. height: math.unit(7 + 7 / 12, "feet"),
  26188. weight: math.unit(225, "lb"),
  26189. name: "Back",
  26190. image: {
  26191. source: "./media/characters/epona/back.svg",
  26192. extra: 2546 / 2408,
  26193. bottom: 44 / 2589
  26194. }
  26195. },
  26196. genitals: {
  26197. height: math.unit(1.5, "feet"),
  26198. name: "Genitals",
  26199. image: {
  26200. source: "./media/characters/epona/genitals.svg"
  26201. }
  26202. },
  26203. },
  26204. [
  26205. {
  26206. name: "Normal",
  26207. height: math.unit(7 + 7 / 12, "feet"),
  26208. default: true
  26209. },
  26210. ]
  26211. ))
  26212. characterMakers.push(() => makeCharacter(
  26213. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26214. {
  26215. front: {
  26216. height: math.unit(7, "feet"),
  26217. weight: math.unit(518, "lb"),
  26218. name: "Front",
  26219. image: {
  26220. source: "./media/characters/avia-bloodbourn/front.svg",
  26221. extra: 1466 / 1350,
  26222. bottom: 65 / 1527
  26223. }
  26224. },
  26225. },
  26226. [
  26227. ]
  26228. ))
  26229. characterMakers.push(() => makeCharacter(
  26230. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26231. {
  26232. front: {
  26233. height: math.unit(9.35, "feet"),
  26234. weight: math.unit(600, "lb"),
  26235. name: "Front",
  26236. image: {
  26237. source: "./media/characters/amera/front.svg",
  26238. extra: 891 / 818,
  26239. bottom: 30 / 922.7
  26240. }
  26241. },
  26242. back: {
  26243. height: math.unit(9.35, "feet"),
  26244. weight: math.unit(600, "lb"),
  26245. name: "Back",
  26246. image: {
  26247. source: "./media/characters/amera/back.svg",
  26248. extra: 876 / 824,
  26249. bottom: 6.8 / 884
  26250. }
  26251. },
  26252. dick: {
  26253. height: math.unit(2.14, "feet"),
  26254. name: "Dick",
  26255. image: {
  26256. source: "./media/characters/amera/dick.svg"
  26257. }
  26258. },
  26259. },
  26260. [
  26261. {
  26262. name: "Normal",
  26263. height: math.unit(9.35, "feet"),
  26264. default: true
  26265. },
  26266. ]
  26267. ))
  26268. characterMakers.push(() => makeCharacter(
  26269. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26270. {
  26271. kneeling: {
  26272. height: math.unit(3 + 4 / 12, "feet"),
  26273. weight: math.unit(90, "lb"),
  26274. name: "Kneeling",
  26275. image: {
  26276. source: "./media/characters/rosewen/kneeling.svg",
  26277. extra: 1835 / 1571,
  26278. bottom: 27.7 / 1862
  26279. }
  26280. },
  26281. },
  26282. [
  26283. {
  26284. name: "Normal",
  26285. height: math.unit(3 + 4 / 12, "feet"),
  26286. default: true
  26287. },
  26288. ]
  26289. ))
  26290. characterMakers.push(() => makeCharacter(
  26291. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26292. {
  26293. front: {
  26294. height: math.unit(5 + 10 / 12, "feet"),
  26295. weight: math.unit(200, "lb"),
  26296. name: "Front",
  26297. image: {
  26298. source: "./media/characters/sabah/front.svg",
  26299. extra: 849 / 763,
  26300. bottom: 33.9 / 881
  26301. }
  26302. },
  26303. },
  26304. [
  26305. {
  26306. name: "Normal",
  26307. height: math.unit(5 + 10 / 12, "feet"),
  26308. default: true
  26309. },
  26310. ]
  26311. ))
  26312. characterMakers.push(() => makeCharacter(
  26313. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26314. {
  26315. front: {
  26316. height: math.unit(3 + 5 / 12, "feet"),
  26317. weight: math.unit(40, "kg"),
  26318. name: "Front",
  26319. image: {
  26320. source: "./media/characters/purple-flame/front.svg",
  26321. extra: 1577 / 1412,
  26322. bottom: 97 / 1694
  26323. }
  26324. },
  26325. frontDressed: {
  26326. height: math.unit(3 + 5 / 12, "feet"),
  26327. weight: math.unit(40, "kg"),
  26328. name: "Front (Dressed)",
  26329. image: {
  26330. source: "./media/characters/purple-flame/front-dressed.svg",
  26331. extra: 1577 / 1412,
  26332. bottom: 97 / 1694
  26333. }
  26334. },
  26335. headphones: {
  26336. height: math.unit(0.85, "feet"),
  26337. name: "Headphones",
  26338. image: {
  26339. source: "./media/characters/purple-flame/headphones.svg"
  26340. }
  26341. },
  26342. },
  26343. [
  26344. {
  26345. name: "Really Small",
  26346. height: math.unit(5, "cm")
  26347. },
  26348. {
  26349. name: "Micro",
  26350. height: math.unit(1 + 5 / 12, "feet")
  26351. },
  26352. {
  26353. name: "Normal",
  26354. height: math.unit(3 + 5 / 12, "feet"),
  26355. default: true
  26356. },
  26357. {
  26358. name: "Minimacro",
  26359. height: math.unit(125, "feet")
  26360. },
  26361. {
  26362. name: "Macro",
  26363. height: math.unit(0.5, "miles")
  26364. },
  26365. {
  26366. name: "Megamacro",
  26367. height: math.unit(50, "miles")
  26368. },
  26369. {
  26370. name: "Gigantic",
  26371. height: math.unit(750, "miles")
  26372. },
  26373. {
  26374. name: "Planetary",
  26375. height: math.unit(15000, "miles")
  26376. },
  26377. ]
  26378. ))
  26379. characterMakers.push(() => makeCharacter(
  26380. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26381. {
  26382. front: {
  26383. height: math.unit(14, "feet"),
  26384. weight: math.unit(959, "lb"),
  26385. name: "Front",
  26386. image: {
  26387. source: "./media/characters/arsenal/front.svg",
  26388. extra: 2357 / 2157,
  26389. bottom: 93 / 2458
  26390. }
  26391. },
  26392. },
  26393. [
  26394. {
  26395. name: "Normal",
  26396. height: math.unit(14, "feet"),
  26397. default: true
  26398. },
  26399. ]
  26400. ))
  26401. characterMakers.push(() => makeCharacter(
  26402. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26403. {
  26404. front: {
  26405. height: math.unit(6, "feet"),
  26406. weight: math.unit(150, "lb"),
  26407. name: "Front",
  26408. image: {
  26409. source: "./media/characters/adira/front.svg",
  26410. extra: 1078 / 1029,
  26411. bottom: 87 / 1166
  26412. }
  26413. },
  26414. },
  26415. [
  26416. {
  26417. name: "Micro",
  26418. height: math.unit(4, "inches"),
  26419. default: true
  26420. },
  26421. {
  26422. name: "Macro",
  26423. height: math.unit(50, "feet")
  26424. },
  26425. ]
  26426. ))
  26427. characterMakers.push(() => makeCharacter(
  26428. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26429. {
  26430. front: {
  26431. height: math.unit(16, "feet"),
  26432. weight: math.unit(1000, "lb"),
  26433. name: "Front",
  26434. image: {
  26435. source: "./media/characters/grim/front.svg",
  26436. extra: 622 / 614,
  26437. bottom: 18.1 / 642
  26438. }
  26439. },
  26440. back: {
  26441. height: math.unit(16, "feet"),
  26442. weight: math.unit(1000, "lb"),
  26443. name: "Back",
  26444. image: {
  26445. source: "./media/characters/grim/back.svg",
  26446. extra: 610.6 / 602,
  26447. bottom: 40.8 / 652
  26448. }
  26449. },
  26450. hunched: {
  26451. height: math.unit(9.75, "feet"),
  26452. weight: math.unit(1000, "lb"),
  26453. name: "Hunched",
  26454. image: {
  26455. source: "./media/characters/grim/hunched.svg",
  26456. extra: 304 / 297,
  26457. bottom: 35.4 / 394
  26458. }
  26459. },
  26460. },
  26461. [
  26462. {
  26463. name: "Normal",
  26464. height: math.unit(16, "feet"),
  26465. default: true
  26466. },
  26467. ]
  26468. ))
  26469. characterMakers.push(() => makeCharacter(
  26470. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26471. {
  26472. front: {
  26473. height: math.unit(2.3, "meters"),
  26474. weight: math.unit(300, "lb"),
  26475. name: "Front",
  26476. image: {
  26477. source: "./media/characters/sinja/front-sfw.svg",
  26478. extra: 1393 / 1294,
  26479. bottom: 70 / 1463
  26480. }
  26481. },
  26482. frontNsfw: {
  26483. height: math.unit(2.3, "meters"),
  26484. weight: math.unit(300, "lb"),
  26485. name: "Front (NSFW)",
  26486. image: {
  26487. source: "./media/characters/sinja/front-nsfw.svg",
  26488. extra: 1393 / 1294,
  26489. bottom: 70 / 1463
  26490. }
  26491. },
  26492. back: {
  26493. height: math.unit(2.3, "meters"),
  26494. weight: math.unit(300, "lb"),
  26495. name: "Back",
  26496. image: {
  26497. source: "./media/characters/sinja/back.svg",
  26498. extra: 1393 / 1294,
  26499. bottom: 70 / 1463
  26500. }
  26501. },
  26502. head: {
  26503. height: math.unit(1.771, "feet"),
  26504. name: "Head",
  26505. image: {
  26506. source: "./media/characters/sinja/head.svg"
  26507. }
  26508. },
  26509. slit: {
  26510. height: math.unit(0.8, "feet"),
  26511. name: "Slit",
  26512. image: {
  26513. source: "./media/characters/sinja/slit.svg"
  26514. }
  26515. },
  26516. },
  26517. [
  26518. {
  26519. name: "Normal",
  26520. height: math.unit(2.3, "meters")
  26521. },
  26522. {
  26523. name: "Macro",
  26524. height: math.unit(91, "meters"),
  26525. default: true
  26526. },
  26527. {
  26528. name: "Megamacro",
  26529. height: math.unit(91440, "meters")
  26530. },
  26531. {
  26532. name: "Gigamacro",
  26533. height: math.unit(60960000, "meters")
  26534. },
  26535. {
  26536. name: "Teramacro",
  26537. height: math.unit(9144000000, "meters")
  26538. },
  26539. ]
  26540. ))
  26541. characterMakers.push(() => makeCharacter(
  26542. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26543. {
  26544. front: {
  26545. height: math.unit(1.7, "meters"),
  26546. weight: math.unit(130, "lb"),
  26547. name: "Front",
  26548. image: {
  26549. source: "./media/characters/kyu/front.svg",
  26550. extra: 415 / 395,
  26551. bottom: 5 / 420
  26552. }
  26553. },
  26554. head: {
  26555. height: math.unit(1.75, "feet"),
  26556. name: "Head",
  26557. image: {
  26558. source: "./media/characters/kyu/head.svg"
  26559. }
  26560. },
  26561. foot: {
  26562. height: math.unit(0.81, "feet"),
  26563. name: "Foot",
  26564. image: {
  26565. source: "./media/characters/kyu/foot.svg"
  26566. }
  26567. },
  26568. },
  26569. [
  26570. {
  26571. name: "Normal",
  26572. height: math.unit(1.7, "meters")
  26573. },
  26574. {
  26575. name: "Macro",
  26576. height: math.unit(131, "feet"),
  26577. default: true
  26578. },
  26579. {
  26580. name: "Megamacro",
  26581. height: math.unit(91440, "meters")
  26582. },
  26583. {
  26584. name: "Gigamacro",
  26585. height: math.unit(60960000, "meters")
  26586. },
  26587. {
  26588. name: "Teramacro",
  26589. height: math.unit(9144000000, "meters")
  26590. },
  26591. ]
  26592. ))
  26593. characterMakers.push(() => makeCharacter(
  26594. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26595. {
  26596. front: {
  26597. height: math.unit(7 + 1 / 12, "feet"),
  26598. weight: math.unit(250, "lb"),
  26599. name: "Front",
  26600. image: {
  26601. source: "./media/characters/joey/front.svg",
  26602. extra: 1791 / 1537,
  26603. bottom: 28 / 1816
  26604. }
  26605. },
  26606. },
  26607. [
  26608. {
  26609. name: "Micro",
  26610. height: math.unit(3, "inches")
  26611. },
  26612. {
  26613. name: "Normal",
  26614. height: math.unit(7 + 1 / 12, "feet"),
  26615. default: true
  26616. },
  26617. ]
  26618. ))
  26619. characterMakers.push(() => makeCharacter(
  26620. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26621. {
  26622. front: {
  26623. height: math.unit(165, "cm"),
  26624. weight: math.unit(140, "lb"),
  26625. name: "Front",
  26626. image: {
  26627. source: "./media/characters/sam-evans/front.svg",
  26628. extra: 3417 / 3230,
  26629. bottom: 41.3 / 3417
  26630. }
  26631. },
  26632. frontSixTails: {
  26633. height: math.unit(165, "cm"),
  26634. weight: math.unit(140, "lb"),
  26635. name: "Front-six-tails",
  26636. image: {
  26637. source: "./media/characters/sam-evans/front-six-tails.svg",
  26638. extra: 3417 / 3230,
  26639. bottom: 41.3 / 3417
  26640. }
  26641. },
  26642. back: {
  26643. height: math.unit(165, "cm"),
  26644. weight: math.unit(140, "lb"),
  26645. name: "Back",
  26646. image: {
  26647. source: "./media/characters/sam-evans/back.svg",
  26648. extra: 3227 / 3032,
  26649. bottom: 6.8 / 3234
  26650. }
  26651. },
  26652. face: {
  26653. height: math.unit(0.68, "feet"),
  26654. name: "Face",
  26655. image: {
  26656. source: "./media/characters/sam-evans/face.svg"
  26657. }
  26658. },
  26659. },
  26660. [
  26661. {
  26662. name: "Normal",
  26663. height: math.unit(165, "cm"),
  26664. default: true
  26665. },
  26666. {
  26667. name: "Macro",
  26668. height: math.unit(100, "meters")
  26669. },
  26670. {
  26671. name: "Macro+",
  26672. height: math.unit(800, "meters")
  26673. },
  26674. {
  26675. name: "Macro++",
  26676. height: math.unit(3, "km")
  26677. },
  26678. {
  26679. name: "Macro+++",
  26680. height: math.unit(30, "km")
  26681. },
  26682. ]
  26683. ))
  26684. characterMakers.push(() => makeCharacter(
  26685. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26686. {
  26687. front: {
  26688. height: math.unit(10, "feet"),
  26689. weight: math.unit(750, "lb"),
  26690. name: "Front",
  26691. image: {
  26692. source: "./media/characters/juliet-a/front.svg",
  26693. extra: 1766 / 1720,
  26694. bottom: 43 / 1809
  26695. }
  26696. },
  26697. back: {
  26698. height: math.unit(10, "feet"),
  26699. weight: math.unit(750, "lb"),
  26700. name: "Back",
  26701. image: {
  26702. source: "./media/characters/juliet-a/back.svg",
  26703. extra: 1781 / 1734,
  26704. bottom: 35 / 1810,
  26705. }
  26706. },
  26707. },
  26708. [
  26709. {
  26710. name: "Normal",
  26711. height: math.unit(10, "feet"),
  26712. default: true
  26713. },
  26714. {
  26715. name: "Dragon Form",
  26716. height: math.unit(250, "feet")
  26717. },
  26718. {
  26719. name: "Macro",
  26720. height: math.unit(1000, "feet")
  26721. },
  26722. {
  26723. name: "Megamacro",
  26724. height: math.unit(10000, "feet")
  26725. }
  26726. ]
  26727. ))
  26728. characterMakers.push(() => makeCharacter(
  26729. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26730. {
  26731. regular: {
  26732. height: math.unit(7 + 3 / 12, "feet"),
  26733. weight: math.unit(260, "lb"),
  26734. name: "Regular",
  26735. image: {
  26736. source: "./media/characters/wild/regular.svg",
  26737. extra: 97.45 / 92,
  26738. bottom: 6.8 / 104.3
  26739. }
  26740. },
  26741. biggums: {
  26742. height: math.unit(8 + 6 / 12, "feet"),
  26743. weight: math.unit(425, "lb"),
  26744. name: "Biggums",
  26745. image: {
  26746. source: "./media/characters/wild/biggums.svg",
  26747. extra: 97.45 / 92,
  26748. bottom: 7.5 / 132.34
  26749. }
  26750. },
  26751. mawRegular: {
  26752. height: math.unit(1.24, "feet"),
  26753. name: "Maw (Regular)",
  26754. image: {
  26755. source: "./media/characters/wild/maw.svg"
  26756. }
  26757. },
  26758. mawBiggums: {
  26759. height: math.unit(1.47, "feet"),
  26760. name: "Maw (Biggums)",
  26761. image: {
  26762. source: "./media/characters/wild/maw.svg"
  26763. }
  26764. },
  26765. },
  26766. [
  26767. {
  26768. name: "Normal",
  26769. height: math.unit(7 + 3 / 12, "feet"),
  26770. default: true
  26771. },
  26772. ]
  26773. ))
  26774. characterMakers.push(() => makeCharacter(
  26775. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26776. {
  26777. front: {
  26778. height: math.unit(2.5, "meters"),
  26779. weight: math.unit(200, "kg"),
  26780. name: "Front",
  26781. image: {
  26782. source: "./media/characters/vidar/front.svg",
  26783. extra: 2994 / 2795,
  26784. bottom: 56 / 3061
  26785. }
  26786. },
  26787. back: {
  26788. height: math.unit(2.5, "meters"),
  26789. weight: math.unit(200, "kg"),
  26790. name: "Back",
  26791. image: {
  26792. source: "./media/characters/vidar/back.svg",
  26793. extra: 3131 / 2928,
  26794. bottom: 13.5 / 3141.5
  26795. }
  26796. },
  26797. feral: {
  26798. height: math.unit(2.5, "meters"),
  26799. weight: math.unit(2000, "kg"),
  26800. name: "Feral",
  26801. image: {
  26802. source: "./media/characters/vidar/feral.svg",
  26803. extra: 2790 / 1765,
  26804. bottom: 6 / 2796
  26805. }
  26806. },
  26807. },
  26808. [
  26809. {
  26810. name: "Normal",
  26811. height: math.unit(2.5, "meters"),
  26812. default: true
  26813. },
  26814. {
  26815. name: "Macro",
  26816. height: math.unit(100, "meters")
  26817. },
  26818. ]
  26819. ))
  26820. characterMakers.push(() => makeCharacter(
  26821. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26822. {
  26823. front: {
  26824. height: math.unit(5 + 9 / 12, "feet"),
  26825. weight: math.unit(120, "lb"),
  26826. name: "Front",
  26827. image: {
  26828. source: "./media/characters/ash/front.svg",
  26829. extra: 2189 / 1961,
  26830. bottom: 5.2 / 2194
  26831. }
  26832. },
  26833. },
  26834. [
  26835. {
  26836. name: "Normal",
  26837. height: math.unit(5 + 9 / 12, "feet"),
  26838. default: true
  26839. },
  26840. ]
  26841. ))
  26842. characterMakers.push(() => makeCharacter(
  26843. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26844. {
  26845. front: {
  26846. height: math.unit(9, "feet"),
  26847. weight: math.unit(10000, "lb"),
  26848. name: "Front",
  26849. image: {
  26850. source: "./media/characters/gygabite/front.svg",
  26851. bottom: 31.7 / 537.8,
  26852. extra: 505 / 370
  26853. }
  26854. },
  26855. },
  26856. [
  26857. {
  26858. name: "Normal",
  26859. height: math.unit(9, "feet"),
  26860. default: true
  26861. },
  26862. ]
  26863. ))
  26864. characterMakers.push(() => makeCharacter(
  26865. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26866. {
  26867. front: {
  26868. height: math.unit(12, "feet"),
  26869. weight: math.unit(35000, "lb"),
  26870. name: "Front",
  26871. image: {
  26872. source: "./media/characters/p0tat0/front.svg",
  26873. extra: 1065 / 921,
  26874. bottom: 55.7 / 1121.25
  26875. }
  26876. },
  26877. },
  26878. [
  26879. {
  26880. name: "Normal",
  26881. height: math.unit(12, "feet"),
  26882. default: true
  26883. },
  26884. ]
  26885. ))
  26886. characterMakers.push(() => makeCharacter(
  26887. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26888. {
  26889. side: {
  26890. height: math.unit(6.5, "feet"),
  26891. weight: math.unit(800, "lb"),
  26892. name: "Side",
  26893. image: {
  26894. source: "./media/characters/dusk/side.svg",
  26895. extra: 615 / 373,
  26896. bottom: 53 / 664
  26897. }
  26898. },
  26899. sitting: {
  26900. height: math.unit(7, "feet"),
  26901. weight: math.unit(800, "lb"),
  26902. name: "Sitting",
  26903. image: {
  26904. source: "./media/characters/dusk/sitting.svg",
  26905. extra: 753 / 425,
  26906. bottom: 33 / 774
  26907. }
  26908. },
  26909. head: {
  26910. height: math.unit(6.1, "feet"),
  26911. name: "Head",
  26912. image: {
  26913. source: "./media/characters/dusk/head.svg"
  26914. }
  26915. },
  26916. },
  26917. [
  26918. {
  26919. name: "Normal",
  26920. height: math.unit(7, "feet"),
  26921. default: true
  26922. },
  26923. ]
  26924. ))
  26925. characterMakers.push(() => makeCharacter(
  26926. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26927. {
  26928. front: {
  26929. height: math.unit(15, "feet"),
  26930. weight: math.unit(7000, "lb"),
  26931. name: "Front",
  26932. image: {
  26933. source: "./media/characters/jay-direwolf/front.svg",
  26934. extra: 1810 / 1732,
  26935. bottom: 66 / 1892
  26936. }
  26937. },
  26938. },
  26939. [
  26940. {
  26941. name: "Normal",
  26942. height: math.unit(15, "feet"),
  26943. default: true
  26944. },
  26945. ]
  26946. ))
  26947. characterMakers.push(() => makeCharacter(
  26948. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26949. {
  26950. front: {
  26951. height: math.unit(4 + 9 / 12, "feet"),
  26952. weight: math.unit(130, "lb"),
  26953. name: "Front",
  26954. image: {
  26955. source: "./media/characters/anchovie/front.svg",
  26956. extra: 382 / 350,
  26957. bottom: 25 / 409
  26958. }
  26959. },
  26960. back: {
  26961. height: math.unit(4 + 9 / 12, "feet"),
  26962. weight: math.unit(130, "lb"),
  26963. name: "Back",
  26964. image: {
  26965. source: "./media/characters/anchovie/back.svg",
  26966. extra: 385 / 352,
  26967. bottom: 16.6 / 402
  26968. }
  26969. },
  26970. frontDressed: {
  26971. height: math.unit(4 + 9 / 12, "feet"),
  26972. weight: math.unit(130, "lb"),
  26973. name: "Front (Dressed)",
  26974. image: {
  26975. source: "./media/characters/anchovie/front-dressed.svg",
  26976. extra: 382 / 350,
  26977. bottom: 25 / 409
  26978. }
  26979. },
  26980. backDressed: {
  26981. height: math.unit(4 + 9 / 12, "feet"),
  26982. weight: math.unit(130, "lb"),
  26983. name: "Back (Dressed)",
  26984. image: {
  26985. source: "./media/characters/anchovie/back-dressed.svg",
  26986. extra: 385 / 352,
  26987. bottom: 16.6 / 402
  26988. }
  26989. },
  26990. },
  26991. [
  26992. {
  26993. name: "Micro",
  26994. height: math.unit(6.4, "inches")
  26995. },
  26996. {
  26997. name: "Normal",
  26998. height: math.unit(4 + 9 / 12, "feet"),
  26999. default: true
  27000. },
  27001. ]
  27002. ))
  27003. characterMakers.push(() => makeCharacter(
  27004. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27005. {
  27006. front: {
  27007. height: math.unit(2, "meters"),
  27008. weight: math.unit(180, "lb"),
  27009. name: "Front",
  27010. image: {
  27011. source: "./media/characters/acidrenamon/front.svg",
  27012. extra: 987 / 890,
  27013. bottom: 22.8 / 1009
  27014. }
  27015. },
  27016. back: {
  27017. height: math.unit(2, "meters"),
  27018. weight: math.unit(180, "lb"),
  27019. name: "Back",
  27020. image: {
  27021. source: "./media/characters/acidrenamon/back.svg",
  27022. extra: 983 / 891,
  27023. bottom: 8.4 / 992
  27024. }
  27025. },
  27026. head: {
  27027. height: math.unit(1.92, "feet"),
  27028. name: "Head",
  27029. image: {
  27030. source: "./media/characters/acidrenamon/head.svg"
  27031. }
  27032. },
  27033. rump: {
  27034. height: math.unit(1.72, "feet"),
  27035. name: "Rump",
  27036. image: {
  27037. source: "./media/characters/acidrenamon/rump.svg"
  27038. }
  27039. },
  27040. tail: {
  27041. height: math.unit(4.2, "feet"),
  27042. name: "Tail",
  27043. image: {
  27044. source: "./media/characters/acidrenamon/tail.svg"
  27045. }
  27046. },
  27047. },
  27048. [
  27049. {
  27050. name: "Normal",
  27051. height: math.unit(2, "meters"),
  27052. default: true
  27053. },
  27054. {
  27055. name: "Minimacro",
  27056. height: math.unit(7, "meters")
  27057. },
  27058. {
  27059. name: "Macro",
  27060. height: math.unit(200, "meters")
  27061. },
  27062. {
  27063. name: "Gigamacro",
  27064. height: math.unit(0.2, "earths")
  27065. },
  27066. ]
  27067. ))
  27068. characterMakers.push(() => makeCharacter(
  27069. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27070. {
  27071. front: {
  27072. height: math.unit(6, "feet"),
  27073. weight: math.unit(150, "lb"),
  27074. name: "Front",
  27075. image: {
  27076. source: "./media/characters/kenzie-lee/front.svg",
  27077. extra: 1525 / 1465,
  27078. bottom: 45 / 1570
  27079. }
  27080. },
  27081. side: {
  27082. height: math.unit(6, "feet"),
  27083. weight: math.unit(150, "lb"),
  27084. name: "Side",
  27085. image: {
  27086. source: "./media/characters/kenzie-lee/side.svg",
  27087. extra: 5505 / 5383,
  27088. bottom: 60 / 5573
  27089. }
  27090. },
  27091. paw: {
  27092. height: math.unit(0.57, "feet"),
  27093. name: "Paw",
  27094. image: {
  27095. source: "./media/characters/kenzie-lee/paw.svg"
  27096. }
  27097. },
  27098. },
  27099. [
  27100. {
  27101. name: "Normal",
  27102. height: math.unit(152, "feet"),
  27103. default: true
  27104. },
  27105. {
  27106. name: "Megamacro",
  27107. height: math.unit(7, "miles")
  27108. },
  27109. {
  27110. name: "Gigamacro",
  27111. height: math.unit(8000, "miles")
  27112. },
  27113. ]
  27114. ))
  27115. characterMakers.push(() => makeCharacter(
  27116. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27117. {
  27118. side: {
  27119. height: math.unit(6, "feet"),
  27120. weight: math.unit(150, "lb"),
  27121. name: "Side",
  27122. image: {
  27123. source: "./media/characters/withers/side.svg",
  27124. extra: 1830 / 1728,
  27125. bottom: 96 / 1927
  27126. }
  27127. },
  27128. front: {
  27129. height: math.unit(6, "feet"),
  27130. weight: math.unit(150, "lb"),
  27131. name: "Front",
  27132. image: {
  27133. source: "./media/characters/withers/front.svg",
  27134. extra: 1514 / 1438,
  27135. bottom: 118 / 1632
  27136. }
  27137. },
  27138. },
  27139. [
  27140. {
  27141. name: "Macro",
  27142. height: math.unit(168, "feet"),
  27143. default: true
  27144. },
  27145. {
  27146. name: "Megamacro",
  27147. height: math.unit(15, "miles")
  27148. }
  27149. ]
  27150. ))
  27151. characterMakers.push(() => makeCharacter(
  27152. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27153. {
  27154. front: {
  27155. height: math.unit(6 + 7 / 12, "feet"),
  27156. weight: math.unit(250, "lb"),
  27157. name: "Front",
  27158. image: {
  27159. source: "./media/characters/nemoskii/front.svg",
  27160. extra: 2270 / 1734,
  27161. bottom: 86 / 2354
  27162. }
  27163. },
  27164. back: {
  27165. height: math.unit(6 + 7 / 12, "feet"),
  27166. weight: math.unit(250, "lb"),
  27167. name: "Back",
  27168. image: {
  27169. source: "./media/characters/nemoskii/back.svg",
  27170. extra: 1845 / 1788,
  27171. bottom: 10.5 / 1852
  27172. }
  27173. },
  27174. head: {
  27175. height: math.unit(1.31, "feet"),
  27176. name: "Head",
  27177. image: {
  27178. source: "./media/characters/nemoskii/head.svg"
  27179. }
  27180. },
  27181. },
  27182. [
  27183. {
  27184. name: "Micro",
  27185. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27186. },
  27187. {
  27188. name: "Normal",
  27189. height: math.unit(6 + 7 / 12, "feet"),
  27190. default: true
  27191. },
  27192. {
  27193. name: "Macro",
  27194. height: math.unit((6 + 7 / 12) * 150, "feet")
  27195. },
  27196. {
  27197. name: "Macro+",
  27198. height: math.unit((6 + 7 / 12) * 500, "feet")
  27199. },
  27200. {
  27201. name: "Megamacro",
  27202. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27203. },
  27204. ]
  27205. ))
  27206. characterMakers.push(() => makeCharacter(
  27207. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27208. {
  27209. front: {
  27210. height: math.unit(1, "mile"),
  27211. weight: math.unit(265261.9, "lb"),
  27212. name: "Front",
  27213. image: {
  27214. source: "./media/characters/shui/front.svg",
  27215. extra: 1633 / 1564,
  27216. bottom: 91.5 / 1726
  27217. }
  27218. },
  27219. },
  27220. [
  27221. {
  27222. name: "Macro",
  27223. height: math.unit(1, "mile"),
  27224. default: true
  27225. },
  27226. ]
  27227. ))
  27228. characterMakers.push(() => makeCharacter(
  27229. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27230. {
  27231. front: {
  27232. height: math.unit(12 + 6 / 12, "feet"),
  27233. weight: math.unit(1342, "lb"),
  27234. name: "Front",
  27235. image: {
  27236. source: "./media/characters/arokh-takakura/front.svg",
  27237. extra: 1089 / 1043,
  27238. bottom: 77.4 / 1176.7
  27239. }
  27240. },
  27241. back: {
  27242. height: math.unit(12 + 6 / 12, "feet"),
  27243. weight: math.unit(1342, "lb"),
  27244. name: "Back",
  27245. image: {
  27246. source: "./media/characters/arokh-takakura/back.svg",
  27247. extra: 1046 / 1019,
  27248. bottom: 102 / 1150
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Big",
  27255. height: math.unit(12 + 6 / 12, "feet"),
  27256. default: true
  27257. },
  27258. ]
  27259. ))
  27260. characterMakers.push(() => makeCharacter(
  27261. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27262. {
  27263. front: {
  27264. height: math.unit(5 + 6 / 12, "feet"),
  27265. weight: math.unit(150, "lb"),
  27266. name: "Front",
  27267. image: {
  27268. source: "./media/characters/theo/front.svg",
  27269. extra: 1184 / 1131,
  27270. bottom: 7.4 / 1191
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Micro",
  27277. height: math.unit(5, "inches")
  27278. },
  27279. {
  27280. name: "Normal",
  27281. height: math.unit(5 + 6 / 12, "feet"),
  27282. default: true
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27288. {
  27289. front: {
  27290. height: math.unit(5 + 9 / 12, "feet"),
  27291. weight: math.unit(130, "lb"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/cecelia-swift/front.svg",
  27295. extra: 502 / 484,
  27296. bottom: 23 / 523
  27297. }
  27298. },
  27299. back: {
  27300. height: math.unit(5 + 9 / 12, "feet"),
  27301. weight: math.unit(130, "lb"),
  27302. name: "Back",
  27303. image: {
  27304. source: "./media/characters/cecelia-swift/back.svg",
  27305. extra: 499 / 485,
  27306. bottom: 12 / 511
  27307. }
  27308. },
  27309. head: {
  27310. height: math.unit(0.90, "feet"),
  27311. name: "Head",
  27312. image: {
  27313. source: "./media/characters/cecelia-swift/head.svg"
  27314. }
  27315. },
  27316. rump: {
  27317. height: math.unit(1.75, "feet"),
  27318. name: "Rump",
  27319. image: {
  27320. source: "./media/characters/cecelia-swift/rump.svg"
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Normal",
  27327. height: math.unit(5 + 9 / 12, "feet"),
  27328. default: true
  27329. },
  27330. {
  27331. name: "Big",
  27332. height: math.unit(50, "feet")
  27333. },
  27334. {
  27335. name: "Macro",
  27336. height: math.unit(100, "feet")
  27337. },
  27338. {
  27339. name: "Macro+",
  27340. height: math.unit(500, "feet")
  27341. },
  27342. {
  27343. name: "Macro++",
  27344. height: math.unit(1000, "feet")
  27345. },
  27346. ]
  27347. ))
  27348. characterMakers.push(() => makeCharacter(
  27349. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27350. {
  27351. front: {
  27352. height: math.unit(6, "feet"),
  27353. weight: math.unit(150, "lb"),
  27354. name: "Front",
  27355. image: {
  27356. source: "./media/characters/kaunan/front.svg",
  27357. extra: 2890 / 2523,
  27358. bottom: 49 / 2939
  27359. }
  27360. },
  27361. },
  27362. [
  27363. {
  27364. name: "Macro",
  27365. height: math.unit(150, "feet"),
  27366. default: true
  27367. },
  27368. ]
  27369. ))
  27370. characterMakers.push(() => makeCharacter(
  27371. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27372. {
  27373. front: {
  27374. height: math.unit(175, "cm"),
  27375. weight: math.unit(60, "kg"),
  27376. name: "Front",
  27377. image: {
  27378. source: "./media/characters/fei/front.svg",
  27379. extra: 1873/1723,
  27380. bottom: 53/1926
  27381. }
  27382. },
  27383. },
  27384. [
  27385. {
  27386. name: "Mortal",
  27387. height: math.unit(175, "cm")
  27388. },
  27389. {
  27390. name: "Normal",
  27391. height: math.unit(3500, "m"),
  27392. default: true
  27393. },
  27394. {
  27395. name: "Stroll",
  27396. height: math.unit(17.5, "km")
  27397. },
  27398. {
  27399. name: "Showoff",
  27400. height: math.unit(175, "km")
  27401. },
  27402. ]
  27403. ))
  27404. characterMakers.push(() => makeCharacter(
  27405. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27406. {
  27407. front: {
  27408. height: math.unit(7, "feet"),
  27409. weight: math.unit(1000, "kg"),
  27410. name: "Front",
  27411. image: {
  27412. source: "./media/characters/edrax/front.svg",
  27413. extra: 2838 / 2550,
  27414. bottom: 130 / 2968
  27415. }
  27416. },
  27417. },
  27418. [
  27419. {
  27420. name: "Small",
  27421. height: math.unit(7, "feet")
  27422. },
  27423. {
  27424. name: "Normal",
  27425. height: math.unit(1500, "meters")
  27426. },
  27427. {
  27428. name: "Mega",
  27429. height: math.unit(12000000, "km"),
  27430. default: true
  27431. },
  27432. {
  27433. name: "Megamacro",
  27434. height: math.unit(10600000, "lightyears")
  27435. },
  27436. {
  27437. name: "Hypermacro",
  27438. height: math.unit(256, "yottameters")
  27439. },
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27444. {
  27445. front: {
  27446. height: math.unit(10, "feet"),
  27447. weight: math.unit(750, "lb"),
  27448. name: "Front",
  27449. image: {
  27450. source: "./media/characters/clove/front.svg",
  27451. extra: 2031 / 1860,
  27452. bottom: 47.8 / 2080
  27453. }
  27454. },
  27455. back: {
  27456. height: math.unit(10, "feet"),
  27457. weight: math.unit(750, "lb"),
  27458. name: "Back",
  27459. image: {
  27460. source: "./media/characters/clove/back.svg",
  27461. extra: 2025 / 1859,
  27462. bottom: 46 / 2071
  27463. }
  27464. },
  27465. },
  27466. [
  27467. {
  27468. name: "Normal",
  27469. height: math.unit(10, "feet"),
  27470. default: true
  27471. },
  27472. ]
  27473. ))
  27474. characterMakers.push(() => makeCharacter(
  27475. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27476. {
  27477. front: {
  27478. height: math.unit(4, "feet"),
  27479. weight: math.unit(50, "lb"),
  27480. name: "Front",
  27481. image: {
  27482. source: "./media/characters/alex-rabbit/front.svg",
  27483. extra: 507 / 458,
  27484. bottom: 18.5 / 527
  27485. }
  27486. },
  27487. back: {
  27488. height: math.unit(4, "feet"),
  27489. weight: math.unit(50, "lb"),
  27490. name: "Back",
  27491. image: {
  27492. source: "./media/characters/alex-rabbit/back.svg",
  27493. extra: 502 / 460,
  27494. bottom: 18.9 / 521
  27495. }
  27496. },
  27497. },
  27498. [
  27499. {
  27500. name: "Normal",
  27501. height: math.unit(4, "feet"),
  27502. default: true
  27503. },
  27504. ]
  27505. ))
  27506. characterMakers.push(() => makeCharacter(
  27507. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27508. {
  27509. front: {
  27510. height: math.unit(1 + 3 / 12, "feet"),
  27511. weight: math.unit(80, "lb"),
  27512. name: "Front",
  27513. image: {
  27514. source: "./media/characters/zander-rose/front.svg",
  27515. extra: 916 / 797,
  27516. bottom: 17 / 933
  27517. }
  27518. },
  27519. back: {
  27520. height: math.unit(1 + 3 / 12, "feet"),
  27521. weight: math.unit(80, "lb"),
  27522. name: "Back",
  27523. image: {
  27524. source: "./media/characters/zander-rose/back.svg",
  27525. extra: 903 / 779,
  27526. bottom: 31 / 934
  27527. }
  27528. },
  27529. },
  27530. [
  27531. {
  27532. name: "Normal",
  27533. height: math.unit(1 + 3 / 12, "feet"),
  27534. default: true
  27535. },
  27536. ]
  27537. ))
  27538. characterMakers.push(() => makeCharacter(
  27539. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27540. {
  27541. anthro: {
  27542. height: math.unit(6, "feet"),
  27543. weight: math.unit(150, "lb"),
  27544. name: "Anthro",
  27545. image: {
  27546. source: "./media/characters/razz/anthro.svg",
  27547. extra: 1437 / 1343,
  27548. bottom: 48 / 1485
  27549. }
  27550. },
  27551. feral: {
  27552. height: math.unit(6, "feet"),
  27553. weight: math.unit(150, "lb"),
  27554. name: "Feral",
  27555. image: {
  27556. source: "./media/characters/razz/feral.svg",
  27557. extra: 2569 / 1385,
  27558. bottom: 95 / 2664
  27559. }
  27560. },
  27561. },
  27562. [
  27563. {
  27564. name: "Normal",
  27565. height: math.unit(6, "feet"),
  27566. default: true
  27567. },
  27568. ]
  27569. ))
  27570. characterMakers.push(() => makeCharacter(
  27571. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27572. {
  27573. front: {
  27574. height: math.unit(9 + 4 / 12, "feet"),
  27575. weight: math.unit(500, "lb"),
  27576. name: "Front",
  27577. image: {
  27578. source: "./media/characters/morrigan/front.svg",
  27579. extra: 2707 / 2579,
  27580. bottom: 156 / 2863
  27581. }
  27582. },
  27583. },
  27584. [
  27585. {
  27586. name: "Normal",
  27587. height: math.unit(9 + 4 / 12, "feet"),
  27588. default: true
  27589. },
  27590. ]
  27591. ))
  27592. characterMakers.push(() => makeCharacter(
  27593. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27594. {
  27595. front: {
  27596. height: math.unit(5, "stories"),
  27597. weight: math.unit(4000, "lb"),
  27598. name: "Front",
  27599. image: {
  27600. source: "./media/characters/jenene/front.svg",
  27601. extra: 1780 / 1710,
  27602. bottom: 57 / 1837
  27603. }
  27604. },
  27605. },
  27606. [
  27607. {
  27608. name: "Normal",
  27609. height: math.unit(5, "stories"),
  27610. default: true
  27611. },
  27612. ]
  27613. ))
  27614. characterMakers.push(() => makeCharacter(
  27615. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27616. {
  27617. front: {
  27618. height: math.unit(6, "feet"),
  27619. weight: math.unit(150, "lb"),
  27620. name: "Front",
  27621. image: {
  27622. source: "./media/characters/vix-archaser/front.svg",
  27623. extra: 2767 / 2562,
  27624. bottom: 36 / 2803
  27625. }
  27626. },
  27627. },
  27628. [
  27629. {
  27630. name: "Micro",
  27631. height: math.unit(1, "foot")
  27632. },
  27633. {
  27634. name: "Normal",
  27635. height: math.unit(6 + 5 / 12, "feet")
  27636. },
  27637. {
  27638. name: "Minimacro",
  27639. height: math.unit(500, "feet")
  27640. },
  27641. {
  27642. name: "Macro",
  27643. height: math.unit(4, "miles")
  27644. },
  27645. {
  27646. name: "Megamacro",
  27647. height: math.unit(250, "miles"),
  27648. default: true
  27649. },
  27650. {
  27651. name: "Gigamacro",
  27652. height: math.unit(1, "universe")
  27653. },
  27654. {
  27655. name: "Endgame",
  27656. height: math.unit(100, "multiverses")
  27657. }
  27658. ]
  27659. ))
  27660. characterMakers.push(() => makeCharacter(
  27661. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27662. {
  27663. taurSfw: {
  27664. height: math.unit(10, "meters"),
  27665. weight: math.unit(17500, "kg"),
  27666. name: "Taur",
  27667. image: {
  27668. source: "./media/characters/faey/taur-sfw.svg",
  27669. extra: 1200 / 968,
  27670. bottom: 41 / 1241
  27671. }
  27672. },
  27673. chestmaw: {
  27674. height: math.unit(2.01, "meters"),
  27675. name: "Chestmaw",
  27676. image: {
  27677. source: "./media/characters/faey/chestmaw.svg"
  27678. }
  27679. },
  27680. foot: {
  27681. height: math.unit(2.43, "meters"),
  27682. name: "Foot",
  27683. image: {
  27684. source: "./media/characters/faey/foot.svg"
  27685. }
  27686. },
  27687. jaws: {
  27688. height: math.unit(1.66, "meters"),
  27689. name: "Jaws",
  27690. image: {
  27691. source: "./media/characters/faey/jaws.svg"
  27692. }
  27693. },
  27694. tongues: {
  27695. height: math.unit(2.01, "meters"),
  27696. name: "Tongues",
  27697. image: {
  27698. source: "./media/characters/faey/tongues.svg"
  27699. }
  27700. },
  27701. },
  27702. [
  27703. {
  27704. name: "Small",
  27705. height: math.unit(10, "meters"),
  27706. default: true
  27707. },
  27708. {
  27709. name: "Big",
  27710. height: math.unit(500000, "km")
  27711. },
  27712. ]
  27713. ))
  27714. characterMakers.push(() => makeCharacter(
  27715. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27716. {
  27717. front: {
  27718. height: math.unit(7, "feet"),
  27719. weight: math.unit(275, "lb"),
  27720. name: "Front",
  27721. image: {
  27722. source: "./media/characters/roku/front.svg",
  27723. extra: 903 / 878,
  27724. bottom: 37 / 940
  27725. }
  27726. },
  27727. },
  27728. [
  27729. {
  27730. name: "Normal",
  27731. height: math.unit(7, "feet"),
  27732. default: true
  27733. },
  27734. {
  27735. name: "Macro",
  27736. height: math.unit(500, "feet")
  27737. },
  27738. {
  27739. name: "Megamacro",
  27740. height: math.unit(200, "miles")
  27741. },
  27742. ]
  27743. ))
  27744. characterMakers.push(() => makeCharacter(
  27745. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27746. {
  27747. front: {
  27748. height: math.unit(6 + 2 / 12, "feet"),
  27749. weight: math.unit(150, "lb"),
  27750. name: "Front",
  27751. image: {
  27752. source: "./media/characters/lira/front.svg",
  27753. extra: 1727 / 1605,
  27754. bottom: 26 / 1753
  27755. }
  27756. },
  27757. back: {
  27758. height: math.unit(6 + 2 / 12, "feet"),
  27759. weight: math.unit(150, "lb"),
  27760. name: "Back",
  27761. image: {
  27762. source: "./media/characters/lira/back.svg",
  27763. extra: 1713/1621,
  27764. bottom: 20/1733
  27765. }
  27766. },
  27767. hand: {
  27768. height: math.unit(0.75, "feet"),
  27769. name: "Hand",
  27770. image: {
  27771. source: "./media/characters/lira/hand.svg"
  27772. }
  27773. },
  27774. maw: {
  27775. height: math.unit(0.65, "feet"),
  27776. name: "Maw",
  27777. image: {
  27778. source: "./media/characters/lira/maw.svg"
  27779. }
  27780. },
  27781. pawDigi: {
  27782. height: math.unit(1.6, "feet"),
  27783. name: "Paw Digi",
  27784. image: {
  27785. source: "./media/characters/lira/paw-digi.svg"
  27786. }
  27787. },
  27788. pawPlanti: {
  27789. height: math.unit(1.4, "feet"),
  27790. name: "Paw Planti",
  27791. image: {
  27792. source: "./media/characters/lira/paw-planti.svg"
  27793. }
  27794. },
  27795. },
  27796. [
  27797. {
  27798. name: "Normal",
  27799. height: math.unit(6 + 2 / 12, "feet"),
  27800. default: true
  27801. },
  27802. {
  27803. name: "Macro",
  27804. height: math.unit(100, "feet")
  27805. },
  27806. {
  27807. name: "Macro²",
  27808. height: math.unit(1600, "feet")
  27809. },
  27810. {
  27811. name: "Planetary",
  27812. height: math.unit(20, "earths")
  27813. },
  27814. ]
  27815. ))
  27816. characterMakers.push(() => makeCharacter(
  27817. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27818. {
  27819. front: {
  27820. height: math.unit(6, "feet"),
  27821. weight: math.unit(150, "lb"),
  27822. name: "Front",
  27823. image: {
  27824. source: "./media/characters/hadjet/front.svg",
  27825. extra: 1480 / 1346,
  27826. bottom: 26 / 1506
  27827. }
  27828. },
  27829. frontNsfw: {
  27830. height: math.unit(6, "feet"),
  27831. weight: math.unit(150, "lb"),
  27832. name: "Front (NSFW)",
  27833. image: {
  27834. source: "./media/characters/hadjet/front-nsfw.svg",
  27835. extra: 1440 / 1358,
  27836. bottom: 52 / 1492
  27837. }
  27838. },
  27839. },
  27840. [
  27841. {
  27842. name: "Macro",
  27843. height: math.unit(10, "stories"),
  27844. default: true
  27845. },
  27846. {
  27847. name: "Megamacro",
  27848. height: math.unit(1.5, "miles")
  27849. },
  27850. {
  27851. name: "Megamacro+",
  27852. height: math.unit(5, "miles")
  27853. },
  27854. ]
  27855. ))
  27856. characterMakers.push(() => makeCharacter(
  27857. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27858. {
  27859. side: {
  27860. height: math.unit(106, "feet"),
  27861. weight: math.unit(500, "tonnes"),
  27862. name: "Side",
  27863. image: {
  27864. source: "./media/characters/kodran/side.svg",
  27865. extra: 553 / 480,
  27866. bottom: 33 / 586
  27867. }
  27868. },
  27869. front: {
  27870. height: math.unit(132, "feet"),
  27871. weight: math.unit(500, "tonnes"),
  27872. name: "Front",
  27873. image: {
  27874. source: "./media/characters/kodran/front.svg",
  27875. extra: 667 / 643,
  27876. bottom: 42 / 709
  27877. }
  27878. },
  27879. flying: {
  27880. height: math.unit(350, "feet"),
  27881. weight: math.unit(500, "tonnes"),
  27882. name: "Flying",
  27883. image: {
  27884. source: "./media/characters/kodran/flying.svg"
  27885. }
  27886. },
  27887. foot: {
  27888. height: math.unit(33, "feet"),
  27889. name: "Foot",
  27890. image: {
  27891. source: "./media/characters/kodran/foot.svg"
  27892. }
  27893. },
  27894. footFront: {
  27895. height: math.unit(19, "feet"),
  27896. name: "Foot (Front)",
  27897. image: {
  27898. source: "./media/characters/kodran/foot-front.svg",
  27899. extra: 261 / 261,
  27900. bottom: 91 / 352
  27901. }
  27902. },
  27903. headFront: {
  27904. height: math.unit(53, "feet"),
  27905. name: "Head (Front)",
  27906. image: {
  27907. source: "./media/characters/kodran/head-front.svg"
  27908. }
  27909. },
  27910. headSide: {
  27911. height: math.unit(65, "feet"),
  27912. name: "Head (Side)",
  27913. image: {
  27914. source: "./media/characters/kodran/head-side.svg"
  27915. }
  27916. },
  27917. throat: {
  27918. height: math.unit(79, "feet"),
  27919. name: "Throat",
  27920. image: {
  27921. source: "./media/characters/kodran/throat.svg"
  27922. }
  27923. },
  27924. },
  27925. [
  27926. {
  27927. name: "Large",
  27928. height: math.unit(106, "feet"),
  27929. default: true
  27930. },
  27931. ]
  27932. ))
  27933. characterMakers.push(() => makeCharacter(
  27934. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27935. {
  27936. side: {
  27937. height: math.unit(11, "feet"),
  27938. weight: math.unit(150, "lb"),
  27939. name: "Side",
  27940. image: {
  27941. source: "./media/characters/pyxaron/side.svg",
  27942. extra: 305 / 195,
  27943. bottom: 17 / 322
  27944. }
  27945. },
  27946. },
  27947. [
  27948. {
  27949. name: "Normal",
  27950. height: math.unit(11, "feet"),
  27951. default: true
  27952. },
  27953. ]
  27954. ))
  27955. characterMakers.push(() => makeCharacter(
  27956. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27957. {
  27958. front: {
  27959. height: math.unit(6, "feet"),
  27960. weight: math.unit(150, "lb"),
  27961. name: "Front",
  27962. image: {
  27963. source: "./media/characters/meep/front.svg",
  27964. extra: 88 / 80,
  27965. bottom: 6 / 94
  27966. }
  27967. },
  27968. },
  27969. [
  27970. {
  27971. name: "Fun Sized",
  27972. height: math.unit(2, "inches"),
  27973. default: true
  27974. },
  27975. {
  27976. name: "Friend Sized",
  27977. height: math.unit(8, "inches")
  27978. },
  27979. ]
  27980. ))
  27981. characterMakers.push(() => makeCharacter(
  27982. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27983. {
  27984. front: {
  27985. height: math.unit(15, "feet"),
  27986. weight: math.unit(2500, "lb"),
  27987. name: "Front",
  27988. image: {
  27989. source: "./media/characters/holly-rabbit/front.svg",
  27990. extra: 1433 / 1233,
  27991. bottom: 125 / 1558
  27992. }
  27993. },
  27994. dick: {
  27995. height: math.unit(4.6, "feet"),
  27996. name: "Dick",
  27997. image: {
  27998. source: "./media/characters/holly-rabbit/dick.svg"
  27999. }
  28000. },
  28001. },
  28002. [
  28003. {
  28004. name: "Normal",
  28005. height: math.unit(15, "feet"),
  28006. default: true
  28007. },
  28008. {
  28009. name: "Macro",
  28010. height: math.unit(250, "feet")
  28011. },
  28012. {
  28013. name: "Macro+",
  28014. height: math.unit(2500, "feet")
  28015. },
  28016. ]
  28017. ))
  28018. characterMakers.push(() => makeCharacter(
  28019. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28020. {
  28021. front: {
  28022. height: math.unit(3.02, "meters"),
  28023. weight: math.unit(500, "kg"),
  28024. name: "Front",
  28025. image: {
  28026. source: "./media/characters/drena/front.svg",
  28027. extra: 282 / 243,
  28028. bottom: 8 / 290
  28029. }
  28030. },
  28031. side: {
  28032. height: math.unit(3.02, "meters"),
  28033. weight: math.unit(500, "kg"),
  28034. name: "Side",
  28035. image: {
  28036. source: "./media/characters/drena/side.svg",
  28037. extra: 280 / 245,
  28038. bottom: 10 / 290
  28039. }
  28040. },
  28041. back: {
  28042. height: math.unit(3.02, "meters"),
  28043. weight: math.unit(500, "kg"),
  28044. name: "Back",
  28045. image: {
  28046. source: "./media/characters/drena/back.svg",
  28047. extra: 278 / 243,
  28048. bottom: 2 / 280
  28049. }
  28050. },
  28051. foot: {
  28052. height: math.unit(0.75, "meters"),
  28053. name: "Foot",
  28054. image: {
  28055. source: "./media/characters/drena/foot.svg"
  28056. }
  28057. },
  28058. maw: {
  28059. height: math.unit(0.82, "meters"),
  28060. name: "Maw",
  28061. image: {
  28062. source: "./media/characters/drena/maw.svg"
  28063. }
  28064. },
  28065. rump: {
  28066. height: math.unit(0.93, "meters"),
  28067. name: "Rump",
  28068. image: {
  28069. source: "./media/characters/drena/rump.svg"
  28070. }
  28071. },
  28072. },
  28073. [
  28074. {
  28075. name: "Normal",
  28076. height: math.unit(3.02, "meters"),
  28077. default: true
  28078. },
  28079. ]
  28080. ))
  28081. characterMakers.push(() => makeCharacter(
  28082. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28083. {
  28084. front: {
  28085. height: math.unit(6 + 4 / 12, "feet"),
  28086. weight: math.unit(250, "lb"),
  28087. name: "Front",
  28088. image: {
  28089. source: "./media/characters/remmyzilla/front.svg",
  28090. extra: 4033 / 3588,
  28091. bottom: 123 / 4156
  28092. }
  28093. },
  28094. back: {
  28095. height: math.unit(6 + 4 / 12, "feet"),
  28096. weight: math.unit(250, "lb"),
  28097. name: "Back",
  28098. image: {
  28099. source: "./media/characters/remmyzilla/back.svg",
  28100. extra: 2687 / 2555,
  28101. bottom: 48 / 2735
  28102. }
  28103. },
  28104. paw: {
  28105. height: math.unit(1.73, "feet"),
  28106. name: "Paw",
  28107. image: {
  28108. source: "./media/characters/remmyzilla/paw.svg"
  28109. }
  28110. },
  28111. maw: {
  28112. height: math.unit(1.73, "feet"),
  28113. name: "Maw",
  28114. image: {
  28115. source: "./media/characters/remmyzilla/maw.svg"
  28116. }
  28117. },
  28118. },
  28119. [
  28120. {
  28121. name: "Normal",
  28122. height: math.unit(6 + 4 / 12, "feet")
  28123. },
  28124. {
  28125. name: "Minimacro",
  28126. height: math.unit(12 + 8 / 12, "feet")
  28127. },
  28128. {
  28129. name: "Normal",
  28130. height: math.unit(640, "feet"),
  28131. default: true
  28132. },
  28133. {
  28134. name: "Megamacro",
  28135. height: math.unit(6400, "feet")
  28136. },
  28137. {
  28138. name: "Gigamacro",
  28139. height: math.unit(64000, "miles")
  28140. },
  28141. ]
  28142. ))
  28143. characterMakers.push(() => makeCharacter(
  28144. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28145. {
  28146. front: {
  28147. height: math.unit(2.5, "meters"),
  28148. weight: math.unit(300, "lb"),
  28149. name: "Front",
  28150. image: {
  28151. source: "./media/characters/lawrence/front.svg",
  28152. extra: 357 / 335,
  28153. bottom: 30 / 387
  28154. }
  28155. },
  28156. back: {
  28157. height: math.unit(2.5, "meters"),
  28158. weight: math.unit(300, "lb"),
  28159. name: "Back",
  28160. image: {
  28161. source: "./media/characters/lawrence/back.svg",
  28162. extra: 357 / 338,
  28163. bottom: 16 / 373
  28164. }
  28165. },
  28166. head: {
  28167. height: math.unit(0.9, "meter"),
  28168. name: "Head",
  28169. image: {
  28170. source: "./media/characters/lawrence/head.svg"
  28171. }
  28172. },
  28173. maw: {
  28174. height: math.unit(0.7, "meter"),
  28175. name: "Maw",
  28176. image: {
  28177. source: "./media/characters/lawrence/maw.svg"
  28178. }
  28179. },
  28180. footBottom: {
  28181. height: math.unit(0.5, "meter"),
  28182. name: "Foot (Bottom)",
  28183. image: {
  28184. source: "./media/characters/lawrence/foot-bottom.svg"
  28185. }
  28186. },
  28187. footTop: {
  28188. height: math.unit(0.5, "meter"),
  28189. name: "Foot (Top)",
  28190. image: {
  28191. source: "./media/characters/lawrence/foot-top.svg"
  28192. }
  28193. },
  28194. },
  28195. [
  28196. {
  28197. name: "Normal",
  28198. height: math.unit(2.5, "meters"),
  28199. default: true
  28200. },
  28201. {
  28202. name: "Macro",
  28203. height: math.unit(95, "meters")
  28204. },
  28205. {
  28206. name: "Megamacro",
  28207. height: math.unit(150, "km")
  28208. },
  28209. ]
  28210. ))
  28211. characterMakers.push(() => makeCharacter(
  28212. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28213. {
  28214. front: {
  28215. height: math.unit(4.2, "meters"),
  28216. name: "Front",
  28217. image: {
  28218. source: "./media/characters/sydney/front.svg",
  28219. extra: 1323 / 1277,
  28220. bottom: 111 / 1434
  28221. }
  28222. },
  28223. },
  28224. [
  28225. {
  28226. name: "Normal",
  28227. height: math.unit(4.2, "meters"),
  28228. default: true
  28229. },
  28230. ]
  28231. ))
  28232. characterMakers.push(() => makeCharacter(
  28233. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28234. {
  28235. back: {
  28236. height: math.unit(201, "feet"),
  28237. name: "Back",
  28238. image: {
  28239. source: "./media/characters/jessica/back.svg",
  28240. extra: 273 / 259,
  28241. bottom: 7 / 280
  28242. }
  28243. },
  28244. },
  28245. [
  28246. {
  28247. name: "Normal",
  28248. height: math.unit(201, "feet"),
  28249. default: true
  28250. },
  28251. {
  28252. name: "Megamacro",
  28253. height: math.unit(8, "miles")
  28254. },
  28255. ]
  28256. ))
  28257. characterMakers.push(() => makeCharacter(
  28258. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28259. {
  28260. side: {
  28261. height: math.unit(320, "cm"),
  28262. name: "Side",
  28263. image: {
  28264. source: "./media/characters/victoria/side.svg",
  28265. extra: 778 / 346,
  28266. bottom: 56 / 834
  28267. }
  28268. },
  28269. maw: {
  28270. height: math.unit(5.9, "feet"),
  28271. name: "Maw",
  28272. image: {
  28273. source: "./media/characters/victoria/maw.svg"
  28274. }
  28275. },
  28276. },
  28277. [
  28278. {
  28279. name: "Normal",
  28280. height: math.unit(320, "cm"),
  28281. default: true
  28282. },
  28283. ]
  28284. ))
  28285. characterMakers.push(() => makeCharacter(
  28286. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28287. {
  28288. front: {
  28289. height: math.unit(5 + 6 / 12, "feet"),
  28290. name: "Front",
  28291. image: {
  28292. source: "./media/characters/cat/front.svg",
  28293. extra: 1374 / 1257,
  28294. bottom: 59 / 1433
  28295. }
  28296. },
  28297. back: {
  28298. height: math.unit(5 + 6 / 12, "feet"),
  28299. name: "Back",
  28300. image: {
  28301. source: "./media/characters/cat/back.svg",
  28302. extra: 1337 / 1226,
  28303. bottom: 34 / 1371
  28304. }
  28305. },
  28306. taur: {
  28307. height: math.unit(7, "feet"),
  28308. name: "Taur",
  28309. image: {
  28310. source: "./media/characters/cat/taur.svg",
  28311. extra: 1345 / 1231,
  28312. bottom: 66 / 1411
  28313. }
  28314. },
  28315. lucario: {
  28316. height: math.unit(4, "feet"),
  28317. name: "Lucario",
  28318. image: {
  28319. source: "./media/characters/cat/lucario.svg",
  28320. extra: 1470 / 1318,
  28321. bottom: 65 / 1535
  28322. }
  28323. },
  28324. megaLucario: {
  28325. height: math.unit(4, "feet"),
  28326. name: "Mega Lucario",
  28327. image: {
  28328. source: "./media/characters/cat/mega-lucario.svg",
  28329. extra: 1515 / 1319,
  28330. bottom: 63 / 1578
  28331. }
  28332. },
  28333. nickit: {
  28334. height: math.unit(2, "feet"),
  28335. name: "Nickit",
  28336. image: {
  28337. source: "./media/characters/cat/nickit.svg",
  28338. extra: 1980 / 1585,
  28339. bottom: 102 / 2082
  28340. }
  28341. },
  28342. lopunnyFront: {
  28343. height: math.unit(5, "feet"),
  28344. name: "Lopunny (Front)",
  28345. image: {
  28346. source: "./media/characters/cat/lopunny-front.svg",
  28347. extra: 1782 / 1469,
  28348. bottom: 38 / 1820
  28349. }
  28350. },
  28351. lopunnyBack: {
  28352. height: math.unit(5, "feet"),
  28353. name: "Lopunny (Back)",
  28354. image: {
  28355. source: "./media/characters/cat/lopunny-back.svg",
  28356. extra: 1660 / 1490,
  28357. bottom: 25 / 1685
  28358. }
  28359. },
  28360. },
  28361. [
  28362. {
  28363. name: "Really small",
  28364. height: math.unit(1, "nm")
  28365. },
  28366. {
  28367. name: "Micro",
  28368. height: math.unit(5, "inches")
  28369. },
  28370. {
  28371. name: "Normal",
  28372. height: math.unit(5 + 6 / 12, "feet"),
  28373. default: true
  28374. },
  28375. {
  28376. name: "Macro",
  28377. height: math.unit(50, "feet")
  28378. },
  28379. {
  28380. name: "Macro+",
  28381. height: math.unit(150, "feet")
  28382. },
  28383. {
  28384. name: "Megamacro",
  28385. height: math.unit(100, "miles")
  28386. },
  28387. ]
  28388. ))
  28389. characterMakers.push(() => makeCharacter(
  28390. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28391. {
  28392. front: {
  28393. height: math.unit(63.4, "meters"),
  28394. weight: math.unit(3.28349e+6, "kilograms"),
  28395. name: "Front",
  28396. image: {
  28397. source: "./media/characters/kirina-violet/front.svg",
  28398. extra: 2812 / 2725,
  28399. bottom: 0 / 2812
  28400. }
  28401. },
  28402. back: {
  28403. height: math.unit(63.4, "meters"),
  28404. weight: math.unit(3.28349e+6, "kilograms"),
  28405. name: "Back",
  28406. image: {
  28407. source: "./media/characters/kirina-violet/back.svg",
  28408. extra: 2812 / 2725,
  28409. bottom: 0 / 2812
  28410. }
  28411. },
  28412. mouth: {
  28413. height: math.unit(4.35, "meters"),
  28414. name: "Mouth",
  28415. image: {
  28416. source: "./media/characters/kirina-violet/mouth.svg"
  28417. }
  28418. },
  28419. paw: {
  28420. height: math.unit(5.6, "meters"),
  28421. name: "Paw",
  28422. image: {
  28423. source: "./media/characters/kirina-violet/paw.svg"
  28424. }
  28425. },
  28426. tail: {
  28427. height: math.unit(18, "meters"),
  28428. name: "Tail",
  28429. image: {
  28430. source: "./media/characters/kirina-violet/tail.svg"
  28431. }
  28432. },
  28433. },
  28434. [
  28435. {
  28436. name: "Macro",
  28437. height: math.unit(63.4, "meters"),
  28438. default: true
  28439. },
  28440. ]
  28441. ))
  28442. characterMakers.push(() => makeCharacter(
  28443. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28444. {
  28445. front: {
  28446. height: math.unit(75, "feet"),
  28447. name: "Front",
  28448. image: {
  28449. source: "./media/characters/cat-gigachu/front.svg",
  28450. extra: 1239/1027,
  28451. bottom: 32/1271
  28452. }
  28453. },
  28454. back: {
  28455. height: math.unit(75, "feet"),
  28456. name: "Back",
  28457. image: {
  28458. source: "./media/characters/cat-gigachu/back.svg",
  28459. extra: 1229/1030,
  28460. bottom: 9/1238
  28461. }
  28462. },
  28463. },
  28464. [
  28465. {
  28466. name: "Dynamax",
  28467. height: math.unit(75, "feet"),
  28468. default: true
  28469. },
  28470. ]
  28471. ))
  28472. characterMakers.push(() => makeCharacter(
  28473. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28474. {
  28475. front: {
  28476. height: math.unit(6, "feet"),
  28477. weight: math.unit(150, "lb"),
  28478. name: "Front",
  28479. image: {
  28480. source: "./media/characters/sfaiyan/front.svg",
  28481. extra: 999 / 978,
  28482. bottom: 5 / 1004
  28483. }
  28484. },
  28485. },
  28486. [
  28487. {
  28488. name: "Normal",
  28489. height: math.unit(1.82, "meters")
  28490. },
  28491. {
  28492. name: "Giant",
  28493. height: math.unit(2.27, "km"),
  28494. default: true
  28495. },
  28496. ]
  28497. ))
  28498. characterMakers.push(() => makeCharacter(
  28499. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28500. {
  28501. front: {
  28502. height: math.unit(179, "cm"),
  28503. weight: math.unit(100, "kg"),
  28504. name: "Front",
  28505. image: {
  28506. source: "./media/characters/raunehkeli/front.svg",
  28507. extra: 1934 / 1926,
  28508. bottom: 0 / 1934
  28509. }
  28510. },
  28511. },
  28512. [
  28513. {
  28514. name: "Normal",
  28515. height: math.unit(179, "cm")
  28516. },
  28517. {
  28518. name: "Maximum",
  28519. height: math.unit(575, "meters"),
  28520. default: true
  28521. },
  28522. ]
  28523. ))
  28524. characterMakers.push(() => makeCharacter(
  28525. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28526. {
  28527. front: {
  28528. height: math.unit(6, "feet"),
  28529. weight: math.unit(150, "lb"),
  28530. name: "Front",
  28531. image: {
  28532. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28533. extra: 2625 / 2518,
  28534. bottom: 60 / 2685
  28535. }
  28536. },
  28537. },
  28538. [
  28539. {
  28540. name: "Normal",
  28541. height: math.unit(6 + 2 / 12, "feet")
  28542. },
  28543. {
  28544. name: "Macro",
  28545. height: math.unit(1180, "feet"),
  28546. default: true
  28547. },
  28548. ]
  28549. ))
  28550. characterMakers.push(() => makeCharacter(
  28551. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28552. {
  28553. front: {
  28554. height: math.unit(5 + 6 / 12, "feet"),
  28555. weight: math.unit(108, "lb"),
  28556. name: "Front",
  28557. image: {
  28558. source: "./media/characters/lilith-zott/front.svg",
  28559. extra: 2510 / 2238,
  28560. bottom: 100 / 2610
  28561. }
  28562. },
  28563. frontDressed: {
  28564. height: math.unit(5 + 6 / 12, "feet"),
  28565. weight: math.unit(108, "lb"),
  28566. name: "Front (Dressed)",
  28567. image: {
  28568. source: "./media/characters/lilith-zott/front-dressed.svg",
  28569. extra: 2510 / 2238,
  28570. bottom: 100 / 2610
  28571. }
  28572. },
  28573. },
  28574. [
  28575. {
  28576. name: "Normal",
  28577. height: math.unit(5 + 6 / 12, "feet")
  28578. },
  28579. {
  28580. name: "Macro",
  28581. height: math.unit(1030, "feet"),
  28582. default: true
  28583. },
  28584. ]
  28585. ))
  28586. characterMakers.push(() => makeCharacter(
  28587. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28588. {
  28589. front: {
  28590. height: math.unit(6, "feet"),
  28591. weight: math.unit(150, "lb"),
  28592. name: "Front",
  28593. image: {
  28594. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28595. extra: 2567 / 2435,
  28596. bottom: 39 / 2606
  28597. }
  28598. },
  28599. frontSuper: {
  28600. height: math.unit(6, "feet"),
  28601. name: "Front (Super)",
  28602. image: {
  28603. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28604. extra: 2567 / 2435,
  28605. bottom: 39 / 2606
  28606. }
  28607. },
  28608. },
  28609. [
  28610. {
  28611. name: "Normal",
  28612. height: math.unit(5 + 10 / 12, "feet")
  28613. },
  28614. {
  28615. name: "Macro",
  28616. height: math.unit(1100, "feet"),
  28617. default: true
  28618. },
  28619. ]
  28620. ))
  28621. characterMakers.push(() => makeCharacter(
  28622. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28623. {
  28624. front: {
  28625. height: math.unit(100, "miles"),
  28626. name: "Front",
  28627. image: {
  28628. source: "./media/characters/sona/front.svg",
  28629. extra: 2433 / 2201,
  28630. bottom: 53 / 2486
  28631. }
  28632. },
  28633. foot: {
  28634. height: math.unit(16.1, "miles"),
  28635. name: "Foot",
  28636. image: {
  28637. source: "./media/characters/sona/foot.svg"
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Macro",
  28644. height: math.unit(100, "miles"),
  28645. default: true
  28646. },
  28647. ]
  28648. ))
  28649. characterMakers.push(() => makeCharacter(
  28650. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28651. {
  28652. front: {
  28653. height: math.unit(6, "feet"),
  28654. weight: math.unit(150, "lb"),
  28655. name: "Front",
  28656. image: {
  28657. source: "./media/characters/bailey/front.svg",
  28658. extra: 1778 / 1724,
  28659. bottom: 30 / 1808
  28660. }
  28661. },
  28662. },
  28663. [
  28664. {
  28665. name: "Micro",
  28666. height: math.unit(4, "inches")
  28667. },
  28668. {
  28669. name: "Normal",
  28670. height: math.unit(5 + 5 / 12, "feet"),
  28671. default: true
  28672. },
  28673. {
  28674. name: "Macro",
  28675. height: math.unit(250, "feet")
  28676. },
  28677. {
  28678. name: "Megamacro",
  28679. height: math.unit(100, "miles")
  28680. },
  28681. ]
  28682. ))
  28683. characterMakers.push(() => makeCharacter(
  28684. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28685. {
  28686. front: {
  28687. height: math.unit(5 + 2 / 12, "feet"),
  28688. weight: math.unit(120, "lb"),
  28689. name: "Front",
  28690. image: {
  28691. source: "./media/characters/snaps/front.svg",
  28692. extra: 2370 / 2177,
  28693. bottom: 48 / 2418
  28694. }
  28695. },
  28696. back: {
  28697. height: math.unit(5 + 2 / 12, "feet"),
  28698. weight: math.unit(120, "lb"),
  28699. name: "Back",
  28700. image: {
  28701. source: "./media/characters/snaps/back.svg",
  28702. extra: 2408 / 2258,
  28703. bottom: 15 / 2423
  28704. }
  28705. },
  28706. },
  28707. [
  28708. {
  28709. name: "Micro",
  28710. height: math.unit(9, "inches")
  28711. },
  28712. {
  28713. name: "Normal",
  28714. height: math.unit(5 + 2 / 12, "feet"),
  28715. default: true
  28716. },
  28717. {
  28718. name: "Mini Macro",
  28719. height: math.unit(10, "feet")
  28720. },
  28721. ]
  28722. ))
  28723. characterMakers.push(() => makeCharacter(
  28724. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28725. {
  28726. front: {
  28727. height: math.unit(1.8, "meters"),
  28728. weight: math.unit(85, "kg"),
  28729. name: "Front",
  28730. image: {
  28731. source: "./media/characters/azteck/front.svg",
  28732. extra: 2815 / 2625,
  28733. bottom: 89 / 2904
  28734. }
  28735. },
  28736. back: {
  28737. height: math.unit(1.8, "meters"),
  28738. weight: math.unit(85, "kg"),
  28739. name: "Back",
  28740. image: {
  28741. source: "./media/characters/azteck/back.svg",
  28742. extra: 2856 / 2648,
  28743. bottom: 85 / 2941
  28744. }
  28745. },
  28746. frontDressed: {
  28747. height: math.unit(1.8, "meters"),
  28748. weight: math.unit(85, "kg"),
  28749. name: "Front (Dressed)",
  28750. image: {
  28751. source: "./media/characters/azteck/front-dressed.svg",
  28752. extra: 2147 / 2003,
  28753. bottom: 68 / 2215
  28754. }
  28755. },
  28756. head: {
  28757. height: math.unit(0.47, "meters"),
  28758. weight: math.unit(85, "kg"),
  28759. name: "Head",
  28760. image: {
  28761. source: "./media/characters/azteck/head.svg"
  28762. }
  28763. },
  28764. },
  28765. [
  28766. {
  28767. name: "Bite sized",
  28768. height: math.unit(16, "cm")
  28769. },
  28770. {
  28771. name: "Normal",
  28772. height: math.unit(1.8, "meters"),
  28773. default: true
  28774. },
  28775. ]
  28776. ))
  28777. characterMakers.push(() => makeCharacter(
  28778. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28779. {
  28780. front: {
  28781. height: math.unit(6, "feet"),
  28782. weight: math.unit(150, "lb"),
  28783. name: "Front",
  28784. image: {
  28785. source: "./media/characters/pidge/front.svg",
  28786. extra: 620 / 588,
  28787. bottom: 9 / 629
  28788. }
  28789. },
  28790. back: {
  28791. height: math.unit(6, "feet"),
  28792. weight: math.unit(150, "lb"),
  28793. name: "Back",
  28794. image: {
  28795. source: "./media/characters/pidge/back.svg",
  28796. extra: 620 / 588,
  28797. bottom: 9 / 629
  28798. }
  28799. },
  28800. },
  28801. [
  28802. {
  28803. name: "Macro",
  28804. height: math.unit(1, "mile"),
  28805. default: true
  28806. },
  28807. ]
  28808. ))
  28809. characterMakers.push(() => makeCharacter(
  28810. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28811. {
  28812. front: {
  28813. height: math.unit(6, "feet"),
  28814. weight: math.unit(150, "lb"),
  28815. name: "Front",
  28816. image: {
  28817. source: "./media/characters/en/front.svg",
  28818. extra: 1697 / 1563,
  28819. bottom: 103 / 1800
  28820. }
  28821. },
  28822. back: {
  28823. height: math.unit(6, "feet"),
  28824. weight: math.unit(150, "lb"),
  28825. name: "Back",
  28826. image: {
  28827. source: "./media/characters/en/back.svg",
  28828. extra: 1700 / 1570,
  28829. bottom: 51 / 1751
  28830. }
  28831. },
  28832. frontDressed: {
  28833. height: math.unit(6, "feet"),
  28834. weight: math.unit(150, "lb"),
  28835. name: "Front (Dressed)",
  28836. image: {
  28837. source: "./media/characters/en/front-dressed.svg",
  28838. extra: 1697 / 1563,
  28839. bottom: 103 / 1800
  28840. }
  28841. },
  28842. backDressed: {
  28843. height: math.unit(6, "feet"),
  28844. weight: math.unit(150, "lb"),
  28845. name: "Back (Dressed)",
  28846. image: {
  28847. source: "./media/characters/en/back-dressed.svg",
  28848. extra: 1700 / 1570,
  28849. bottom: 51 / 1751
  28850. }
  28851. },
  28852. },
  28853. [
  28854. {
  28855. name: "Macro",
  28856. height: math.unit(210, "feet"),
  28857. default: true
  28858. },
  28859. ]
  28860. ))
  28861. characterMakers.push(() => makeCharacter(
  28862. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28863. {
  28864. front: {
  28865. height: math.unit(6, "feet"),
  28866. weight: math.unit(150, "lb"),
  28867. name: "Front",
  28868. image: {
  28869. source: "./media/characters/haze-orris/front.svg",
  28870. extra: 3975 / 3525,
  28871. bottom: 137 / 4112
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Micro",
  28878. height: math.unit(150, "mm"),
  28879. default: true
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(6, "feet"),
  28888. weight: math.unit(150, "lb"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/casselene-yaro/front.svg",
  28892. extra: 4721 / 4541,
  28893. bottom: 82 / 4803
  28894. }
  28895. },
  28896. back: {
  28897. height: math.unit(6, "feet"),
  28898. weight: math.unit(150, "lb"),
  28899. name: "Back",
  28900. image: {
  28901. source: "./media/characters/casselene-yaro/back.svg",
  28902. extra: 4569 / 4377,
  28903. bottom: 69 / 4638
  28904. }
  28905. },
  28906. frontDressed: {
  28907. height: math.unit(6, "feet"),
  28908. weight: math.unit(150, "lb"),
  28909. name: "Front-dressed",
  28910. image: {
  28911. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28912. extra: 4721 / 4541,
  28913. bottom: 82 / 4803
  28914. }
  28915. },
  28916. },
  28917. [
  28918. {
  28919. name: "Macro",
  28920. height: math.unit(190, "feet"),
  28921. default: true
  28922. },
  28923. ]
  28924. ))
  28925. characterMakers.push(() => makeCharacter(
  28926. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28927. {
  28928. front: {
  28929. height: math.unit(6, "feet"),
  28930. weight: math.unit(150, "lb"),
  28931. name: "Front",
  28932. image: {
  28933. source: "./media/characters/myra-rue-delore/front.svg",
  28934. extra: 1340 / 1308,
  28935. bottom: 67 / 1407
  28936. }
  28937. },
  28938. back: {
  28939. height: math.unit(6, "feet"),
  28940. weight: math.unit(150, "lb"),
  28941. name: "Back",
  28942. image: {
  28943. source: "./media/characters/myra-rue-delore/back.svg",
  28944. extra: 1341 / 1310,
  28945. bottom: 40 / 1381
  28946. }
  28947. },
  28948. frontDressed: {
  28949. height: math.unit(6, "feet"),
  28950. weight: math.unit(150, "lb"),
  28951. name: "Front (Dressed)",
  28952. image: {
  28953. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28954. extra: 1340 / 1308,
  28955. bottom: 67 / 1407
  28956. }
  28957. },
  28958. },
  28959. [
  28960. {
  28961. name: "Macro",
  28962. height: math.unit(150, "feet"),
  28963. default: true
  28964. },
  28965. ]
  28966. ))
  28967. characterMakers.push(() => makeCharacter(
  28968. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28969. {
  28970. front: {
  28971. height: math.unit(10, "feet"),
  28972. weight: math.unit(15015, "lb"),
  28973. name: "Front",
  28974. image: {
  28975. source: "./media/characters/fem!plat/front.svg",
  28976. extra: 2799 / 2604,
  28977. bottom: 149 / 2948
  28978. }
  28979. },
  28980. },
  28981. [
  28982. {
  28983. name: "Normal",
  28984. height: math.unit(10, "feet"),
  28985. default: true
  28986. },
  28987. {
  28988. name: "Macro",
  28989. height: math.unit(100, "feet")
  28990. },
  28991. {
  28992. name: "Megamacro",
  28993. height: math.unit(1000, "feet")
  28994. },
  28995. ]
  28996. ))
  28997. characterMakers.push(() => makeCharacter(
  28998. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28999. {
  29000. front: {
  29001. height: math.unit(15 + 5 / 12, "feet"),
  29002. weight: math.unit(4600, "lb"),
  29003. name: "Front",
  29004. image: {
  29005. source: "./media/characters/neapolitan-ananassa/front.svg",
  29006. extra: 2903 / 2736,
  29007. bottom: 0 / 2903
  29008. }
  29009. },
  29010. side: {
  29011. height: math.unit(15 + 5 / 12, "feet"),
  29012. weight: math.unit(4600, "lb"),
  29013. name: "Side",
  29014. image: {
  29015. source: "./media/characters/neapolitan-ananassa/side.svg",
  29016. extra: 2925 / 2719,
  29017. bottom: 0 / 2925
  29018. }
  29019. },
  29020. back: {
  29021. height: math.unit(15 + 5 / 12, "feet"),
  29022. weight: math.unit(4600, "lb"),
  29023. name: "Back",
  29024. image: {
  29025. source: "./media/characters/neapolitan-ananassa/back.svg",
  29026. extra: 2903 / 2736,
  29027. bottom: 0 / 2903
  29028. }
  29029. },
  29030. },
  29031. [
  29032. {
  29033. name: "Normal",
  29034. height: math.unit(15 + 5 / 12, "feet"),
  29035. default: true
  29036. },
  29037. {
  29038. name: "Post-Millenium",
  29039. height: math.unit(35 + 5 / 12, "feet")
  29040. },
  29041. {
  29042. name: "Post-Era",
  29043. height: math.unit(450 + 5 / 12, "feet")
  29044. },
  29045. ]
  29046. ))
  29047. characterMakers.push(() => makeCharacter(
  29048. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29049. {
  29050. front: {
  29051. height: math.unit(300, "meters"),
  29052. weight: math.unit(125000, "tonnes"),
  29053. name: "Front",
  29054. image: {
  29055. source: "./media/characters/pazuzu/front.svg",
  29056. extra: 877 / 794,
  29057. bottom: 47 / 924
  29058. }
  29059. },
  29060. },
  29061. [
  29062. {
  29063. name: "Macro",
  29064. height: math.unit(300, "meters"),
  29065. default: true
  29066. },
  29067. ]
  29068. ))
  29069. characterMakers.push(() => makeCharacter(
  29070. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29071. {
  29072. side: {
  29073. height: math.unit(10 + 7 / 12, "feet"),
  29074. weight: math.unit(2.5, "tons"),
  29075. name: "Side",
  29076. image: {
  29077. source: "./media/characters/aasha/side.svg",
  29078. extra: 1345 / 1245,
  29079. bottom: 111 / 1456
  29080. }
  29081. },
  29082. back: {
  29083. height: math.unit(10 + 7 / 12, "feet"),
  29084. weight: math.unit(2.5, "tons"),
  29085. name: "Back",
  29086. image: {
  29087. source: "./media/characters/aasha/back.svg",
  29088. extra: 1133 / 1057,
  29089. bottom: 257 / 1390
  29090. }
  29091. },
  29092. },
  29093. [
  29094. {
  29095. name: "Normal",
  29096. height: math.unit(10 + 7 / 12, "feet"),
  29097. default: true
  29098. },
  29099. ]
  29100. ))
  29101. characterMakers.push(() => makeCharacter(
  29102. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29103. {
  29104. front: {
  29105. height: math.unit(6 + 3 / 12, "feet"),
  29106. name: "Front",
  29107. image: {
  29108. source: "./media/characters/nevan/front.svg",
  29109. extra: 704 / 704,
  29110. bottom: 28 / 732
  29111. }
  29112. },
  29113. back: {
  29114. height: math.unit(6 + 3 / 12, "feet"),
  29115. name: "Back",
  29116. image: {
  29117. source: "./media/characters/nevan/back.svg",
  29118. extra: 714 / 714,
  29119. bottom: 21 / 735
  29120. }
  29121. },
  29122. frontFlaccid: {
  29123. height: math.unit(6 + 3 / 12, "feet"),
  29124. name: "Front (Flaccid)",
  29125. image: {
  29126. source: "./media/characters/nevan/front-flaccid.svg",
  29127. extra: 704 / 704,
  29128. bottom: 28 / 732
  29129. }
  29130. },
  29131. frontErect: {
  29132. height: math.unit(6 + 3 / 12, "feet"),
  29133. name: "Front (Erect)",
  29134. image: {
  29135. source: "./media/characters/nevan/front-erect.svg",
  29136. extra: 704 / 704,
  29137. bottom: 28 / 732
  29138. }
  29139. },
  29140. backFlaccid: {
  29141. height: math.unit(6 + 3 / 12, "feet"),
  29142. name: "Back (Flaccid)",
  29143. image: {
  29144. source: "./media/characters/nevan/back-flaccid.svg",
  29145. extra: 714 / 714,
  29146. bottom: 21 / 735
  29147. }
  29148. },
  29149. },
  29150. [
  29151. {
  29152. name: "Normal",
  29153. height: math.unit(6 + 3 / 12, "feet"),
  29154. default: true
  29155. },
  29156. ]
  29157. ))
  29158. characterMakers.push(() => makeCharacter(
  29159. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29160. {
  29161. front: {
  29162. height: math.unit(4, "feet"),
  29163. name: "Front",
  29164. image: {
  29165. source: "./media/characters/arhan/front.svg",
  29166. extra: 3368 / 3133,
  29167. bottom: 0 / 3368
  29168. }
  29169. },
  29170. side: {
  29171. height: math.unit(4, "feet"),
  29172. name: "Side",
  29173. image: {
  29174. source: "./media/characters/arhan/side.svg",
  29175. extra: 3347 / 3105,
  29176. bottom: 0 / 3347
  29177. }
  29178. },
  29179. tongue: {
  29180. height: math.unit(1.42, "feet"),
  29181. name: "Tongue",
  29182. image: {
  29183. source: "./media/characters/arhan/tongue.svg"
  29184. }
  29185. },
  29186. head: {
  29187. height: math.unit(0.85, "feet"),
  29188. name: "Head",
  29189. image: {
  29190. source: "./media/characters/arhan/head.svg"
  29191. }
  29192. },
  29193. },
  29194. [
  29195. {
  29196. name: "Normal",
  29197. height: math.unit(4, "feet"),
  29198. default: true
  29199. },
  29200. ]
  29201. ))
  29202. characterMakers.push(() => makeCharacter(
  29203. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29204. {
  29205. front: {
  29206. height: math.unit(5 + 7.5 / 12, "feet"),
  29207. weight: math.unit(120, "lb"),
  29208. name: "Front",
  29209. image: {
  29210. source: "./media/characters/digi-duncan/front.svg",
  29211. extra: 330 / 326,
  29212. bottom: 16 / 346
  29213. }
  29214. },
  29215. side: {
  29216. height: math.unit(5 + 7.5 / 12, "feet"),
  29217. weight: math.unit(120, "lb"),
  29218. name: "Side",
  29219. image: {
  29220. source: "./media/characters/digi-duncan/side.svg",
  29221. extra: 341 / 337,
  29222. bottom: 1 / 342
  29223. }
  29224. },
  29225. back: {
  29226. height: math.unit(5 + 7.5 / 12, "feet"),
  29227. weight: math.unit(120, "lb"),
  29228. name: "Back",
  29229. image: {
  29230. source: "./media/characters/digi-duncan/back.svg",
  29231. extra: 330 / 326,
  29232. bottom: 12 / 342
  29233. }
  29234. },
  29235. },
  29236. [
  29237. {
  29238. name: "Speck",
  29239. height: math.unit(0.25, "mm")
  29240. },
  29241. {
  29242. name: "Micro",
  29243. height: math.unit(5, "mm")
  29244. },
  29245. {
  29246. name: "Tiny",
  29247. height: math.unit(0.5, "inches"),
  29248. default: true
  29249. },
  29250. {
  29251. name: "Human",
  29252. height: math.unit(5 + 7.5 / 12, "feet")
  29253. },
  29254. {
  29255. name: "Minigiant",
  29256. height: math.unit(8 + 5.25, "feet")
  29257. },
  29258. {
  29259. name: "Giant",
  29260. height: math.unit(2000, "feet")
  29261. },
  29262. {
  29263. name: "Mega",
  29264. height: math.unit(371.1, "miles")
  29265. },
  29266. ]
  29267. ))
  29268. characterMakers.push(() => makeCharacter(
  29269. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29270. {
  29271. front: {
  29272. height: math.unit(2, "meters"),
  29273. weight: math.unit(350, "kg"),
  29274. name: "Front",
  29275. image: {
  29276. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29277. extra: 898 / 838,
  29278. bottom: 9 / 907
  29279. }
  29280. },
  29281. },
  29282. [
  29283. {
  29284. name: "Micro",
  29285. height: math.unit(8, "meters")
  29286. },
  29287. {
  29288. name: "Normal",
  29289. height: math.unit(50, "meters"),
  29290. default: true
  29291. },
  29292. {
  29293. name: "Macro",
  29294. height: math.unit(500, "meters")
  29295. },
  29296. ]
  29297. ))
  29298. characterMakers.push(() => makeCharacter(
  29299. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29300. {
  29301. front: {
  29302. height: math.unit(6 + 6 / 12, "feet"),
  29303. name: "Front",
  29304. image: {
  29305. source: "./media/characters/khardesh/front.svg",
  29306. extra: 888 / 797,
  29307. bottom: 25 / 913
  29308. }
  29309. },
  29310. },
  29311. [
  29312. {
  29313. name: "Normal",
  29314. height: math.unit(6 + 6 / 12, "feet"),
  29315. default: true
  29316. },
  29317. {
  29318. name: "Normal+",
  29319. height: math.unit(4, "meters")
  29320. },
  29321. {
  29322. name: "Macro",
  29323. height: math.unit(50, "meters")
  29324. },
  29325. {
  29326. name: "Macro+",
  29327. height: math.unit(100, "meters")
  29328. },
  29329. {
  29330. name: "Megamacro",
  29331. height: math.unit(20, "km")
  29332. },
  29333. ]
  29334. ))
  29335. characterMakers.push(() => makeCharacter(
  29336. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29337. {
  29338. front: {
  29339. height: math.unit(6, "feet"),
  29340. weight: math.unit(150, "lb"),
  29341. name: "Front",
  29342. image: {
  29343. source: "./media/characters/kosho/front.svg",
  29344. extra: 1847 / 1847,
  29345. bottom: 86 / 1933
  29346. }
  29347. },
  29348. },
  29349. [
  29350. {
  29351. name: "Second-stage micro",
  29352. height: math.unit(0.5, "inches")
  29353. },
  29354. {
  29355. name: "First-stage micro",
  29356. height: math.unit(6, "inches")
  29357. },
  29358. {
  29359. name: "Normal",
  29360. height: math.unit(6, "feet"),
  29361. default: true
  29362. },
  29363. {
  29364. name: "First-stage macro",
  29365. height: math.unit(72, "feet")
  29366. },
  29367. {
  29368. name: "Second-stage macro",
  29369. height: math.unit(864, "feet")
  29370. },
  29371. ]
  29372. ))
  29373. characterMakers.push(() => makeCharacter(
  29374. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29375. {
  29376. normal: {
  29377. height: math.unit(4 + 6 / 12, "feet"),
  29378. name: "Normal",
  29379. image: {
  29380. source: "./media/characters/hydra/normal.svg",
  29381. extra: 2833 / 2634,
  29382. bottom: 68 / 2901
  29383. }
  29384. },
  29385. smol: {
  29386. height: math.unit(0.705, "inches"),
  29387. name: "Smol",
  29388. image: {
  29389. source: "./media/characters/hydra/smol.svg",
  29390. extra: 2715 / 2540,
  29391. bottom: 0 / 2715
  29392. }
  29393. },
  29394. },
  29395. [
  29396. {
  29397. name: "Normal",
  29398. height: math.unit(4 + 6 / 12, "feet"),
  29399. default: true
  29400. }
  29401. ]
  29402. ))
  29403. characterMakers.push(() => makeCharacter(
  29404. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29405. {
  29406. front: {
  29407. height: math.unit(0.6, "cm"),
  29408. name: "Front",
  29409. image: {
  29410. source: "./media/characters/daz/front.svg",
  29411. extra: 1682 / 1164,
  29412. bottom: 42 / 1724
  29413. }
  29414. },
  29415. },
  29416. [
  29417. {
  29418. name: "Normal",
  29419. height: math.unit(0.6, "cm"),
  29420. default: true
  29421. },
  29422. ]
  29423. ))
  29424. characterMakers.push(() => makeCharacter(
  29425. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29426. {
  29427. front: {
  29428. height: math.unit(6, "feet"),
  29429. weight: math.unit(235, "lb"),
  29430. name: "Front",
  29431. image: {
  29432. source: "./media/characters/theo-pangolin/front.svg",
  29433. extra: 1996 / 1969,
  29434. bottom: 115 / 2111
  29435. }
  29436. },
  29437. back: {
  29438. height: math.unit(6, "feet"),
  29439. weight: math.unit(235, "lb"),
  29440. name: "Back",
  29441. image: {
  29442. source: "./media/characters/theo-pangolin/back.svg",
  29443. extra: 1979 / 1979,
  29444. bottom: 40 / 2019
  29445. }
  29446. },
  29447. feral: {
  29448. height: math.unit(2, "feet"),
  29449. weight: math.unit(30, "lb"),
  29450. name: "Feral",
  29451. image: {
  29452. source: "./media/characters/theo-pangolin/feral.svg",
  29453. extra: 803 / 791,
  29454. bottom: 181 / 984
  29455. }
  29456. },
  29457. footFive: {
  29458. height: math.unit(1.43, "feet"),
  29459. name: "Foot (Five Toes)",
  29460. image: {
  29461. source: "./media/characters/theo-pangolin/foot-five.svg"
  29462. }
  29463. },
  29464. footFour: {
  29465. height: math.unit(1.43, "feet"),
  29466. name: "Foot (Four Toes)",
  29467. image: {
  29468. source: "./media/characters/theo-pangolin/foot-four.svg"
  29469. }
  29470. },
  29471. handFour: {
  29472. height: math.unit(0.81, "feet"),
  29473. name: "Hand (Four Fingers)",
  29474. image: {
  29475. source: "./media/characters/theo-pangolin/hand-four.svg"
  29476. }
  29477. },
  29478. handThree: {
  29479. height: math.unit(0.81, "feet"),
  29480. name: "Hand (Three Fingers)",
  29481. image: {
  29482. source: "./media/characters/theo-pangolin/hand-three.svg"
  29483. }
  29484. },
  29485. headFront: {
  29486. height: math.unit(1.37, "feet"),
  29487. name: "Head (Front)",
  29488. image: {
  29489. source: "./media/characters/theo-pangolin/head-front.svg"
  29490. }
  29491. },
  29492. headSide: {
  29493. height: math.unit(1.43, "feet"),
  29494. name: "Head (Side)",
  29495. image: {
  29496. source: "./media/characters/theo-pangolin/head-side.svg"
  29497. }
  29498. },
  29499. tongue: {
  29500. height: math.unit(2.29, "feet"),
  29501. name: "Tongue",
  29502. image: {
  29503. source: "./media/characters/theo-pangolin/tongue.svg"
  29504. }
  29505. },
  29506. },
  29507. [
  29508. {
  29509. name: "Normal",
  29510. height: math.unit(6, "feet")
  29511. },
  29512. {
  29513. name: "Macro",
  29514. height: math.unit(400, "feet"),
  29515. default: true
  29516. },
  29517. ]
  29518. ))
  29519. characterMakers.push(() => makeCharacter(
  29520. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29521. {
  29522. front: {
  29523. height: math.unit(6, "inches"),
  29524. weight: math.unit(0.036, "kg"),
  29525. name: "Front",
  29526. image: {
  29527. source: "./media/characters/renée/front.svg",
  29528. extra: 900 / 886,
  29529. bottom: 8 / 908
  29530. }
  29531. },
  29532. },
  29533. [
  29534. {
  29535. name: "Nano",
  29536. height: math.unit(1, "nm")
  29537. },
  29538. {
  29539. name: "Micro",
  29540. height: math.unit(1, "mm")
  29541. },
  29542. {
  29543. name: "Normal",
  29544. height: math.unit(6, "inches")
  29545. },
  29546. {
  29547. name: "Macro",
  29548. height: math.unit(2000, "feet"),
  29549. default: true
  29550. },
  29551. {
  29552. name: "Megamacro",
  29553. height: math.unit(2, "km")
  29554. },
  29555. {
  29556. name: "Gigamacro",
  29557. height: math.unit(2000, "km")
  29558. },
  29559. {
  29560. name: "Teramacro",
  29561. height: math.unit(250000, "km")
  29562. },
  29563. ]
  29564. ))
  29565. characterMakers.push(() => makeCharacter(
  29566. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29567. {
  29568. front: {
  29569. height: math.unit(4, "meters"),
  29570. weight: math.unit(150, "kg"),
  29571. name: "Front",
  29572. image: {
  29573. source: "./media/characters/caledvwlch/front.svg",
  29574. extra: 1760 / 1551,
  29575. bottom: 28 / 1788
  29576. }
  29577. },
  29578. side: {
  29579. height: math.unit(4, "meters"),
  29580. weight: math.unit(150, "kg"),
  29581. name: "Side",
  29582. image: {
  29583. source: "./media/characters/caledvwlch/side.svg",
  29584. extra: 1605 / 1536,
  29585. bottom: 31 / 1636
  29586. }
  29587. },
  29588. back: {
  29589. height: math.unit(4, "meters"),
  29590. weight: math.unit(150, "kg"),
  29591. name: "Back",
  29592. image: {
  29593. source: "./media/characters/caledvwlch/back.svg",
  29594. extra: 1635 / 1565,
  29595. bottom: 27 / 1662
  29596. }
  29597. },
  29598. },
  29599. [
  29600. {
  29601. name: "\"Incognito\"",
  29602. height: math.unit(4, "meters")
  29603. },
  29604. {
  29605. name: "Small rampage",
  29606. height: math.unit(600, "meters")
  29607. },
  29608. {
  29609. name: "Mega",
  29610. height: math.unit(30, "km")
  29611. },
  29612. {
  29613. name: "Home-size",
  29614. height: math.unit(50, "km"),
  29615. default: true
  29616. },
  29617. {
  29618. name: "Giga",
  29619. height: math.unit(300, "km")
  29620. },
  29621. {
  29622. name: "Lounging",
  29623. height: math.unit(11000, "km")
  29624. },
  29625. {
  29626. name: "Planet snacking",
  29627. height: math.unit(2000000, "km")
  29628. },
  29629. ]
  29630. ))
  29631. characterMakers.push(() => makeCharacter(
  29632. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29633. {
  29634. front: {
  29635. height: math.unit(6, "feet"),
  29636. weight: math.unit(215, "lb"),
  29637. name: "Front",
  29638. image: {
  29639. source: "./media/characters/sapphire-svell/front.svg",
  29640. extra: 495 / 455,
  29641. bottom: 20 / 515
  29642. }
  29643. },
  29644. back: {
  29645. height: math.unit(6, "feet"),
  29646. weight: math.unit(216, "lb"),
  29647. name: "Back",
  29648. image: {
  29649. source: "./media/characters/sapphire-svell/back.svg",
  29650. extra: 497 / 477,
  29651. bottom: 7 / 504
  29652. }
  29653. },
  29654. maw: {
  29655. height: math.unit(1.57, "feet"),
  29656. name: "Maw",
  29657. image: {
  29658. source: "./media/characters/sapphire-svell/maw.svg"
  29659. }
  29660. },
  29661. foot: {
  29662. height: math.unit(1.07, "feet"),
  29663. name: "Foot",
  29664. image: {
  29665. source: "./media/characters/sapphire-svell/foot.svg"
  29666. }
  29667. },
  29668. toering: {
  29669. height: math.unit(1.7, "inch"),
  29670. name: "Toering",
  29671. image: {
  29672. source: "./media/characters/sapphire-svell/toering.svg"
  29673. }
  29674. },
  29675. },
  29676. [
  29677. {
  29678. name: "Normal",
  29679. height: math.unit(300, "feet"),
  29680. default: true
  29681. },
  29682. {
  29683. name: "Augmented",
  29684. height: math.unit(1250, "feet")
  29685. },
  29686. {
  29687. name: "Unleashed",
  29688. height: math.unit(3000, "feet")
  29689. },
  29690. ]
  29691. ))
  29692. characterMakers.push(() => makeCharacter(
  29693. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29694. {
  29695. side: {
  29696. height: math.unit(2 + 3 / 12, "feet"),
  29697. weight: math.unit(110, "lb"),
  29698. name: "Side",
  29699. image: {
  29700. source: "./media/characters/glitch-flux/side.svg",
  29701. extra: 997 / 805,
  29702. bottom: 20 / 1017
  29703. }
  29704. },
  29705. },
  29706. [
  29707. {
  29708. name: "Normal",
  29709. height: math.unit(2 + 3 / 12, "feet"),
  29710. default: true
  29711. },
  29712. ]
  29713. ))
  29714. characterMakers.push(() => makeCharacter(
  29715. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29716. {
  29717. front: {
  29718. height: math.unit(4, "meters"),
  29719. name: "Front",
  29720. image: {
  29721. source: "./media/characters/mid/front.svg",
  29722. extra: 507 / 476,
  29723. bottom: 17 / 524
  29724. }
  29725. },
  29726. back: {
  29727. height: math.unit(4, "meters"),
  29728. name: "Back",
  29729. image: {
  29730. source: "./media/characters/mid/back.svg",
  29731. extra: 519 / 487,
  29732. bottom: 7 / 526
  29733. }
  29734. },
  29735. stuck: {
  29736. height: math.unit(2.2, "meters"),
  29737. name: "Stuck",
  29738. image: {
  29739. source: "./media/characters/mid/stuck.svg",
  29740. extra: 1951 / 1869,
  29741. bottom: 88 / 2039
  29742. }
  29743. }
  29744. },
  29745. [
  29746. {
  29747. name: "Normal",
  29748. height: math.unit(4, "meters"),
  29749. default: true
  29750. },
  29751. {
  29752. name: "Big",
  29753. height: math.unit(10, "meters")
  29754. },
  29755. {
  29756. name: "Macro",
  29757. height: math.unit(800, "meters")
  29758. },
  29759. {
  29760. name: "Megamacro",
  29761. height: math.unit(100, "km")
  29762. },
  29763. {
  29764. name: "Overgrown",
  29765. height: math.unit(1, "parsec")
  29766. },
  29767. ]
  29768. ))
  29769. characterMakers.push(() => makeCharacter(
  29770. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29771. {
  29772. front: {
  29773. height: math.unit(2.5, "meters"),
  29774. weight: math.unit(225, "kg"),
  29775. name: "Front",
  29776. image: {
  29777. source: "./media/characters/iris/front.svg",
  29778. extra: 3348 / 3251,
  29779. bottom: 205 / 3553
  29780. }
  29781. },
  29782. maw: {
  29783. height: math.unit(0.56, "meter"),
  29784. name: "Maw",
  29785. image: {
  29786. source: "./media/characters/iris/maw.svg"
  29787. }
  29788. },
  29789. },
  29790. [
  29791. {
  29792. name: "Mewter cat",
  29793. height: math.unit(1.2, "meters")
  29794. },
  29795. {
  29796. name: "Minimacro",
  29797. height: math.unit(2.5, "meters"),
  29798. default: true
  29799. },
  29800. {
  29801. name: "Macro",
  29802. height: math.unit(180, "meters")
  29803. },
  29804. {
  29805. name: "Megamacro",
  29806. height: math.unit(2746, "meters")
  29807. },
  29808. ]
  29809. ))
  29810. characterMakers.push(() => makeCharacter(
  29811. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29812. {
  29813. front: {
  29814. height: math.unit(6, "feet"),
  29815. weight: math.unit(135, "lb"),
  29816. name: "Front",
  29817. image: {
  29818. source: "./media/characters/axel/front.svg",
  29819. extra: 908 / 908,
  29820. bottom: 58 / 966
  29821. }
  29822. },
  29823. side: {
  29824. height: math.unit(6, "feet"),
  29825. weight: math.unit(135, "lb"),
  29826. name: "Side",
  29827. image: {
  29828. source: "./media/characters/axel/side.svg",
  29829. extra: 958 / 958,
  29830. bottom: 11 / 969
  29831. }
  29832. },
  29833. back: {
  29834. height: math.unit(6, "feet"),
  29835. weight: math.unit(135, "lb"),
  29836. name: "Back",
  29837. image: {
  29838. source: "./media/characters/axel/back.svg",
  29839. extra: 887 / 887,
  29840. bottom: 34 / 921
  29841. }
  29842. },
  29843. head: {
  29844. height: math.unit(1.07, "feet"),
  29845. name: "Head",
  29846. image: {
  29847. source: "./media/characters/axel/head.svg"
  29848. }
  29849. },
  29850. beak: {
  29851. height: math.unit(1.4, "feet"),
  29852. name: "Beak",
  29853. image: {
  29854. source: "./media/characters/axel/beak.svg"
  29855. }
  29856. },
  29857. beakSide: {
  29858. height: math.unit(1.4, "feet"),
  29859. name: "Beak Side",
  29860. image: {
  29861. source: "./media/characters/axel/beak-side.svg"
  29862. }
  29863. },
  29864. sheath: {
  29865. height: math.unit(0.5, "feet"),
  29866. name: "Sheath",
  29867. image: {
  29868. source: "./media/characters/axel/sheath.svg"
  29869. }
  29870. },
  29871. dick: {
  29872. height: math.unit(0.98, "feet"),
  29873. name: "Dick",
  29874. image: {
  29875. source: "./media/characters/axel/dick.svg"
  29876. }
  29877. },
  29878. },
  29879. [
  29880. {
  29881. name: "Macro",
  29882. height: math.unit(68, "meters"),
  29883. default: true
  29884. },
  29885. ]
  29886. ))
  29887. characterMakers.push(() => makeCharacter(
  29888. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29889. {
  29890. front: {
  29891. height: math.unit(3.5, "meters"),
  29892. weight: math.unit(1200, "kg"),
  29893. name: "Front",
  29894. image: {
  29895. source: "./media/characters/joanna/front.svg",
  29896. extra: 1596 / 1488,
  29897. bottom: 29 / 1625
  29898. }
  29899. },
  29900. back: {
  29901. height: math.unit(3.5, "meters"),
  29902. weight: math.unit(1200, "kg"),
  29903. name: "Back",
  29904. image: {
  29905. source: "./media/characters/joanna/back.svg",
  29906. extra: 1594 / 1495,
  29907. bottom: 26 / 1620
  29908. }
  29909. },
  29910. frontShorts: {
  29911. height: math.unit(3.5, "meters"),
  29912. weight: math.unit(1200, "kg"),
  29913. name: "Front (Shorts)",
  29914. image: {
  29915. source: "./media/characters/joanna/front-shorts.svg",
  29916. extra: 1596 / 1488,
  29917. bottom: 29 / 1625
  29918. }
  29919. },
  29920. frontBiker: {
  29921. height: math.unit(3.5, "meters"),
  29922. weight: math.unit(1200, "kg"),
  29923. name: "Front (Biker)",
  29924. image: {
  29925. source: "./media/characters/joanna/front-biker.svg",
  29926. extra: 1596 / 1488,
  29927. bottom: 29 / 1625
  29928. }
  29929. },
  29930. backBiker: {
  29931. height: math.unit(3.5, "meters"),
  29932. weight: math.unit(1200, "kg"),
  29933. name: "Back (Biker)",
  29934. image: {
  29935. source: "./media/characters/joanna/back-biker.svg",
  29936. extra: 1594 / 1495,
  29937. bottom: 88 / 1682
  29938. }
  29939. },
  29940. bikeLeft: {
  29941. height: math.unit(2.4, "meters"),
  29942. weight: math.unit(1600, "kg"),
  29943. name: "Bike (Left)",
  29944. image: {
  29945. source: "./media/characters/joanna/bike-left.svg",
  29946. extra: 720 / 720,
  29947. bottom: 8 / 728
  29948. }
  29949. },
  29950. bikeRight: {
  29951. height: math.unit(2.4, "meters"),
  29952. weight: math.unit(1600, "kg"),
  29953. name: "Bike (Right)",
  29954. image: {
  29955. source: "./media/characters/joanna/bike-right.svg",
  29956. extra: 720 / 720,
  29957. bottom: 8 / 728
  29958. }
  29959. },
  29960. },
  29961. [
  29962. {
  29963. name: "Incognito",
  29964. height: math.unit(3.5, "meters")
  29965. },
  29966. {
  29967. name: "Casual Big",
  29968. height: math.unit(200, "meters")
  29969. },
  29970. {
  29971. name: "Macro",
  29972. height: math.unit(600, "meters")
  29973. },
  29974. {
  29975. name: "Original",
  29976. height: math.unit(20, "km"),
  29977. default: true
  29978. },
  29979. {
  29980. name: "Giga",
  29981. height: math.unit(400, "km")
  29982. },
  29983. {
  29984. name: "Lounging",
  29985. height: math.unit(1500, "km")
  29986. },
  29987. {
  29988. name: "Planetary",
  29989. height: math.unit(200000, "km")
  29990. },
  29991. ]
  29992. ))
  29993. characterMakers.push(() => makeCharacter(
  29994. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29995. {
  29996. front: {
  29997. height: math.unit(6, "feet"),
  29998. weight: math.unit(150, "lb"),
  29999. name: "Front",
  30000. image: {
  30001. source: "./media/characters/hugo-sigil/front.svg",
  30002. extra: 522 / 500,
  30003. bottom: 2 / 524
  30004. }
  30005. },
  30006. back: {
  30007. height: math.unit(6, "feet"),
  30008. weight: math.unit(150, "lb"),
  30009. name: "Back",
  30010. image: {
  30011. source: "./media/characters/hugo-sigil/back.svg",
  30012. extra: 519 / 495,
  30013. bottom: 5 / 524
  30014. }
  30015. },
  30016. maw: {
  30017. height: math.unit(1.4, "feet"),
  30018. weight: math.unit(150, "lb"),
  30019. name: "Maw",
  30020. image: {
  30021. source: "./media/characters/hugo-sigil/maw.svg"
  30022. }
  30023. },
  30024. feet: {
  30025. height: math.unit(1.56, "feet"),
  30026. weight: math.unit(150, "lb"),
  30027. name: "Feet",
  30028. image: {
  30029. source: "./media/characters/hugo-sigil/feet.svg",
  30030. extra: 177 / 177,
  30031. bottom: 12 / 189
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Normal",
  30038. height: math.unit(6, "feet")
  30039. },
  30040. {
  30041. name: "Macro",
  30042. height: math.unit(200, "feet"),
  30043. default: true
  30044. },
  30045. ]
  30046. ))
  30047. characterMakers.push(() => makeCharacter(
  30048. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30049. {
  30050. front: {
  30051. height: math.unit(6, "feet"),
  30052. weight: math.unit(150, "lb"),
  30053. name: "Front",
  30054. image: {
  30055. source: "./media/characters/peri/front.svg",
  30056. extra: 2354 / 2233,
  30057. bottom: 49 / 2403
  30058. }
  30059. },
  30060. },
  30061. [
  30062. {
  30063. name: "Really Small",
  30064. height: math.unit(1, "nm")
  30065. },
  30066. {
  30067. name: "Micro",
  30068. height: math.unit(4, "inches")
  30069. },
  30070. {
  30071. name: "Normal",
  30072. height: math.unit(7, "inches"),
  30073. default: true
  30074. },
  30075. {
  30076. name: "Macro",
  30077. height: math.unit(400, "feet")
  30078. },
  30079. {
  30080. name: "Megamacro",
  30081. height: math.unit(100, "miles")
  30082. },
  30083. ]
  30084. ))
  30085. characterMakers.push(() => makeCharacter(
  30086. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30087. {
  30088. frontSlim: {
  30089. height: math.unit(7, "feet"),
  30090. name: "Front (Slim)",
  30091. image: {
  30092. source: "./media/characters/issilora/front-slim.svg",
  30093. extra: 529 / 449,
  30094. bottom: 53 / 582
  30095. }
  30096. },
  30097. sideSlim: {
  30098. height: math.unit(7, "feet"),
  30099. name: "Side (Slim)",
  30100. image: {
  30101. source: "./media/characters/issilora/side-slim.svg",
  30102. extra: 570 / 480,
  30103. bottom: 30 / 600
  30104. }
  30105. },
  30106. backSlim: {
  30107. height: math.unit(7, "feet"),
  30108. name: "Back (Slim)",
  30109. image: {
  30110. source: "./media/characters/issilora/back-slim.svg",
  30111. extra: 537 / 455,
  30112. bottom: 46 / 583
  30113. }
  30114. },
  30115. frontBuff: {
  30116. height: math.unit(7, "feet"),
  30117. name: "Front (Buff)",
  30118. image: {
  30119. source: "./media/characters/issilora/front-buff.svg",
  30120. extra: 2310 / 2035,
  30121. bottom: 335 / 2645
  30122. }
  30123. },
  30124. head: {
  30125. height: math.unit(1.94, "feet"),
  30126. name: "Head",
  30127. image: {
  30128. source: "./media/characters/issilora/head.svg"
  30129. }
  30130. },
  30131. },
  30132. [
  30133. {
  30134. name: "Minimum",
  30135. height: math.unit(7, "feet")
  30136. },
  30137. {
  30138. name: "Comfortable",
  30139. height: math.unit(17, "feet")
  30140. },
  30141. {
  30142. name: "Fun Size",
  30143. height: math.unit(47, "feet")
  30144. },
  30145. {
  30146. name: "Natural Macro",
  30147. height: math.unit(137, "feet"),
  30148. default: true
  30149. },
  30150. {
  30151. name: "Maximum Kaiju",
  30152. height: math.unit(397, "feet")
  30153. },
  30154. ]
  30155. ))
  30156. characterMakers.push(() => makeCharacter(
  30157. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30158. {
  30159. front: {
  30160. height: math.unit(50 + 9/12, "feet"),
  30161. weight: math.unit(32.8, "tons"),
  30162. name: "Front",
  30163. image: {
  30164. source: "./media/characters/irb'iiritaahn/front.svg",
  30165. extra: 1878/1826,
  30166. bottom: 326/2204
  30167. }
  30168. },
  30169. back: {
  30170. height: math.unit(50 + 9/12, "feet"),
  30171. weight: math.unit(32.8, "tons"),
  30172. name: "Back",
  30173. image: {
  30174. source: "./media/characters/irb'iiritaahn/back.svg",
  30175. extra: 2052/2018,
  30176. bottom: 152/2204
  30177. }
  30178. },
  30179. head: {
  30180. height: math.unit(12.86, "feet"),
  30181. name: "Head",
  30182. image: {
  30183. source: "./media/characters/irb'iiritaahn/head.svg"
  30184. }
  30185. },
  30186. maw: {
  30187. height: math.unit(9.66, "feet"),
  30188. name: "Maw",
  30189. image: {
  30190. source: "./media/characters/irb'iiritaahn/maw.svg"
  30191. }
  30192. },
  30193. frontDick: {
  30194. height: math.unit(8.78461, "feet"),
  30195. name: "Front Dick",
  30196. image: {
  30197. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30198. }
  30199. },
  30200. rearDick: {
  30201. height: math.unit(8.78461, "feet"),
  30202. name: "Rear Dick",
  30203. image: {
  30204. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30205. }
  30206. },
  30207. rearDickUnfolded: {
  30208. height: math.unit(8.78, "feet"),
  30209. name: "Rear Dick (Unfolded)",
  30210. image: {
  30211. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30212. }
  30213. },
  30214. wings: {
  30215. height: math.unit(43, "feet"),
  30216. name: "Wings",
  30217. image: {
  30218. source: "./media/characters/irb'iiritaahn/wings.svg"
  30219. }
  30220. },
  30221. },
  30222. [
  30223. {
  30224. name: "Macro",
  30225. height: math.unit(50 + 9/12, "feet"),
  30226. default: true
  30227. },
  30228. ]
  30229. ))
  30230. characterMakers.push(() => makeCharacter(
  30231. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30232. {
  30233. front: {
  30234. height: math.unit(205, "cm"),
  30235. weight: math.unit(102, "kg"),
  30236. name: "Front",
  30237. image: {
  30238. source: "./media/characters/irbisgreif/front.svg",
  30239. extra: 785/706,
  30240. bottom: 13/798
  30241. }
  30242. },
  30243. back: {
  30244. height: math.unit(205, "cm"),
  30245. weight: math.unit(102, "kg"),
  30246. name: "Back",
  30247. image: {
  30248. source: "./media/characters/irbisgreif/back.svg",
  30249. extra: 713/701,
  30250. bottom: 26/739
  30251. }
  30252. },
  30253. frontDressed: {
  30254. height: math.unit(216, "cm"),
  30255. weight: math.unit(102, "kg"),
  30256. name: "Front-dressed",
  30257. image: {
  30258. source: "./media/characters/irbisgreif/front-dressed.svg",
  30259. extra: 902/776,
  30260. bottom: 14/916
  30261. }
  30262. },
  30263. sideDressed: {
  30264. height: math.unit(195, "cm"),
  30265. weight: math.unit(102, "kg"),
  30266. name: "Side-dressed",
  30267. image: {
  30268. source: "./media/characters/irbisgreif/side-dressed.svg",
  30269. extra: 788/688,
  30270. bottom: 21/809
  30271. }
  30272. },
  30273. backDressed: {
  30274. height: math.unit(216, "cm"),
  30275. weight: math.unit(102, "kg"),
  30276. name: "Back-dressed",
  30277. image: {
  30278. source: "./media/characters/irbisgreif/back-dressed.svg",
  30279. extra: 901/783,
  30280. bottom: 10/911
  30281. }
  30282. },
  30283. dick: {
  30284. height: math.unit(0.49, "feet"),
  30285. name: "Dick",
  30286. image: {
  30287. source: "./media/characters/irbisgreif/dick.svg"
  30288. }
  30289. },
  30290. wingTop: {
  30291. height: math.unit(1.93 , "feet"),
  30292. name: "Wing-top",
  30293. image: {
  30294. source: "./media/characters/irbisgreif/wing-top.svg"
  30295. }
  30296. },
  30297. wingBottom: {
  30298. height: math.unit(1.93 , "feet"),
  30299. name: "Wing-bottom",
  30300. image: {
  30301. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30302. }
  30303. },
  30304. },
  30305. [
  30306. {
  30307. name: "Normal",
  30308. height: math.unit(216, "cm"),
  30309. default: true
  30310. },
  30311. ]
  30312. ))
  30313. characterMakers.push(() => makeCharacter(
  30314. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30315. {
  30316. front: {
  30317. height: math.unit(6, "feet"),
  30318. weight: math.unit(150, "lb"),
  30319. name: "Front",
  30320. image: {
  30321. source: "./media/characters/pride/front.svg",
  30322. extra: 1299/1230,
  30323. bottom: 18/1317
  30324. }
  30325. },
  30326. },
  30327. [
  30328. {
  30329. name: "Normal",
  30330. height: math.unit(7, "feet")
  30331. },
  30332. {
  30333. name: "Mini-macro",
  30334. height: math.unit(11, "feet")
  30335. },
  30336. {
  30337. name: "Macro",
  30338. height: math.unit(15, "meters"),
  30339. default: true
  30340. },
  30341. {
  30342. name: "Macro+",
  30343. height: math.unit(40, "meters")
  30344. },
  30345. ]
  30346. ))
  30347. characterMakers.push(() => makeCharacter(
  30348. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30349. {
  30350. front: {
  30351. height: math.unit(4 + 2 / 12, "feet"),
  30352. weight: math.unit(95, "lb"),
  30353. name: "Front",
  30354. image: {
  30355. source: "./media/characters/vaelophis-nyx/front.svg",
  30356. extra: 2532/2330,
  30357. bottom: 0/2532
  30358. }
  30359. },
  30360. back: {
  30361. height: math.unit(4 + 2 / 12, "feet"),
  30362. weight: math.unit(95, "lb"),
  30363. name: "Back",
  30364. image: {
  30365. source: "./media/characters/vaelophis-nyx/back.svg",
  30366. extra: 2484/2361,
  30367. bottom: 0/2484
  30368. }
  30369. },
  30370. feralSide: {
  30371. height: math.unit(2 + 1/12, "feet"),
  30372. weight: math.unit(20, "lb"),
  30373. name: "Feral (Side)",
  30374. image: {
  30375. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30376. extra: 1721/1581,
  30377. bottom: 70/1791
  30378. }
  30379. },
  30380. feralLazing: {
  30381. height: math.unit(1.08, "feet"),
  30382. weight: math.unit(20, "lb"),
  30383. name: "Feral (Lazing)",
  30384. image: {
  30385. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30386. extra: 822/822,
  30387. bottom: 248/1070
  30388. }
  30389. },
  30390. ear: {
  30391. height: math.unit(0.416, "feet"),
  30392. name: "Ear",
  30393. image: {
  30394. source: "./media/characters/vaelophis-nyx/ear.svg"
  30395. }
  30396. },
  30397. eye: {
  30398. height: math.unit(0.0748, "feet"),
  30399. name: "Eye",
  30400. image: {
  30401. source: "./media/characters/vaelophis-nyx/eye.svg"
  30402. }
  30403. },
  30404. mouth: {
  30405. height: math.unit(0.378, "feet"),
  30406. name: "Mouth",
  30407. image: {
  30408. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30409. }
  30410. },
  30411. spade: {
  30412. height: math.unit(0.55, "feet"),
  30413. name: "Spade",
  30414. image: {
  30415. source: "./media/characters/vaelophis-nyx/spade.svg"
  30416. }
  30417. },
  30418. },
  30419. [
  30420. {
  30421. name: "Normal",
  30422. height: math.unit(4 + 2/12, "feet"),
  30423. default: true
  30424. },
  30425. ]
  30426. ))
  30427. characterMakers.push(() => makeCharacter(
  30428. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30429. {
  30430. front: {
  30431. height: math.unit(7, "feet"),
  30432. weight: math.unit(231, "lb"),
  30433. name: "Front",
  30434. image: {
  30435. source: "./media/characters/flux/front.svg",
  30436. extra: 919/871,
  30437. bottom: 0/919
  30438. }
  30439. },
  30440. back: {
  30441. height: math.unit(7, "feet"),
  30442. weight: math.unit(231, "lb"),
  30443. name: "Back",
  30444. image: {
  30445. source: "./media/characters/flux/back.svg",
  30446. extra: 1040/992,
  30447. bottom: 0/1040
  30448. }
  30449. },
  30450. frontDressed: {
  30451. height: math.unit(7, "feet"),
  30452. weight: math.unit(231, "lb"),
  30453. name: "Front (Dressed)",
  30454. image: {
  30455. source: "./media/characters/flux/front-dressed.svg",
  30456. extra: 919/871,
  30457. bottom: 0/919
  30458. }
  30459. },
  30460. feralSide: {
  30461. height: math.unit(5, "feet"),
  30462. weight: math.unit(150, "lb"),
  30463. name: "Feral (Side)",
  30464. image: {
  30465. source: "./media/characters/flux/feral-side.svg",
  30466. extra: 598/528,
  30467. bottom: 28/626
  30468. }
  30469. },
  30470. head: {
  30471. height: math.unit(1.585, "feet"),
  30472. name: "Head",
  30473. image: {
  30474. source: "./media/characters/flux/head.svg"
  30475. }
  30476. },
  30477. headSide: {
  30478. height: math.unit(1.74, "feet"),
  30479. name: "Head (Side)",
  30480. image: {
  30481. source: "./media/characters/flux/head-side.svg"
  30482. }
  30483. },
  30484. headSideFire: {
  30485. height: math.unit(1.76, "feet"),
  30486. name: "Head (Side, Fire)",
  30487. image: {
  30488. source: "./media/characters/flux/head-side-fire.svg"
  30489. }
  30490. },
  30491. },
  30492. [
  30493. {
  30494. name: "Normal",
  30495. height: math.unit(7, "feet"),
  30496. default: true
  30497. },
  30498. ]
  30499. ))
  30500. characterMakers.push(() => makeCharacter(
  30501. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30502. {
  30503. front: {
  30504. height: math.unit(9, "feet"),
  30505. weight: math.unit(1012, "lb"),
  30506. name: "Front",
  30507. image: {
  30508. source: "./media/characters/ulfra-lupae/front.svg",
  30509. extra: 1083/1011,
  30510. bottom: 67/1150
  30511. }
  30512. },
  30513. },
  30514. [
  30515. {
  30516. name: "Micro",
  30517. height: math.unit(6, "inches")
  30518. },
  30519. {
  30520. name: "Socializing",
  30521. height: math.unit(6 + 5/12, "feet")
  30522. },
  30523. {
  30524. name: "Normal",
  30525. height: math.unit(9, "feet"),
  30526. default: true
  30527. },
  30528. {
  30529. name: "Macro",
  30530. height: math.unit(150, "feet")
  30531. },
  30532. ]
  30533. ))
  30534. characterMakers.push(() => makeCharacter(
  30535. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30536. {
  30537. front: {
  30538. height: math.unit(5 + 2/12, "feet"),
  30539. weight: math.unit(120, "lb"),
  30540. name: "Front",
  30541. image: {
  30542. source: "./media/characters/timber/front.svg",
  30543. extra: 2814/2705,
  30544. bottom: 181/2995
  30545. }
  30546. },
  30547. },
  30548. [
  30549. {
  30550. name: "Normal",
  30551. height: math.unit(5 + 2/12, "feet"),
  30552. default: true
  30553. },
  30554. ]
  30555. ))
  30556. characterMakers.push(() => makeCharacter(
  30557. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30558. {
  30559. front: {
  30560. height: math.unit(5 + 7/12, "feet"),
  30561. weight: math.unit(220, "lb"),
  30562. name: "Front",
  30563. image: {
  30564. source: "./media/characters/nicki/front.svg",
  30565. extra: 453/419,
  30566. bottom: 7/460
  30567. }
  30568. },
  30569. frontAlt: {
  30570. height: math.unit(5 + 7/12, "feet"),
  30571. weight: math.unit(220, "lb"),
  30572. name: "Front-alt",
  30573. image: {
  30574. source: "./media/characters/nicki/front-alt.svg",
  30575. extra: 435/411,
  30576. bottom: 12/447
  30577. }
  30578. },
  30579. back: {
  30580. height: math.unit(5 + 7/12, "feet"),
  30581. weight: math.unit(220, "lb"),
  30582. name: "Back",
  30583. image: {
  30584. source: "./media/characters/nicki/back.svg",
  30585. extra: 440/413,
  30586. bottom: 19/459
  30587. }
  30588. },
  30589. taur: {
  30590. height: math.unit(7 + 6/12, "feet"),
  30591. weight: math.unit(700, "lb"),
  30592. name: "Taur",
  30593. image: {
  30594. source: "./media/characters/nicki/taur.svg",
  30595. extra: 975/773,
  30596. bottom: 0/975
  30597. }
  30598. },
  30599. frontNsfw: {
  30600. height: math.unit(5 + 7/12, "feet"),
  30601. weight: math.unit(220, "lb"),
  30602. name: "Front (NSFW)",
  30603. image: {
  30604. source: "./media/characters/nicki/front-nsfw.svg",
  30605. extra: 453/419,
  30606. bottom: 7/460
  30607. }
  30608. },
  30609. frontNsfwAlt: {
  30610. height: math.unit(5 + 7/12, "feet"),
  30611. weight: math.unit(220, "lb"),
  30612. name: "Front (Alt, NSFW)",
  30613. image: {
  30614. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30615. extra: 435/411,
  30616. bottom: 12/447
  30617. }
  30618. },
  30619. backNsfw: {
  30620. height: math.unit(5 + 7/12, "feet"),
  30621. weight: math.unit(220, "lb"),
  30622. name: "Back (NSFW)",
  30623. image: {
  30624. source: "./media/characters/nicki/back-nsfw.svg",
  30625. extra: 440/413,
  30626. bottom: 19/459
  30627. }
  30628. },
  30629. head: {
  30630. height: math.unit(2.1, "feet"),
  30631. name: "Head",
  30632. image: {
  30633. source: "./media/characters/nicki/head.svg"
  30634. }
  30635. },
  30636. paw: {
  30637. height: math.unit(1.88, "feet"),
  30638. name: "Paw",
  30639. image: {
  30640. source: "./media/characters/nicki/paw.svg"
  30641. }
  30642. },
  30643. },
  30644. [
  30645. {
  30646. name: "Normal",
  30647. height: math.unit(5 + 7/12, "feet"),
  30648. default: true
  30649. },
  30650. ]
  30651. ))
  30652. characterMakers.push(() => makeCharacter(
  30653. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30654. {
  30655. front: {
  30656. height: math.unit(7 + 10/12, "feet"),
  30657. weight: math.unit(3.5, "tons"),
  30658. name: "Front",
  30659. image: {
  30660. source: "./media/characters/lee/front.svg",
  30661. extra: 1773/1615,
  30662. bottom: 86/1859
  30663. }
  30664. },
  30665. hand: {
  30666. height: math.unit(1.78, "feet"),
  30667. name: "Hand",
  30668. image: {
  30669. source: "./media/characters/lee/hand.svg"
  30670. }
  30671. },
  30672. maw: {
  30673. height: math.unit(1.18, "feet"),
  30674. name: "Maw",
  30675. image: {
  30676. source: "./media/characters/lee/maw.svg"
  30677. }
  30678. },
  30679. },
  30680. [
  30681. {
  30682. name: "Normal",
  30683. height: math.unit(7 + 10/12, "feet"),
  30684. default: true
  30685. },
  30686. ]
  30687. ))
  30688. characterMakers.push(() => makeCharacter(
  30689. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30690. {
  30691. front: {
  30692. height: math.unit(9, "feet"),
  30693. name: "Front",
  30694. image: {
  30695. source: "./media/characters/guti/front.svg",
  30696. extra: 4551/4355,
  30697. bottom: 123/4674
  30698. }
  30699. },
  30700. tongue: {
  30701. height: math.unit(1, "feet"),
  30702. name: "Tongue",
  30703. image: {
  30704. source: "./media/characters/guti/tongue.svg"
  30705. }
  30706. },
  30707. paw: {
  30708. height: math.unit(1.18, "feet"),
  30709. name: "Paw",
  30710. image: {
  30711. source: "./media/characters/guti/paw.svg"
  30712. }
  30713. },
  30714. },
  30715. [
  30716. {
  30717. name: "Normal",
  30718. height: math.unit(9, "feet"),
  30719. default: true
  30720. },
  30721. ]
  30722. ))
  30723. characterMakers.push(() => makeCharacter(
  30724. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30725. {
  30726. side: {
  30727. height: math.unit(5, "meters"),
  30728. name: "Side",
  30729. image: {
  30730. source: "./media/characters/vesper/side.svg",
  30731. extra: 1605/1518,
  30732. bottom: 0/1605
  30733. }
  30734. },
  30735. },
  30736. [
  30737. {
  30738. name: "Small",
  30739. height: math.unit(5, "meters")
  30740. },
  30741. {
  30742. name: "Sage",
  30743. height: math.unit(100, "meters"),
  30744. default: true
  30745. },
  30746. {
  30747. name: "Fun Size",
  30748. height: math.unit(600, "meters")
  30749. },
  30750. {
  30751. name: "Goddess",
  30752. height: math.unit(20000, "km")
  30753. },
  30754. {
  30755. name: "Maximum",
  30756. height: math.unit(5, "galaxies")
  30757. },
  30758. ]
  30759. ))
  30760. characterMakers.push(() => makeCharacter(
  30761. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30762. {
  30763. front: {
  30764. height: math.unit(6 + 3/12, "feet"),
  30765. weight: math.unit(190, "lb"),
  30766. name: "Front",
  30767. image: {
  30768. source: "./media/characters/gawain/front.svg",
  30769. extra: 2222/2139,
  30770. bottom: 90/2312
  30771. }
  30772. },
  30773. back: {
  30774. height: math.unit(6 + 3/12, "feet"),
  30775. weight: math.unit(190, "lb"),
  30776. name: "Back",
  30777. image: {
  30778. source: "./media/characters/gawain/back.svg",
  30779. extra: 2199/2111,
  30780. bottom: 73/2272
  30781. }
  30782. },
  30783. },
  30784. [
  30785. {
  30786. name: "Normal",
  30787. height: math.unit(6 + 3/12, "feet"),
  30788. default: true
  30789. },
  30790. ]
  30791. ))
  30792. characterMakers.push(() => makeCharacter(
  30793. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30794. {
  30795. side: {
  30796. height: math.unit(3.5, "meters"),
  30797. weight: math.unit(16000, "lb"),
  30798. name: "Side",
  30799. image: {
  30800. source: "./media/characters/dascalti/side.svg",
  30801. extra: 392/273,
  30802. bottom: 47/439
  30803. }
  30804. },
  30805. breath: {
  30806. height: math.unit(7.4, "feet"),
  30807. name: "Breath",
  30808. image: {
  30809. source: "./media/characters/dascalti/breath.svg"
  30810. }
  30811. },
  30812. fed: {
  30813. height: math.unit(3.6, "meters"),
  30814. weight: math.unit(16000, "lb"),
  30815. name: "Fed",
  30816. image: {
  30817. source: "./media/characters/dascalti/fed.svg",
  30818. extra: 1419/820,
  30819. bottom: 95/1514
  30820. }
  30821. },
  30822. },
  30823. [
  30824. {
  30825. name: "Normal",
  30826. height: math.unit(3.5, "meters"),
  30827. default: true
  30828. },
  30829. ]
  30830. ))
  30831. characterMakers.push(() => makeCharacter(
  30832. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30833. {
  30834. front: {
  30835. height: math.unit(3 + 5/12, "feet"),
  30836. name: "Front",
  30837. image: {
  30838. source: "./media/characters/mauve/front.svg",
  30839. extra: 1126/1033,
  30840. bottom: 65/1191
  30841. }
  30842. },
  30843. side: {
  30844. height: math.unit(3 + 5/12, "feet"),
  30845. name: "Side",
  30846. image: {
  30847. source: "./media/characters/mauve/side.svg",
  30848. extra: 1089/1001,
  30849. bottom: 29/1118
  30850. }
  30851. },
  30852. back: {
  30853. height: math.unit(3 + 5/12, "feet"),
  30854. name: "Back",
  30855. image: {
  30856. source: "./media/characters/mauve/back.svg",
  30857. extra: 1173/1053,
  30858. bottom: 109/1282
  30859. }
  30860. },
  30861. },
  30862. [
  30863. {
  30864. name: "Normal",
  30865. height: math.unit(3 + 5/12, "feet"),
  30866. default: true
  30867. },
  30868. ]
  30869. ))
  30870. characterMakers.push(() => makeCharacter(
  30871. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30872. {
  30873. front: {
  30874. height: math.unit(6 + 3/12, "feet"),
  30875. weight: math.unit(430, "lb"),
  30876. name: "Front",
  30877. image: {
  30878. source: "./media/characters/carlos/front.svg",
  30879. extra: 1964/1913,
  30880. bottom: 70/2034
  30881. }
  30882. },
  30883. },
  30884. [
  30885. {
  30886. name: "Normal",
  30887. height: math.unit(6 + 3/12, "feet"),
  30888. default: true
  30889. },
  30890. ]
  30891. ))
  30892. characterMakers.push(() => makeCharacter(
  30893. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30894. {
  30895. back: {
  30896. height: math.unit(5 + 10/12, "feet"),
  30897. weight: math.unit(200, "lb"),
  30898. name: "Back",
  30899. image: {
  30900. source: "./media/characters/jax/back.svg",
  30901. extra: 764/739,
  30902. bottom: 25/789
  30903. }
  30904. },
  30905. },
  30906. [
  30907. {
  30908. name: "Normal",
  30909. height: math.unit(5 + 10/12, "feet"),
  30910. default: true
  30911. },
  30912. ]
  30913. ))
  30914. characterMakers.push(() => makeCharacter(
  30915. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30916. {
  30917. front: {
  30918. height: math.unit(8, "feet"),
  30919. weight: math.unit(250, "lb"),
  30920. name: "Front",
  30921. image: {
  30922. source: "./media/characters/eikthynir/front.svg",
  30923. extra: 1332/1166,
  30924. bottom: 82/1414
  30925. }
  30926. },
  30927. back: {
  30928. height: math.unit(8, "feet"),
  30929. weight: math.unit(250, "lb"),
  30930. name: "Back",
  30931. image: {
  30932. source: "./media/characters/eikthynir/back.svg",
  30933. extra: 1342/1190,
  30934. bottom: 19/1361
  30935. }
  30936. },
  30937. dick: {
  30938. height: math.unit(2.35, "feet"),
  30939. name: "Dick",
  30940. image: {
  30941. source: "./media/characters/eikthynir/dick.svg"
  30942. }
  30943. },
  30944. },
  30945. [
  30946. {
  30947. name: "Normal",
  30948. height: math.unit(8, "feet"),
  30949. default: true
  30950. },
  30951. ]
  30952. ))
  30953. characterMakers.push(() => makeCharacter(
  30954. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30955. {
  30956. front: {
  30957. height: math.unit(99, "meters"),
  30958. weight: math.unit(13000, "tons"),
  30959. name: "Front",
  30960. image: {
  30961. source: "./media/characters/zlmos/front.svg",
  30962. extra: 2202/1992,
  30963. bottom: 315/2517
  30964. }
  30965. },
  30966. },
  30967. [
  30968. {
  30969. name: "Macro",
  30970. height: math.unit(99, "meters"),
  30971. default: true
  30972. },
  30973. ]
  30974. ))
  30975. characterMakers.push(() => makeCharacter(
  30976. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30977. {
  30978. front: {
  30979. height: math.unit(6 + 5/12, "feet"),
  30980. name: "Front",
  30981. image: {
  30982. source: "./media/characters/purri/front.svg",
  30983. extra: 1698/1610,
  30984. bottom: 32/1730
  30985. }
  30986. },
  30987. frontAlt: {
  30988. height: math.unit(6 + 5/12, "feet"),
  30989. name: "Front (Alt)",
  30990. image: {
  30991. source: "./media/characters/purri/front-alt.svg",
  30992. extra: 450/420,
  30993. bottom: 26/476
  30994. }
  30995. },
  30996. boots: {
  30997. height: math.unit(5.5, "feet"),
  30998. name: "Boots",
  30999. image: {
  31000. source: "./media/characters/purri/boots.svg",
  31001. extra: 905/853,
  31002. bottom: 18/923
  31003. }
  31004. },
  31005. lying: {
  31006. height: math.unit(2, "feet"),
  31007. name: "Lying",
  31008. image: {
  31009. source: "./media/characters/purri/lying.svg",
  31010. extra: 940/843,
  31011. bottom: 146/1086
  31012. }
  31013. },
  31014. devious: {
  31015. height: math.unit(1.77, "feet"),
  31016. name: "Devious",
  31017. image: {
  31018. source: "./media/characters/purri/devious.svg",
  31019. extra: 1440/1155,
  31020. bottom: 147/1587
  31021. }
  31022. },
  31023. bean: {
  31024. height: math.unit(1.94, "feet"),
  31025. name: "Bean",
  31026. image: {
  31027. source: "./media/characters/purri/bean.svg"
  31028. }
  31029. },
  31030. },
  31031. [
  31032. {
  31033. name: "Micro",
  31034. height: math.unit(1, "mm")
  31035. },
  31036. {
  31037. name: "Normal",
  31038. height: math.unit(6 + 5/12, "feet"),
  31039. default: true
  31040. },
  31041. {
  31042. name: "Macro :3c",
  31043. height: math.unit(2, "miles")
  31044. },
  31045. ]
  31046. ))
  31047. characterMakers.push(() => makeCharacter(
  31048. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31049. {
  31050. front: {
  31051. height: math.unit(6 + 2/12, "feet"),
  31052. weight: math.unit(250, "lb"),
  31053. name: "Front",
  31054. image: {
  31055. source: "./media/characters/moonlight/front.svg",
  31056. extra: 1044/908,
  31057. bottom: 56/1100
  31058. }
  31059. },
  31060. feral: {
  31061. height: math.unit(3 + 1/12, "feet"),
  31062. weight: math.unit(50, "kg"),
  31063. name: "Feral",
  31064. image: {
  31065. source: "./media/characters/moonlight/feral.svg",
  31066. extra: 3705/2791,
  31067. bottom: 145/3850
  31068. }
  31069. },
  31070. paw: {
  31071. height: math.unit(1, "feet"),
  31072. name: "Paw",
  31073. image: {
  31074. source: "./media/characters/moonlight/paw.svg"
  31075. }
  31076. },
  31077. paws: {
  31078. height: math.unit(0.98, "feet"),
  31079. name: "Paws",
  31080. image: {
  31081. source: "./media/characters/moonlight/paws.svg",
  31082. extra: 939/939,
  31083. bottom: 50/989
  31084. }
  31085. },
  31086. mouth: {
  31087. height: math.unit(0.48, "feet"),
  31088. name: "Mouth",
  31089. image: {
  31090. source: "./media/characters/moonlight/mouth.svg"
  31091. }
  31092. },
  31093. dick: {
  31094. height: math.unit(1.46, "feet"),
  31095. name: "Dick",
  31096. image: {
  31097. source: "./media/characters/moonlight/dick.svg"
  31098. }
  31099. },
  31100. },
  31101. [
  31102. {
  31103. name: "Normal",
  31104. height: math.unit(6 + 2/12, "feet"),
  31105. default: true
  31106. },
  31107. {
  31108. name: "Macro",
  31109. height: math.unit(300, "feet")
  31110. },
  31111. {
  31112. name: "Macro+",
  31113. height: math.unit(1, "mile")
  31114. },
  31115. {
  31116. name: "Mt. Moon",
  31117. height: math.unit(5, "miles")
  31118. },
  31119. {
  31120. name: "Megamacro",
  31121. height: math.unit(15, "miles")
  31122. },
  31123. ]
  31124. ))
  31125. characterMakers.push(() => makeCharacter(
  31126. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31127. {
  31128. back: {
  31129. height: math.unit(6, "feet"),
  31130. weight: math.unit(150, "lb"),
  31131. name: "Back",
  31132. image: {
  31133. source: "./media/characters/sylen/back.svg",
  31134. extra: 1335/1273,
  31135. bottom: 107/1442
  31136. }
  31137. },
  31138. },
  31139. [
  31140. {
  31141. name: "Normal",
  31142. height: math.unit(5 + 5/12, "feet")
  31143. },
  31144. {
  31145. name: "Megamacro",
  31146. height: math.unit(3, "miles"),
  31147. default: true
  31148. },
  31149. ]
  31150. ))
  31151. characterMakers.push(() => makeCharacter(
  31152. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31153. {
  31154. front: {
  31155. height: math.unit(6, "feet"),
  31156. weight: math.unit(190, "lb"),
  31157. name: "Front",
  31158. image: {
  31159. source: "./media/characters/huttser/front.svg",
  31160. extra: 1152/1058,
  31161. bottom: 23/1175
  31162. }
  31163. },
  31164. side: {
  31165. height: math.unit(6, "feet"),
  31166. weight: math.unit(190, "lb"),
  31167. name: "Side",
  31168. image: {
  31169. source: "./media/characters/huttser/side.svg",
  31170. extra: 1174/1065,
  31171. bottom: 18/1192
  31172. }
  31173. },
  31174. back: {
  31175. height: math.unit(6, "feet"),
  31176. weight: math.unit(190, "lb"),
  31177. name: "Back",
  31178. image: {
  31179. source: "./media/characters/huttser/back.svg",
  31180. extra: 1158/1056,
  31181. bottom: 12/1170
  31182. }
  31183. },
  31184. },
  31185. [
  31186. ]
  31187. ))
  31188. characterMakers.push(() => makeCharacter(
  31189. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31190. {
  31191. side: {
  31192. height: math.unit(12 + 9/12, "feet"),
  31193. weight: math.unit(15000, "lb"),
  31194. name: "Side",
  31195. image: {
  31196. source: "./media/characters/faan/side.svg",
  31197. extra: 2747/2697,
  31198. bottom: 0/2747
  31199. }
  31200. },
  31201. front: {
  31202. height: math.unit(12 + 9/12, "feet"),
  31203. weight: math.unit(15000, "lb"),
  31204. name: "Front",
  31205. image: {
  31206. source: "./media/characters/faan/front.svg",
  31207. extra: 607/571,
  31208. bottom: 24/631
  31209. }
  31210. },
  31211. head: {
  31212. height: math.unit(2.85, "feet"),
  31213. name: "Head",
  31214. image: {
  31215. source: "./media/characters/faan/head.svg"
  31216. }
  31217. },
  31218. headAlt: {
  31219. height: math.unit(3.13, "feet"),
  31220. name: "Head-alt",
  31221. image: {
  31222. source: "./media/characters/faan/head-alt.svg"
  31223. }
  31224. },
  31225. },
  31226. [
  31227. {
  31228. name: "Normal",
  31229. height: math.unit(12 + 9/12, "feet"),
  31230. default: true
  31231. },
  31232. ]
  31233. ))
  31234. characterMakers.push(() => makeCharacter(
  31235. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31236. {
  31237. front: {
  31238. height: math.unit(6, "feet"),
  31239. weight: math.unit(300, "lb"),
  31240. name: "Front",
  31241. image: {
  31242. source: "./media/characters/tanio/front.svg",
  31243. extra: 711/673,
  31244. bottom: 25/736
  31245. }
  31246. },
  31247. },
  31248. [
  31249. {
  31250. name: "Normal",
  31251. height: math.unit(6, "feet"),
  31252. default: true
  31253. },
  31254. ]
  31255. ))
  31256. characterMakers.push(() => makeCharacter(
  31257. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31258. {
  31259. front: {
  31260. height: math.unit(3, "inches"),
  31261. name: "Front",
  31262. image: {
  31263. source: "./media/characters/noboru/front.svg",
  31264. extra: 1039/932,
  31265. bottom: 18/1057
  31266. }
  31267. },
  31268. },
  31269. [
  31270. {
  31271. name: "Micro",
  31272. height: math.unit(3, "inches"),
  31273. default: true
  31274. },
  31275. ]
  31276. ))
  31277. characterMakers.push(() => makeCharacter(
  31278. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31279. {
  31280. front: {
  31281. height: math.unit(1.85, "meters"),
  31282. weight: math.unit(80, "kg"),
  31283. name: "Front",
  31284. image: {
  31285. source: "./media/characters/daniel-barrett/front.svg",
  31286. extra: 355/337,
  31287. bottom: 9/364
  31288. }
  31289. },
  31290. },
  31291. [
  31292. {
  31293. name: "Pico",
  31294. height: math.unit(0.0433, "mm")
  31295. },
  31296. {
  31297. name: "Nano",
  31298. height: math.unit(1.5, "mm")
  31299. },
  31300. {
  31301. name: "Micro",
  31302. height: math.unit(5.3, "cm"),
  31303. default: true
  31304. },
  31305. {
  31306. name: "Normal",
  31307. height: math.unit(1.85, "meters")
  31308. },
  31309. {
  31310. name: "Macro",
  31311. height: math.unit(64.7, "meters")
  31312. },
  31313. {
  31314. name: "Megamacro",
  31315. height: math.unit(2.26, "km")
  31316. },
  31317. {
  31318. name: "Gigamacro",
  31319. height: math.unit(79, "km")
  31320. },
  31321. {
  31322. name: "Teramacro",
  31323. height: math.unit(2765, "km")
  31324. },
  31325. {
  31326. name: "Petamacro",
  31327. height: math.unit(96678, "km")
  31328. },
  31329. ]
  31330. ))
  31331. characterMakers.push(() => makeCharacter(
  31332. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31333. {
  31334. front: {
  31335. height: math.unit(30, "meters"),
  31336. weight: math.unit(400, "tons"),
  31337. name: "Front",
  31338. image: {
  31339. source: "./media/characters/zeel/front.svg",
  31340. extra: 2599/2599,
  31341. bottom: 226/2825
  31342. }
  31343. },
  31344. },
  31345. [
  31346. {
  31347. name: "Macro",
  31348. height: math.unit(30, "meters"),
  31349. default: true
  31350. },
  31351. ]
  31352. ))
  31353. characterMakers.push(() => makeCharacter(
  31354. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31355. {
  31356. front: {
  31357. height: math.unit(6 + 7/12, "feet"),
  31358. weight: math.unit(210, "lb"),
  31359. name: "Front",
  31360. image: {
  31361. source: "./media/characters/tarn/front.svg",
  31362. extra: 3517/3220,
  31363. bottom: 91/3608
  31364. }
  31365. },
  31366. back: {
  31367. height: math.unit(6 + 7/12, "feet"),
  31368. weight: math.unit(210, "lb"),
  31369. name: "Back",
  31370. image: {
  31371. source: "./media/characters/tarn/back.svg",
  31372. extra: 3566/3241,
  31373. bottom: 34/3600
  31374. }
  31375. },
  31376. dick: {
  31377. height: math.unit(1.65, "feet"),
  31378. name: "Dick",
  31379. image: {
  31380. source: "./media/characters/tarn/dick.svg"
  31381. }
  31382. },
  31383. paw: {
  31384. height: math.unit(1.80, "feet"),
  31385. name: "Paw",
  31386. image: {
  31387. source: "./media/characters/tarn/paw.svg"
  31388. }
  31389. },
  31390. tongue: {
  31391. height: math.unit(0.97, "feet"),
  31392. name: "Tongue",
  31393. image: {
  31394. source: "./media/characters/tarn/tongue.svg"
  31395. }
  31396. },
  31397. },
  31398. [
  31399. {
  31400. name: "Micro",
  31401. height: math.unit(4, "inches")
  31402. },
  31403. {
  31404. name: "Normal",
  31405. height: math.unit(6 + 7/12, "feet"),
  31406. default: true
  31407. },
  31408. {
  31409. name: "Macro",
  31410. height: math.unit(300, "feet")
  31411. },
  31412. ]
  31413. ))
  31414. characterMakers.push(() => makeCharacter(
  31415. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31416. {
  31417. front: {
  31418. height: math.unit(5 + 7/12, "feet"),
  31419. weight: math.unit(80, "kg"),
  31420. name: "Front",
  31421. image: {
  31422. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31423. extra: 3023/2865,
  31424. bottom: 33/3056
  31425. }
  31426. },
  31427. back: {
  31428. height: math.unit(5 + 7/12, "feet"),
  31429. weight: math.unit(80, "kg"),
  31430. name: "Back",
  31431. image: {
  31432. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31433. extra: 3020/2886,
  31434. bottom: 30/3050
  31435. }
  31436. },
  31437. dick: {
  31438. height: math.unit(0.98, "feet"),
  31439. name: "Dick",
  31440. image: {
  31441. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31442. }
  31443. },
  31444. anatomy: {
  31445. height: math.unit(2.86, "feet"),
  31446. name: "Anatomy",
  31447. image: {
  31448. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31449. }
  31450. },
  31451. },
  31452. [
  31453. {
  31454. name: "Really Small",
  31455. height: math.unit(2, "inches")
  31456. },
  31457. {
  31458. name: "Micro",
  31459. height: math.unit(5.583, "inches")
  31460. },
  31461. {
  31462. name: "Normal",
  31463. height: math.unit(5 + 7/12, "feet"),
  31464. default: true
  31465. },
  31466. {
  31467. name: "Macro",
  31468. height: math.unit(67, "feet")
  31469. },
  31470. {
  31471. name: "Megamacro",
  31472. height: math.unit(134, "feet")
  31473. },
  31474. ]
  31475. ))
  31476. characterMakers.push(() => makeCharacter(
  31477. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31478. {
  31479. front: {
  31480. height: math.unit(9, "feet"),
  31481. weight: math.unit(120, "lb"),
  31482. name: "Front",
  31483. image: {
  31484. source: "./media/characters/sally/front.svg",
  31485. extra: 1506/1349,
  31486. bottom: 66/1572
  31487. }
  31488. },
  31489. },
  31490. [
  31491. {
  31492. name: "Normal",
  31493. height: math.unit(9, "feet"),
  31494. default: true
  31495. },
  31496. ]
  31497. ))
  31498. characterMakers.push(() => makeCharacter(
  31499. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31500. {
  31501. front: {
  31502. height: math.unit(8, "feet"),
  31503. weight: math.unit(900, "lb"),
  31504. name: "Front",
  31505. image: {
  31506. source: "./media/characters/owen/front.svg",
  31507. extra: 1761/1657,
  31508. bottom: 74/1835
  31509. }
  31510. },
  31511. side: {
  31512. height: math.unit(8, "feet"),
  31513. weight: math.unit(900, "lb"),
  31514. name: "Side",
  31515. image: {
  31516. source: "./media/characters/owen/side.svg",
  31517. extra: 1797/1734,
  31518. bottom: 30/1827
  31519. }
  31520. },
  31521. back: {
  31522. height: math.unit(8, "feet"),
  31523. weight: math.unit(900, "lb"),
  31524. name: "Back",
  31525. image: {
  31526. source: "./media/characters/owen/back.svg",
  31527. extra: 1796/1706,
  31528. bottom: 59/1855
  31529. }
  31530. },
  31531. maw: {
  31532. height: math.unit(1.76, "feet"),
  31533. name: "Maw",
  31534. image: {
  31535. source: "./media/characters/owen/maw.svg"
  31536. }
  31537. },
  31538. },
  31539. [
  31540. {
  31541. name: "Normal",
  31542. height: math.unit(8, "feet"),
  31543. default: true
  31544. },
  31545. ]
  31546. ))
  31547. characterMakers.push(() => makeCharacter(
  31548. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31549. {
  31550. front: {
  31551. height: math.unit(4, "feet"),
  31552. weight: math.unit(400, "lb"),
  31553. name: "Front",
  31554. image: {
  31555. source: "./media/characters/ryth/front.svg",
  31556. extra: 876/691,
  31557. bottom: 25/901
  31558. }
  31559. },
  31560. goia: {
  31561. height: math.unit(12, "feet"),
  31562. weight: math.unit(10800, "lb"),
  31563. name: "Goia",
  31564. image: {
  31565. source: "./media/characters/ryth/goia.svg",
  31566. extra: 3450/3198,
  31567. bottom: 61/3511
  31568. }
  31569. },
  31570. },
  31571. [
  31572. {
  31573. name: "Normal",
  31574. height: math.unit(4, "feet"),
  31575. default: true
  31576. },
  31577. ]
  31578. ))
  31579. characterMakers.push(() => makeCharacter(
  31580. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31581. {
  31582. front: {
  31583. height: math.unit(7, "feet"),
  31584. weight: math.unit(180, "lb"),
  31585. name: "Front",
  31586. image: {
  31587. source: "./media/characters/necrolance/front.svg",
  31588. extra: 1062/947,
  31589. bottom: 41/1103
  31590. }
  31591. },
  31592. back: {
  31593. height: math.unit(7, "feet"),
  31594. weight: math.unit(180, "lb"),
  31595. name: "Back",
  31596. image: {
  31597. source: "./media/characters/necrolance/back.svg",
  31598. extra: 1045/984,
  31599. bottom: 14/1059
  31600. }
  31601. },
  31602. wing: {
  31603. height: math.unit(2.67, "feet"),
  31604. name: "Wing",
  31605. image: {
  31606. source: "./media/characters/necrolance/wing.svg"
  31607. }
  31608. },
  31609. },
  31610. [
  31611. {
  31612. name: "Normal",
  31613. height: math.unit(7, "feet"),
  31614. default: true
  31615. },
  31616. ]
  31617. ))
  31618. characterMakers.push(() => makeCharacter(
  31619. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31620. {
  31621. front: {
  31622. height: math.unit(76, "meters"),
  31623. weight: math.unit(30000, "tons"),
  31624. name: "Front",
  31625. image: {
  31626. source: "./media/characters/tyler/front.svg",
  31627. extra: 1640/1640,
  31628. bottom: 114/1754
  31629. }
  31630. },
  31631. },
  31632. [
  31633. {
  31634. name: "Macro",
  31635. height: math.unit(76, "meters"),
  31636. default: true
  31637. },
  31638. ]
  31639. ))
  31640. characterMakers.push(() => makeCharacter(
  31641. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31642. {
  31643. front: {
  31644. height: math.unit(4 + 11/12, "feet"),
  31645. weight: math.unit(132, "lb"),
  31646. name: "Front",
  31647. image: {
  31648. source: "./media/characters/icey/front.svg",
  31649. extra: 2750/2550,
  31650. bottom: 33/2783
  31651. }
  31652. },
  31653. back: {
  31654. height: math.unit(4 + 11/12, "feet"),
  31655. weight: math.unit(132, "lb"),
  31656. name: "Back",
  31657. image: {
  31658. source: "./media/characters/icey/back.svg",
  31659. extra: 2624/2481,
  31660. bottom: 35/2659
  31661. }
  31662. },
  31663. },
  31664. [
  31665. {
  31666. name: "Normal",
  31667. height: math.unit(4 + 11/12, "feet"),
  31668. default: true
  31669. },
  31670. ]
  31671. ))
  31672. characterMakers.push(() => makeCharacter(
  31673. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31674. {
  31675. front: {
  31676. height: math.unit(100, "feet"),
  31677. weight: math.unit(0, "lb"),
  31678. name: "Front",
  31679. image: {
  31680. source: "./media/characters/smile/front.svg",
  31681. extra: 2983/2912,
  31682. bottom: 162/3145
  31683. }
  31684. },
  31685. back: {
  31686. height: math.unit(100, "feet"),
  31687. weight: math.unit(0, "lb"),
  31688. name: "Back",
  31689. image: {
  31690. source: "./media/characters/smile/back.svg",
  31691. extra: 3143/3031,
  31692. bottom: 91/3234
  31693. }
  31694. },
  31695. head: {
  31696. height: math.unit(26.3, "feet"),
  31697. weight: math.unit(0, "lb"),
  31698. name: "Head",
  31699. image: {
  31700. source: "./media/characters/smile/head.svg"
  31701. }
  31702. },
  31703. collar: {
  31704. height: math.unit(5.3, "feet"),
  31705. weight: math.unit(0, "lb"),
  31706. name: "Collar",
  31707. image: {
  31708. source: "./media/characters/smile/collar.svg"
  31709. }
  31710. },
  31711. },
  31712. [
  31713. {
  31714. name: "Macro",
  31715. height: math.unit(100, "feet"),
  31716. default: true
  31717. },
  31718. ]
  31719. ))
  31720. characterMakers.push(() => makeCharacter(
  31721. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31722. {
  31723. dragon: {
  31724. height: math.unit(26, "feet"),
  31725. weight: math.unit(36, "tons"),
  31726. name: "Dragon",
  31727. image: {
  31728. source: "./media/characters/arimphae/dragon.svg",
  31729. extra: 1574/983,
  31730. bottom: 357/1931
  31731. }
  31732. },
  31733. drake: {
  31734. height: math.unit(9, "feet"),
  31735. weight: math.unit(1.5, "tons"),
  31736. name: "Drake",
  31737. image: {
  31738. source: "./media/characters/arimphae/drake.svg",
  31739. extra: 1120/925,
  31740. bottom: 435/1555
  31741. }
  31742. },
  31743. },
  31744. [
  31745. {
  31746. name: "Small",
  31747. height: math.unit(26*5/9, "feet")
  31748. },
  31749. {
  31750. name: "Normal",
  31751. height: math.unit(26, "feet"),
  31752. default: true
  31753. },
  31754. ]
  31755. ))
  31756. characterMakers.push(() => makeCharacter(
  31757. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31758. {
  31759. front: {
  31760. height: math.unit(8 + 9/12, "feet"),
  31761. name: "Front",
  31762. image: {
  31763. source: "./media/characters/xander/front.svg",
  31764. extra: 848/673,
  31765. bottom: 62/910
  31766. }
  31767. },
  31768. },
  31769. [
  31770. {
  31771. name: "Normal",
  31772. height: math.unit(8 + 9/12, "feet"),
  31773. default: true
  31774. },
  31775. {
  31776. name: "Gaze Grabber",
  31777. height: math.unit(13 + 8/12, "feet")
  31778. },
  31779. {
  31780. name: "Jaw Dropper",
  31781. height: math.unit(27, "feet")
  31782. },
  31783. {
  31784. name: "Show Stopper",
  31785. height: math.unit(136, "feet")
  31786. },
  31787. {
  31788. name: "Superstar",
  31789. height: math.unit(1.9e6, "miles")
  31790. },
  31791. ]
  31792. ))
  31793. characterMakers.push(() => makeCharacter(
  31794. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31795. {
  31796. side: {
  31797. height: math.unit(2100, "feet"),
  31798. name: "Side",
  31799. image: {
  31800. source: "./media/characters/osiris/side.svg",
  31801. extra: 1105/939,
  31802. bottom: 167/1272
  31803. }
  31804. },
  31805. },
  31806. [
  31807. {
  31808. name: "Macro",
  31809. height: math.unit(2100, "feet"),
  31810. default: true
  31811. },
  31812. ]
  31813. ))
  31814. characterMakers.push(() => makeCharacter(
  31815. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31816. {
  31817. front: {
  31818. height: math.unit(6 + 8/12, "feet"),
  31819. weight: math.unit(225, "lb"),
  31820. name: "Front",
  31821. image: {
  31822. source: "./media/characters/rhys-londe/front.svg",
  31823. extra: 2258/2141,
  31824. bottom: 188/2446
  31825. }
  31826. },
  31827. back: {
  31828. height: math.unit(6 + 8/12, "feet"),
  31829. weight: math.unit(225, "lb"),
  31830. name: "Back",
  31831. image: {
  31832. source: "./media/characters/rhys-londe/back.svg",
  31833. extra: 2237/2137,
  31834. bottom: 63/2300
  31835. }
  31836. },
  31837. frontNsfw: {
  31838. height: math.unit(6 + 8/12, "feet"),
  31839. weight: math.unit(225, "lb"),
  31840. name: "Front (NSFW)",
  31841. image: {
  31842. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31843. extra: 2258/2141,
  31844. bottom: 188/2446
  31845. }
  31846. },
  31847. backNsfw: {
  31848. height: math.unit(6 + 8/12, "feet"),
  31849. weight: math.unit(225, "lb"),
  31850. name: "Back (NSFW)",
  31851. image: {
  31852. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31853. extra: 2237/2137,
  31854. bottom: 63/2300
  31855. }
  31856. },
  31857. dick: {
  31858. height: math.unit(30, "inches"),
  31859. name: "Dick",
  31860. image: {
  31861. source: "./media/characters/rhys-londe/dick.svg"
  31862. }
  31863. },
  31864. maw: {
  31865. height: math.unit(1.6, "feet"),
  31866. name: "Maw",
  31867. image: {
  31868. source: "./media/characters/rhys-londe/maw.svg"
  31869. }
  31870. },
  31871. },
  31872. [
  31873. {
  31874. name: "Normal",
  31875. height: math.unit(6 + 8/12, "feet"),
  31876. default: true
  31877. },
  31878. ]
  31879. ))
  31880. characterMakers.push(() => makeCharacter(
  31881. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31882. {
  31883. front: {
  31884. height: math.unit(3 + 10/12, "feet"),
  31885. weight: math.unit(90, "lb"),
  31886. name: "Front",
  31887. image: {
  31888. source: "./media/characters/taivas-ensim/front.svg",
  31889. extra: 1327/1216,
  31890. bottom: 96/1423
  31891. }
  31892. },
  31893. back: {
  31894. height: math.unit(3 + 10/12, "feet"),
  31895. weight: math.unit(90, "lb"),
  31896. name: "Back",
  31897. image: {
  31898. source: "./media/characters/taivas-ensim/back.svg",
  31899. extra: 1355/1247,
  31900. bottom: 11/1366
  31901. }
  31902. },
  31903. frontNsfw: {
  31904. height: math.unit(3 + 10/12, "feet"),
  31905. weight: math.unit(90, "lb"),
  31906. name: "Front (NSFW)",
  31907. image: {
  31908. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31909. extra: 1327/1216,
  31910. bottom: 96/1423
  31911. }
  31912. },
  31913. backNsfw: {
  31914. height: math.unit(3 + 10/12, "feet"),
  31915. weight: math.unit(90, "lb"),
  31916. name: "Back (NSFW)",
  31917. image: {
  31918. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31919. extra: 1355/1247,
  31920. bottom: 11/1366
  31921. }
  31922. },
  31923. },
  31924. [
  31925. {
  31926. name: "Normal",
  31927. height: math.unit(3 + 10/12, "feet"),
  31928. default: true
  31929. },
  31930. ]
  31931. ))
  31932. characterMakers.push(() => makeCharacter(
  31933. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31934. {
  31935. front: {
  31936. height: math.unit(9 + 6/12, "feet"),
  31937. weight: math.unit(940, "lb"),
  31938. name: "Front",
  31939. image: {
  31940. source: "./media/characters/byliss/front.svg",
  31941. extra: 1327/1290,
  31942. bottom: 82/1409
  31943. }
  31944. },
  31945. back: {
  31946. height: math.unit(9 + 6/12, "feet"),
  31947. weight: math.unit(940, "lb"),
  31948. name: "Back",
  31949. image: {
  31950. source: "./media/characters/byliss/back.svg",
  31951. extra: 1376/1349,
  31952. bottom: 9/1385
  31953. }
  31954. },
  31955. frontNsfw: {
  31956. height: math.unit(9 + 6/12, "feet"),
  31957. weight: math.unit(940, "lb"),
  31958. name: "Front (NSFW)",
  31959. image: {
  31960. source: "./media/characters/byliss/front-nsfw.svg",
  31961. extra: 1327/1290,
  31962. bottom: 82/1409
  31963. }
  31964. },
  31965. backNsfw: {
  31966. height: math.unit(9 + 6/12, "feet"),
  31967. weight: math.unit(940, "lb"),
  31968. name: "Back (NSFW)",
  31969. image: {
  31970. source: "./media/characters/byliss/back-nsfw.svg",
  31971. extra: 1376/1349,
  31972. bottom: 9/1385
  31973. }
  31974. },
  31975. },
  31976. [
  31977. {
  31978. name: "Normal",
  31979. height: math.unit(9 + 6/12, "feet"),
  31980. default: true
  31981. },
  31982. ]
  31983. ))
  31984. characterMakers.push(() => makeCharacter(
  31985. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31986. {
  31987. front: {
  31988. height: math.unit(5 + 2/12, "feet"),
  31989. weight: math.unit(200, "lb"),
  31990. name: "Front",
  31991. image: {
  31992. source: "./media/characters/noraly/front.svg",
  31993. extra: 4985/4773,
  31994. bottom: 150/5135
  31995. }
  31996. },
  31997. full: {
  31998. height: math.unit(5 + 2/12, "feet"),
  31999. weight: math.unit(164, "lb"),
  32000. name: "Full",
  32001. image: {
  32002. source: "./media/characters/noraly/full.svg",
  32003. extra: 1114/1059,
  32004. bottom: 35/1149
  32005. }
  32006. },
  32007. fuller: {
  32008. height: math.unit(5 + 2/12, "feet"),
  32009. weight: math.unit(230, "lb"),
  32010. name: "Fuller",
  32011. image: {
  32012. source: "./media/characters/noraly/fuller.svg",
  32013. extra: 1114/1059,
  32014. bottom: 35/1149
  32015. }
  32016. },
  32017. fullest: {
  32018. height: math.unit(5 + 2/12, "feet"),
  32019. weight: math.unit(300, "lb"),
  32020. name: "Fullest",
  32021. image: {
  32022. source: "./media/characters/noraly/fullest.svg",
  32023. extra: 1114/1059,
  32024. bottom: 35/1149
  32025. }
  32026. },
  32027. },
  32028. [
  32029. {
  32030. name: "Normal",
  32031. height: math.unit(5 + 2/12, "feet"),
  32032. default: true
  32033. },
  32034. ]
  32035. ))
  32036. characterMakers.push(() => makeCharacter(
  32037. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32038. {
  32039. front: {
  32040. height: math.unit(5 + 2/12, "feet"),
  32041. weight: math.unit(210, "lb"),
  32042. name: "Front",
  32043. image: {
  32044. source: "./media/characters/pera/front.svg",
  32045. extra: 1560/1531,
  32046. bottom: 165/1725
  32047. }
  32048. },
  32049. back: {
  32050. height: math.unit(5 + 2/12, "feet"),
  32051. weight: math.unit(210, "lb"),
  32052. name: "Back",
  32053. image: {
  32054. source: "./media/characters/pera/back.svg",
  32055. extra: 1523/1493,
  32056. bottom: 152/1675
  32057. }
  32058. },
  32059. dick: {
  32060. height: math.unit(2.4, "feet"),
  32061. name: "Dick",
  32062. image: {
  32063. source: "./media/characters/pera/dick.svg"
  32064. }
  32065. },
  32066. },
  32067. [
  32068. {
  32069. name: "Normal",
  32070. height: math.unit(5 + 2/12, "feet"),
  32071. default: true
  32072. },
  32073. ]
  32074. ))
  32075. characterMakers.push(() => makeCharacter(
  32076. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32077. {
  32078. front: {
  32079. height: math.unit(12, "feet"),
  32080. weight: math.unit(3200, "lb"),
  32081. name: "Front",
  32082. image: {
  32083. source: "./media/characters/julian/front.svg",
  32084. extra: 2962/2701,
  32085. bottom: 184/3146
  32086. }
  32087. },
  32088. maw: {
  32089. height: math.unit(5.35, "feet"),
  32090. name: "Maw",
  32091. image: {
  32092. source: "./media/characters/julian/maw.svg"
  32093. }
  32094. },
  32095. paw: {
  32096. height: math.unit(3.07, "feet"),
  32097. name: "Paw",
  32098. image: {
  32099. source: "./media/characters/julian/paw.svg"
  32100. }
  32101. },
  32102. },
  32103. [
  32104. {
  32105. name: "Default",
  32106. height: math.unit(12, "feet"),
  32107. default: true
  32108. },
  32109. {
  32110. name: "Big",
  32111. height: math.unit(50, "feet")
  32112. },
  32113. {
  32114. name: "Really Big",
  32115. height: math.unit(1, "mile")
  32116. },
  32117. {
  32118. name: "Extremely Big",
  32119. height: math.unit(100, "miles")
  32120. },
  32121. {
  32122. name: "Planet Hugger",
  32123. height: math.unit(200, "megameters")
  32124. },
  32125. {
  32126. name: "Unreasonably Big",
  32127. height: math.unit(1e300, "meters")
  32128. },
  32129. ]
  32130. ))
  32131. characterMakers.push(() => makeCharacter(
  32132. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32133. {
  32134. solgooleo: {
  32135. height: math.unit(4, "meters"),
  32136. weight: math.unit(6000*1.5, "kg"),
  32137. volume: math.unit(6000, "liters"),
  32138. name: "Solgooleo",
  32139. image: {
  32140. source: "./media/characters/pi/solgooleo.svg",
  32141. extra: 388/331,
  32142. bottom: 29/417
  32143. }
  32144. },
  32145. },
  32146. [
  32147. {
  32148. name: "Normal",
  32149. height: math.unit(4, "meters"),
  32150. default: true
  32151. },
  32152. ]
  32153. ))
  32154. characterMakers.push(() => makeCharacter(
  32155. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32156. {
  32157. front: {
  32158. height: math.unit(8 + 2/12, "feet"),
  32159. weight: math.unit(4, "tons"),
  32160. name: "Front",
  32161. image: {
  32162. source: "./media/characters/shaun/front.svg",
  32163. extra: 1550/1505,
  32164. bottom: 353/1903
  32165. }
  32166. },
  32167. },
  32168. [
  32169. {
  32170. name: "Lorg",
  32171. height: math.unit(8 + 2/12, "feet"),
  32172. default: true
  32173. },
  32174. ]
  32175. ))
  32176. characterMakers.push(() => makeCharacter(
  32177. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32178. {
  32179. front: {
  32180. height: math.unit(7, "feet"),
  32181. name: "Front",
  32182. image: {
  32183. source: "./media/characters/sini/front.svg",
  32184. extra: 726/678,
  32185. bottom: 35/761
  32186. }
  32187. },
  32188. back: {
  32189. height: math.unit(7, "feet"),
  32190. name: "Back",
  32191. image: {
  32192. source: "./media/characters/sini/back.svg",
  32193. extra: 743/701,
  32194. bottom: 12/755
  32195. }
  32196. },
  32197. mawAnthro: {
  32198. height: math.unit(2.14, "feet"),
  32199. name: "Maw (Anthro)",
  32200. image: {
  32201. source: "./media/characters/sini/maw-anthro.svg"
  32202. }
  32203. },
  32204. dick: {
  32205. height: math.unit(1.45, "feet"),
  32206. name: "Dick (Anthro)",
  32207. image: {
  32208. source: "./media/characters/sini/dick-anthro.svg"
  32209. }
  32210. },
  32211. feral: {
  32212. height: math.unit(13, "feet"),
  32213. name: "Feral",
  32214. image: {
  32215. source: "./media/characters/sini/feral.svg",
  32216. extra: 814/605,
  32217. bottom: 11/825
  32218. }
  32219. },
  32220. mawFeral: {
  32221. height: math.unit(4.6, "feet"),
  32222. name: "Maw-feral",
  32223. image: {
  32224. source: "./media/characters/sini/maw-feral.svg"
  32225. }
  32226. },
  32227. footFeral: {
  32228. height: math.unit(4.2, "feet"),
  32229. name: "Foot-feral",
  32230. image: {
  32231. source: "./media/characters/sini/foot-feral.svg"
  32232. }
  32233. },
  32234. },
  32235. [
  32236. {
  32237. name: "Normal",
  32238. height: math.unit(7, "feet"),
  32239. default: true
  32240. },
  32241. ]
  32242. ))
  32243. characterMakers.push(() => makeCharacter(
  32244. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32245. {
  32246. side: {
  32247. height: math.unit(13, "meters"),
  32248. weight: math.unit(9072, "kg"),
  32249. name: "Side",
  32250. image: {
  32251. source: "./media/characters/raylldo/side.svg",
  32252. extra: 403/344,
  32253. bottom: 42/445
  32254. }
  32255. },
  32256. leaping: {
  32257. height: math.unit(12.3, "meters"),
  32258. weight: math.unit(9072, "kg"),
  32259. name: "Leaping",
  32260. image: {
  32261. source: "./media/characters/raylldo/leaping.svg",
  32262. extra: 470/249,
  32263. bottom: 13/483
  32264. }
  32265. },
  32266. flying: {
  32267. height: math.unit(18, "meters"),
  32268. weight: math.unit(9072, "kg"),
  32269. name: "Flying",
  32270. image: {
  32271. source: "./media/characters/raylldo/flying.svg"
  32272. }
  32273. },
  32274. head: {
  32275. height: math.unit(5.85, "meters"),
  32276. name: "Head",
  32277. image: {
  32278. source: "./media/characters/raylldo/head.svg"
  32279. }
  32280. },
  32281. maw: {
  32282. height: math.unit(5.32, "meters"),
  32283. name: "Maw",
  32284. image: {
  32285. source: "./media/characters/raylldo/maw.svg"
  32286. }
  32287. },
  32288. eye: {
  32289. height: math.unit(0.54, "meters"),
  32290. name: "Eye",
  32291. image: {
  32292. source: "./media/characters/raylldo/eye.svg"
  32293. }
  32294. },
  32295. },
  32296. [
  32297. {
  32298. name: "Normal",
  32299. height: math.unit(13, "meters"),
  32300. default: true
  32301. },
  32302. ]
  32303. ))
  32304. characterMakers.push(() => makeCharacter(
  32305. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32306. {
  32307. anthroFront: {
  32308. height: math.unit(9, "feet"),
  32309. weight: math.unit(600, "lb"),
  32310. name: "Anthro (Front)",
  32311. image: {
  32312. source: "./media/characters/glint/anthro-front.svg",
  32313. extra: 1097/1018,
  32314. bottom: 28/1125
  32315. }
  32316. },
  32317. anthroBack: {
  32318. height: math.unit(9, "feet"),
  32319. weight: math.unit(600, "lb"),
  32320. name: "Anthro (Back)",
  32321. image: {
  32322. source: "./media/characters/glint/anthro-back.svg",
  32323. extra: 1154/997,
  32324. bottom: 36/1190
  32325. }
  32326. },
  32327. feral: {
  32328. height: math.unit(11, "feet"),
  32329. weight: math.unit(50000, "lb"),
  32330. name: "Feral",
  32331. image: {
  32332. source: "./media/characters/glint/feral.svg",
  32333. extra: 3035/1585,
  32334. bottom: 1169/4204
  32335. }
  32336. },
  32337. dickAnthro: {
  32338. height: math.unit(0.7, "meters"),
  32339. name: "Dick (Anthro)",
  32340. image: {
  32341. source: "./media/characters/glint/dick-anthro.svg"
  32342. }
  32343. },
  32344. dickFeral: {
  32345. height: math.unit(2.65, "meters"),
  32346. name: "Dick (Feral)",
  32347. image: {
  32348. source: "./media/characters/glint/dick-feral.svg"
  32349. }
  32350. },
  32351. slitHidden: {
  32352. height: math.unit(5.85, "meters"),
  32353. name: "Slit (Hidden)",
  32354. image: {
  32355. source: "./media/characters/glint/slit-hidden.svg"
  32356. }
  32357. },
  32358. slitErect: {
  32359. height: math.unit(5.85, "meters"),
  32360. name: "Slit (Erect)",
  32361. image: {
  32362. source: "./media/characters/glint/slit-erect.svg"
  32363. }
  32364. },
  32365. mawAnthro: {
  32366. height: math.unit(0.63, "meters"),
  32367. name: "Maw (Anthro)",
  32368. image: {
  32369. source: "./media/characters/glint/maw.svg"
  32370. }
  32371. },
  32372. mawFeral: {
  32373. height: math.unit(2.89, "meters"),
  32374. name: "Maw (Feral)",
  32375. image: {
  32376. source: "./media/characters/glint/maw.svg"
  32377. }
  32378. },
  32379. },
  32380. [
  32381. {
  32382. name: "Normal",
  32383. height: math.unit(9, "feet"),
  32384. default: true
  32385. },
  32386. ]
  32387. ))
  32388. characterMakers.push(() => makeCharacter(
  32389. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32390. {
  32391. side: {
  32392. height: math.unit(15, "feet"),
  32393. weight: math.unit(5000, "kg"),
  32394. name: "Side",
  32395. image: {
  32396. source: "./media/characters/kairne/side.svg",
  32397. extra: 979/811,
  32398. bottom: 13/992
  32399. }
  32400. },
  32401. front: {
  32402. height: math.unit(15, "feet"),
  32403. weight: math.unit(5000, "kg"),
  32404. name: "Front",
  32405. image: {
  32406. source: "./media/characters/kairne/front.svg",
  32407. extra: 908/814,
  32408. bottom: 26/934
  32409. }
  32410. },
  32411. sideNsfw: {
  32412. height: math.unit(15, "feet"),
  32413. weight: math.unit(5000, "kg"),
  32414. name: "Side (NSFW)",
  32415. image: {
  32416. source: "./media/characters/kairne/side-nsfw.svg",
  32417. extra: 979/811,
  32418. bottom: 13/992
  32419. }
  32420. },
  32421. frontNsfw: {
  32422. height: math.unit(15, "feet"),
  32423. weight: math.unit(5000, "kg"),
  32424. name: "Front (NSFW)",
  32425. image: {
  32426. source: "./media/characters/kairne/front-nsfw.svg",
  32427. extra: 908/814,
  32428. bottom: 26/934
  32429. }
  32430. },
  32431. dickCaged: {
  32432. height: math.unit(0.65, "meters"),
  32433. name: "Dick-caged",
  32434. image: {
  32435. source: "./media/characters/kairne/dick-caged.svg"
  32436. }
  32437. },
  32438. dick: {
  32439. height: math.unit(0.79, "meters"),
  32440. name: "Dick",
  32441. image: {
  32442. source: "./media/characters/kairne/dick.svg"
  32443. }
  32444. },
  32445. genitals: {
  32446. height: math.unit(1.29, "meters"),
  32447. name: "Genitals",
  32448. image: {
  32449. source: "./media/characters/kairne/genitals.svg"
  32450. }
  32451. },
  32452. maw: {
  32453. height: math.unit(1.73, "meters"),
  32454. name: "Maw",
  32455. image: {
  32456. source: "./media/characters/kairne/maw.svg"
  32457. }
  32458. },
  32459. },
  32460. [
  32461. {
  32462. name: "Normal",
  32463. height: math.unit(15, "feet"),
  32464. default: true
  32465. },
  32466. ]
  32467. ))
  32468. characterMakers.push(() => makeCharacter(
  32469. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32470. {
  32471. front: {
  32472. height: math.unit(5 + 8/12, "feet"),
  32473. weight: math.unit(139, "lb"),
  32474. name: "Front",
  32475. image: {
  32476. source: "./media/characters/biscuit-jackal/front.svg",
  32477. extra: 2106/1961,
  32478. bottom: 58/2164
  32479. }
  32480. },
  32481. back: {
  32482. height: math.unit(5 + 8/12, "feet"),
  32483. weight: math.unit(139, "lb"),
  32484. name: "Back",
  32485. image: {
  32486. source: "./media/characters/biscuit-jackal/back.svg",
  32487. extra: 2132/1976,
  32488. bottom: 57/2189
  32489. }
  32490. },
  32491. werejackal: {
  32492. height: math.unit(6 + 3/12, "feet"),
  32493. weight: math.unit(188, "lb"),
  32494. name: "Werejackal",
  32495. image: {
  32496. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32497. extra: 2373/2178,
  32498. bottom: 53/2426
  32499. }
  32500. },
  32501. },
  32502. [
  32503. {
  32504. name: "Normal",
  32505. height: math.unit(5 + 8/12, "feet"),
  32506. default: true
  32507. },
  32508. ]
  32509. ))
  32510. characterMakers.push(() => makeCharacter(
  32511. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32512. {
  32513. front: {
  32514. height: math.unit(140, "cm"),
  32515. weight: math.unit(45, "kg"),
  32516. name: "Front",
  32517. image: {
  32518. source: "./media/characters/tayra-white/front.svg",
  32519. extra: 2229/2192,
  32520. bottom: 75/2304
  32521. }
  32522. },
  32523. },
  32524. [
  32525. {
  32526. name: "Normal",
  32527. height: math.unit(140, "cm"),
  32528. default: true
  32529. },
  32530. ]
  32531. ))
  32532. characterMakers.push(() => makeCharacter(
  32533. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32534. {
  32535. front: {
  32536. height: math.unit(4 + 5/12, "feet"),
  32537. name: "Front",
  32538. image: {
  32539. source: "./media/characters/scoop/front.svg",
  32540. extra: 1257/1136,
  32541. bottom: 69/1326
  32542. }
  32543. },
  32544. back: {
  32545. height: math.unit(4 + 5/12, "feet"),
  32546. name: "Back",
  32547. image: {
  32548. source: "./media/characters/scoop/back.svg",
  32549. extra: 1321/1152,
  32550. bottom: 32/1353
  32551. }
  32552. },
  32553. maw: {
  32554. height: math.unit(0.68, "feet"),
  32555. name: "Maw",
  32556. image: {
  32557. source: "./media/characters/scoop/maw.svg"
  32558. }
  32559. },
  32560. },
  32561. [
  32562. {
  32563. name: "Really Small",
  32564. height: math.unit(1, "mm")
  32565. },
  32566. {
  32567. name: "Micro",
  32568. height: math.unit(1, "inch")
  32569. },
  32570. {
  32571. name: "Normal",
  32572. height: math.unit(4 + 5/12, "feet"),
  32573. default: true
  32574. },
  32575. {
  32576. name: "Macro",
  32577. height: math.unit(200, "feet")
  32578. },
  32579. {
  32580. name: "Megamacro",
  32581. height: math.unit(3240, "feet")
  32582. },
  32583. {
  32584. name: "Teramacro",
  32585. height: math.unit(2500, "miles")
  32586. },
  32587. ]
  32588. ))
  32589. characterMakers.push(() => makeCharacter(
  32590. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32591. {
  32592. front: {
  32593. height: math.unit(15 + 7/12, "feet"),
  32594. name: "Front",
  32595. image: {
  32596. source: "./media/characters/saphinara/front.svg",
  32597. extra: 604/546,
  32598. bottom: 19/623
  32599. }
  32600. },
  32601. side: {
  32602. height: math.unit(15 + 7/12, "feet"),
  32603. name: "Side",
  32604. image: {
  32605. source: "./media/characters/saphinara/side.svg",
  32606. extra: 605/547,
  32607. bottom: 6/611
  32608. }
  32609. },
  32610. back: {
  32611. height: math.unit(15 + 7/12, "feet"),
  32612. name: "Back",
  32613. image: {
  32614. source: "./media/characters/saphinara/back.svg",
  32615. extra: 591/531,
  32616. bottom: 13/604
  32617. }
  32618. },
  32619. frontTail: {
  32620. height: math.unit(15 + 7/12, "feet"),
  32621. name: "Front (Full Tail)",
  32622. image: {
  32623. source: "./media/characters/saphinara/front-tail.svg",
  32624. extra: 748/547,
  32625. bottom: 66/814
  32626. }
  32627. },
  32628. },
  32629. [
  32630. {
  32631. name: "Normal",
  32632. height: math.unit(15 + 7/12, "feet"),
  32633. default: true
  32634. },
  32635. {
  32636. name: "Angry",
  32637. height: math.unit(30 + 6/12, "feet")
  32638. },
  32639. {
  32640. name: "Enraged",
  32641. height: math.unit(102 + 1/12, "feet")
  32642. },
  32643. ]
  32644. ))
  32645. characterMakers.push(() => makeCharacter(
  32646. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32647. {
  32648. front: {
  32649. height: math.unit(6 + 8/12, "feet"),
  32650. weight: math.unit(300, "lb"),
  32651. name: "Front",
  32652. image: {
  32653. source: "./media/characters/jrain/front.svg",
  32654. extra: 3039/2865,
  32655. bottom: 399/3438
  32656. }
  32657. },
  32658. back: {
  32659. height: math.unit(6 + 8/12, "feet"),
  32660. weight: math.unit(300, "lb"),
  32661. name: "Back",
  32662. image: {
  32663. source: "./media/characters/jrain/back.svg",
  32664. extra: 3089/2938,
  32665. bottom: 172/3261
  32666. }
  32667. },
  32668. head: {
  32669. height: math.unit(2.14, "feet"),
  32670. name: "Head",
  32671. image: {
  32672. source: "./media/characters/jrain/head.svg"
  32673. }
  32674. },
  32675. maw: {
  32676. height: math.unit(1.77, "feet"),
  32677. name: "Maw",
  32678. image: {
  32679. source: "./media/characters/jrain/maw.svg"
  32680. }
  32681. },
  32682. leftHand: {
  32683. height: math.unit(1.1, "feet"),
  32684. name: "Left Hand",
  32685. image: {
  32686. source: "./media/characters/jrain/left-hand.svg"
  32687. }
  32688. },
  32689. rightHand: {
  32690. height: math.unit(1.1, "feet"),
  32691. name: "Right Hand",
  32692. image: {
  32693. source: "./media/characters/jrain/right-hand.svg"
  32694. }
  32695. },
  32696. eye: {
  32697. height: math.unit(0.35, "feet"),
  32698. name: "Eye",
  32699. image: {
  32700. source: "./media/characters/jrain/eye.svg"
  32701. }
  32702. },
  32703. },
  32704. [
  32705. {
  32706. name: "Normal",
  32707. height: math.unit(6 + 8/12, "feet"),
  32708. default: true
  32709. },
  32710. {
  32711. name: "Casually Large",
  32712. height: math.unit(25, "feet")
  32713. },
  32714. {
  32715. name: "Giant",
  32716. height: math.unit(100, "feet")
  32717. },
  32718. {
  32719. name: "Kaiju",
  32720. height: math.unit(300, "feet")
  32721. },
  32722. ]
  32723. ))
  32724. characterMakers.push(() => makeCharacter(
  32725. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32726. {
  32727. dragon: {
  32728. height: math.unit(5, "meters"),
  32729. name: "Dragon",
  32730. image: {
  32731. source: "./media/characters/sabrina/dragon.svg",
  32732. extra: 3670 / 2365,
  32733. bottom: 333 / 4003
  32734. }
  32735. },
  32736. gryphon: {
  32737. height: math.unit(3, "meters"),
  32738. name: "Gryphon",
  32739. image: {
  32740. source: "./media/characters/sabrina/gryphon.svg",
  32741. extra: 1576 / 945,
  32742. bottom: 71 / 1647
  32743. }
  32744. },
  32745. snake: {
  32746. height: math.unit(12, "meters"),
  32747. name: "Snake",
  32748. image: {
  32749. source: "./media/characters/sabrina/snake.svg",
  32750. extra: 1758 / 1320,
  32751. bottom: 186 / 1944
  32752. }
  32753. },
  32754. collar: {
  32755. height: math.unit(1.86, "meters"),
  32756. name: "Collar",
  32757. image: {
  32758. source: "./media/characters/sabrina/collar.svg"
  32759. }
  32760. },
  32761. eye: {
  32762. height: math.unit(0.53, "meters"),
  32763. name: "Eye",
  32764. image: {
  32765. source: "./media/characters/sabrina/eye.svg"
  32766. }
  32767. },
  32768. foot: {
  32769. height: math.unit(1.86, "meters"),
  32770. name: "Foot",
  32771. image: {
  32772. source: "./media/characters/sabrina/foot.svg"
  32773. }
  32774. },
  32775. hand: {
  32776. height: math.unit(1.32, "meters"),
  32777. name: "Hand",
  32778. image: {
  32779. source: "./media/characters/sabrina/hand.svg"
  32780. }
  32781. },
  32782. head: {
  32783. height: math.unit(2.44, "meters"),
  32784. name: "Head",
  32785. image: {
  32786. source: "./media/characters/sabrina/head.svg"
  32787. }
  32788. },
  32789. headAngry: {
  32790. height: math.unit(2.44, "meters"),
  32791. name: "Head (Angry))",
  32792. image: {
  32793. source: "./media/characters/sabrina/head-angry.svg"
  32794. }
  32795. },
  32796. maw: {
  32797. height: math.unit(1.65, "meters"),
  32798. name: "Maw",
  32799. image: {
  32800. source: "./media/characters/sabrina/maw.svg"
  32801. }
  32802. },
  32803. spikes: {
  32804. height: math.unit(1.69, "meters"),
  32805. name: "Spikes",
  32806. image: {
  32807. source: "./media/characters/sabrina/spikes.svg"
  32808. }
  32809. },
  32810. stomach: {
  32811. height: math.unit(1.15, "meters"),
  32812. name: "Stomach",
  32813. image: {
  32814. source: "./media/characters/sabrina/stomach.svg"
  32815. }
  32816. },
  32817. tongue: {
  32818. height: math.unit(1.27, "meters"),
  32819. name: "Tongue",
  32820. image: {
  32821. source: "./media/characters/sabrina/tongue.svg"
  32822. }
  32823. },
  32824. wingDorsal: {
  32825. height: math.unit(4.85, "meters"),
  32826. name: "Wing (Dorsal)",
  32827. image: {
  32828. source: "./media/characters/sabrina/wing-dorsal.svg"
  32829. }
  32830. },
  32831. wingVentral: {
  32832. height: math.unit(4.85, "meters"),
  32833. name: "Wing (Ventral)",
  32834. image: {
  32835. source: "./media/characters/sabrina/wing-ventral.svg"
  32836. }
  32837. },
  32838. },
  32839. [
  32840. {
  32841. name: "Normal",
  32842. height: math.unit(5, "meters"),
  32843. default: true
  32844. },
  32845. ]
  32846. ))
  32847. characterMakers.push(() => makeCharacter(
  32848. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32849. {
  32850. frontMaid: {
  32851. height: math.unit(5 + 5/12, "feet"),
  32852. weight: math.unit(130, "lb"),
  32853. name: "Front (Maid)",
  32854. image: {
  32855. source: "./media/characters/midnight-tales/front-maid.svg",
  32856. extra: 489/454,
  32857. bottom: 61/550
  32858. }
  32859. },
  32860. frontFormal: {
  32861. height: math.unit(5 + 5/12, "feet"),
  32862. weight: math.unit(130, "lb"),
  32863. name: "Front (Formal)",
  32864. image: {
  32865. source: "./media/characters/midnight-tales/front-formal.svg",
  32866. extra: 489/454,
  32867. bottom: 61/550
  32868. }
  32869. },
  32870. back: {
  32871. height: math.unit(5 + 5/12, "feet"),
  32872. weight: math.unit(130, "lb"),
  32873. name: "Back",
  32874. image: {
  32875. source: "./media/characters/midnight-tales/back.svg",
  32876. extra: 498/456,
  32877. bottom: 33/531
  32878. }
  32879. },
  32880. frontBeast: {
  32881. height: math.unit(40, "feet"),
  32882. weight: math.unit(64000, "lb"),
  32883. name: "Front (Beast)",
  32884. image: {
  32885. source: "./media/characters/midnight-tales/front-beast.svg",
  32886. extra: 927/860,
  32887. bottom: 53/980
  32888. }
  32889. },
  32890. backBeast: {
  32891. height: math.unit(40, "feet"),
  32892. weight: math.unit(64000, "lb"),
  32893. name: "Back (Beast)",
  32894. image: {
  32895. source: "./media/characters/midnight-tales/back-beast.svg",
  32896. extra: 929/855,
  32897. bottom: 16/945
  32898. }
  32899. },
  32900. footBeast: {
  32901. height: math.unit(6.7, "feet"),
  32902. name: "Foot (Beast)",
  32903. image: {
  32904. source: "./media/characters/midnight-tales/foot-beast.svg"
  32905. }
  32906. },
  32907. headBeast: {
  32908. height: math.unit(8, "feet"),
  32909. name: "Head (Beast)",
  32910. image: {
  32911. source: "./media/characters/midnight-tales/head-beast.svg"
  32912. }
  32913. },
  32914. },
  32915. [
  32916. {
  32917. name: "Normal",
  32918. height: math.unit(5 + 5 / 12, "feet"),
  32919. default: true
  32920. },
  32921. {
  32922. name: "Macro",
  32923. height: math.unit(25, "feet")
  32924. },
  32925. ]
  32926. ))
  32927. characterMakers.push(() => makeCharacter(
  32928. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32929. {
  32930. front: {
  32931. height: math.unit(5 + 10/12, "feet"),
  32932. name: "Front",
  32933. image: {
  32934. source: "./media/characters/argon/front.svg",
  32935. extra: 2009/1935,
  32936. bottom: 118/2127
  32937. }
  32938. },
  32939. back: {
  32940. height: math.unit(5 + 10/12, "feet"),
  32941. name: "Back",
  32942. image: {
  32943. source: "./media/characters/argon/back.svg",
  32944. extra: 2047/1992,
  32945. bottom: 20/2067
  32946. }
  32947. },
  32948. frontDressed: {
  32949. height: math.unit(5 + 10/12, "feet"),
  32950. name: "Front (Dressed)",
  32951. image: {
  32952. source: "./media/characters/argon/front-dressed.svg",
  32953. extra: 2009/1935,
  32954. bottom: 118/2127
  32955. }
  32956. },
  32957. },
  32958. [
  32959. {
  32960. name: "Normal",
  32961. height: math.unit(5 + 10/12, "feet"),
  32962. default: true
  32963. },
  32964. ]
  32965. ))
  32966. characterMakers.push(() => makeCharacter(
  32967. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32968. {
  32969. front: {
  32970. height: math.unit(8 + 6/12, "feet"),
  32971. weight: math.unit(1150, "lb"),
  32972. name: "Front",
  32973. image: {
  32974. source: "./media/characters/kichi/front.svg",
  32975. extra: 1267/1164,
  32976. bottom: 61/1328
  32977. }
  32978. },
  32979. back: {
  32980. height: math.unit(8 + 6/12, "feet"),
  32981. weight: math.unit(1150, "lb"),
  32982. name: "Back",
  32983. image: {
  32984. source: "./media/characters/kichi/back.svg",
  32985. extra: 1273/1166,
  32986. bottom: 33/1306
  32987. }
  32988. },
  32989. },
  32990. [
  32991. {
  32992. name: "Normal",
  32993. height: math.unit(8 + 6/12, "feet"),
  32994. default: true
  32995. },
  32996. ]
  32997. ))
  32998. characterMakers.push(() => makeCharacter(
  32999. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33000. {
  33001. front: {
  33002. height: math.unit(6, "feet"),
  33003. weight: math.unit(210, "lb"),
  33004. name: "Front",
  33005. image: {
  33006. source: "./media/characters/manetel-greyscale/front.svg",
  33007. extra: 350/312,
  33008. bottom: 8/358
  33009. }
  33010. },
  33011. },
  33012. [
  33013. {
  33014. name: "Micro",
  33015. height: math.unit(2, "inches")
  33016. },
  33017. {
  33018. name: "Normal",
  33019. height: math.unit(6, "feet"),
  33020. default: true
  33021. },
  33022. {
  33023. name: "Minimacro",
  33024. height: math.unit(17, "feet")
  33025. },
  33026. {
  33027. name: "Macro",
  33028. height: math.unit(117, "feet")
  33029. },
  33030. ]
  33031. ))
  33032. characterMakers.push(() => makeCharacter(
  33033. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33034. {
  33035. side: {
  33036. height: math.unit(5 + 1/12, "feet"),
  33037. weight: math.unit(418, "lb"),
  33038. name: "Side",
  33039. image: {
  33040. source: "./media/characters/softpurr/side.svg",
  33041. extra: 1993/1945,
  33042. bottom: 134/2127
  33043. }
  33044. },
  33045. front: {
  33046. height: math.unit(5 + 1/12, "feet"),
  33047. weight: math.unit(418, "lb"),
  33048. name: "Front",
  33049. image: {
  33050. source: "./media/characters/softpurr/front.svg",
  33051. extra: 1950/1856,
  33052. bottom: 174/2124
  33053. }
  33054. },
  33055. paw: {
  33056. height: math.unit(1, "feet"),
  33057. name: "Paw",
  33058. image: {
  33059. source: "./media/characters/softpurr/paw.svg"
  33060. }
  33061. },
  33062. },
  33063. [
  33064. {
  33065. name: "Normal",
  33066. height: math.unit(5 + 1/12, "feet"),
  33067. default: true
  33068. },
  33069. ]
  33070. ))
  33071. characterMakers.push(() => makeCharacter(
  33072. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33073. {
  33074. front: {
  33075. height: math.unit(260, "meters"),
  33076. name: "Front",
  33077. image: {
  33078. source: "./media/characters/anahita/front.svg",
  33079. extra: 665/635,
  33080. bottom: 89/754
  33081. }
  33082. },
  33083. },
  33084. [
  33085. {
  33086. name: "Macro",
  33087. height: math.unit(260, "meters"),
  33088. default: true
  33089. },
  33090. ]
  33091. ))
  33092. characterMakers.push(() => makeCharacter(
  33093. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33094. {
  33095. front: {
  33096. height: math.unit(4 + 10/12, "feet"),
  33097. weight: math.unit(160, "lb"),
  33098. name: "Front",
  33099. image: {
  33100. source: "./media/characters/chip-mouse/front.svg",
  33101. extra: 3528/3408,
  33102. bottom: 0/3528
  33103. }
  33104. },
  33105. frontNsfw: {
  33106. height: math.unit(4 + 10/12, "feet"),
  33107. weight: math.unit(160, "lb"),
  33108. name: "Front (NSFW)",
  33109. image: {
  33110. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33111. extra: 3528/3408,
  33112. bottom: 0/3528
  33113. }
  33114. },
  33115. },
  33116. [
  33117. {
  33118. name: "Normal",
  33119. height: math.unit(4 + 10/12, "feet"),
  33120. default: true
  33121. },
  33122. ]
  33123. ))
  33124. characterMakers.push(() => makeCharacter(
  33125. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33126. {
  33127. side: {
  33128. height: math.unit(10, "feet"),
  33129. weight: math.unit(14000, "lb"),
  33130. name: "Side",
  33131. image: {
  33132. source: "./media/characters/kremm/side.svg",
  33133. extra: 1390/1053,
  33134. bottom: 90/1480
  33135. }
  33136. },
  33137. gut: {
  33138. height: math.unit(5.8, "feet"),
  33139. name: "Gut",
  33140. image: {
  33141. source: "./media/characters/kremm/gut.svg"
  33142. }
  33143. },
  33144. ass: {
  33145. height: math.unit(6.1, "feet"),
  33146. name: "Ass",
  33147. image: {
  33148. source: "./media/characters/kremm/ass.svg"
  33149. }
  33150. },
  33151. jaws: {
  33152. height: math.unit(2.2, "feet"),
  33153. name: "Jaws",
  33154. image: {
  33155. source: "./media/characters/kremm/jaws.svg"
  33156. }
  33157. },
  33158. dick: {
  33159. height: math.unit(4.26, "feet"),
  33160. name: "Dick",
  33161. image: {
  33162. source: "./media/characters/kremm/dick.svg"
  33163. }
  33164. },
  33165. },
  33166. [
  33167. {
  33168. name: "Normal",
  33169. height: math.unit(10, "feet"),
  33170. default: true
  33171. },
  33172. ]
  33173. ))
  33174. characterMakers.push(() => makeCharacter(
  33175. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33176. {
  33177. front: {
  33178. height: math.unit(30, "stories"),
  33179. name: "Front",
  33180. image: {
  33181. source: "./media/characters/kai/front.svg",
  33182. extra: 1892/1718,
  33183. bottom: 162/2054
  33184. }
  33185. },
  33186. },
  33187. [
  33188. {
  33189. name: "Macro",
  33190. height: math.unit(30, "stories"),
  33191. default: true
  33192. },
  33193. ]
  33194. ))
  33195. characterMakers.push(() => makeCharacter(
  33196. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33197. {
  33198. front: {
  33199. height: math.unit(6 + 4/12, "feet"),
  33200. weight: math.unit(145, "lb"),
  33201. name: "Front",
  33202. image: {
  33203. source: "./media/characters/sykes/front.svg",
  33204. extra: 1321 / 1187,
  33205. bottom: 66 / 1387
  33206. }
  33207. },
  33208. back: {
  33209. height: math.unit(6 + 4/12, "feet"),
  33210. weight: math.unit(145, "lb"),
  33211. name: "Back",
  33212. image: {
  33213. source: "./media/characters/sykes/back.svg",
  33214. extra: 1326/1181,
  33215. bottom: 31/1357
  33216. }
  33217. },
  33218. handBack: {
  33219. height: math.unit(0.9, "feet"),
  33220. name: "Hand (Back)",
  33221. image: {
  33222. source: "./media/characters/sykes/hand-back.svg"
  33223. }
  33224. },
  33225. handFront: {
  33226. height: math.unit(0.839, "feet"),
  33227. name: "Hand (Front)",
  33228. image: {
  33229. source: "./media/characters/sykes/hand-front.svg"
  33230. }
  33231. },
  33232. leftFoot: {
  33233. height: math.unit(1.2, "feet"),
  33234. name: "Foot (Left)",
  33235. image: {
  33236. source: "./media/characters/sykes/foot-left.svg"
  33237. }
  33238. },
  33239. rightFoot: {
  33240. height: math.unit(1.2, "feet"),
  33241. name: "Foot (Right)",
  33242. image: {
  33243. source: "./media/characters/sykes/foot-right.svg"
  33244. }
  33245. },
  33246. maw: {
  33247. height: math.unit(1.93, "feet"),
  33248. name: "Maw",
  33249. image: {
  33250. source: "./media/characters/sykes/maw.svg"
  33251. }
  33252. },
  33253. teeth: {
  33254. height: math.unit(0.51, "feet"),
  33255. name: "Teeth",
  33256. image: {
  33257. source: "./media/characters/sykes/teeth.svg"
  33258. }
  33259. },
  33260. tongue: {
  33261. height: math.unit(2.13, "feet"),
  33262. name: "Tongue",
  33263. image: {
  33264. source: "./media/characters/sykes/tongue.svg"
  33265. }
  33266. },
  33267. uvula: {
  33268. height: math.unit(0.16, "feet"),
  33269. name: "Uvula",
  33270. image: {
  33271. source: "./media/characters/sykes/uvula.svg"
  33272. }
  33273. },
  33274. collar: {
  33275. height: math.unit(0.287, "feet"),
  33276. name: "Collar",
  33277. image: {
  33278. source: "./media/characters/sykes/collar.svg"
  33279. }
  33280. },
  33281. },
  33282. [
  33283. {
  33284. name: "Shrunken",
  33285. height: math.unit(5, "inches")
  33286. },
  33287. {
  33288. name: "Normal",
  33289. height: math.unit(6 + 4 / 12, "feet"),
  33290. default: true
  33291. },
  33292. {
  33293. name: "Big",
  33294. height: math.unit(15, "feet")
  33295. },
  33296. ]
  33297. ))
  33298. characterMakers.push(() => makeCharacter(
  33299. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33300. {
  33301. front: {
  33302. height: math.unit(5 + 8/12, "feet"),
  33303. weight: math.unit(190, "lb"),
  33304. name: "Front",
  33305. image: {
  33306. source: "./media/characters/oven-otter/front.svg",
  33307. extra: 1809/1740,
  33308. bottom: 181/1990
  33309. }
  33310. },
  33311. back: {
  33312. height: math.unit(5 + 8/12, "feet"),
  33313. weight: math.unit(190, "lb"),
  33314. name: "Back",
  33315. image: {
  33316. source: "./media/characters/oven-otter/back.svg",
  33317. extra: 1709/1635,
  33318. bottom: 118/1827
  33319. }
  33320. },
  33321. hand: {
  33322. height: math.unit(1.07, "feet"),
  33323. name: "Hand",
  33324. image: {
  33325. source: "./media/characters/oven-otter/hand.svg"
  33326. }
  33327. },
  33328. beans: {
  33329. height: math.unit(1.74, "feet"),
  33330. name: "Beans",
  33331. image: {
  33332. source: "./media/characters/oven-otter/beans.svg"
  33333. }
  33334. },
  33335. },
  33336. [
  33337. {
  33338. name: "Micro",
  33339. height: math.unit(0.5, "inches")
  33340. },
  33341. {
  33342. name: "Normal",
  33343. height: math.unit(5 + 8/12, "feet"),
  33344. default: true
  33345. },
  33346. {
  33347. name: "Macro",
  33348. height: math.unit(250, "feet")
  33349. },
  33350. {
  33351. name: "Really High",
  33352. height: math.unit(420, "feet")
  33353. },
  33354. ]
  33355. ))
  33356. characterMakers.push(() => makeCharacter(
  33357. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33358. {
  33359. front: {
  33360. height: math.unit(5, "meters"),
  33361. weight: math.unit(292000000000000, "kg"),
  33362. name: "Front",
  33363. image: {
  33364. source: "./media/characters/devourer/front.svg",
  33365. extra: 1800/1733,
  33366. bottom: 211/2011
  33367. }
  33368. },
  33369. maw: {
  33370. height: math.unit(1.1, "meter"),
  33371. name: "Maw",
  33372. image: {
  33373. source: "./media/characters/devourer/maw.svg"
  33374. }
  33375. },
  33376. },
  33377. [
  33378. {
  33379. name: "Small",
  33380. height: math.unit(3, "meters")
  33381. },
  33382. {
  33383. name: "Large",
  33384. height: math.unit(5, "meters"),
  33385. default: true
  33386. },
  33387. ]
  33388. ))
  33389. characterMakers.push(() => makeCharacter(
  33390. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33391. {
  33392. front: {
  33393. height: math.unit(6, "feet"),
  33394. weight: math.unit(400, "lb"),
  33395. name: "Front",
  33396. image: {
  33397. source: "./media/characters/ellarby/front.svg",
  33398. extra: 1909/1763,
  33399. bottom: 80/1989
  33400. }
  33401. },
  33402. back: {
  33403. height: math.unit(6, "feet"),
  33404. weight: math.unit(400, "lb"),
  33405. name: "Back",
  33406. image: {
  33407. source: "./media/characters/ellarby/back.svg",
  33408. extra: 1914/1784,
  33409. bottom: 172/2086
  33410. }
  33411. },
  33412. },
  33413. [
  33414. {
  33415. name: "Mischief",
  33416. height: math.unit(18, "inches")
  33417. },
  33418. {
  33419. name: "Trouble",
  33420. height: math.unit(12, "feet")
  33421. },
  33422. {
  33423. name: "Havoc",
  33424. height: math.unit(200, "feet"),
  33425. default: true
  33426. },
  33427. {
  33428. name: "Pandemonium",
  33429. height: math.unit(1, "mile")
  33430. },
  33431. {
  33432. name: "Catastrophe",
  33433. height: math.unit(100, "miles")
  33434. },
  33435. ]
  33436. ))
  33437. characterMakers.push(() => makeCharacter(
  33438. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33439. {
  33440. front: {
  33441. height: math.unit(4.7, "meters"),
  33442. weight: math.unit(6500, "kg"),
  33443. name: "Front",
  33444. image: {
  33445. source: "./media/characters/vex/front.svg",
  33446. extra: 1288/1140,
  33447. bottom: 100/1388
  33448. }
  33449. },
  33450. },
  33451. [
  33452. {
  33453. name: "Normal",
  33454. height: math.unit(4.7, "meters"),
  33455. default: true
  33456. },
  33457. ]
  33458. ))
  33459. characterMakers.push(() => makeCharacter(
  33460. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33461. {
  33462. normal: {
  33463. height: math.unit(6, "feet"),
  33464. weight: math.unit(350, "lb"),
  33465. name: "Normal",
  33466. image: {
  33467. source: "./media/characters/teshy/normal.svg",
  33468. extra: 1795/1735,
  33469. bottom: 16/1811
  33470. }
  33471. },
  33472. monsterFront: {
  33473. height: math.unit(12, "feet"),
  33474. weight: math.unit(4700, "lb"),
  33475. name: "Monster (Front)",
  33476. image: {
  33477. source: "./media/characters/teshy/monster-front.svg",
  33478. extra: 2042/2034,
  33479. bottom: 128/2170
  33480. }
  33481. },
  33482. monsterSide: {
  33483. height: math.unit(12, "feet"),
  33484. weight: math.unit(4700, "lb"),
  33485. name: "Monster (Side)",
  33486. image: {
  33487. source: "./media/characters/teshy/monster-side.svg",
  33488. extra: 2067/2056,
  33489. bottom: 70/2137
  33490. }
  33491. },
  33492. monsterBack: {
  33493. height: math.unit(12, "feet"),
  33494. weight: math.unit(4700, "lb"),
  33495. name: "Monster (Back)",
  33496. image: {
  33497. source: "./media/characters/teshy/monster-back.svg",
  33498. extra: 1921/1914,
  33499. bottom: 171/2092
  33500. }
  33501. },
  33502. },
  33503. [
  33504. {
  33505. name: "Normal",
  33506. height: math.unit(6, "feet"),
  33507. default: true
  33508. },
  33509. ]
  33510. ))
  33511. characterMakers.push(() => makeCharacter(
  33512. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33513. {
  33514. front: {
  33515. height: math.unit(6, "feet"),
  33516. name: "Front",
  33517. image: {
  33518. source: "./media/characters/ramey/front.svg",
  33519. extra: 790/787,
  33520. bottom: 27/817
  33521. }
  33522. },
  33523. },
  33524. [
  33525. {
  33526. name: "Normal",
  33527. height: math.unit(6, "feet"),
  33528. default: true
  33529. },
  33530. ]
  33531. ))
  33532. characterMakers.push(() => makeCharacter(
  33533. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33534. {
  33535. front: {
  33536. height: math.unit(5 + 5/12, "feet"),
  33537. weight: math.unit(120, "lb"),
  33538. name: "Front",
  33539. image: {
  33540. source: "./media/characters/phirae/front.svg",
  33541. extra: 2491/2436,
  33542. bottom: 38/2529
  33543. }
  33544. },
  33545. },
  33546. [
  33547. {
  33548. name: "Normal",
  33549. height: math.unit(5 + 5/12, "feet"),
  33550. default: true
  33551. },
  33552. ]
  33553. ))
  33554. characterMakers.push(() => makeCharacter(
  33555. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33556. {
  33557. front: {
  33558. height: math.unit(6, "feet"),
  33559. weight: math.unit(150, "lb"),
  33560. name: "Front",
  33561. image: {
  33562. source: "./media/characters/stagglas/front.svg",
  33563. extra: 962/882,
  33564. bottom: 53/1015
  33565. }
  33566. },
  33567. },
  33568. [
  33569. {
  33570. name: "Normal",
  33571. height: math.unit(5 + 3/12, "feet"),
  33572. default: true
  33573. },
  33574. ]
  33575. ))
  33576. characterMakers.push(() => makeCharacter(
  33577. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33578. {
  33579. front: {
  33580. height: math.unit(5 + 4/12, "feet"),
  33581. weight: math.unit(145, "lb"),
  33582. name: "Front",
  33583. image: {
  33584. source: "./media/characters/starra/front.svg",
  33585. extra: 1790/1691,
  33586. bottom: 91/1881
  33587. }
  33588. },
  33589. },
  33590. [
  33591. {
  33592. name: "Normal",
  33593. height: math.unit(5 + 4/12, "feet"),
  33594. default: true
  33595. },
  33596. ]
  33597. ))
  33598. characterMakers.push(() => makeCharacter(
  33599. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33600. {
  33601. front: {
  33602. height: math.unit(2.2, "meters"),
  33603. name: "Front",
  33604. image: {
  33605. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33606. extra: 1194/1005,
  33607. bottom: 25/1219
  33608. }
  33609. },
  33610. },
  33611. [
  33612. {
  33613. name: "Normal",
  33614. height: math.unit(2.2, "meters"),
  33615. default: true
  33616. },
  33617. ]
  33618. ))
  33619. characterMakers.push(() => makeCharacter(
  33620. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33621. {
  33622. side: {
  33623. height: math.unit(8 + 2/12, "feet"),
  33624. weight: math.unit(1240, "lb"),
  33625. name: "Side",
  33626. image: {
  33627. source: "./media/characters/mika-valentine/side.svg",
  33628. extra: 2670/2501,
  33629. bottom: 250/2920
  33630. }
  33631. },
  33632. },
  33633. [
  33634. {
  33635. name: "Normal",
  33636. height: math.unit(8 + 2/12, "feet"),
  33637. default: true
  33638. },
  33639. ]
  33640. ))
  33641. characterMakers.push(() => makeCharacter(
  33642. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33643. {
  33644. front: {
  33645. height: math.unit(7 + 2/12, "feet"),
  33646. name: "Front",
  33647. image: {
  33648. source: "./media/characters/xoltol/front.svg",
  33649. extra: 2212/2124,
  33650. bottom: 84/2296
  33651. }
  33652. },
  33653. side: {
  33654. height: math.unit(7 + 2/12, "feet"),
  33655. name: "Side",
  33656. image: {
  33657. source: "./media/characters/xoltol/side.svg",
  33658. extra: 2273/2197,
  33659. bottom: 26/2299
  33660. }
  33661. },
  33662. hand: {
  33663. height: math.unit(2.5, "feet"),
  33664. name: "Hand",
  33665. image: {
  33666. source: "./media/characters/xoltol/hand.svg"
  33667. }
  33668. },
  33669. },
  33670. [
  33671. {
  33672. name: "Small-ish",
  33673. height: math.unit(5 + 11/12, "feet")
  33674. },
  33675. {
  33676. name: "Normal",
  33677. height: math.unit(7 + 2/12, "feet")
  33678. },
  33679. {
  33680. name: "\"Macro\"",
  33681. height: math.unit(14 + 9/12, "feet"),
  33682. default: true
  33683. },
  33684. {
  33685. name: "Alternate Height",
  33686. height: math.unit(20, "feet")
  33687. },
  33688. {
  33689. name: "Actually Macro",
  33690. height: math.unit(100, "feet")
  33691. },
  33692. ]
  33693. ))
  33694. characterMakers.push(() => makeCharacter(
  33695. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33696. {
  33697. front: {
  33698. height: math.unit(5 + 2/12, "feet"),
  33699. name: "Front",
  33700. image: {
  33701. source: "./media/characters/kotetsu-redwood/front.svg",
  33702. extra: 1053/942,
  33703. bottom: 60/1113
  33704. }
  33705. },
  33706. },
  33707. [
  33708. {
  33709. name: "Normal",
  33710. height: math.unit(5 + 2/12, "feet"),
  33711. default: true
  33712. },
  33713. ]
  33714. ))
  33715. characterMakers.push(() => makeCharacter(
  33716. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33717. {
  33718. front: {
  33719. height: math.unit(2.4, "meters"),
  33720. weight: math.unit(125, "kg"),
  33721. name: "Front",
  33722. image: {
  33723. source: "./media/characters/lilith/front.svg",
  33724. extra: 1590/1513,
  33725. bottom: 203/1793
  33726. }
  33727. },
  33728. },
  33729. [
  33730. {
  33731. name: "Humanoid",
  33732. height: math.unit(2.4, "meters")
  33733. },
  33734. {
  33735. name: "Normal",
  33736. height: math.unit(6, "meters"),
  33737. default: true
  33738. },
  33739. {
  33740. name: "Largest",
  33741. height: math.unit(55, "meters")
  33742. },
  33743. ]
  33744. ))
  33745. characterMakers.push(() => makeCharacter(
  33746. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33747. {
  33748. front: {
  33749. height: math.unit(8 + 4/12, "feet"),
  33750. weight: math.unit(535, "lb"),
  33751. name: "Front",
  33752. image: {
  33753. source: "./media/characters/beh'kah-bolger/front.svg",
  33754. extra: 1660/1603,
  33755. bottom: 37/1697
  33756. }
  33757. },
  33758. },
  33759. [
  33760. {
  33761. name: "Normal",
  33762. height: math.unit(8 + 4/12, "feet"),
  33763. default: true
  33764. },
  33765. {
  33766. name: "Kaiju",
  33767. height: math.unit(250, "feet")
  33768. },
  33769. {
  33770. name: "Still Growing",
  33771. height: math.unit(10, "miles")
  33772. },
  33773. {
  33774. name: "Continental",
  33775. height: math.unit(5000, "miles")
  33776. },
  33777. {
  33778. name: "Final Form",
  33779. height: math.unit(2500000, "miles")
  33780. },
  33781. ]
  33782. ))
  33783. characterMakers.push(() => makeCharacter(
  33784. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33785. {
  33786. front: {
  33787. height: math.unit(7 + 2/12, "feet"),
  33788. weight: math.unit(230, "kg"),
  33789. name: "Front",
  33790. image: {
  33791. source: "./media/characters/tatyana-milewska/front.svg",
  33792. extra: 1199/1150,
  33793. bottom: 86/1285
  33794. }
  33795. },
  33796. },
  33797. [
  33798. {
  33799. name: "Normal",
  33800. height: math.unit(7 + 2/12, "feet"),
  33801. default: true
  33802. },
  33803. {
  33804. name: "Big",
  33805. height: math.unit(12, "feet")
  33806. },
  33807. {
  33808. name: "Minimacro",
  33809. height: math.unit(20, "feet")
  33810. },
  33811. {
  33812. name: "Macro",
  33813. height: math.unit(120, "feet")
  33814. },
  33815. ]
  33816. ))
  33817. characterMakers.push(() => makeCharacter(
  33818. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33819. {
  33820. front: {
  33821. height: math.unit(7 + 8/12, "feet"),
  33822. weight: math.unit(152, "kg"),
  33823. name: "Front",
  33824. image: {
  33825. source: "./media/characters/helen-arri/front.svg",
  33826. extra: 440/423,
  33827. bottom: 14/454
  33828. }
  33829. },
  33830. back: {
  33831. height: math.unit(7 + 8/12, "feet"),
  33832. weight: math.unit(152, "kg"),
  33833. name: "Back",
  33834. image: {
  33835. source: "./media/characters/helen-arri/back.svg",
  33836. extra: 443/426,
  33837. bottom: 8/451
  33838. }
  33839. },
  33840. },
  33841. [
  33842. {
  33843. name: "Normal",
  33844. height: math.unit(7 + 8/12, "feet"),
  33845. default: true
  33846. },
  33847. {
  33848. name: "Big",
  33849. height: math.unit(14, "feet")
  33850. },
  33851. {
  33852. name: "Minimacro",
  33853. height: math.unit(24, "feet")
  33854. },
  33855. {
  33856. name: "Macro",
  33857. height: math.unit(140, "feet")
  33858. },
  33859. ]
  33860. ))
  33861. characterMakers.push(() => makeCharacter(
  33862. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33863. {
  33864. front: {
  33865. height: math.unit(6, "meters"),
  33866. name: "Front",
  33867. image: {
  33868. source: "./media/characters/ehanu-rehu/front.svg",
  33869. extra: 1800/1800,
  33870. bottom: 59/1859
  33871. }
  33872. },
  33873. },
  33874. [
  33875. {
  33876. name: "Normal",
  33877. height: math.unit(6, "meters"),
  33878. default: true
  33879. },
  33880. ]
  33881. ))
  33882. characterMakers.push(() => makeCharacter(
  33883. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33884. {
  33885. front: {
  33886. height: math.unit(7 + 3/12, "feet"),
  33887. name: "Front",
  33888. image: {
  33889. source: "./media/characters/renholder/front.svg",
  33890. extra: 3096/2960,
  33891. bottom: 250/3346
  33892. }
  33893. },
  33894. },
  33895. [
  33896. {
  33897. name: "Normal Bat",
  33898. height: math.unit(7 + 3/12, "feet"),
  33899. default: true
  33900. },
  33901. {
  33902. name: "Slightly Tall Bat",
  33903. height: math.unit(100, "feet")
  33904. },
  33905. {
  33906. name: "Big Bat",
  33907. height: math.unit(1000, "feet")
  33908. },
  33909. {
  33910. name: "City-Sized Bat",
  33911. height: math.unit(200000, "feet")
  33912. },
  33913. {
  33914. name: "Bigger Bat",
  33915. height: math.unit(10000, "miles")
  33916. },
  33917. {
  33918. name: "Solar Sized Bat",
  33919. height: math.unit(100, "AU")
  33920. },
  33921. {
  33922. name: "Galactic Bat",
  33923. height: math.unit(200000, "lightyears")
  33924. },
  33925. {
  33926. name: "Universally Known Bat",
  33927. height: math.unit(1, "universe")
  33928. },
  33929. ]
  33930. ))
  33931. characterMakers.push(() => makeCharacter(
  33932. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33933. {
  33934. front: {
  33935. height: math.unit(6 + 11/12, "feet"),
  33936. weight: math.unit(250, "lb"),
  33937. name: "Front",
  33938. image: {
  33939. source: "./media/characters/cookiecat/front.svg",
  33940. extra: 893/827,
  33941. bottom: 14/907
  33942. }
  33943. },
  33944. },
  33945. [
  33946. {
  33947. name: "Micro",
  33948. height: math.unit(3, "inches")
  33949. },
  33950. {
  33951. name: "Normal",
  33952. height: math.unit(6 + 11/12, "feet"),
  33953. default: true
  33954. },
  33955. {
  33956. name: "Macro",
  33957. height: math.unit(100, "feet")
  33958. },
  33959. {
  33960. name: "Macro+",
  33961. height: math.unit(404, "feet")
  33962. },
  33963. {
  33964. name: "Megamacro",
  33965. height: math.unit(165, "miles")
  33966. },
  33967. {
  33968. name: "Planetary",
  33969. height: math.unit(4600, "miles")
  33970. },
  33971. ]
  33972. ))
  33973. characterMakers.push(() => makeCharacter(
  33974. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33975. {
  33976. front: {
  33977. height: math.unit(10 + 3/12, "feet"),
  33978. weight: math.unit(1500, "lb"),
  33979. name: "Front",
  33980. image: {
  33981. source: "./media/characters/tux-kusanagi/front.svg",
  33982. extra: 944/840,
  33983. bottom: 39/983
  33984. }
  33985. },
  33986. back: {
  33987. height: math.unit(10 + 3/12, "feet"),
  33988. weight: math.unit(1500, "lb"),
  33989. name: "Back",
  33990. image: {
  33991. source: "./media/characters/tux-kusanagi/back.svg",
  33992. extra: 941/842,
  33993. bottom: 28/969
  33994. }
  33995. },
  33996. rump: {
  33997. height: math.unit(5.25, "feet"),
  33998. name: "Rump",
  33999. image: {
  34000. source: "./media/characters/tux-kusanagi/rump.svg"
  34001. }
  34002. },
  34003. beak: {
  34004. height: math.unit(1.54, "feet"),
  34005. name: "Beak",
  34006. image: {
  34007. source: "./media/characters/tux-kusanagi/beak.svg"
  34008. }
  34009. },
  34010. },
  34011. [
  34012. {
  34013. name: "Normal",
  34014. height: math.unit(10 + 3/12, "feet"),
  34015. default: true
  34016. },
  34017. ]
  34018. ))
  34019. characterMakers.push(() => makeCharacter(
  34020. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34021. {
  34022. front: {
  34023. height: math.unit(58, "feet"),
  34024. weight: math.unit(200, "tons"),
  34025. name: "Front",
  34026. image: {
  34027. source: "./media/characters/uzarmazari/front.svg",
  34028. extra: 1575/1455,
  34029. bottom: 152/1727
  34030. }
  34031. },
  34032. back: {
  34033. height: math.unit(58, "feet"),
  34034. weight: math.unit(200, "tons"),
  34035. name: "Back",
  34036. image: {
  34037. source: "./media/characters/uzarmazari/back.svg",
  34038. extra: 1585/1510,
  34039. bottom: 157/1742
  34040. }
  34041. },
  34042. head: {
  34043. height: math.unit(26, "feet"),
  34044. name: "Head",
  34045. image: {
  34046. source: "./media/characters/uzarmazari/head.svg"
  34047. }
  34048. },
  34049. },
  34050. [
  34051. {
  34052. name: "Normal",
  34053. height: math.unit(58, "feet"),
  34054. default: true
  34055. },
  34056. ]
  34057. ))
  34058. characterMakers.push(() => makeCharacter(
  34059. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34060. {
  34061. side: {
  34062. height: math.unit(15, "feet"),
  34063. name: "Side",
  34064. image: {
  34065. source: "./media/characters/akitu/side.svg",
  34066. extra: 1421/1321,
  34067. bottom: 157/1578
  34068. }
  34069. },
  34070. front: {
  34071. height: math.unit(15, "feet"),
  34072. name: "Front",
  34073. image: {
  34074. source: "./media/characters/akitu/front.svg",
  34075. extra: 1435/1326,
  34076. bottom: 232/1667
  34077. }
  34078. },
  34079. },
  34080. [
  34081. {
  34082. name: "Normal",
  34083. height: math.unit(15, "feet"),
  34084. default: true
  34085. },
  34086. ]
  34087. ))
  34088. characterMakers.push(() => makeCharacter(
  34089. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34090. {
  34091. front: {
  34092. height: math.unit(10 + 8/12, "feet"),
  34093. name: "Front",
  34094. image: {
  34095. source: "./media/characters/azalie-croixland/front.svg",
  34096. extra: 1972/1856,
  34097. bottom: 31/2003
  34098. }
  34099. },
  34100. },
  34101. [
  34102. {
  34103. name: "Original Height",
  34104. height: math.unit(5 + 4/12, "feet")
  34105. },
  34106. {
  34107. name: "Normal Height",
  34108. height: math.unit(10 + 8/12, "feet"),
  34109. default: true
  34110. },
  34111. ]
  34112. ))
  34113. characterMakers.push(() => makeCharacter(
  34114. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34115. {
  34116. side: {
  34117. height: math.unit(7 + 1/12, "feet"),
  34118. weight: math.unit(245, "lb"),
  34119. name: "Side",
  34120. image: {
  34121. source: "./media/characters/kavus-kazian/side.svg",
  34122. extra: 349/342,
  34123. bottom: 15/364
  34124. }
  34125. },
  34126. },
  34127. [
  34128. {
  34129. name: "Normal",
  34130. height: math.unit(7 + 1/12, "feet"),
  34131. default: true
  34132. },
  34133. ]
  34134. ))
  34135. characterMakers.push(() => makeCharacter(
  34136. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34137. {
  34138. normal: {
  34139. height: math.unit(5 + 11/12, "feet"),
  34140. name: "Normal",
  34141. image: {
  34142. source: "./media/characters/moonlight-rose/normal.svg",
  34143. extra: 1979/1835,
  34144. bottom: 14/1993
  34145. }
  34146. },
  34147. demon: {
  34148. height: math.unit(5, "km"),
  34149. name: "Demon",
  34150. image: {
  34151. source: "./media/characters/moonlight-rose/demon.svg",
  34152. extra: 986/916,
  34153. bottom: 28/1014
  34154. }
  34155. },
  34156. },
  34157. [
  34158. {
  34159. name: "\"Natural\" height",
  34160. height: math.unit(5 + 11/12, "feet")
  34161. },
  34162. {
  34163. name: "Comfortable Size",
  34164. height: math.unit(40, "meters")
  34165. },
  34166. {
  34167. name: "Common Size",
  34168. height: math.unit(50, "km"),
  34169. default: true
  34170. },
  34171. {
  34172. name: "Demonic",
  34173. height: math.unit(1.24415e+21, "meters")
  34174. },
  34175. ]
  34176. ))
  34177. characterMakers.push(() => makeCharacter(
  34178. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34179. {
  34180. front: {
  34181. height: math.unit(16, "feet"),
  34182. weight: math.unit(610, "kg"),
  34183. name: "Front",
  34184. image: {
  34185. source: "./media/characters/huckle/front.svg",
  34186. extra: 1731/1625,
  34187. bottom: 33/1764
  34188. }
  34189. },
  34190. back: {
  34191. height: math.unit(16, "feet"),
  34192. weight: math.unit(610, "kg"),
  34193. name: "Back",
  34194. image: {
  34195. source: "./media/characters/huckle/back.svg",
  34196. extra: 1738/1651,
  34197. bottom: 37/1775
  34198. }
  34199. },
  34200. laughing: {
  34201. height: math.unit(3.75, "feet"),
  34202. name: "Laughing",
  34203. image: {
  34204. source: "./media/characters/huckle/laughing.svg"
  34205. }
  34206. },
  34207. angry: {
  34208. height: math.unit(4.15, "feet"),
  34209. name: "Angry",
  34210. image: {
  34211. source: "./media/characters/huckle/angry.svg"
  34212. }
  34213. },
  34214. },
  34215. [
  34216. {
  34217. name: "Normal",
  34218. height: math.unit(16, "feet"),
  34219. default: true
  34220. },
  34221. {
  34222. name: "Mini Macro",
  34223. height: math.unit(463, "feet")
  34224. },
  34225. {
  34226. name: "Macro",
  34227. height: math.unit(1680, "meters")
  34228. },
  34229. {
  34230. name: "Mega Macro",
  34231. height: math.unit(175, "km")
  34232. },
  34233. {
  34234. name: "Terra Macro",
  34235. height: math.unit(32, "gigameters")
  34236. },
  34237. {
  34238. name: "Multiverse+",
  34239. height: math.unit(2.56e23, "yottameters")
  34240. },
  34241. ]
  34242. ))
  34243. characterMakers.push(() => makeCharacter(
  34244. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34245. {
  34246. front: {
  34247. height: math.unit(6 + 9/12, "feet"),
  34248. weight: math.unit(280, "lb"),
  34249. name: "Front",
  34250. image: {
  34251. source: "./media/characters/candy/front.svg",
  34252. extra: 234/217,
  34253. bottom: 11/245
  34254. }
  34255. },
  34256. },
  34257. [
  34258. {
  34259. name: "Really Small",
  34260. height: math.unit(0.1, "nm")
  34261. },
  34262. {
  34263. name: "Micro",
  34264. height: math.unit(2, "inches")
  34265. },
  34266. {
  34267. name: "Normal",
  34268. height: math.unit(6 + 9/12, "feet"),
  34269. default: true
  34270. },
  34271. {
  34272. name: "Small Macro",
  34273. height: math.unit(69, "feet")
  34274. },
  34275. {
  34276. name: "Macro",
  34277. height: math.unit(160, "feet")
  34278. },
  34279. {
  34280. name: "Megamacro",
  34281. height: math.unit(22000, "miles")
  34282. },
  34283. {
  34284. name: "Gigamacro",
  34285. height: math.unit(50000, "miles")
  34286. },
  34287. ]
  34288. ))
  34289. characterMakers.push(() => makeCharacter(
  34290. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34291. {
  34292. front: {
  34293. height: math.unit(4, "feet"),
  34294. weight: math.unit(90, "lb"),
  34295. name: "Front",
  34296. image: {
  34297. source: "./media/characters/joey-mcdonald/front.svg",
  34298. extra: 1059/852,
  34299. bottom: 33/1092
  34300. }
  34301. },
  34302. back: {
  34303. height: math.unit(4, "feet"),
  34304. weight: math.unit(90, "lb"),
  34305. name: "Back",
  34306. image: {
  34307. source: "./media/characters/joey-mcdonald/back.svg",
  34308. extra: 1077/879,
  34309. bottom: 5/1082
  34310. }
  34311. },
  34312. },
  34313. [
  34314. {
  34315. name: "Normal",
  34316. height: math.unit(4, "feet"),
  34317. default: true
  34318. },
  34319. ]
  34320. ))
  34321. characterMakers.push(() => makeCharacter(
  34322. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34323. {
  34324. front: {
  34325. height: math.unit(12 + 6/12, "feet"),
  34326. name: "Front",
  34327. image: {
  34328. source: "./media/characters/kass-lockheed/front.svg",
  34329. extra: 354/343,
  34330. bottom: 9/363
  34331. }
  34332. },
  34333. back: {
  34334. height: math.unit(12 + 6/12, "feet"),
  34335. name: "Back",
  34336. image: {
  34337. source: "./media/characters/kass-lockheed/back.svg",
  34338. extra: 364/352,
  34339. bottom: 3/367
  34340. }
  34341. },
  34342. dick: {
  34343. height: math.unit(3.12, "feet"),
  34344. name: "Dick",
  34345. image: {
  34346. source: "./media/characters/kass-lockheed/dick.svg"
  34347. }
  34348. },
  34349. head: {
  34350. height: math.unit(2.6, "feet"),
  34351. name: "Head",
  34352. image: {
  34353. source: "./media/characters/kass-lockheed/head.svg"
  34354. }
  34355. },
  34356. bleh: {
  34357. height: math.unit(2.85, "feet"),
  34358. name: "Bleh",
  34359. image: {
  34360. source: "./media/characters/kass-lockheed/bleh.svg"
  34361. }
  34362. },
  34363. smug: {
  34364. height: math.unit(2.85, "feet"),
  34365. name: "Smug",
  34366. image: {
  34367. source: "./media/characters/kass-lockheed/smug.svg"
  34368. }
  34369. },
  34370. },
  34371. [
  34372. {
  34373. name: "Normal",
  34374. height: math.unit(12 + 6/12, "feet"),
  34375. default: true
  34376. },
  34377. ]
  34378. ))
  34379. characterMakers.push(() => makeCharacter(
  34380. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34381. {
  34382. front: {
  34383. height: math.unit(6 + 2/12, "feet"),
  34384. name: "Front",
  34385. image: {
  34386. source: "./media/characters/taylor/front.svg",
  34387. extra: 639/495,
  34388. bottom: 12/651
  34389. }
  34390. },
  34391. },
  34392. [
  34393. {
  34394. name: "Normal",
  34395. height: math.unit(6 + 2/12, "feet"),
  34396. default: true
  34397. },
  34398. {
  34399. name: "Big",
  34400. height: math.unit(15, "feet")
  34401. },
  34402. {
  34403. name: "Lorg",
  34404. height: math.unit(80, "feet")
  34405. },
  34406. {
  34407. name: "Too Lorg",
  34408. height: math.unit(120, "feet")
  34409. },
  34410. ]
  34411. ))
  34412. characterMakers.push(() => makeCharacter(
  34413. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34414. {
  34415. front: {
  34416. height: math.unit(15, "feet"),
  34417. name: "Front",
  34418. image: {
  34419. source: "./media/characters/kaizer/front.svg",
  34420. extra: 1612/1436,
  34421. bottom: 43/1655
  34422. }
  34423. },
  34424. },
  34425. [
  34426. {
  34427. name: "Normal",
  34428. height: math.unit(15, "feet"),
  34429. default: true
  34430. },
  34431. ]
  34432. ))
  34433. characterMakers.push(() => makeCharacter(
  34434. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34435. {
  34436. front: {
  34437. height: math.unit(2, "feet"),
  34438. weight: math.unit(30, "lb"),
  34439. name: "Front",
  34440. image: {
  34441. source: "./media/characters/sandy/front.svg",
  34442. extra: 1439/1307,
  34443. bottom: 194/1633
  34444. }
  34445. },
  34446. },
  34447. [
  34448. {
  34449. name: "Normal",
  34450. height: math.unit(2, "feet"),
  34451. default: true
  34452. },
  34453. ]
  34454. ))
  34455. characterMakers.push(() => makeCharacter(
  34456. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34457. {
  34458. front: {
  34459. height: math.unit(3, "feet"),
  34460. name: "Front",
  34461. image: {
  34462. source: "./media/characters/mellvi/front.svg",
  34463. extra: 1831/1630,
  34464. bottom: 58/1889
  34465. }
  34466. },
  34467. },
  34468. [
  34469. {
  34470. name: "Normal",
  34471. height: math.unit(3, "feet"),
  34472. default: true
  34473. },
  34474. ]
  34475. ))
  34476. characterMakers.push(() => makeCharacter(
  34477. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34478. {
  34479. front: {
  34480. height: math.unit(5 + 11/12, "feet"),
  34481. weight: math.unit(200, "lb"),
  34482. name: "Front",
  34483. image: {
  34484. source: "./media/characters/shirou/front.svg",
  34485. extra: 2491/2383,
  34486. bottom: 189/2680
  34487. }
  34488. },
  34489. back: {
  34490. height: math.unit(5 + 11/12, "feet"),
  34491. weight: math.unit(200, "lb"),
  34492. name: "Back",
  34493. image: {
  34494. source: "./media/characters/shirou/back.svg",
  34495. extra: 2554/2450,
  34496. bottom: 76/2630
  34497. }
  34498. },
  34499. },
  34500. [
  34501. {
  34502. name: "Normal",
  34503. height: math.unit(5 + 11/12, "feet"),
  34504. default: true
  34505. },
  34506. ]
  34507. ))
  34508. characterMakers.push(() => makeCharacter(
  34509. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34510. {
  34511. front: {
  34512. height: math.unit(6 + 3/12, "feet"),
  34513. weight: math.unit(177, "lb"),
  34514. name: "Front",
  34515. image: {
  34516. source: "./media/characters/noryu/front.svg",
  34517. extra: 973/885,
  34518. bottom: 10/983
  34519. }
  34520. },
  34521. },
  34522. [
  34523. {
  34524. name: "Normal",
  34525. height: math.unit(6 + 3/12, "feet"),
  34526. default: true
  34527. },
  34528. ]
  34529. ))
  34530. characterMakers.push(() => makeCharacter(
  34531. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34532. {
  34533. front: {
  34534. height: math.unit(5 + 6/12, "feet"),
  34535. weight: math.unit(170, "lb"),
  34536. name: "Front",
  34537. image: {
  34538. source: "./media/characters/mevolas-rubenido/front.svg",
  34539. extra: 2109/1901,
  34540. bottom: 96/2205
  34541. }
  34542. },
  34543. },
  34544. [
  34545. {
  34546. name: "Normal",
  34547. height: math.unit(5 + 6/12, "feet"),
  34548. default: true
  34549. },
  34550. ]
  34551. ))
  34552. characterMakers.push(() => makeCharacter(
  34553. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34554. {
  34555. front: {
  34556. height: math.unit(100, "feet"),
  34557. name: "Front",
  34558. image: {
  34559. source: "./media/characters/dee/front.svg",
  34560. extra: 2153/2036,
  34561. bottom: 59/2212
  34562. }
  34563. },
  34564. back: {
  34565. height: math.unit(100, "feet"),
  34566. name: "Back",
  34567. image: {
  34568. source: "./media/characters/dee/back.svg",
  34569. extra: 2183/2058,
  34570. bottom: 75/2258
  34571. }
  34572. },
  34573. foot: {
  34574. height: math.unit(19.43, "feet"),
  34575. name: "Foot",
  34576. image: {
  34577. source: "./media/characters/dee/foot.svg"
  34578. }
  34579. },
  34580. hoof: {
  34581. height: math.unit(20.6, "feet"),
  34582. name: "Hoof",
  34583. image: {
  34584. source: "./media/characters/dee/hoof.svg"
  34585. }
  34586. },
  34587. },
  34588. [
  34589. {
  34590. name: "Macro",
  34591. height: math.unit(100, "feet"),
  34592. default: true
  34593. },
  34594. ]
  34595. ))
  34596. characterMakers.push(() => makeCharacter(
  34597. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34598. {
  34599. front: {
  34600. height: math.unit(5 + 6/12, "feet"),
  34601. name: "Front",
  34602. image: {
  34603. source: "./media/characters/teh/front.svg",
  34604. extra: 1002/847,
  34605. bottom: 62/1064
  34606. }
  34607. },
  34608. },
  34609. [
  34610. {
  34611. name: "Normal",
  34612. height: math.unit(5 + 6/12, "feet"),
  34613. default: true
  34614. },
  34615. ]
  34616. ))
  34617. characterMakers.push(() => makeCharacter(
  34618. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34619. {
  34620. side: {
  34621. height: math.unit(6 + 1/12, "feet"),
  34622. weight: math.unit(204, "lb"),
  34623. name: "Side",
  34624. image: {
  34625. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34626. extra: 974/775,
  34627. bottom: 169/1143
  34628. }
  34629. },
  34630. sitting: {
  34631. height: math.unit(6 + 2/12, "feet"),
  34632. weight: math.unit(204, "lb"),
  34633. name: "Sitting",
  34634. image: {
  34635. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34636. extra: 1175/964,
  34637. bottom: 378/1553
  34638. }
  34639. },
  34640. },
  34641. [
  34642. {
  34643. name: "Normal",
  34644. height: math.unit(6 + 1/12, "feet"),
  34645. default: true
  34646. },
  34647. ]
  34648. ))
  34649. characterMakers.push(() => makeCharacter(
  34650. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34651. {
  34652. front: {
  34653. height: math.unit(6, "inches"),
  34654. name: "Front",
  34655. image: {
  34656. source: "./media/characters/tululi/front.svg",
  34657. extra: 1997/1876,
  34658. bottom: 20/2017
  34659. }
  34660. },
  34661. },
  34662. [
  34663. {
  34664. name: "Normal",
  34665. height: math.unit(6, "inches"),
  34666. default: true
  34667. },
  34668. ]
  34669. ))
  34670. characterMakers.push(() => makeCharacter(
  34671. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34672. {
  34673. front: {
  34674. height: math.unit(4 + 1/12, "feet"),
  34675. name: "Front",
  34676. image: {
  34677. source: "./media/characters/star/front.svg",
  34678. extra: 1493/1189,
  34679. bottom: 48/1541
  34680. }
  34681. },
  34682. },
  34683. [
  34684. {
  34685. name: "Normal",
  34686. height: math.unit(4 + 1/12, "feet"),
  34687. default: true
  34688. },
  34689. ]
  34690. ))
  34691. characterMakers.push(() => makeCharacter(
  34692. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34693. {
  34694. front: {
  34695. height: math.unit(6 + 3/12, "feet"),
  34696. name: "Front",
  34697. image: {
  34698. source: "./media/characters/comet/front.svg",
  34699. extra: 1681/1462,
  34700. bottom: 26/1707
  34701. }
  34702. },
  34703. },
  34704. [
  34705. {
  34706. name: "Normal",
  34707. height: math.unit(6 + 3/12, "feet"),
  34708. default: true
  34709. },
  34710. ]
  34711. ))
  34712. characterMakers.push(() => makeCharacter(
  34713. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34714. {
  34715. front: {
  34716. height: math.unit(950, "feet"),
  34717. name: "Front",
  34718. image: {
  34719. source: "./media/characters/vortex/front.svg",
  34720. extra: 1497/1434,
  34721. bottom: 56/1553
  34722. }
  34723. },
  34724. maw: {
  34725. height: math.unit(285, "feet"),
  34726. name: "Maw",
  34727. image: {
  34728. source: "./media/characters/vortex/maw.svg"
  34729. }
  34730. },
  34731. },
  34732. [
  34733. {
  34734. name: "Macro",
  34735. height: math.unit(950, "feet"),
  34736. default: true
  34737. },
  34738. ]
  34739. ))
  34740. characterMakers.push(() => makeCharacter(
  34741. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34742. {
  34743. front: {
  34744. height: math.unit(600, "feet"),
  34745. weight: math.unit(0.02, "grams"),
  34746. name: "Front",
  34747. image: {
  34748. source: "./media/characters/doodle/front.svg",
  34749. extra: 1578/1413,
  34750. bottom: 37/1615
  34751. }
  34752. },
  34753. },
  34754. [
  34755. {
  34756. name: "Macro",
  34757. height: math.unit(600, "feet"),
  34758. default: true
  34759. },
  34760. ]
  34761. ))
  34762. characterMakers.push(() => makeCharacter(
  34763. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34764. {
  34765. front: {
  34766. height: math.unit(6 + 6/12, "feet"),
  34767. name: "Front",
  34768. image: {
  34769. source: "./media/characters/jai/front.svg",
  34770. extra: 1645/1534,
  34771. bottom: 115/1760
  34772. }
  34773. },
  34774. },
  34775. [
  34776. {
  34777. name: "Normal",
  34778. height: math.unit(6 + 6/12, "feet"),
  34779. default: true
  34780. },
  34781. ]
  34782. ))
  34783. characterMakers.push(() => makeCharacter(
  34784. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34785. {
  34786. front: {
  34787. height: math.unit(6 + 8/12, "feet"),
  34788. name: "Front",
  34789. image: {
  34790. source: "./media/characters/pixel/front.svg",
  34791. extra: 1900/1735,
  34792. bottom: 63/1963
  34793. }
  34794. },
  34795. },
  34796. [
  34797. {
  34798. name: "Normal",
  34799. height: math.unit(6 + 8/12, "feet"),
  34800. default: true
  34801. },
  34802. ]
  34803. ))
  34804. characterMakers.push(() => makeCharacter(
  34805. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34806. {
  34807. front: {
  34808. height: math.unit(4 + 11/12, "feet"),
  34809. weight: math.unit(111, "lb"),
  34810. name: "Front",
  34811. image: {
  34812. source: "./media/characters/rhett/front.svg",
  34813. extra: 1682/1586,
  34814. bottom: 92/1774
  34815. }
  34816. },
  34817. },
  34818. [
  34819. {
  34820. name: "Mini",
  34821. height: math.unit(1 + 1/12, "feet")
  34822. },
  34823. {
  34824. name: "Normal",
  34825. height: math.unit(4 + 11/12, "feet"),
  34826. default: true
  34827. },
  34828. ]
  34829. ))
  34830. characterMakers.push(() => makeCharacter(
  34831. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34832. {
  34833. front: {
  34834. height: math.unit(3 + 3/12, "feet"),
  34835. name: "Front",
  34836. image: {
  34837. source: "./media/characters/penny/front.svg",
  34838. extra: 1406/1311,
  34839. bottom: 26/1432
  34840. }
  34841. },
  34842. },
  34843. [
  34844. {
  34845. name: "Normal",
  34846. height: math.unit(3 + 3/12, "feet"),
  34847. default: true
  34848. },
  34849. ]
  34850. ))
  34851. characterMakers.push(() => makeCharacter(
  34852. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34853. {
  34854. front: {
  34855. height: math.unit(4 + 11/12, "feet"),
  34856. name: "Front",
  34857. image: {
  34858. source: "./media/characters/monty/front.svg",
  34859. extra: 1479/1209,
  34860. bottom: 0/1479
  34861. }
  34862. },
  34863. },
  34864. [
  34865. {
  34866. name: "Normal",
  34867. height: math.unit(4 + 11/12, "feet"),
  34868. default: true
  34869. },
  34870. ]
  34871. ))
  34872. characterMakers.push(() => makeCharacter(
  34873. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34874. {
  34875. front: {
  34876. height: math.unit(8 + 4/12, "feet"),
  34877. name: "Front",
  34878. image: {
  34879. source: "./media/characters/sterling/front.svg",
  34880. extra: 1420/1236,
  34881. bottom: 27/1447
  34882. }
  34883. },
  34884. },
  34885. [
  34886. {
  34887. name: "Normal",
  34888. height: math.unit(8 + 4/12, "feet"),
  34889. default: true
  34890. },
  34891. ]
  34892. ))
  34893. characterMakers.push(() => makeCharacter(
  34894. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34895. {
  34896. front: {
  34897. height: math.unit(15, "feet"),
  34898. name: "Front",
  34899. image: {
  34900. source: "./media/characters/marble/front.svg",
  34901. extra: 973/937,
  34902. bottom: 32/1005
  34903. }
  34904. },
  34905. },
  34906. [
  34907. {
  34908. name: "Normal",
  34909. height: math.unit(15, "feet"),
  34910. default: true
  34911. },
  34912. ]
  34913. ))
  34914. characterMakers.push(() => makeCharacter(
  34915. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34916. {
  34917. front: {
  34918. height: math.unit(3, "inches"),
  34919. name: "Front",
  34920. image: {
  34921. source: "./media/characters/powder/front.svg",
  34922. extra: 1504/1334,
  34923. bottom: 518/2022
  34924. }
  34925. },
  34926. },
  34927. [
  34928. {
  34929. name: "Normal",
  34930. height: math.unit(3, "inches"),
  34931. default: true
  34932. },
  34933. ]
  34934. ))
  34935. characterMakers.push(() => makeCharacter(
  34936. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34937. {
  34938. front: {
  34939. height: math.unit(4 + 5/12, "feet"),
  34940. name: "Front",
  34941. image: {
  34942. source: "./media/characters/joey-raccoon/front.svg",
  34943. extra: 1273/1197,
  34944. bottom: 0/1273
  34945. }
  34946. },
  34947. },
  34948. [
  34949. {
  34950. name: "Normal",
  34951. height: math.unit(4 + 5/12, "feet"),
  34952. default: true
  34953. },
  34954. ]
  34955. ))
  34956. characterMakers.push(() => makeCharacter(
  34957. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34958. {
  34959. front: {
  34960. height: math.unit(8 + 4/12, "feet"),
  34961. name: "Front",
  34962. image: {
  34963. source: "./media/characters/vick/front.svg",
  34964. extra: 2187/2118,
  34965. bottom: 47/2234
  34966. }
  34967. },
  34968. },
  34969. [
  34970. {
  34971. name: "Normal",
  34972. height: math.unit(8 + 4/12, "feet"),
  34973. default: true
  34974. },
  34975. ]
  34976. ))
  34977. characterMakers.push(() => makeCharacter(
  34978. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34979. {
  34980. front: {
  34981. height: math.unit(5 + 5/12, "feet"),
  34982. name: "Front",
  34983. image: {
  34984. source: "./media/characters/mitsy/front.svg",
  34985. extra: 1842/1695,
  34986. bottom: 0/1842
  34987. }
  34988. },
  34989. },
  34990. [
  34991. {
  34992. name: "Normal",
  34993. height: math.unit(5 + 5/12, "feet"),
  34994. default: true
  34995. },
  34996. ]
  34997. ))
  34998. characterMakers.push(() => makeCharacter(
  34999. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35000. {
  35001. front: {
  35002. height: math.unit(6 + 3/12, "feet"),
  35003. name: "Front",
  35004. image: {
  35005. source: "./media/characters/silvy/front.svg",
  35006. extra: 1995/1836,
  35007. bottom: 225/2220
  35008. }
  35009. },
  35010. },
  35011. [
  35012. {
  35013. name: "Normal",
  35014. height: math.unit(6 + 3/12, "feet"),
  35015. default: true
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35021. {
  35022. front: {
  35023. height: math.unit(3 + 8/12, "feet"),
  35024. name: "Front",
  35025. image: {
  35026. source: "./media/characters/rodney/front.svg",
  35027. extra: 1956/1747,
  35028. bottom: 31/1987
  35029. }
  35030. },
  35031. frontDressed: {
  35032. height: math.unit(2.9, "feet"),
  35033. name: "Front (Dressed)",
  35034. image: {
  35035. source: "./media/characters/rodney/front-dressed.svg",
  35036. extra: 1382/1241,
  35037. bottom: 385/1767
  35038. }
  35039. },
  35040. },
  35041. [
  35042. {
  35043. name: "Normal",
  35044. height: math.unit(3 + 8/12, "feet"),
  35045. default: true
  35046. },
  35047. ]
  35048. ))
  35049. characterMakers.push(() => makeCharacter(
  35050. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35051. {
  35052. front: {
  35053. height: math.unit(5 + 9/12, "feet"),
  35054. weight: math.unit(194, "lbs"),
  35055. name: "Front",
  35056. image: {
  35057. source: "./media/characters/zakail-sudekai/front.svg",
  35058. extra: 2696/2533,
  35059. bottom: 248/2944
  35060. }
  35061. },
  35062. maw: {
  35063. height: math.unit(1.35, "feet"),
  35064. name: "Maw",
  35065. image: {
  35066. source: "./media/characters/zakail-sudekai/maw.svg"
  35067. }
  35068. },
  35069. },
  35070. [
  35071. {
  35072. name: "Normal",
  35073. height: math.unit(5 + 9/12, "feet"),
  35074. default: true
  35075. },
  35076. ]
  35077. ))
  35078. characterMakers.push(() => makeCharacter(
  35079. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35080. {
  35081. front: {
  35082. height: math.unit(8 + 4/12, "feet"),
  35083. weight: math.unit(1200, "lb"),
  35084. name: "Front",
  35085. image: {
  35086. source: "./media/characters/eleanor/front.svg",
  35087. extra: 1226/1192,
  35088. bottom: 52/1278
  35089. }
  35090. },
  35091. back: {
  35092. height: math.unit(8 + 4/12, "feet"),
  35093. weight: math.unit(1200, "lb"),
  35094. name: "Back",
  35095. image: {
  35096. source: "./media/characters/eleanor/back.svg",
  35097. extra: 1242/1184,
  35098. bottom: 60/1302
  35099. }
  35100. },
  35101. head: {
  35102. height: math.unit(2.62, "feet"),
  35103. name: "Head",
  35104. image: {
  35105. source: "./media/characters/eleanor/head.svg"
  35106. }
  35107. },
  35108. },
  35109. [
  35110. {
  35111. name: "Normal",
  35112. height: math.unit(8 + 4/12, "feet"),
  35113. default: true
  35114. },
  35115. ]
  35116. ))
  35117. characterMakers.push(() => makeCharacter(
  35118. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35119. {
  35120. front: {
  35121. height: math.unit(8 + 4/12, "feet"),
  35122. weight: math.unit(750, "lb"),
  35123. name: "Front",
  35124. image: {
  35125. source: "./media/characters/tanya/front.svg",
  35126. extra: 1749/1615,
  35127. bottom: 33/1782
  35128. }
  35129. },
  35130. },
  35131. [
  35132. {
  35133. name: "Normal",
  35134. height: math.unit(8 + 4/12, "feet"),
  35135. default: true
  35136. },
  35137. ]
  35138. ))
  35139. characterMakers.push(() => makeCharacter(
  35140. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35141. {
  35142. front: {
  35143. height: math.unit(5, "feet"),
  35144. weight: math.unit(225, "lb"),
  35145. name: "Front",
  35146. image: {
  35147. source: "./media/characters/cindy/front.svg",
  35148. extra: 1320/1250,
  35149. bottom: 42/1362
  35150. }
  35151. },
  35152. frontDressed: {
  35153. height: math.unit(5, "feet"),
  35154. weight: math.unit(225, "lb"),
  35155. name: "Front (Dressed)",
  35156. image: {
  35157. source: "./media/characters/cindy/front-dressed.svg",
  35158. extra: 1320/1250,
  35159. bottom: 42/1362
  35160. }
  35161. },
  35162. back: {
  35163. height: math.unit(5, "feet"),
  35164. weight: math.unit(225, "lb"),
  35165. name: "Back",
  35166. image: {
  35167. source: "./media/characters/cindy/back.svg",
  35168. extra: 1384/1346,
  35169. bottom: 14/1398
  35170. }
  35171. },
  35172. },
  35173. [
  35174. {
  35175. name: "Normal",
  35176. height: math.unit(5, "feet"),
  35177. default: true
  35178. },
  35179. ]
  35180. ))
  35181. characterMakers.push(() => makeCharacter(
  35182. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35183. {
  35184. front: {
  35185. height: math.unit(6 + 9/12, "feet"),
  35186. weight: math.unit(440, "lb"),
  35187. name: "Front",
  35188. image: {
  35189. source: "./media/characters/wilbur-owen/front.svg",
  35190. extra: 1575/1448,
  35191. bottom: 72/1647
  35192. }
  35193. },
  35194. back: {
  35195. height: math.unit(6 + 9/12, "feet"),
  35196. weight: math.unit(440, "lb"),
  35197. name: "Back",
  35198. image: {
  35199. source: "./media/characters/wilbur-owen/back.svg",
  35200. extra: 1578/1445,
  35201. bottom: 36/1614
  35202. }
  35203. },
  35204. },
  35205. [
  35206. {
  35207. name: "Normal",
  35208. height: math.unit(6 + 9/12, "feet"),
  35209. default: true
  35210. },
  35211. ]
  35212. ))
  35213. characterMakers.push(() => makeCharacter(
  35214. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35215. {
  35216. front: {
  35217. height: math.unit(6 + 5/12, "feet"),
  35218. weight: math.unit(650, "lb"),
  35219. name: "Front",
  35220. image: {
  35221. source: "./media/characters/keegan/front.svg",
  35222. extra: 2387/2198,
  35223. bottom: 33/2420
  35224. }
  35225. },
  35226. side: {
  35227. height: math.unit(6 + 5/12, "feet"),
  35228. weight: math.unit(650, "lb"),
  35229. name: "Side",
  35230. image: {
  35231. source: "./media/characters/keegan/side.svg",
  35232. extra: 2390/2202,
  35233. bottom: 47/2437
  35234. }
  35235. },
  35236. back: {
  35237. height: math.unit(6 + 5/12, "feet"),
  35238. weight: math.unit(650, "lb"),
  35239. name: "Back",
  35240. image: {
  35241. source: "./media/characters/keegan/back.svg",
  35242. extra: 2418/2268,
  35243. bottom: 15/2433
  35244. }
  35245. },
  35246. frontSfw: {
  35247. height: math.unit(6 + 5/12, "feet"),
  35248. weight: math.unit(650, "lb"),
  35249. name: "Front (SFW)",
  35250. image: {
  35251. source: "./media/characters/keegan/front-sfw.svg",
  35252. extra: 2387/2198,
  35253. bottom: 33/2420
  35254. }
  35255. },
  35256. beans: {
  35257. height: math.unit(1.85, "feet"),
  35258. name: "Beans",
  35259. image: {
  35260. source: "./media/characters/keegan/beans.svg"
  35261. }
  35262. },
  35263. },
  35264. [
  35265. {
  35266. name: "Normal",
  35267. height: math.unit(6 + 5/12, "feet"),
  35268. default: true
  35269. },
  35270. ]
  35271. ))
  35272. characterMakers.push(() => makeCharacter(
  35273. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35274. {
  35275. front: {
  35276. height: math.unit(9, "feet"),
  35277. name: "Front",
  35278. image: {
  35279. source: "./media/characters/colton/front.svg",
  35280. extra: 1589/1326,
  35281. bottom: 139/1728
  35282. }
  35283. },
  35284. },
  35285. [
  35286. {
  35287. name: "Normal",
  35288. height: math.unit(9, "feet"),
  35289. default: true
  35290. },
  35291. ]
  35292. ))
  35293. characterMakers.push(() => makeCharacter(
  35294. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35295. {
  35296. front: {
  35297. height: math.unit(2 + 9/12, "feet"),
  35298. name: "Front",
  35299. image: {
  35300. source: "./media/characters/bora/front.svg",
  35301. extra: 1265/1250,
  35302. bottom: 24/1289
  35303. }
  35304. },
  35305. },
  35306. [
  35307. {
  35308. name: "Normal",
  35309. height: math.unit(2 + 9/12, "feet"),
  35310. default: true
  35311. },
  35312. ]
  35313. ))
  35314. characterMakers.push(() => makeCharacter(
  35315. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35316. {
  35317. front: {
  35318. height: math.unit(8, "feet"),
  35319. name: "Front",
  35320. image: {
  35321. source: "./media/characters/myu-myu/front.svg",
  35322. extra: 1949/1857,
  35323. bottom: 90/2039
  35324. }
  35325. },
  35326. },
  35327. [
  35328. {
  35329. name: "Normal",
  35330. height: math.unit(8, "feet"),
  35331. default: true
  35332. },
  35333. {
  35334. name: "Big",
  35335. height: math.unit(15, "feet")
  35336. },
  35337. {
  35338. name: "BIG",
  35339. height: math.unit(25, "feet")
  35340. },
  35341. ]
  35342. ))
  35343. characterMakers.push(() => makeCharacter(
  35344. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35345. {
  35346. side: {
  35347. height: math.unit(7 + 5/12, "feet"),
  35348. weight: math.unit(2800, "lb"),
  35349. name: "Side",
  35350. image: {
  35351. source: "./media/characters/haloren/side.svg",
  35352. extra: 1793/409,
  35353. bottom: 59/1852
  35354. }
  35355. },
  35356. frontPaw: {
  35357. height: math.unit(2.36, "feet"),
  35358. name: "Front paw",
  35359. image: {
  35360. source: "./media/characters/haloren/front-paw.svg"
  35361. }
  35362. },
  35363. hindPaw: {
  35364. height: math.unit(3.18, "feet"),
  35365. name: "Hind paw",
  35366. image: {
  35367. source: "./media/characters/haloren/hind-paw.svg"
  35368. }
  35369. },
  35370. maw: {
  35371. height: math.unit(5.05, "feet"),
  35372. name: "Maw",
  35373. image: {
  35374. source: "./media/characters/haloren/maw.svg"
  35375. }
  35376. },
  35377. dick: {
  35378. height: math.unit(2.90, "feet"),
  35379. name: "Dick",
  35380. image: {
  35381. source: "./media/characters/haloren/dick.svg"
  35382. }
  35383. },
  35384. },
  35385. [
  35386. {
  35387. name: "Normal",
  35388. height: math.unit(7 + 5/12, "feet"),
  35389. default: true
  35390. },
  35391. {
  35392. name: "Enhanced",
  35393. height: math.unit(14 + 3/12, "feet")
  35394. },
  35395. ]
  35396. ))
  35397. characterMakers.push(() => makeCharacter(
  35398. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35399. {
  35400. front: {
  35401. height: math.unit(171, "cm"),
  35402. name: "Front",
  35403. image: {
  35404. source: "./media/characters/kimmy/front.svg",
  35405. extra: 1491/1435,
  35406. bottom: 53/1544
  35407. }
  35408. },
  35409. },
  35410. [
  35411. {
  35412. name: "Small",
  35413. height: math.unit(9, "cm")
  35414. },
  35415. {
  35416. name: "Normal",
  35417. height: math.unit(171, "cm"),
  35418. default: true
  35419. },
  35420. ]
  35421. ))
  35422. characterMakers.push(() => makeCharacter(
  35423. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35424. {
  35425. front: {
  35426. height: math.unit(8, "feet"),
  35427. weight: math.unit(300, "lb"),
  35428. name: "Front",
  35429. image: {
  35430. source: "./media/characters/galeboomer/front.svg",
  35431. extra: 4651/4415,
  35432. bottom: 162/4813
  35433. }
  35434. },
  35435. back: {
  35436. height: math.unit(8, "feet"),
  35437. weight: math.unit(300, "lb"),
  35438. name: "Back",
  35439. image: {
  35440. source: "./media/characters/galeboomer/back.svg",
  35441. extra: 4544/4314,
  35442. bottom: 16/4560
  35443. }
  35444. },
  35445. frontAlt: {
  35446. height: math.unit(8, "feet"),
  35447. weight: math.unit(300, "lb"),
  35448. name: "Front (Alt)",
  35449. image: {
  35450. source: "./media/characters/galeboomer/front-alt.svg",
  35451. extra: 4458/4228,
  35452. bottom: 68/4526
  35453. }
  35454. },
  35455. maw: {
  35456. height: math.unit(1.2, "feet"),
  35457. name: "Maw",
  35458. image: {
  35459. source: "./media/characters/galeboomer/maw.svg"
  35460. }
  35461. },
  35462. },
  35463. [
  35464. {
  35465. name: "Normal",
  35466. height: math.unit(8, "feet"),
  35467. default: true
  35468. },
  35469. ]
  35470. ))
  35471. characterMakers.push(() => makeCharacter(
  35472. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35473. {
  35474. front: {
  35475. height: math.unit(5 + 9/12, "feet"),
  35476. weight: math.unit(120, "lb"),
  35477. name: "Front",
  35478. image: {
  35479. source: "./media/characters/chyr/front.svg",
  35480. extra: 1323/1254,
  35481. bottom: 63/1386
  35482. }
  35483. },
  35484. back: {
  35485. height: math.unit(5 + 9/12, "feet"),
  35486. weight: math.unit(120, "lb"),
  35487. name: "Back",
  35488. image: {
  35489. source: "./media/characters/chyr/back.svg",
  35490. extra: 1323/1252,
  35491. bottom: 48/1371
  35492. }
  35493. },
  35494. },
  35495. [
  35496. {
  35497. name: "Normal",
  35498. height: math.unit(5 + 9/12, "feet"),
  35499. default: true
  35500. },
  35501. ]
  35502. ))
  35503. characterMakers.push(() => makeCharacter(
  35504. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35505. {
  35506. front: {
  35507. height: math.unit(7, "feet"),
  35508. weight: math.unit(310, "lb"),
  35509. name: "Front",
  35510. image: {
  35511. source: "./media/characters/solarus/front.svg",
  35512. extra: 2415/2021,
  35513. bottom: 103/2518
  35514. }
  35515. },
  35516. back: {
  35517. height: math.unit(7, "feet"),
  35518. weight: math.unit(310, "lb"),
  35519. name: "Back",
  35520. image: {
  35521. source: "./media/characters/solarus/back.svg",
  35522. extra: 2463/2089,
  35523. bottom: 79/2542
  35524. }
  35525. },
  35526. },
  35527. [
  35528. {
  35529. name: "Normal",
  35530. height: math.unit(7, "feet"),
  35531. default: true
  35532. },
  35533. ]
  35534. ))
  35535. characterMakers.push(() => makeCharacter(
  35536. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35537. {
  35538. front: {
  35539. height: math.unit(16, "feet"),
  35540. name: "Front",
  35541. image: {
  35542. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35543. extra: 1844/1780,
  35544. bottom: 58/1902
  35545. }
  35546. },
  35547. },
  35548. [
  35549. {
  35550. name: "Normal",
  35551. height: math.unit(16, "feet"),
  35552. default: true
  35553. },
  35554. ]
  35555. ))
  35556. characterMakers.push(() => makeCharacter(
  35557. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35558. {
  35559. front: {
  35560. height: math.unit(11 + 6/12, "feet"),
  35561. weight: math.unit(1366, "lb"),
  35562. name: "Front",
  35563. image: {
  35564. source: "./media/characters/lexor/front.svg",
  35565. extra: 1560/1481,
  35566. bottom: 211/1771
  35567. }
  35568. },
  35569. back: {
  35570. height: math.unit(11 + 6/12, "feet"),
  35571. weight: math.unit(1366, "lb"),
  35572. name: "Back",
  35573. image: {
  35574. source: "./media/characters/lexor/back.svg",
  35575. extra: 1614/1533,
  35576. bottom: 76/1690
  35577. }
  35578. },
  35579. maw: {
  35580. height: math.unit(3, "feet"),
  35581. name: "Maw",
  35582. image: {
  35583. source: "./media/characters/lexor/maw.svg"
  35584. }
  35585. },
  35586. dick: {
  35587. height: math.unit(2.59, "feet"),
  35588. name: "Dick",
  35589. image: {
  35590. source: "./media/characters/lexor/dick.svg"
  35591. }
  35592. },
  35593. },
  35594. [
  35595. {
  35596. name: "Normal",
  35597. height: math.unit(11 + 6/12, "feet"),
  35598. default: true
  35599. },
  35600. ]
  35601. ))
  35602. characterMakers.push(() => makeCharacter(
  35603. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35604. {
  35605. front: {
  35606. height: math.unit(5 + 8/12, "feet"),
  35607. name: "Front",
  35608. image: {
  35609. source: "./media/characters/magnum/front.svg",
  35610. extra: 942/855,
  35611. bottom: 26/968
  35612. }
  35613. },
  35614. },
  35615. [
  35616. {
  35617. name: "Normal",
  35618. height: math.unit(5 + 8/12, "feet"),
  35619. default: true
  35620. },
  35621. ]
  35622. ))
  35623. characterMakers.push(() => makeCharacter(
  35624. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35625. {
  35626. front: {
  35627. height: math.unit(18 + 4/12, "feet"),
  35628. weight: math.unit(1500, "kg"),
  35629. name: "Front",
  35630. image: {
  35631. source: "./media/characters/solas-sharpsman/front.svg",
  35632. extra: 1698/1589,
  35633. bottom: 0/1698
  35634. }
  35635. },
  35636. },
  35637. [
  35638. {
  35639. name: "Normal",
  35640. height: math.unit(18 + 4/12, "feet"),
  35641. default: true
  35642. },
  35643. ]
  35644. ))
  35645. characterMakers.push(() => makeCharacter(
  35646. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35647. {
  35648. front: {
  35649. height: math.unit(5 + 5/12, "feet"),
  35650. weight: math.unit(180, "lb"),
  35651. name: "Front",
  35652. image: {
  35653. source: "./media/characters/october/front.svg",
  35654. extra: 1800/1650,
  35655. bottom: 0/1800
  35656. }
  35657. },
  35658. frontNsfw: {
  35659. height: math.unit(5 + 5/12, "feet"),
  35660. weight: math.unit(180, "lb"),
  35661. name: "Front (NSFW)",
  35662. image: {
  35663. source: "./media/characters/october/front-nsfw.svg",
  35664. extra: 1392/1307,
  35665. bottom: 42/1434
  35666. }
  35667. },
  35668. },
  35669. [
  35670. {
  35671. name: "Normal",
  35672. height: math.unit(5 + 5/12, "feet"),
  35673. default: true
  35674. },
  35675. ]
  35676. ))
  35677. characterMakers.push(() => makeCharacter(
  35678. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35679. {
  35680. front: {
  35681. height: math.unit(8 + 6/12, "feet"),
  35682. name: "Front",
  35683. image: {
  35684. source: "./media/characters/essynkardi/front.svg",
  35685. extra: 1914/1846,
  35686. bottom: 22/1936
  35687. }
  35688. },
  35689. },
  35690. [
  35691. {
  35692. name: "Normal",
  35693. height: math.unit(8 + 6/12, "feet"),
  35694. default: true
  35695. },
  35696. ]
  35697. ))
  35698. characterMakers.push(() => makeCharacter(
  35699. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35700. {
  35701. front: {
  35702. height: math.unit(6 + 6/12, "feet"),
  35703. weight: math.unit(7, "lb"),
  35704. name: "Front",
  35705. image: {
  35706. source: "./media/characters/icky/front.svg",
  35707. extra: 813/782,
  35708. bottom: 66/879
  35709. }
  35710. },
  35711. back: {
  35712. height: math.unit(6 + 6/12, "feet"),
  35713. weight: math.unit(7, "lb"),
  35714. name: "Back",
  35715. image: {
  35716. source: "./media/characters/icky/back.svg",
  35717. extra: 754/735,
  35718. bottom: 56/810
  35719. }
  35720. },
  35721. },
  35722. [
  35723. {
  35724. name: "Normal",
  35725. height: math.unit(6 + 6/12, "feet"),
  35726. default: true
  35727. },
  35728. ]
  35729. ))
  35730. characterMakers.push(() => makeCharacter(
  35731. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35732. {
  35733. front: {
  35734. height: math.unit(15, "feet"),
  35735. name: "Front",
  35736. image: {
  35737. source: "./media/characters/rojas/front.svg",
  35738. extra: 1462/1408,
  35739. bottom: 95/1557
  35740. }
  35741. },
  35742. back: {
  35743. height: math.unit(15, "feet"),
  35744. name: "Back",
  35745. image: {
  35746. source: "./media/characters/rojas/back.svg",
  35747. extra: 1023/954,
  35748. bottom: 28/1051
  35749. }
  35750. },
  35751. },
  35752. [
  35753. {
  35754. name: "Normal",
  35755. height: math.unit(15, "feet"),
  35756. default: true
  35757. },
  35758. ]
  35759. ))
  35760. characterMakers.push(() => makeCharacter(
  35761. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35762. {
  35763. frontHuman: {
  35764. height: math.unit(5 + 7/12, "feet"),
  35765. name: "Front (Human)",
  35766. image: {
  35767. source: "./media/characters/alek-dryagan/front-human.svg",
  35768. extra: 1687/1667,
  35769. bottom: 69/1756
  35770. }
  35771. },
  35772. backHuman: {
  35773. height: math.unit(5 + 7/12, "feet"),
  35774. name: "Back (Human)",
  35775. image: {
  35776. source: "./media/characters/alek-dryagan/back-human.svg",
  35777. extra: 1670/1649,
  35778. bottom: 65/1735
  35779. }
  35780. },
  35781. frontDemi: {
  35782. height: math.unit(65, "feet"),
  35783. name: "Front (Demi)",
  35784. image: {
  35785. source: "./media/characters/alek-dryagan/front-demi.svg",
  35786. extra: 1669/1642,
  35787. bottom: 49/1718
  35788. }
  35789. },
  35790. backDemi: {
  35791. height: math.unit(65, "feet"),
  35792. name: "Back (Demi)",
  35793. image: {
  35794. source: "./media/characters/alek-dryagan/back-demi.svg",
  35795. extra: 1658/1637,
  35796. bottom: 40/1698
  35797. }
  35798. },
  35799. mawHuman: {
  35800. height: math.unit(0.3, "feet"),
  35801. name: "Maw (Human)",
  35802. image: {
  35803. source: "./media/characters/alek-dryagan/maw-human.svg"
  35804. }
  35805. },
  35806. mawDemi: {
  35807. height: math.unit(3.8, "feet"),
  35808. name: "Maw (Demi)",
  35809. image: {
  35810. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35811. }
  35812. },
  35813. },
  35814. [
  35815. {
  35816. name: "Normal",
  35817. height: math.unit(5 + 7/12, "feet"),
  35818. default: true
  35819. },
  35820. ]
  35821. ))
  35822. characterMakers.push(() => makeCharacter(
  35823. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35824. {
  35825. frontHuman: {
  35826. height: math.unit(5 + 2/12, "feet"),
  35827. name: "Front (Human)",
  35828. image: {
  35829. source: "./media/characters/gen/front-human.svg",
  35830. extra: 1627/1538,
  35831. bottom: 71/1698
  35832. }
  35833. },
  35834. backHuman: {
  35835. height: math.unit(5 + 2/12, "feet"),
  35836. name: "Back (Human)",
  35837. image: {
  35838. source: "./media/characters/gen/back-human.svg",
  35839. extra: 1638/1548,
  35840. bottom: 69/1707
  35841. }
  35842. },
  35843. frontDemi: {
  35844. height: math.unit(5 + 2/12, "feet"),
  35845. name: "Front (Demi)",
  35846. image: {
  35847. source: "./media/characters/gen/front-demi.svg",
  35848. extra: 1627/1538,
  35849. bottom: 71/1698
  35850. }
  35851. },
  35852. backDemi: {
  35853. height: math.unit(5 + 2/12, "feet"),
  35854. name: "Back (Demi)",
  35855. image: {
  35856. source: "./media/characters/gen/back-demi.svg",
  35857. extra: 1638/1548,
  35858. bottom: 69/1707
  35859. }
  35860. },
  35861. },
  35862. [
  35863. {
  35864. name: "Normal",
  35865. height: math.unit(5 + 2/12, "feet"),
  35866. default: true
  35867. },
  35868. ]
  35869. ))
  35870. characterMakers.push(() => makeCharacter(
  35871. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35872. {
  35873. frontImp: {
  35874. height: math.unit(1 + 11/12, "feet"),
  35875. name: "Front (Imp)",
  35876. image: {
  35877. source: "./media/characters/max-kobold/front-imp.svg",
  35878. extra: 1238/1134,
  35879. bottom: 81/1319
  35880. }
  35881. },
  35882. backImp: {
  35883. height: math.unit(1 + 11/12, "feet"),
  35884. name: "Back (Imp)",
  35885. image: {
  35886. source: "./media/characters/max-kobold/back-imp.svg",
  35887. extra: 1334/1175,
  35888. bottom: 34/1368
  35889. }
  35890. },
  35891. frontDemi: {
  35892. height: math.unit(5 + 9/12, "feet"),
  35893. name: "Front (Demi)",
  35894. image: {
  35895. source: "./media/characters/max-kobold/front-demi.svg",
  35896. extra: 1715/1685,
  35897. bottom: 54/1769
  35898. }
  35899. },
  35900. backDemi: {
  35901. height: math.unit(5 + 9/12, "feet"),
  35902. name: "Back (Demi)",
  35903. image: {
  35904. source: "./media/characters/max-kobold/back-demi.svg",
  35905. extra: 1752/1729,
  35906. bottom: 41/1793
  35907. }
  35908. },
  35909. handImp: {
  35910. height: math.unit(0.45, "feet"),
  35911. name: "Hand (Imp)",
  35912. image: {
  35913. source: "./media/characters/max-kobold/hand.svg"
  35914. }
  35915. },
  35916. pawImp: {
  35917. height: math.unit(0.46, "feet"),
  35918. name: "Paw (Imp)",
  35919. image: {
  35920. source: "./media/characters/max-kobold/paw.svg"
  35921. }
  35922. },
  35923. handDemi: {
  35924. height: math.unit(0.80, "feet"),
  35925. name: "Hand (Demi)",
  35926. image: {
  35927. source: "./media/characters/max-kobold/hand.svg"
  35928. }
  35929. },
  35930. pawDemi: {
  35931. height: math.unit(1.1, "feet"),
  35932. name: "Paw (Demi)",
  35933. image: {
  35934. source: "./media/characters/max-kobold/paw.svg"
  35935. }
  35936. },
  35937. headImp: {
  35938. height: math.unit(1.33, "feet"),
  35939. name: "Head (Imp)",
  35940. image: {
  35941. source: "./media/characters/max-kobold/head-imp.svg"
  35942. }
  35943. },
  35944. mawImp: {
  35945. height: math.unit(0.75, "feet"),
  35946. name: "Maw (Imp)",
  35947. image: {
  35948. source: "./media/characters/max-kobold/maw-imp.svg"
  35949. }
  35950. },
  35951. mawDemi: {
  35952. height: math.unit(0.42, "feet"),
  35953. name: "Maw (Demi)",
  35954. image: {
  35955. source: "./media/characters/max-kobold/maw-demi.svg"
  35956. }
  35957. },
  35958. },
  35959. [
  35960. {
  35961. name: "Normal",
  35962. height: math.unit(1 + 11/12, "feet"),
  35963. default: true
  35964. },
  35965. ]
  35966. ))
  35967. characterMakers.push(() => makeCharacter(
  35968. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35969. {
  35970. front: {
  35971. height: math.unit(7 + 5/12, "feet"),
  35972. name: "Front",
  35973. image: {
  35974. source: "./media/characters/carbon/front.svg",
  35975. extra: 1754/1689,
  35976. bottom: 65/1819
  35977. }
  35978. },
  35979. back: {
  35980. height: math.unit(7 + 5/12, "feet"),
  35981. name: "Back",
  35982. image: {
  35983. source: "./media/characters/carbon/back.svg",
  35984. extra: 1762/1695,
  35985. bottom: 24/1786
  35986. }
  35987. },
  35988. frontGigantamax: {
  35989. height: math.unit(150, "feet"),
  35990. name: "Front (Gigantamax)",
  35991. image: {
  35992. source: "./media/characters/carbon/front-gigantamax.svg",
  35993. extra: 1826/1669,
  35994. bottom: 59/1885
  35995. }
  35996. },
  35997. backGigantamax: {
  35998. height: math.unit(150, "feet"),
  35999. name: "Back (Gigantamax)",
  36000. image: {
  36001. source: "./media/characters/carbon/back-gigantamax.svg",
  36002. extra: 1796/1653,
  36003. bottom: 53/1849
  36004. }
  36005. },
  36006. maw: {
  36007. height: math.unit(0.48, "feet"),
  36008. name: "Maw",
  36009. image: {
  36010. source: "./media/characters/carbon/maw.svg"
  36011. }
  36012. },
  36013. mawGigantamax: {
  36014. height: math.unit(7.5, "feet"),
  36015. name: "Maw (Gigantamax)",
  36016. image: {
  36017. source: "./media/characters/carbon/maw-gigantamax.svg"
  36018. }
  36019. },
  36020. },
  36021. [
  36022. {
  36023. name: "Normal",
  36024. height: math.unit(7 + 5/12, "feet"),
  36025. default: true
  36026. },
  36027. ]
  36028. ))
  36029. characterMakers.push(() => makeCharacter(
  36030. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36031. {
  36032. front: {
  36033. height: math.unit(6, "feet"),
  36034. name: "Front",
  36035. image: {
  36036. source: "./media/characters/maverick/front.svg",
  36037. extra: 1672/1661,
  36038. bottom: 85/1757
  36039. }
  36040. },
  36041. back: {
  36042. height: math.unit(6, "feet"),
  36043. name: "Back",
  36044. image: {
  36045. source: "./media/characters/maverick/back.svg",
  36046. extra: 1642/1631,
  36047. bottom: 38/1680
  36048. }
  36049. },
  36050. },
  36051. [
  36052. {
  36053. name: "Normal",
  36054. height: math.unit(6, "feet"),
  36055. default: true
  36056. },
  36057. ]
  36058. ))
  36059. characterMakers.push(() => makeCharacter(
  36060. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36061. {
  36062. front: {
  36063. height: math.unit(15, "feet"),
  36064. weight: math.unit(615, "lb"),
  36065. name: "Front",
  36066. image: {
  36067. source: "./media/characters/grockle/front.svg",
  36068. extra: 1535/1427,
  36069. bottom: 56/1591
  36070. }
  36071. },
  36072. },
  36073. [
  36074. {
  36075. name: "Normal",
  36076. height: math.unit(15, "feet"),
  36077. default: true
  36078. },
  36079. {
  36080. name: "Large",
  36081. height: math.unit(150, "feet")
  36082. },
  36083. {
  36084. name: "Macro",
  36085. height: math.unit(1876, "feet")
  36086. },
  36087. {
  36088. name: "Mega Macro",
  36089. height: math.unit(121940, "feet")
  36090. },
  36091. {
  36092. name: "Giga Macro",
  36093. height: math.unit(750, "km")
  36094. },
  36095. {
  36096. name: "Tera Macro",
  36097. height: math.unit(750000, "km")
  36098. },
  36099. {
  36100. name: "Galactic",
  36101. height: math.unit(1.4e5, "km")
  36102. },
  36103. {
  36104. name: "Godlike",
  36105. height: math.unit(9.8e280, "galaxies")
  36106. },
  36107. ]
  36108. ))
  36109. characterMakers.push(() => makeCharacter(
  36110. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36111. {
  36112. front: {
  36113. height: math.unit(11, "meters"),
  36114. weight: math.unit(20, "tonnes"),
  36115. name: "Front",
  36116. image: {
  36117. source: "./media/characters/alistair/front.svg",
  36118. extra: 1265/1009,
  36119. bottom: 93/1358
  36120. }
  36121. },
  36122. },
  36123. [
  36124. {
  36125. name: "Normal",
  36126. height: math.unit(11, "meters"),
  36127. default: true
  36128. },
  36129. ]
  36130. ))
  36131. characterMakers.push(() => makeCharacter(
  36132. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36133. {
  36134. front: {
  36135. height: math.unit(5 + 8/12, "feet"),
  36136. name: "Front",
  36137. image: {
  36138. source: "./media/characters/haruka/front.svg",
  36139. extra: 2012/1952,
  36140. bottom: 0/2012
  36141. }
  36142. },
  36143. },
  36144. [
  36145. {
  36146. name: "Normal",
  36147. height: math.unit(5 + 8/12, "feet"),
  36148. default: true
  36149. },
  36150. ]
  36151. ))
  36152. characterMakers.push(() => makeCharacter(
  36153. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36154. {
  36155. back: {
  36156. height: math.unit(9, "feet"),
  36157. name: "Back",
  36158. image: {
  36159. source: "./media/characters/vivian-sylveon/back.svg",
  36160. extra: 1853/1714,
  36161. bottom: 0/1853
  36162. }
  36163. },
  36164. },
  36165. [
  36166. {
  36167. name: "Normal",
  36168. height: math.unit(9, "feet"),
  36169. default: true
  36170. },
  36171. {
  36172. name: "Macro",
  36173. height: math.unit(500, "feet")
  36174. },
  36175. {
  36176. name: "Megamacro",
  36177. height: math.unit(600, "miles")
  36178. },
  36179. {
  36180. name: "Gigamacro",
  36181. height: math.unit(30000, "miles")
  36182. },
  36183. ]
  36184. ))
  36185. characterMakers.push(() => makeCharacter(
  36186. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36187. {
  36188. anthro: {
  36189. height: math.unit(5 + 10/12, "feet"),
  36190. weight: math.unit(100, "lb"),
  36191. name: "Anthro",
  36192. image: {
  36193. source: "./media/characters/daiki/anthro.svg",
  36194. extra: 1115/1027,
  36195. bottom: 69/1184
  36196. }
  36197. },
  36198. feral: {
  36199. height: math.unit(200, "feet"),
  36200. name: "Feral",
  36201. image: {
  36202. source: "./media/characters/daiki/feral.svg",
  36203. extra: 1256/313,
  36204. bottom: 39/1295
  36205. }
  36206. },
  36207. feralHead: {
  36208. height: math.unit(171, "feet"),
  36209. name: "Feral Head",
  36210. image: {
  36211. source: "./media/characters/daiki/feral-head.svg"
  36212. }
  36213. },
  36214. },
  36215. [
  36216. {
  36217. name: "Normal",
  36218. height: math.unit(5 + 10/12, "feet"),
  36219. default: true
  36220. },
  36221. ]
  36222. ))
  36223. characterMakers.push(() => makeCharacter(
  36224. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36225. {
  36226. fullyEquippedFront: {
  36227. height: math.unit(3 + 1/12, "feet"),
  36228. weight: math.unit(24, "lb"),
  36229. name: "Fully Equipped (Front)",
  36230. image: {
  36231. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36232. extra: 687/605,
  36233. bottom: 18/705
  36234. }
  36235. },
  36236. fullyEquippedBack: {
  36237. height: math.unit(3 + 1/12, "feet"),
  36238. weight: math.unit(24, "lb"),
  36239. name: "Fully Equipped (Back)",
  36240. image: {
  36241. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36242. extra: 689/590,
  36243. bottom: 18/707
  36244. }
  36245. },
  36246. dailyWear: {
  36247. height: math.unit(3 + 1/12, "feet"),
  36248. weight: math.unit(24, "lb"),
  36249. name: "Daily Wear",
  36250. image: {
  36251. source: "./media/characters/tea-spot/daily-wear.svg",
  36252. extra: 701/620,
  36253. bottom: 21/722
  36254. }
  36255. },
  36256. maidWork: {
  36257. height: math.unit(3 + 1/12, "feet"),
  36258. weight: math.unit(24, "lb"),
  36259. name: "Maid Work",
  36260. image: {
  36261. source: "./media/characters/tea-spot/maid-work.svg",
  36262. extra: 693/609,
  36263. bottom: 15/708
  36264. }
  36265. },
  36266. },
  36267. [
  36268. {
  36269. name: "Normal",
  36270. height: math.unit(3 + 1/12, "feet"),
  36271. default: true
  36272. },
  36273. ]
  36274. ))
  36275. characterMakers.push(() => makeCharacter(
  36276. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36277. {
  36278. front: {
  36279. height: math.unit(175, "cm"),
  36280. weight: math.unit(75, "kg"),
  36281. name: "Front",
  36282. image: {
  36283. source: "./media/characters/chee/front.svg",
  36284. extra: 1796/1740,
  36285. bottom: 40/1836
  36286. }
  36287. },
  36288. },
  36289. [
  36290. {
  36291. name: "Micro-Micro",
  36292. height: math.unit(1, "nm")
  36293. },
  36294. {
  36295. name: "Micro-erst",
  36296. height: math.unit(1, "micrometer")
  36297. },
  36298. {
  36299. name: "Micro-er",
  36300. height: math.unit(1, "cm")
  36301. },
  36302. {
  36303. name: "Normal",
  36304. height: math.unit(175, "cm"),
  36305. default: true
  36306. },
  36307. {
  36308. name: "Macro",
  36309. height: math.unit(100, "m")
  36310. },
  36311. {
  36312. name: "Macro-er",
  36313. height: math.unit(1, "km")
  36314. },
  36315. {
  36316. name: "Macro-erst",
  36317. height: math.unit(10, "km")
  36318. },
  36319. {
  36320. name: "Macro-Macro",
  36321. height: math.unit(100, "km")
  36322. },
  36323. ]
  36324. ))
  36325. characterMakers.push(() => makeCharacter(
  36326. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36327. {
  36328. front: {
  36329. height: math.unit(11 + 9/12, "feet"),
  36330. weight: math.unit(935, "lb"),
  36331. name: "Front",
  36332. image: {
  36333. source: "./media/characters/kingsley/front.svg",
  36334. extra: 1803/1674,
  36335. bottom: 127/1930
  36336. }
  36337. },
  36338. frontNude: {
  36339. height: math.unit(11 + 9/12, "feet"),
  36340. weight: math.unit(935, "lb"),
  36341. name: "Front (Nude)",
  36342. image: {
  36343. source: "./media/characters/kingsley/front-nude.svg",
  36344. extra: 1803/1674,
  36345. bottom: 127/1930
  36346. }
  36347. },
  36348. },
  36349. [
  36350. {
  36351. name: "Normal",
  36352. height: math.unit(11 + 9/12, "feet"),
  36353. default: true
  36354. },
  36355. ]
  36356. ))
  36357. characterMakers.push(() => makeCharacter(
  36358. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36359. {
  36360. side: {
  36361. height: math.unit(9, "feet"),
  36362. name: "Side",
  36363. image: {
  36364. source: "./media/characters/rymel/side.svg",
  36365. extra: 792/469,
  36366. bottom: 121/913
  36367. }
  36368. },
  36369. maw: {
  36370. height: math.unit(2.4, "meters"),
  36371. name: "Maw",
  36372. image: {
  36373. source: "./media/characters/rymel/maw.svg"
  36374. }
  36375. },
  36376. },
  36377. [
  36378. {
  36379. name: "House Drake",
  36380. height: math.unit(2, "feet")
  36381. },
  36382. {
  36383. name: "Reduced",
  36384. height: math.unit(4.5, "feet")
  36385. },
  36386. {
  36387. name: "Normal",
  36388. height: math.unit(9, "feet"),
  36389. default: true
  36390. },
  36391. ]
  36392. ))
  36393. characterMakers.push(() => makeCharacter(
  36394. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36395. {
  36396. front: {
  36397. height: math.unit(1.74, "meters"),
  36398. weight: math.unit(55, "kg"),
  36399. name: "Front",
  36400. image: {
  36401. source: "./media/characters/rubus/front.svg",
  36402. extra: 1894/1742,
  36403. bottom: 44/1938
  36404. }
  36405. },
  36406. },
  36407. [
  36408. {
  36409. name: "Normal",
  36410. height: math.unit(1.74, "meters"),
  36411. default: true
  36412. },
  36413. ]
  36414. ))
  36415. characterMakers.push(() => makeCharacter(
  36416. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36417. {
  36418. front: {
  36419. height: math.unit(5 + 2/12, "feet"),
  36420. weight: math.unit(112, "lb"),
  36421. name: "Front",
  36422. image: {
  36423. source: "./media/characters/cassie-kingston/front.svg",
  36424. extra: 1438/1390,
  36425. bottom: 47/1485
  36426. }
  36427. },
  36428. },
  36429. [
  36430. {
  36431. name: "Normal",
  36432. height: math.unit(5 + 2/12, "feet"),
  36433. default: true
  36434. },
  36435. {
  36436. name: "Macro",
  36437. height: math.unit(128, "feet")
  36438. },
  36439. {
  36440. name: "Megamacro",
  36441. height: math.unit(2.56, "miles")
  36442. },
  36443. ]
  36444. ))
  36445. characterMakers.push(() => makeCharacter(
  36446. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36447. {
  36448. front: {
  36449. height: math.unit(7, "feet"),
  36450. name: "Front",
  36451. image: {
  36452. source: "./media/characters/fox/front.svg",
  36453. extra: 1798/1703,
  36454. bottom: 55/1853
  36455. }
  36456. },
  36457. back: {
  36458. height: math.unit(7, "feet"),
  36459. name: "Back",
  36460. image: {
  36461. source: "./media/characters/fox/back.svg",
  36462. extra: 1748/1649,
  36463. bottom: 32/1780
  36464. }
  36465. },
  36466. head: {
  36467. height: math.unit(1.95, "feet"),
  36468. name: "Head",
  36469. image: {
  36470. source: "./media/characters/fox/head.svg"
  36471. }
  36472. },
  36473. dick: {
  36474. height: math.unit(1.33, "feet"),
  36475. name: "Dick",
  36476. image: {
  36477. source: "./media/characters/fox/dick.svg"
  36478. }
  36479. },
  36480. foot: {
  36481. height: math.unit(1, "feet"),
  36482. name: "Foot",
  36483. image: {
  36484. source: "./media/characters/fox/foot.svg"
  36485. }
  36486. },
  36487. paw: {
  36488. height: math.unit(0.92, "feet"),
  36489. name: "Paw",
  36490. image: {
  36491. source: "./media/characters/fox/paw.svg"
  36492. }
  36493. },
  36494. },
  36495. [
  36496. {
  36497. name: "Small",
  36498. height: math.unit(3, "inches")
  36499. },
  36500. {
  36501. name: "\"Realistic\"",
  36502. height: math.unit(7, "feet")
  36503. },
  36504. {
  36505. name: "Normal",
  36506. height: math.unit(150, "feet"),
  36507. default: true
  36508. },
  36509. {
  36510. name: "BIG",
  36511. height: math.unit(1200, "feet")
  36512. },
  36513. {
  36514. name: "👀",
  36515. height: math.unit(5, "miles")
  36516. },
  36517. {
  36518. name: "👀👀👀",
  36519. height: math.unit(64, "miles")
  36520. },
  36521. ]
  36522. ))
  36523. characterMakers.push(() => makeCharacter(
  36524. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36525. {
  36526. front: {
  36527. height: math.unit(625, "feet"),
  36528. name: "Front",
  36529. image: {
  36530. source: "./media/characters/asonja-rossa/front.svg",
  36531. extra: 1833/1686,
  36532. bottom: 24/1857
  36533. }
  36534. },
  36535. back: {
  36536. height: math.unit(625, "feet"),
  36537. name: "Back",
  36538. image: {
  36539. source: "./media/characters/asonja-rossa/back.svg",
  36540. extra: 1852/1753,
  36541. bottom: 26/1878
  36542. }
  36543. },
  36544. },
  36545. [
  36546. {
  36547. name: "Macro",
  36548. height: math.unit(625, "feet"),
  36549. default: true
  36550. },
  36551. ]
  36552. ))
  36553. characterMakers.push(() => makeCharacter(
  36554. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36555. {
  36556. side: {
  36557. height: math.unit(6, "feet"),
  36558. weight: math.unit(150, "lb"),
  36559. name: "Side",
  36560. image: {
  36561. source: "./media/characters/rezukii/side.svg",
  36562. extra: 979/542,
  36563. bottom: 87/1066
  36564. }
  36565. },
  36566. },
  36567. [
  36568. {
  36569. name: "Tiny",
  36570. height: math.unit(2, "feet")
  36571. },
  36572. {
  36573. name: "Smol",
  36574. height: math.unit(4, "feet")
  36575. },
  36576. {
  36577. name: "Normal",
  36578. height: math.unit(8, "feet"),
  36579. default: true
  36580. },
  36581. {
  36582. name: "Big",
  36583. height: math.unit(12, "feet")
  36584. },
  36585. {
  36586. name: "Macro",
  36587. height: math.unit(30, "feet")
  36588. },
  36589. ]
  36590. ))
  36591. characterMakers.push(() => makeCharacter(
  36592. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36593. {
  36594. front: {
  36595. height: math.unit(14, "feet"),
  36596. weight: math.unit(9.5, "tonnes"),
  36597. name: "Front",
  36598. image: {
  36599. source: "./media/characters/dawnheart/front.svg",
  36600. extra: 2792/2675,
  36601. bottom: 64/2856
  36602. }
  36603. },
  36604. },
  36605. [
  36606. {
  36607. name: "Normal",
  36608. height: math.unit(14, "feet"),
  36609. default: true
  36610. },
  36611. ]
  36612. ))
  36613. characterMakers.push(() => makeCharacter(
  36614. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36615. {
  36616. front: {
  36617. height: math.unit(1.7, "m"),
  36618. name: "Front",
  36619. image: {
  36620. source: "./media/characters/gladi/front.svg",
  36621. extra: 1460/1362,
  36622. bottom: 19/1479
  36623. }
  36624. },
  36625. back: {
  36626. height: math.unit(1.7, "m"),
  36627. name: "Back",
  36628. image: {
  36629. source: "./media/characters/gladi/back.svg",
  36630. extra: 1459/1357,
  36631. bottom: 12/1471
  36632. }
  36633. },
  36634. feral: {
  36635. height: math.unit(2.05, "m"),
  36636. name: "Feral",
  36637. image: {
  36638. source: "./media/characters/gladi/feral.svg",
  36639. extra: 821/557,
  36640. bottom: 91/912
  36641. }
  36642. },
  36643. },
  36644. [
  36645. {
  36646. name: "Shortest",
  36647. height: math.unit(70, "cm")
  36648. },
  36649. {
  36650. name: "Normal",
  36651. height: math.unit(1.7, "m")
  36652. },
  36653. {
  36654. name: "Macro",
  36655. height: math.unit(10, "m"),
  36656. default: true
  36657. },
  36658. {
  36659. name: "Tallest",
  36660. height: math.unit(200, "m")
  36661. },
  36662. ]
  36663. ))
  36664. characterMakers.push(() => makeCharacter(
  36665. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36666. {
  36667. front: {
  36668. height: math.unit(5 + 7/12, "feet"),
  36669. weight: math.unit(92, "kg"),
  36670. name: "Front",
  36671. image: {
  36672. source: "./media/characters/erdno/front.svg",
  36673. extra: 1954/1889,
  36674. bottom: 22/1976
  36675. }
  36676. },
  36677. },
  36678. [
  36679. {
  36680. name: "Normal",
  36681. height: math.unit(5 + 7/12, "feet"),
  36682. default: true
  36683. },
  36684. ]
  36685. ))
  36686. characterMakers.push(() => makeCharacter(
  36687. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36688. {
  36689. front: {
  36690. height: math.unit(5 + 10/12, "feet"),
  36691. weight: math.unit(150, "lb"),
  36692. name: "Front",
  36693. image: {
  36694. source: "./media/characters/jamie/front.svg",
  36695. extra: 1908/1768,
  36696. bottom: 19/1927
  36697. }
  36698. },
  36699. },
  36700. [
  36701. {
  36702. name: "Minimum",
  36703. height: math.unit(2, "cm")
  36704. },
  36705. {
  36706. name: "Micro",
  36707. height: math.unit(3, "inches")
  36708. },
  36709. {
  36710. name: "Normal",
  36711. height: math.unit(5 + 10/12, "feet"),
  36712. default: true
  36713. },
  36714. {
  36715. name: "Macro",
  36716. height: math.unit(150, "feet")
  36717. },
  36718. {
  36719. name: "Megamacro",
  36720. height: math.unit(10000, "m")
  36721. },
  36722. ]
  36723. ))
  36724. characterMakers.push(() => makeCharacter(
  36725. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36726. {
  36727. front: {
  36728. height: math.unit(2, "meters"),
  36729. weight: math.unit(100, "kg"),
  36730. name: "Front",
  36731. image: {
  36732. source: "./media/characters/shiron/front.svg",
  36733. extra: 2103/1985,
  36734. bottom: 98/2201
  36735. }
  36736. },
  36737. back: {
  36738. height: math.unit(2, "meters"),
  36739. weight: math.unit(100, "kg"),
  36740. name: "Back",
  36741. image: {
  36742. source: "./media/characters/shiron/back.svg",
  36743. extra: 2110/2015,
  36744. bottom: 89/2199
  36745. }
  36746. },
  36747. hand: {
  36748. height: math.unit(0.96, "feet"),
  36749. name: "Hand",
  36750. image: {
  36751. source: "./media/characters/shiron/hand.svg"
  36752. }
  36753. },
  36754. foot: {
  36755. height: math.unit(1.464, "feet"),
  36756. name: "Foot",
  36757. image: {
  36758. source: "./media/characters/shiron/foot.svg"
  36759. }
  36760. },
  36761. },
  36762. [
  36763. {
  36764. name: "Normal",
  36765. height: math.unit(2, "meters")
  36766. },
  36767. {
  36768. name: "Macro",
  36769. height: math.unit(500, "meters"),
  36770. default: true
  36771. },
  36772. {
  36773. name: "Megamacro",
  36774. height: math.unit(20, "km")
  36775. },
  36776. ]
  36777. ))
  36778. characterMakers.push(() => makeCharacter(
  36779. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36780. {
  36781. front: {
  36782. height: math.unit(6, "feet"),
  36783. name: "Front",
  36784. image: {
  36785. source: "./media/characters/sam/front.svg",
  36786. extra: 849/826,
  36787. bottom: 19/868
  36788. }
  36789. },
  36790. },
  36791. [
  36792. {
  36793. name: "Normal",
  36794. height: math.unit(6, "feet"),
  36795. default: true
  36796. },
  36797. ]
  36798. ))
  36799. characterMakers.push(() => makeCharacter(
  36800. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36801. {
  36802. front: {
  36803. height: math.unit(8 + 4/12, "feet"),
  36804. weight: math.unit(122, "kg"),
  36805. name: "Front",
  36806. image: {
  36807. source: "./media/characters/namori-kurogawa/front.svg",
  36808. extra: 1894/1576,
  36809. bottom: 34/1928
  36810. }
  36811. },
  36812. },
  36813. [
  36814. {
  36815. name: "Normal",
  36816. height: math.unit(8 + 4/12, "feet"),
  36817. default: true
  36818. },
  36819. ]
  36820. ))
  36821. characterMakers.push(() => makeCharacter(
  36822. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36823. {
  36824. front: {
  36825. height: math.unit(9, "feet"),
  36826. weight: math.unit(621, "lb"),
  36827. name: "Front",
  36828. image: {
  36829. source: "./media/characters/unmru/front.svg",
  36830. extra: 1853/1747,
  36831. bottom: 73/1926
  36832. }
  36833. },
  36834. side: {
  36835. height: math.unit(9, "feet"),
  36836. weight: math.unit(621, "lb"),
  36837. name: "Side",
  36838. image: {
  36839. source: "./media/characters/unmru/side.svg",
  36840. extra: 1781/1671,
  36841. bottom: 127/1908
  36842. }
  36843. },
  36844. back: {
  36845. height: math.unit(9, "feet"),
  36846. weight: math.unit(621, "lb"),
  36847. name: "Back",
  36848. image: {
  36849. source: "./media/characters/unmru/back.svg",
  36850. extra: 1894/1765,
  36851. bottom: 75/1969
  36852. }
  36853. },
  36854. dick: {
  36855. height: math.unit(3, "feet"),
  36856. weight: math.unit(35, "lb"),
  36857. name: "Dick",
  36858. image: {
  36859. source: "./media/characters/unmru/dick.svg"
  36860. }
  36861. },
  36862. },
  36863. [
  36864. {
  36865. name: "Normal",
  36866. height: math.unit(9, "feet")
  36867. },
  36868. {
  36869. name: "Natural",
  36870. height: math.unit(27, "feet"),
  36871. default: true
  36872. },
  36873. {
  36874. name: "Giant",
  36875. height: math.unit(90, "feet")
  36876. },
  36877. {
  36878. name: "Kaiju",
  36879. height: math.unit(270, "feet")
  36880. },
  36881. {
  36882. name: "Macro",
  36883. height: math.unit(900, "feet")
  36884. },
  36885. {
  36886. name: "Macro+",
  36887. height: math.unit(2700, "feet")
  36888. },
  36889. {
  36890. name: "Megamacro",
  36891. height: math.unit(9000, "feet")
  36892. },
  36893. {
  36894. name: "City-Crushing",
  36895. height: math.unit(27000, "feet")
  36896. },
  36897. {
  36898. name: "Mountain-Mashing",
  36899. height: math.unit(90000, "feet")
  36900. },
  36901. {
  36902. name: "Earth-Eclipsing",
  36903. height: math.unit(2.7e8, "feet")
  36904. },
  36905. {
  36906. name: "Sol-Swallowing",
  36907. height: math.unit(9e10, "feet")
  36908. },
  36909. {
  36910. name: "Majoris-Munching",
  36911. height: math.unit(2.7e13, "feet")
  36912. },
  36913. ]
  36914. ))
  36915. characterMakers.push(() => makeCharacter(
  36916. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  36917. {
  36918. front: {
  36919. height: math.unit(1, "inch"),
  36920. name: "Front",
  36921. image: {
  36922. source: "./media/characters/squeaks-mouse/front.svg",
  36923. extra: 352/308,
  36924. bottom: 25/377
  36925. }
  36926. },
  36927. },
  36928. [
  36929. {
  36930. name: "Micro",
  36931. height: math.unit(1, "inch"),
  36932. default: true
  36933. },
  36934. ]
  36935. ))
  36936. characterMakers.push(() => makeCharacter(
  36937. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  36938. {
  36939. side: {
  36940. height: math.unit(35, "feet"),
  36941. name: "Side",
  36942. image: {
  36943. source: "./media/characters/sayko/side.svg",
  36944. extra: 1697/1021,
  36945. bottom: 82/1779
  36946. }
  36947. },
  36948. head: {
  36949. height: math.unit(16, "feet"),
  36950. name: "Head",
  36951. image: {
  36952. source: "./media/characters/sayko/head.svg"
  36953. }
  36954. },
  36955. forepaw: {
  36956. height: math.unit(7.85, "feet"),
  36957. name: "Forepaw",
  36958. image: {
  36959. source: "./media/characters/sayko/forepaw.svg"
  36960. }
  36961. },
  36962. hindpaw: {
  36963. height: math.unit(8.8, "feet"),
  36964. name: "Hindpaw",
  36965. image: {
  36966. source: "./media/characters/sayko/hindpaw.svg"
  36967. }
  36968. },
  36969. },
  36970. [
  36971. {
  36972. name: "Normal",
  36973. height: math.unit(35, "feet"),
  36974. default: true
  36975. },
  36976. {
  36977. name: "Colossus",
  36978. height: math.unit(100, "meters")
  36979. },
  36980. {
  36981. name: "\"Small\" Deity",
  36982. height: math.unit(1, "km")
  36983. },
  36984. {
  36985. name: "\"Large\" Deity",
  36986. height: math.unit(15, "km")
  36987. },
  36988. ]
  36989. ))
  36990. characterMakers.push(() => makeCharacter(
  36991. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  36992. {
  36993. front: {
  36994. height: math.unit(6, "feet"),
  36995. weight: math.unit(250, "lb"),
  36996. name: "Front",
  36997. image: {
  36998. source: "./media/characters/mukiro/front.svg",
  36999. extra: 1368/1310,
  37000. bottom: 34/1402
  37001. }
  37002. },
  37003. },
  37004. [
  37005. {
  37006. name: "Normal",
  37007. height: math.unit(6, "feet"),
  37008. default: true
  37009. },
  37010. ]
  37011. ))
  37012. characterMakers.push(() => makeCharacter(
  37013. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37014. {
  37015. front: {
  37016. height: math.unit(12 + 4/12, "feet"),
  37017. name: "Front",
  37018. image: {
  37019. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37020. extra: 1346/1311,
  37021. bottom: 65/1411
  37022. }
  37023. },
  37024. },
  37025. [
  37026. {
  37027. name: "Base",
  37028. height: math.unit(12 + 4/12, "feet"),
  37029. default: true
  37030. },
  37031. {
  37032. name: "Macro",
  37033. height: math.unit(150, "feet")
  37034. },
  37035. {
  37036. name: "Mega",
  37037. height: math.unit(2, "miles")
  37038. },
  37039. {
  37040. name: "Demi God",
  37041. height: math.unit(4, "AU")
  37042. },
  37043. {
  37044. name: "God Size",
  37045. height: math.unit(1, "universe")
  37046. },
  37047. ]
  37048. ))
  37049. characterMakers.push(() => makeCharacter(
  37050. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37051. {
  37052. front: {
  37053. height: math.unit(3 + 3/12, "feet"),
  37054. weight: math.unit(88, "lb"),
  37055. name: "Front",
  37056. image: {
  37057. source: "./media/characters/trey/front.svg",
  37058. extra: 1815/1509,
  37059. bottom: 60/1875
  37060. }
  37061. },
  37062. },
  37063. [
  37064. {
  37065. name: "Normal",
  37066. height: math.unit(3 + 3/12, "feet"),
  37067. default: true
  37068. },
  37069. ]
  37070. ))
  37071. characterMakers.push(() => makeCharacter(
  37072. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37073. {
  37074. front: {
  37075. height: math.unit(4, "meters"),
  37076. name: "Front",
  37077. image: {
  37078. source: "./media/characters/adelonda/front.svg",
  37079. extra: 1942/1775,
  37080. bottom: 33/1975
  37081. }
  37082. },
  37083. back: {
  37084. height: math.unit(4, "meters"),
  37085. name: "Back",
  37086. image: {
  37087. source: "./media/characters/adelonda/back.svg",
  37088. extra: 1932/1780,
  37089. bottom: 42/1974
  37090. }
  37091. },
  37092. bust: {
  37093. height: math.unit(1.8, "meter"),
  37094. name: "Bust",
  37095. image: {
  37096. source: "./media/characters/adelonda/bust.svg"
  37097. }
  37098. },
  37099. },
  37100. [
  37101. {
  37102. name: "Normal",
  37103. height: math.unit(4, "meters"),
  37104. default: true
  37105. },
  37106. ]
  37107. ))
  37108. characterMakers.push(() => makeCharacter(
  37109. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37110. {
  37111. front: {
  37112. height: math.unit(8 + 4/12, "feet"),
  37113. weight: math.unit(670, "lb"),
  37114. name: "Front",
  37115. image: {
  37116. source: "./media/characters/acadiel/front.svg",
  37117. extra: 1901/1595,
  37118. bottom: 142/2043
  37119. }
  37120. },
  37121. },
  37122. [
  37123. {
  37124. name: "Normal",
  37125. height: math.unit(8 + 4/12, "feet"),
  37126. default: true
  37127. },
  37128. {
  37129. name: "Macro",
  37130. height: math.unit(200, "feet")
  37131. },
  37132. ]
  37133. ))
  37134. characterMakers.push(() => makeCharacter(
  37135. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37136. {
  37137. front: {
  37138. height: math.unit(6 + 2/12, "feet"),
  37139. weight: math.unit(185, "lb"),
  37140. name: "Front",
  37141. image: {
  37142. source: "./media/characters/kayne-ein/front.svg",
  37143. extra: 1780/1560,
  37144. bottom: 81/1861
  37145. }
  37146. },
  37147. },
  37148. [
  37149. {
  37150. name: "Normal",
  37151. height: math.unit(6 + 2/12, "feet"),
  37152. default: true
  37153. },
  37154. {
  37155. name: "Transformation Stage",
  37156. height: math.unit(15, "feet")
  37157. },
  37158. {
  37159. name: "Macro",
  37160. height: math.unit(150, "feet")
  37161. },
  37162. {
  37163. name: "Earth's Shadow",
  37164. height: math.unit(6200, "miles")
  37165. },
  37166. {
  37167. name: "Universal Demon",
  37168. height: math.unit(28e9, "parsecs")
  37169. },
  37170. {
  37171. name: "Multiverse God",
  37172. height: math.unit(3, "multiverses")
  37173. },
  37174. ]
  37175. ))
  37176. characterMakers.push(() => makeCharacter(
  37177. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37178. {
  37179. front: {
  37180. height: math.unit(5 + 5/12, "feet"),
  37181. name: "Front",
  37182. image: {
  37183. source: "./media/characters/fawn/front.svg",
  37184. extra: 1873/1731,
  37185. bottom: 95/1968
  37186. }
  37187. },
  37188. back: {
  37189. height: math.unit(5 + 5/12, "feet"),
  37190. name: "Back",
  37191. image: {
  37192. source: "./media/characters/fawn/back.svg",
  37193. extra: 1813/1700,
  37194. bottom: 14/1827
  37195. }
  37196. },
  37197. hoof: {
  37198. height: math.unit(1.45, "feet"),
  37199. name: "Hoof",
  37200. image: {
  37201. source: "./media/characters/fawn/hoof.svg"
  37202. }
  37203. },
  37204. },
  37205. [
  37206. {
  37207. name: "Normal",
  37208. height: math.unit(5 + 5/12, "feet"),
  37209. default: true
  37210. },
  37211. ]
  37212. ))
  37213. characterMakers.push(() => makeCharacter(
  37214. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37215. {
  37216. front: {
  37217. height: math.unit(2 + 5/12, "feet"),
  37218. name: "Front",
  37219. image: {
  37220. source: "./media/characters/orion/front.svg",
  37221. extra: 1366/1304,
  37222. bottom: 43/1409
  37223. }
  37224. },
  37225. paw: {
  37226. height: math.unit(0.52, "feet"),
  37227. name: "Paw",
  37228. image: {
  37229. source: "./media/characters/orion/paw.svg"
  37230. }
  37231. },
  37232. },
  37233. [
  37234. {
  37235. name: "Normal",
  37236. height: math.unit(2 + 5/12, "feet"),
  37237. default: true
  37238. },
  37239. ]
  37240. ))
  37241. characterMakers.push(() => makeCharacter(
  37242. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37243. {
  37244. front: {
  37245. height: math.unit(5 + 10/12, "feet"),
  37246. name: "Front",
  37247. image: {
  37248. source: "./media/characters/vera/front.svg",
  37249. extra: 1680/1575,
  37250. bottom: 49/1729
  37251. }
  37252. },
  37253. back: {
  37254. height: math.unit(5 + 10/12, "feet"),
  37255. name: "Back",
  37256. image: {
  37257. source: "./media/characters/vera/back.svg",
  37258. extra: 1700/1588,
  37259. bottom: 18/1718
  37260. }
  37261. },
  37262. arcanine: {
  37263. height: math.unit(6 + 8/12, "feet"),
  37264. name: "Arcanine",
  37265. image: {
  37266. source: "./media/characters/vera/arcanine.svg",
  37267. extra: 1590/1511,
  37268. bottom: 71/1661
  37269. }
  37270. },
  37271. maw: {
  37272. height: math.unit(0.82, "feet"),
  37273. name: "Maw",
  37274. image: {
  37275. source: "./media/characters/vera/maw.svg"
  37276. }
  37277. },
  37278. mawArcanine: {
  37279. height: math.unit(0.97, "feet"),
  37280. name: "Maw (Arcanine)",
  37281. image: {
  37282. source: "./media/characters/vera/maw-arcanine.svg"
  37283. }
  37284. },
  37285. paw: {
  37286. height: math.unit(0.75, "feet"),
  37287. name: "Paw",
  37288. image: {
  37289. source: "./media/characters/vera/paw.svg"
  37290. }
  37291. },
  37292. pawprint: {
  37293. height: math.unit(0.52, "feet"),
  37294. name: "Pawprint",
  37295. image: {
  37296. source: "./media/characters/vera/pawprint.svg"
  37297. }
  37298. },
  37299. },
  37300. [
  37301. {
  37302. name: "Normal",
  37303. height: math.unit(5 + 10/12, "feet"),
  37304. default: true
  37305. },
  37306. {
  37307. name: "Macro",
  37308. height: math.unit(75, "feet")
  37309. },
  37310. ]
  37311. ))
  37312. characterMakers.push(() => makeCharacter(
  37313. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37314. {
  37315. front: {
  37316. height: math.unit(4, "feet"),
  37317. weight: math.unit(40, "lb"),
  37318. name: "Front",
  37319. image: {
  37320. source: "./media/characters/orvan-rabbit/front.svg",
  37321. extra: 1896/1642,
  37322. bottom: 29/1925
  37323. }
  37324. },
  37325. },
  37326. [
  37327. {
  37328. name: "Normal",
  37329. height: math.unit(4, "feet"),
  37330. default: true
  37331. },
  37332. ]
  37333. ))
  37334. characterMakers.push(() => makeCharacter(
  37335. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37336. {
  37337. front: {
  37338. height: math.unit(6, "feet"),
  37339. weight: math.unit(168, "lb"),
  37340. name: "Front",
  37341. image: {
  37342. source: "./media/characters/lisa/front.svg",
  37343. extra: 2065/1867,
  37344. bottom: 46/2111
  37345. }
  37346. },
  37347. back: {
  37348. height: math.unit(6, "feet"),
  37349. weight: math.unit(168, "lb"),
  37350. name: "Back",
  37351. image: {
  37352. source: "./media/characters/lisa/back.svg",
  37353. extra: 1982/1838,
  37354. bottom: 29/2011
  37355. }
  37356. },
  37357. maw: {
  37358. height: math.unit(0.81, "feet"),
  37359. name: "Maw",
  37360. image: {
  37361. source: "./media/characters/lisa/maw.svg"
  37362. }
  37363. },
  37364. paw: {
  37365. height: math.unit(0.9, "feet"),
  37366. name: "Paw",
  37367. image: {
  37368. source: "./media/characters/lisa/paw.svg"
  37369. }
  37370. },
  37371. caribousune: {
  37372. height: math.unit(7 + 2/12, "feet"),
  37373. weight: math.unit(268, "lb"),
  37374. name: "Caribousune",
  37375. image: {
  37376. source: "./media/characters/lisa/caribousune.svg",
  37377. extra: 1843/1633,
  37378. bottom: 29/1872
  37379. }
  37380. },
  37381. frontCaribousune: {
  37382. height: math.unit(7 + 2/12, "feet"),
  37383. weight: math.unit(268, "lb"),
  37384. name: "Front (Caribousune)",
  37385. image: {
  37386. source: "./media/characters/lisa/front-caribousune.svg",
  37387. extra: 1818/1638,
  37388. bottom: 52/1870
  37389. }
  37390. },
  37391. sideCaribousune: {
  37392. height: math.unit(7 + 2/12, "feet"),
  37393. weight: math.unit(268, "lb"),
  37394. name: "Side (Caribousune)",
  37395. image: {
  37396. source: "./media/characters/lisa/side-caribousune.svg",
  37397. extra: 1851/1635,
  37398. bottom: 16/1867
  37399. }
  37400. },
  37401. backCaribousune: {
  37402. height: math.unit(7 + 2/12, "feet"),
  37403. weight: math.unit(268, "lb"),
  37404. name: "Back (Caribousune)",
  37405. image: {
  37406. source: "./media/characters/lisa/back-caribousune.svg",
  37407. extra: 1801/1604,
  37408. bottom: 44/1845
  37409. }
  37410. },
  37411. caribou: {
  37412. height: math.unit(7 + 2/12, "feet"),
  37413. weight: math.unit(268, "lb"),
  37414. name: "Caribou",
  37415. image: {
  37416. source: "./media/characters/lisa/caribou.svg",
  37417. extra: 1843/1633,
  37418. bottom: 29/1872
  37419. }
  37420. },
  37421. frontCaribou: {
  37422. height: math.unit(7 + 2/12, "feet"),
  37423. weight: math.unit(268, "lb"),
  37424. name: "Front (Caribou)",
  37425. image: {
  37426. source: "./media/characters/lisa/front-caribou.svg",
  37427. extra: 1818/1638,
  37428. bottom: 52/1870
  37429. }
  37430. },
  37431. sideCaribou: {
  37432. height: math.unit(7 + 2/12, "feet"),
  37433. weight: math.unit(268, "lb"),
  37434. name: "Side (Caribou)",
  37435. image: {
  37436. source: "./media/characters/lisa/side-caribou.svg",
  37437. extra: 1851/1635,
  37438. bottom: 16/1867
  37439. }
  37440. },
  37441. backCaribou: {
  37442. height: math.unit(7 + 2/12, "feet"),
  37443. weight: math.unit(268, "lb"),
  37444. name: "Back (Caribou)",
  37445. image: {
  37446. source: "./media/characters/lisa/back-caribou.svg",
  37447. extra: 1801/1604,
  37448. bottom: 44/1845
  37449. }
  37450. },
  37451. mawCaribou: {
  37452. height: math.unit(1.45, "feet"),
  37453. name: "Maw (Caribou)",
  37454. image: {
  37455. source: "./media/characters/lisa/maw-caribou.svg"
  37456. }
  37457. },
  37458. mawCaribousune: {
  37459. height: math.unit(1.45, "feet"),
  37460. name: "Maw (Caribousune)",
  37461. image: {
  37462. source: "./media/characters/lisa/maw-caribousune.svg"
  37463. }
  37464. },
  37465. pawCaribousune: {
  37466. height: math.unit(1.61, "feet"),
  37467. name: "Paw (Caribou)",
  37468. image: {
  37469. source: "./media/characters/lisa/paw-caribousune.svg"
  37470. }
  37471. },
  37472. },
  37473. [
  37474. {
  37475. name: "Normal",
  37476. height: math.unit(6, "feet")
  37477. },
  37478. {
  37479. name: "God Size",
  37480. height: math.unit(72, "feet"),
  37481. default: true
  37482. },
  37483. {
  37484. name: "Towering",
  37485. height: math.unit(288, "feet")
  37486. },
  37487. {
  37488. name: "City Size",
  37489. height: math.unit(48384, "feet")
  37490. },
  37491. {
  37492. name: "Continental",
  37493. height: math.unit(4200, "miles")
  37494. },
  37495. {
  37496. name: "Planet Eater",
  37497. height: math.unit(42, "earths")
  37498. },
  37499. {
  37500. name: "Star Swallower",
  37501. height: math.unit(42, "solarradii")
  37502. },
  37503. {
  37504. name: "System Swallower",
  37505. height: math.unit(84000, "AU")
  37506. },
  37507. {
  37508. name: "Galaxy Gobbler",
  37509. height: math.unit(42, "galaxies")
  37510. },
  37511. {
  37512. name: "Universe Devourer",
  37513. height: math.unit(42, "universes")
  37514. },
  37515. {
  37516. name: "Multiverse Muncher",
  37517. height: math.unit(42, "multiverses")
  37518. },
  37519. ]
  37520. ))
  37521. characterMakers.push(() => makeCharacter(
  37522. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37523. {
  37524. front: {
  37525. height: math.unit(36, "feet"),
  37526. name: "Front",
  37527. image: {
  37528. source: "./media/characters/shadow-rat/front.svg",
  37529. extra: 1845/1758,
  37530. bottom: 83/1928
  37531. }
  37532. },
  37533. },
  37534. [
  37535. {
  37536. name: "Macro",
  37537. height: math.unit(36, "feet"),
  37538. default: true
  37539. },
  37540. ]
  37541. ))
  37542. characterMakers.push(() => makeCharacter(
  37543. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37544. {
  37545. side: {
  37546. height: math.unit(8, "feet"),
  37547. weight: math.unit(2630, "lb"),
  37548. name: "Side",
  37549. image: {
  37550. source: "./media/characters/torallia/side.svg",
  37551. extra: 2164/2021,
  37552. bottom: 371/2535
  37553. }
  37554. },
  37555. },
  37556. [
  37557. {
  37558. name: "Mortal Interaction",
  37559. height: math.unit(8, "feet")
  37560. },
  37561. {
  37562. name: "Natural",
  37563. height: math.unit(24, "feet"),
  37564. default: true
  37565. },
  37566. {
  37567. name: "Giant",
  37568. height: math.unit(80, "feet")
  37569. },
  37570. {
  37571. name: "Kaiju",
  37572. height: math.unit(240, "feet")
  37573. },
  37574. {
  37575. name: "Macro",
  37576. height: math.unit(800, "feet")
  37577. },
  37578. {
  37579. name: "Macro+",
  37580. height: math.unit(2400, "feet")
  37581. },
  37582. {
  37583. name: "Macro++",
  37584. height: math.unit(8000, "feet")
  37585. },
  37586. {
  37587. name: "City-Crushing",
  37588. height: math.unit(24000, "feet")
  37589. },
  37590. {
  37591. name: "Mountain-Mashing",
  37592. height: math.unit(80000, "feet")
  37593. },
  37594. {
  37595. name: "District Demolisher",
  37596. height: math.unit(240000, "feet")
  37597. },
  37598. {
  37599. name: "Tri-County Terror",
  37600. height: math.unit(800000, "feet")
  37601. },
  37602. {
  37603. name: "State Smasher",
  37604. height: math.unit(2.4e6, "feet")
  37605. },
  37606. {
  37607. name: "Nation Nemesis",
  37608. height: math.unit(8e6, "feet")
  37609. },
  37610. {
  37611. name: "Continent Cracker",
  37612. height: math.unit(2.4e7, "feet")
  37613. },
  37614. {
  37615. name: "Planet-Pillaging",
  37616. height: math.unit(8e7, "feet")
  37617. },
  37618. {
  37619. name: "Earth-Eclipsing",
  37620. height: math.unit(2.4e8, "feet")
  37621. },
  37622. {
  37623. name: "Jovian-Jostling",
  37624. height: math.unit(8e8, "feet")
  37625. },
  37626. {
  37627. name: "Gas Giant Gulper",
  37628. height: math.unit(2.4e9, "feet")
  37629. },
  37630. {
  37631. name: "Astral Annihilator",
  37632. height: math.unit(8e9, "feet")
  37633. },
  37634. {
  37635. name: "Celestial Conqueror",
  37636. height: math.unit(2.4e10, "feet")
  37637. },
  37638. {
  37639. name: "Sol-Swallowing",
  37640. height: math.unit(8e10, "feet")
  37641. },
  37642. {
  37643. name: "Hunter of the Heavens",
  37644. height: math.unit(2.4e13, "feet")
  37645. },
  37646. ]
  37647. ))
  37648. characterMakers.push(() => makeCharacter(
  37649. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37650. {
  37651. front: {
  37652. height: math.unit(6 + 8/12, "feet"),
  37653. name: "Front",
  37654. image: {
  37655. source: "./media/characters/rebecca-pawlson/front.svg",
  37656. extra: 1737/1596,
  37657. bottom: 107/1844
  37658. }
  37659. },
  37660. back: {
  37661. height: math.unit(6 + 8/12, "feet"),
  37662. name: "Back",
  37663. image: {
  37664. source: "./media/characters/rebecca-pawlson/back.svg",
  37665. extra: 1702/1523,
  37666. bottom: 86/1788
  37667. }
  37668. },
  37669. },
  37670. [
  37671. {
  37672. name: "Normal",
  37673. height: math.unit(6 + 8/12, "feet")
  37674. },
  37675. {
  37676. name: "Mini Macro",
  37677. height: math.unit(10, "feet"),
  37678. default: true
  37679. },
  37680. {
  37681. name: "Macro",
  37682. height: math.unit(100, "feet")
  37683. },
  37684. {
  37685. name: "Mega Macro",
  37686. height: math.unit(2500, "feet")
  37687. },
  37688. {
  37689. name: "Giga Macro",
  37690. height: math.unit(50, "miles")
  37691. },
  37692. ]
  37693. ))
  37694. characterMakers.push(() => makeCharacter(
  37695. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37696. {
  37697. front: {
  37698. height: math.unit(7 + 6/12, "feet"),
  37699. weight: math.unit(600, "lb"),
  37700. name: "Front",
  37701. image: {
  37702. source: "./media/characters/moxie-nova/front.svg",
  37703. extra: 1734/1652,
  37704. bottom: 41/1775
  37705. }
  37706. },
  37707. },
  37708. [
  37709. {
  37710. name: "Normal",
  37711. height: math.unit(7 + 6/12, "feet"),
  37712. default: true
  37713. },
  37714. ]
  37715. ))
  37716. characterMakers.push(() => makeCharacter(
  37717. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37718. {
  37719. front: {
  37720. height: math.unit(5, "feet"),
  37721. weight: math.unit(150, "lb"),
  37722. name: "Front",
  37723. image: {
  37724. source: "./media/characters/tiffany/front.svg",
  37725. extra: 1941/1845,
  37726. bottom: 58/1999
  37727. }
  37728. },
  37729. },
  37730. [
  37731. {
  37732. name: "Normal",
  37733. height: math.unit(5, "feet"),
  37734. default: true
  37735. },
  37736. ]
  37737. ))
  37738. characterMakers.push(() => makeCharacter(
  37739. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37740. {
  37741. front: {
  37742. height: math.unit(8, "feet"),
  37743. weight: math.unit(300, "lb"),
  37744. name: "Front",
  37745. image: {
  37746. source: "./media/characters/raxinath/front.svg",
  37747. extra: 1407/1309,
  37748. bottom: 39/1446
  37749. }
  37750. },
  37751. back: {
  37752. height: math.unit(8, "feet"),
  37753. weight: math.unit(300, "lb"),
  37754. name: "Back",
  37755. image: {
  37756. source: "./media/characters/raxinath/back.svg",
  37757. extra: 1405/1315,
  37758. bottom: 9/1414
  37759. }
  37760. },
  37761. },
  37762. [
  37763. {
  37764. name: "Speck",
  37765. height: math.unit(0.5, "nm")
  37766. },
  37767. {
  37768. name: "Micro",
  37769. height: math.unit(3, "inches")
  37770. },
  37771. {
  37772. name: "Kobold",
  37773. height: math.unit(3, "feet")
  37774. },
  37775. {
  37776. name: "Normal",
  37777. height: math.unit(8, "feet"),
  37778. default: true
  37779. },
  37780. {
  37781. name: "Giant",
  37782. height: math.unit(50, "feet")
  37783. },
  37784. {
  37785. name: "Macro",
  37786. height: math.unit(1000, "feet")
  37787. },
  37788. {
  37789. name: "Megamacro",
  37790. height: math.unit(1, "mile")
  37791. },
  37792. ]
  37793. ))
  37794. characterMakers.push(() => makeCharacter(
  37795. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37796. {
  37797. front: {
  37798. height: math.unit(10, "feet"),
  37799. weight: math.unit(1442, "lb"),
  37800. name: "Front",
  37801. image: {
  37802. source: "./media/characters/mal-dragon/front.svg",
  37803. extra: 1515/1444,
  37804. bottom: 113/1628
  37805. }
  37806. },
  37807. back: {
  37808. height: math.unit(10, "feet"),
  37809. weight: math.unit(1442, "lb"),
  37810. name: "Back",
  37811. image: {
  37812. source: "./media/characters/mal-dragon/back.svg",
  37813. extra: 1527/1434,
  37814. bottom: 25/1552
  37815. }
  37816. },
  37817. },
  37818. [
  37819. {
  37820. name: "Mortal Interaction",
  37821. height: math.unit(10, "feet"),
  37822. default: true
  37823. },
  37824. {
  37825. name: "Large",
  37826. height: math.unit(30, "feet")
  37827. },
  37828. {
  37829. name: "Kaiju",
  37830. height: math.unit(300, "feet")
  37831. },
  37832. {
  37833. name: "Megamacro",
  37834. height: math.unit(10000, "feet")
  37835. },
  37836. {
  37837. name: "Continent Cracker",
  37838. height: math.unit(30000000, "feet")
  37839. },
  37840. {
  37841. name: "Sol-Swallowing",
  37842. height: math.unit(1e11, "feet")
  37843. },
  37844. {
  37845. name: "Light Universal",
  37846. height: math.unit(5, "universes")
  37847. },
  37848. {
  37849. name: "Universe Atoms",
  37850. height: math.unit(1.829e9, "universes")
  37851. },
  37852. {
  37853. name: "Light Multiversal",
  37854. height: math.unit(5, "multiverses")
  37855. },
  37856. {
  37857. name: "Multiverse Atoms",
  37858. height: math.unit(1.829e9, "multiverses")
  37859. },
  37860. {
  37861. name: "Fabric of Time",
  37862. height: math.unit(1e262, "multiverses")
  37863. },
  37864. ]
  37865. ))
  37866. characterMakers.push(() => makeCharacter(
  37867. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37868. {
  37869. front: {
  37870. height: math.unit(9, "feet"),
  37871. weight: math.unit(1050, "lb"),
  37872. name: "Front",
  37873. image: {
  37874. source: "./media/characters/tabitha/front.svg",
  37875. extra: 2083/1994,
  37876. bottom: 68/2151
  37877. }
  37878. },
  37879. },
  37880. [
  37881. {
  37882. name: "Baseline",
  37883. height: math.unit(9, "feet"),
  37884. default: true
  37885. },
  37886. {
  37887. name: "Giant",
  37888. height: math.unit(90, "feet")
  37889. },
  37890. {
  37891. name: "Macro",
  37892. height: math.unit(900, "feet")
  37893. },
  37894. {
  37895. name: "Megamacro",
  37896. height: math.unit(9000, "feet")
  37897. },
  37898. {
  37899. name: "City-Crushing",
  37900. height: math.unit(27000, "feet")
  37901. },
  37902. {
  37903. name: "Mountain-Mashing",
  37904. height: math.unit(90000, "feet")
  37905. },
  37906. {
  37907. name: "Nation Nemesis",
  37908. height: math.unit(9e6, "feet")
  37909. },
  37910. {
  37911. name: "Continent Cracker",
  37912. height: math.unit(27e6, "feet")
  37913. },
  37914. {
  37915. name: "Earth-Eclipsing",
  37916. height: math.unit(2.7e8, "feet")
  37917. },
  37918. {
  37919. name: "Gas Giant Gulper",
  37920. height: math.unit(2.7e9, "feet")
  37921. },
  37922. {
  37923. name: "Sol-Swallowing",
  37924. height: math.unit(9e10, "feet")
  37925. },
  37926. {
  37927. name: "Galaxy Gulper",
  37928. height: math.unit(9, "galaxies")
  37929. },
  37930. {
  37931. name: "Cosmos Churner",
  37932. height: math.unit(9, "universes")
  37933. },
  37934. ]
  37935. ))
  37936. characterMakers.push(() => makeCharacter(
  37937. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  37938. {
  37939. front: {
  37940. height: math.unit(160, "cm"),
  37941. weight: math.unit(55, "kg"),
  37942. name: "Front",
  37943. image: {
  37944. source: "./media/characters/tow/front.svg",
  37945. extra: 1751/1722,
  37946. bottom: 74/1825
  37947. }
  37948. },
  37949. },
  37950. [
  37951. {
  37952. name: "Norm",
  37953. height: math.unit(160, "cm")
  37954. },
  37955. {
  37956. name: "Casual",
  37957. height: math.unit(3200, "m"),
  37958. default: true
  37959. },
  37960. {
  37961. name: "Show-Off",
  37962. height: math.unit(160, "km")
  37963. },
  37964. ]
  37965. ))
  37966. characterMakers.push(() => makeCharacter(
  37967. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  37968. {
  37969. front: {
  37970. height: math.unit(7 + 11/12, "feet"),
  37971. weight: math.unit(342.8, "lb"),
  37972. name: "Front",
  37973. image: {
  37974. source: "./media/characters/vivian-orca-dragon/front.svg",
  37975. extra: 1890/1865,
  37976. bottom: 28/1918
  37977. }
  37978. },
  37979. },
  37980. [
  37981. {
  37982. name: "Micro",
  37983. height: math.unit(5, "inches")
  37984. },
  37985. {
  37986. name: "Normal",
  37987. height: math.unit(7 + 11/12, "feet"),
  37988. default: true
  37989. },
  37990. {
  37991. name: "Macro",
  37992. height: math.unit(395 + 7/12, "feet")
  37993. },
  37994. ]
  37995. ))
  37996. characterMakers.push(() => makeCharacter(
  37997. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  37998. {
  37999. side: {
  38000. height: math.unit(10, "feet"),
  38001. weight: math.unit(1442, "lb"),
  38002. name: "Side",
  38003. image: {
  38004. source: "./media/characters/lotherakon/side.svg",
  38005. extra: 1604/1497,
  38006. bottom: 89/1693
  38007. }
  38008. },
  38009. },
  38010. [
  38011. {
  38012. name: "Mortal Interaction",
  38013. height: math.unit(10, "feet")
  38014. },
  38015. {
  38016. name: "Large",
  38017. height: math.unit(30, "feet"),
  38018. default: true
  38019. },
  38020. {
  38021. name: "Giant",
  38022. height: math.unit(100, "feet")
  38023. },
  38024. {
  38025. name: "Kaiju",
  38026. height: math.unit(300, "feet")
  38027. },
  38028. {
  38029. name: "Macro",
  38030. height: math.unit(1000, "feet")
  38031. },
  38032. {
  38033. name: "Macro+",
  38034. height: math.unit(3000, "feet")
  38035. },
  38036. {
  38037. name: "Megamacro",
  38038. height: math.unit(10000, "feet")
  38039. },
  38040. {
  38041. name: "City-Crushing",
  38042. height: math.unit(30000, "feet")
  38043. },
  38044. {
  38045. name: "Continent Cracker",
  38046. height: math.unit(30e6, "feet")
  38047. },
  38048. {
  38049. name: "Earth Eclipsing",
  38050. height: math.unit(3e8, "feet")
  38051. },
  38052. {
  38053. name: "Gas Giant Gulper",
  38054. height: math.unit(3e9, "feet")
  38055. },
  38056. {
  38057. name: "Sol-Swallowing",
  38058. height: math.unit(1e11, "feet")
  38059. },
  38060. {
  38061. name: "System Swallower",
  38062. height: math.unit(3e14, "feet")
  38063. },
  38064. {
  38065. name: "Galaxy Gulper",
  38066. height: math.unit(10, "galaxies")
  38067. },
  38068. {
  38069. name: "Light Universal",
  38070. height: math.unit(5, "universes")
  38071. },
  38072. {
  38073. name: "Universe Palm",
  38074. height: math.unit(20, "universes")
  38075. },
  38076. {
  38077. name: "Light Multiversal",
  38078. height: math.unit(5, "multiverses")
  38079. },
  38080. {
  38081. name: "Multiverse Palm",
  38082. height: math.unit(20, "multiverses")
  38083. },
  38084. {
  38085. name: "Inferno Incarnate",
  38086. height: math.unit(1e7, "multiverses")
  38087. },
  38088. ]
  38089. ))
  38090. characterMakers.push(() => makeCharacter(
  38091. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38092. {
  38093. front: {
  38094. height: math.unit(8, "feet"),
  38095. weight: math.unit(1200, "lb"),
  38096. name: "Front",
  38097. image: {
  38098. source: "./media/characters/malithee/front.svg",
  38099. extra: 1675/1640,
  38100. bottom: 162/1837
  38101. }
  38102. },
  38103. },
  38104. [
  38105. {
  38106. name: "Mortal Interaction",
  38107. height: math.unit(8, "feet"),
  38108. default: true
  38109. },
  38110. {
  38111. name: "Large",
  38112. height: math.unit(24, "feet")
  38113. },
  38114. {
  38115. name: "Kaiju",
  38116. height: math.unit(240, "feet")
  38117. },
  38118. {
  38119. name: "Megamacro",
  38120. height: math.unit(8000, "feet")
  38121. },
  38122. {
  38123. name: "Continent Cracker",
  38124. height: math.unit(24e6, "feet")
  38125. },
  38126. {
  38127. name: "Earth-Eclipsing",
  38128. height: math.unit(2.4e8, "feet")
  38129. },
  38130. {
  38131. name: "Sol-Swallowing",
  38132. height: math.unit(8e10, "feet")
  38133. },
  38134. {
  38135. name: "Galaxy Gulper",
  38136. height: math.unit(8, "galaxies")
  38137. },
  38138. {
  38139. name: "Light Universal",
  38140. height: math.unit(4, "universes")
  38141. },
  38142. {
  38143. name: "Universe Atoms",
  38144. height: math.unit(1.829e9, "universes")
  38145. },
  38146. {
  38147. name: "Light Multiversal",
  38148. height: math.unit(4, "multiverses")
  38149. },
  38150. {
  38151. name: "Multiverse Atoms",
  38152. height: math.unit(1.829e9, "multiverses")
  38153. },
  38154. {
  38155. name: "Nigh-Omnipresence",
  38156. height: math.unit(8e261, "multiverses")
  38157. },
  38158. ]
  38159. ))
  38160. characterMakers.push(() => makeCharacter(
  38161. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38162. {
  38163. front: {
  38164. height: math.unit(10, "feet"),
  38165. weight: math.unit(1500, "lb"),
  38166. name: "Front",
  38167. image: {
  38168. source: "./media/characters/miles-thestia/front.svg",
  38169. extra: 1812/1727,
  38170. bottom: 86/1898
  38171. }
  38172. },
  38173. back: {
  38174. height: math.unit(10, "feet"),
  38175. weight: math.unit(1500, "lb"),
  38176. name: "Back",
  38177. image: {
  38178. source: "./media/characters/miles-thestia/back.svg",
  38179. extra: 1799/1690,
  38180. bottom: 47/1846
  38181. }
  38182. },
  38183. frontNsfw: {
  38184. height: math.unit(10, "feet"),
  38185. weight: math.unit(1500, "lb"),
  38186. name: "Front (NSFW)",
  38187. image: {
  38188. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38189. extra: 1812/1727,
  38190. bottom: 86/1898
  38191. }
  38192. },
  38193. },
  38194. [
  38195. {
  38196. name: "Mini-Macro",
  38197. height: math.unit(10, "feet"),
  38198. default: true
  38199. },
  38200. ]
  38201. ))
  38202. characterMakers.push(() => makeCharacter(
  38203. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38204. {
  38205. front: {
  38206. height: math.unit(25, "feet"),
  38207. name: "Front",
  38208. image: {
  38209. source: "./media/characters/titan-s-wulf/front.svg",
  38210. extra: 1560/1484,
  38211. bottom: 76/1636
  38212. }
  38213. },
  38214. },
  38215. [
  38216. {
  38217. name: "Smallest",
  38218. height: math.unit(25, "feet"),
  38219. default: true
  38220. },
  38221. {
  38222. name: "Normal",
  38223. height: math.unit(200, "feet")
  38224. },
  38225. {
  38226. name: "Macro",
  38227. height: math.unit(200000, "feet")
  38228. },
  38229. {
  38230. name: "Multiversal Original",
  38231. height: math.unit(10000, "multiverses")
  38232. },
  38233. ]
  38234. ))
  38235. characterMakers.push(() => makeCharacter(
  38236. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38237. {
  38238. front: {
  38239. height: math.unit(8, "feet"),
  38240. weight: math.unit(553, "lb"),
  38241. name: "Front",
  38242. image: {
  38243. source: "./media/characters/tawendeh/front.svg",
  38244. extra: 2365/2268,
  38245. bottom: 83/2448
  38246. }
  38247. },
  38248. frontClothed: {
  38249. height: math.unit(8, "feet"),
  38250. weight: math.unit(553, "lb"),
  38251. name: "Front (Clothed)",
  38252. image: {
  38253. source: "./media/characters/tawendeh/front-clothed.svg",
  38254. extra: 2365/2268,
  38255. bottom: 83/2448
  38256. }
  38257. },
  38258. back: {
  38259. height: math.unit(8, "feet"),
  38260. weight: math.unit(553, "lb"),
  38261. name: "Back",
  38262. image: {
  38263. source: "./media/characters/tawendeh/back.svg",
  38264. extra: 2397/2294,
  38265. bottom: 42/2439
  38266. }
  38267. },
  38268. },
  38269. [
  38270. {
  38271. name: "Mortal Interaction",
  38272. height: math.unit(8, "feet"),
  38273. default: true
  38274. },
  38275. {
  38276. name: "Giant",
  38277. height: math.unit(80, "feet")
  38278. },
  38279. {
  38280. name: "Macro",
  38281. height: math.unit(800, "feet")
  38282. },
  38283. {
  38284. name: "Megamacro",
  38285. height: math.unit(8000, "feet")
  38286. },
  38287. {
  38288. name: "City-Crushing",
  38289. height: math.unit(24000, "feet")
  38290. },
  38291. {
  38292. name: "Mountain-Mashing",
  38293. height: math.unit(80000, "feet")
  38294. },
  38295. {
  38296. name: "Nation Nemesis",
  38297. height: math.unit(8e6, "feet")
  38298. },
  38299. {
  38300. name: "Continent Cracker",
  38301. height: math.unit(24e6, "feet")
  38302. },
  38303. {
  38304. name: "Earth-Eclipsing",
  38305. height: math.unit(2.4e8, "feet")
  38306. },
  38307. {
  38308. name: "Gas Giant Gulper",
  38309. height: math.unit(2.4e9, "feet")
  38310. },
  38311. {
  38312. name: "Sol-Swallowing",
  38313. height: math.unit(8e10, "feet")
  38314. },
  38315. {
  38316. name: "Galaxy Gulper",
  38317. height: math.unit(8, "galaxies")
  38318. },
  38319. {
  38320. name: "Cosmos Churner",
  38321. height: math.unit(8, "universes")
  38322. },
  38323. {
  38324. name: "Omnipotent Otter",
  38325. height: math.unit(80, "universes")
  38326. },
  38327. ]
  38328. ))
  38329. characterMakers.push(() => makeCharacter(
  38330. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38331. {
  38332. front: {
  38333. height: math.unit(2.6, "meters"),
  38334. weight: math.unit(900, "kg"),
  38335. name: "Front",
  38336. image: {
  38337. source: "./media/characters/neesha/front.svg",
  38338. extra: 1803/1653,
  38339. bottom: 128/1931
  38340. }
  38341. },
  38342. },
  38343. [
  38344. {
  38345. name: "Normal",
  38346. height: math.unit(2.6, "meters"),
  38347. default: true
  38348. },
  38349. {
  38350. name: "Macro",
  38351. height: math.unit(50, "meters")
  38352. },
  38353. ]
  38354. ))
  38355. characterMakers.push(() => makeCharacter(
  38356. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38357. {
  38358. front: {
  38359. height: math.unit(5, "feet"),
  38360. weight: math.unit(185, "lb"),
  38361. name: "Front",
  38362. image: {
  38363. source: "./media/characters/kyera/front.svg",
  38364. extra: 1875/1790,
  38365. bottom: 96/1971
  38366. }
  38367. },
  38368. },
  38369. [
  38370. {
  38371. name: "Normal",
  38372. height: math.unit(5, "feet"),
  38373. default: true
  38374. },
  38375. ]
  38376. ))
  38377. characterMakers.push(() => makeCharacter(
  38378. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38379. {
  38380. front: {
  38381. height: math.unit(7 + 6/12, "feet"),
  38382. weight: math.unit(540, "lb"),
  38383. name: "Front",
  38384. image: {
  38385. source: "./media/characters/yuko/front.svg",
  38386. extra: 1282/1222,
  38387. bottom: 101/1383
  38388. }
  38389. },
  38390. frontClothed: {
  38391. height: math.unit(7 + 6/12, "feet"),
  38392. weight: math.unit(540, "lb"),
  38393. name: "Front (Clothed)",
  38394. image: {
  38395. source: "./media/characters/yuko/front-clothed.svg",
  38396. extra: 1282/1222,
  38397. bottom: 101/1383
  38398. }
  38399. },
  38400. },
  38401. [
  38402. {
  38403. name: "Normal",
  38404. height: math.unit(7 + 6/12, "feet"),
  38405. default: true
  38406. },
  38407. {
  38408. name: "Macro",
  38409. height: math.unit(26 + 9/12, "feet")
  38410. },
  38411. {
  38412. name: "Megamacro",
  38413. height: math.unit(300, "feet")
  38414. },
  38415. {
  38416. name: "Gigamacro",
  38417. height: math.unit(5000, "feet")
  38418. },
  38419. {
  38420. name: "Planetary",
  38421. height: math.unit(10000, "miles")
  38422. },
  38423. ]
  38424. ))
  38425. characterMakers.push(() => makeCharacter(
  38426. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38427. {
  38428. front: {
  38429. height: math.unit(8 + 2/12, "feet"),
  38430. weight: math.unit(600, "lb"),
  38431. name: "Front",
  38432. image: {
  38433. source: "./media/characters/deam-nitrel/front.svg",
  38434. extra: 1308/1234,
  38435. bottom: 125/1433
  38436. }
  38437. },
  38438. },
  38439. [
  38440. {
  38441. name: "Normal",
  38442. height: math.unit(8 + 2/12, "feet"),
  38443. default: true
  38444. },
  38445. ]
  38446. ))
  38447. characterMakers.push(() => makeCharacter(
  38448. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38449. {
  38450. front: {
  38451. height: math.unit(6.1, "feet"),
  38452. weight: math.unit(180, "lb"),
  38453. name: "Front",
  38454. image: {
  38455. source: "./media/characters/skyress/front.svg",
  38456. extra: 1045/915,
  38457. bottom: 28/1073
  38458. }
  38459. },
  38460. maw: {
  38461. height: math.unit(1, "feet"),
  38462. name: "Maw",
  38463. image: {
  38464. source: "./media/characters/skyress/maw.svg"
  38465. }
  38466. },
  38467. },
  38468. [
  38469. {
  38470. name: "Normal",
  38471. height: math.unit(6.1, "feet"),
  38472. default: true
  38473. },
  38474. {
  38475. name: "Macro",
  38476. height: math.unit(200, "feet")
  38477. },
  38478. ]
  38479. ))
  38480. characterMakers.push(() => makeCharacter(
  38481. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38482. {
  38483. front: {
  38484. height: math.unit(4 + 2/12, "feet"),
  38485. weight: math.unit(40, "kg"),
  38486. name: "Front",
  38487. image: {
  38488. source: "./media/characters/amethyst-jones/front.svg",
  38489. extra: 1220/1150,
  38490. bottom: 101/1321
  38491. }
  38492. },
  38493. },
  38494. [
  38495. {
  38496. name: "Normal",
  38497. height: math.unit(4 + 2/12, "feet"),
  38498. default: true
  38499. },
  38500. ]
  38501. ))
  38502. characterMakers.push(() => makeCharacter(
  38503. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38504. {
  38505. front: {
  38506. height: math.unit(1.7, "m"),
  38507. weight: math.unit(135, "lb"),
  38508. name: "Front",
  38509. image: {
  38510. source: "./media/characters/jade/front.svg",
  38511. extra: 1818/1767,
  38512. bottom: 32/1850
  38513. }
  38514. },
  38515. back: {
  38516. height: math.unit(1.7, "m"),
  38517. weight: math.unit(135, "lb"),
  38518. name: "Back",
  38519. image: {
  38520. source: "./media/characters/jade/back.svg",
  38521. extra: 1869/1809,
  38522. bottom: 35/1904
  38523. }
  38524. },
  38525. hand: {
  38526. height: math.unit(0.24, "m"),
  38527. name: "Hand",
  38528. image: {
  38529. source: "./media/characters/jade/hand.svg"
  38530. }
  38531. },
  38532. foot: {
  38533. height: math.unit(0.263, "m"),
  38534. name: "Foot",
  38535. image: {
  38536. source: "./media/characters/jade/foot.svg"
  38537. }
  38538. },
  38539. dick: {
  38540. height: math.unit(0.47, "m"),
  38541. name: "Dick",
  38542. image: {
  38543. source: "./media/characters/jade/dick.svg"
  38544. }
  38545. },
  38546. },
  38547. [
  38548. {
  38549. name: "Micro",
  38550. height: math.unit(22, "cm")
  38551. },
  38552. {
  38553. name: "Normal",
  38554. height: math.unit(1.7, "m"),
  38555. default: true
  38556. },
  38557. {
  38558. name: "Macro",
  38559. height: math.unit(152, "m")
  38560. },
  38561. ]
  38562. ))
  38563. characterMakers.push(() => makeCharacter(
  38564. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38565. {
  38566. front: {
  38567. height: math.unit(100, "miles"),
  38568. weight: math.unit(20000, "tons"),
  38569. name: "Front",
  38570. image: {
  38571. source: "./media/characters/cookie/front.svg",
  38572. extra: 1125/1070,
  38573. bottom: 30/1155
  38574. }
  38575. },
  38576. },
  38577. [
  38578. {
  38579. name: "Big",
  38580. height: math.unit(50, "feet")
  38581. },
  38582. {
  38583. name: "Macro",
  38584. height: math.unit(100, "miles"),
  38585. default: true
  38586. },
  38587. {
  38588. name: "Megamacro",
  38589. height: math.unit(90000, "miles")
  38590. },
  38591. ]
  38592. ))
  38593. characterMakers.push(() => makeCharacter(
  38594. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38595. {
  38596. front: {
  38597. height: math.unit(6, "feet"),
  38598. weight: math.unit(145, "lb"),
  38599. name: "Front",
  38600. image: {
  38601. source: "./media/characters/farzian/front.svg",
  38602. extra: 1902/1693,
  38603. bottom: 108/2010
  38604. }
  38605. },
  38606. },
  38607. [
  38608. {
  38609. name: "Macro",
  38610. height: math.unit(500, "feet"),
  38611. default: true
  38612. },
  38613. ]
  38614. ))
  38615. characterMakers.push(() => makeCharacter(
  38616. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38617. {
  38618. front: {
  38619. height: math.unit(3 + 6/12, "feet"),
  38620. weight: math.unit(50, "lb"),
  38621. name: "Front",
  38622. image: {
  38623. source: "./media/characters/kimberly-tilson/front.svg",
  38624. extra: 1400/1322,
  38625. bottom: 36/1436
  38626. }
  38627. },
  38628. back: {
  38629. height: math.unit(3 + 6/12, "feet"),
  38630. weight: math.unit(50, "lb"),
  38631. name: "Back",
  38632. image: {
  38633. source: "./media/characters/kimberly-tilson/back.svg",
  38634. extra: 1370/1307,
  38635. bottom: 20/1390
  38636. }
  38637. },
  38638. },
  38639. [
  38640. {
  38641. name: "Normal",
  38642. height: math.unit(3 + 6/12, "feet"),
  38643. default: true
  38644. },
  38645. ]
  38646. ))
  38647. characterMakers.push(() => makeCharacter(
  38648. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38649. {
  38650. front: {
  38651. height: math.unit(1148, "feet"),
  38652. weight: math.unit(34057, "lb"),
  38653. name: "Front",
  38654. image: {
  38655. source: "./media/characters/harthos/front.svg",
  38656. extra: 1391/1339,
  38657. bottom: 13/1404
  38658. }
  38659. },
  38660. },
  38661. [
  38662. {
  38663. name: "Macro",
  38664. height: math.unit(1148, "feet"),
  38665. default: true
  38666. },
  38667. ]
  38668. ))
  38669. characterMakers.push(() => makeCharacter(
  38670. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38671. {
  38672. front: {
  38673. height: math.unit(15, "feet"),
  38674. name: "Front",
  38675. image: {
  38676. source: "./media/characters/hypatia/front.svg",
  38677. extra: 1653/1591,
  38678. bottom: 79/1732
  38679. }
  38680. },
  38681. },
  38682. [
  38683. {
  38684. name: "Normal",
  38685. height: math.unit(15, "feet")
  38686. },
  38687. {
  38688. name: "Small",
  38689. height: math.unit(300, "feet")
  38690. },
  38691. {
  38692. name: "Macro",
  38693. height: math.unit(2500, "feet"),
  38694. default: true
  38695. },
  38696. {
  38697. name: "Mega Macro",
  38698. height: math.unit(1500, "miles")
  38699. },
  38700. {
  38701. name: "Giga Macro",
  38702. height: math.unit(1.5e6, "miles")
  38703. },
  38704. ]
  38705. ))
  38706. characterMakers.push(() => makeCharacter(
  38707. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38708. {
  38709. front: {
  38710. height: math.unit(6, "feet"),
  38711. weight: math.unit(200, "lb"),
  38712. name: "Front",
  38713. image: {
  38714. source: "./media/characters/wulver/front.svg",
  38715. extra: 1724/1632,
  38716. bottom: 130/1854
  38717. }
  38718. },
  38719. frontNsfw: {
  38720. height: math.unit(6, "feet"),
  38721. weight: math.unit(200, "lb"),
  38722. name: "Front (NSFW)",
  38723. image: {
  38724. source: "./media/characters/wulver/front-nsfw.svg",
  38725. extra: 1724/1632,
  38726. bottom: 130/1854
  38727. }
  38728. },
  38729. },
  38730. [
  38731. {
  38732. name: "Human-Sized",
  38733. height: math.unit(6, "feet")
  38734. },
  38735. {
  38736. name: "Normal",
  38737. height: math.unit(4, "meters"),
  38738. default: true
  38739. },
  38740. {
  38741. name: "Large",
  38742. height: math.unit(6, "m")
  38743. },
  38744. ]
  38745. ))
  38746. characterMakers.push(() => makeCharacter(
  38747. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38748. {
  38749. front: {
  38750. height: math.unit(7, "feet"),
  38751. name: "Front",
  38752. image: {
  38753. source: "./media/characters/maru/front.svg",
  38754. extra: 1595/1570,
  38755. bottom: 0/1595
  38756. }
  38757. },
  38758. },
  38759. [
  38760. {
  38761. name: "Normal",
  38762. height: math.unit(7, "feet"),
  38763. default: true
  38764. },
  38765. {
  38766. name: "Macro",
  38767. height: math.unit(700, "feet")
  38768. },
  38769. {
  38770. name: "Mega Macro",
  38771. height: math.unit(25, "miles")
  38772. },
  38773. ]
  38774. ))
  38775. characterMakers.push(() => makeCharacter(
  38776. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38777. {
  38778. front: {
  38779. height: math.unit(6, "feet"),
  38780. weight: math.unit(170, "lb"),
  38781. name: "Front",
  38782. image: {
  38783. source: "./media/characters/xenon/front.svg",
  38784. extra: 1376/1305,
  38785. bottom: 56/1432
  38786. }
  38787. },
  38788. back: {
  38789. height: math.unit(6, "feet"),
  38790. weight: math.unit(170, "lb"),
  38791. name: "Back",
  38792. image: {
  38793. source: "./media/characters/xenon/back.svg",
  38794. extra: 1328/1259,
  38795. bottom: 95/1423
  38796. }
  38797. },
  38798. maw: {
  38799. height: math.unit(0.52, "feet"),
  38800. name: "Maw",
  38801. image: {
  38802. source: "./media/characters/xenon/maw.svg"
  38803. }
  38804. },
  38805. hand: {
  38806. height: math.unit(0.82, "feet"),
  38807. name: "Hand",
  38808. image: {
  38809. source: "./media/characters/xenon/hand.svg"
  38810. }
  38811. },
  38812. foot: {
  38813. height: math.unit(1.13, "feet"),
  38814. name: "Foot",
  38815. image: {
  38816. source: "./media/characters/xenon/foot.svg"
  38817. }
  38818. },
  38819. },
  38820. [
  38821. {
  38822. name: "Micro",
  38823. height: math.unit(0.8, "inches")
  38824. },
  38825. {
  38826. name: "Normal",
  38827. height: math.unit(6, "feet")
  38828. },
  38829. {
  38830. name: "Macro",
  38831. height: math.unit(50, "feet"),
  38832. default: true
  38833. },
  38834. {
  38835. name: "Macro+",
  38836. height: math.unit(250, "feet")
  38837. },
  38838. {
  38839. name: "Megamacro",
  38840. height: math.unit(1500, "feet")
  38841. },
  38842. ]
  38843. ))
  38844. characterMakers.push(() => makeCharacter(
  38845. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38846. {
  38847. front: {
  38848. height: math.unit(7 + 5/12, "feet"),
  38849. name: "Front",
  38850. image: {
  38851. source: "./media/characters/zane/front.svg",
  38852. extra: 1260/1203,
  38853. bottom: 94/1354
  38854. }
  38855. },
  38856. back: {
  38857. height: math.unit(5.05, "feet"),
  38858. name: "Back",
  38859. image: {
  38860. source: "./media/characters/zane/back.svg",
  38861. extra: 893/829,
  38862. bottom: 30/923
  38863. }
  38864. },
  38865. werewolf: {
  38866. height: math.unit(11, "feet"),
  38867. name: "Werewolf",
  38868. image: {
  38869. source: "./media/characters/zane/werewolf.svg",
  38870. extra: 1383/1323,
  38871. bottom: 89/1472
  38872. }
  38873. },
  38874. foot: {
  38875. height: math.unit(1.46, "feet"),
  38876. name: "Foot",
  38877. image: {
  38878. source: "./media/characters/zane/foot.svg"
  38879. }
  38880. },
  38881. footFront: {
  38882. height: math.unit(0.784, "feet"),
  38883. name: "Foot (Front)",
  38884. image: {
  38885. source: "./media/characters/zane/foot-front.svg"
  38886. }
  38887. },
  38888. dick: {
  38889. height: math.unit(1.95, "feet"),
  38890. name: "Dick",
  38891. image: {
  38892. source: "./media/characters/zane/dick.svg"
  38893. }
  38894. },
  38895. dickWerewolf: {
  38896. height: math.unit(3.77, "feet"),
  38897. name: "Dick (Werewolf)",
  38898. image: {
  38899. source: "./media/characters/zane/dick.svg"
  38900. }
  38901. },
  38902. },
  38903. [
  38904. {
  38905. name: "Normal",
  38906. height: math.unit(7 + 5/12, "feet"),
  38907. default: true
  38908. },
  38909. ]
  38910. ))
  38911. characterMakers.push(() => makeCharacter(
  38912. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  38913. {
  38914. front: {
  38915. height: math.unit(6 + 2/12, "feet"),
  38916. weight: math.unit(284, "lb"),
  38917. name: "Front",
  38918. image: {
  38919. source: "./media/characters/benni-desparque/front.svg",
  38920. extra: 1353/1126,
  38921. bottom: 69/1422
  38922. }
  38923. },
  38924. },
  38925. [
  38926. {
  38927. name: "Civilian",
  38928. height: math.unit(6 + 2/12, "feet")
  38929. },
  38930. {
  38931. name: "Normal",
  38932. height: math.unit(98, "feet"),
  38933. default: true
  38934. },
  38935. {
  38936. name: "Kaiju Fighter",
  38937. height: math.unit(268, "feet")
  38938. },
  38939. ]
  38940. ))
  38941. characterMakers.push(() => makeCharacter(
  38942. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  38943. {
  38944. front: {
  38945. height: math.unit(5, "feet"),
  38946. weight: math.unit(105, "lb"),
  38947. name: "Front",
  38948. image: {
  38949. source: "./media/characters/maxine/front.svg",
  38950. extra: 1386/1250,
  38951. bottom: 71/1457
  38952. }
  38953. },
  38954. },
  38955. [
  38956. {
  38957. name: "Normal",
  38958. height: math.unit(5, "feet"),
  38959. default: true
  38960. },
  38961. ]
  38962. ))
  38963. characterMakers.push(() => makeCharacter(
  38964. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  38965. {
  38966. front: {
  38967. height: math.unit(11 + 7/12, "feet"),
  38968. weight: math.unit(9576, "lb"),
  38969. name: "Front",
  38970. image: {
  38971. source: "./media/characters/scaly/front.svg",
  38972. extra: 888/867,
  38973. bottom: 36/924
  38974. }
  38975. },
  38976. },
  38977. [
  38978. {
  38979. name: "Normal",
  38980. height: math.unit(11 + 7/12, "feet"),
  38981. default: true
  38982. },
  38983. ]
  38984. ))
  38985. characterMakers.push(() => makeCharacter(
  38986. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  38987. {
  38988. front: {
  38989. height: math.unit(9, "inches"),
  38990. name: "Front",
  38991. image: {
  38992. source: "./media/characters/saelria/front.svg",
  38993. extra: 662/621,
  38994. bottom: 12/674
  38995. }
  38996. },
  38997. },
  38998. [
  38999. {
  39000. name: "Tiny",
  39001. height: math.unit(9, "inches"),
  39002. default: true
  39003. },
  39004. ]
  39005. ))
  39006. characterMakers.push(() => makeCharacter(
  39007. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39008. {
  39009. front: {
  39010. height: math.unit(80, "meters"),
  39011. weight: math.unit(7000, "tonnes"),
  39012. name: "Front",
  39013. image: {
  39014. source: "./media/characters/tef/front.svg",
  39015. extra: 2036/1991,
  39016. bottom: 54/2090
  39017. }
  39018. },
  39019. back: {
  39020. height: math.unit(80, "meters"),
  39021. weight: math.unit(7000, "tonnes"),
  39022. name: "Back",
  39023. image: {
  39024. source: "./media/characters/tef/back.svg",
  39025. extra: 2036/1991,
  39026. bottom: 54/2090
  39027. }
  39028. },
  39029. },
  39030. [
  39031. {
  39032. name: "Macro",
  39033. height: math.unit(80, "meters"),
  39034. default: true
  39035. },
  39036. ]
  39037. ))
  39038. characterMakers.push(() => makeCharacter(
  39039. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39040. {
  39041. front: {
  39042. height: math.unit(13, "feet"),
  39043. weight: math.unit(6, "tons"),
  39044. name: "Front",
  39045. image: {
  39046. source: "./media/characters/rover/front.svg",
  39047. extra: 1233/1156,
  39048. bottom: 50/1283
  39049. }
  39050. },
  39051. back: {
  39052. height: math.unit(13, "feet"),
  39053. weight: math.unit(6, "tons"),
  39054. name: "Back",
  39055. image: {
  39056. source: "./media/characters/rover/back.svg",
  39057. extra: 1327/1258,
  39058. bottom: 39/1366
  39059. }
  39060. },
  39061. },
  39062. [
  39063. {
  39064. name: "Normal",
  39065. height: math.unit(13, "feet"),
  39066. default: true
  39067. },
  39068. {
  39069. name: "Macro",
  39070. height: math.unit(1300, "feet")
  39071. },
  39072. {
  39073. name: "Megamacro",
  39074. height: math.unit(1300, "miles")
  39075. },
  39076. {
  39077. name: "Gigamacro",
  39078. height: math.unit(1300000, "miles")
  39079. },
  39080. ]
  39081. ))
  39082. characterMakers.push(() => makeCharacter(
  39083. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39084. {
  39085. front: {
  39086. height: math.unit(6, "feet"),
  39087. weight: math.unit(150, "lb"),
  39088. name: "Front",
  39089. image: {
  39090. source: "./media/characters/ariz/front.svg",
  39091. extra: 1401/1346,
  39092. bottom: 5/1406
  39093. }
  39094. },
  39095. },
  39096. [
  39097. {
  39098. name: "Normal",
  39099. height: math.unit(10, "feet"),
  39100. default: true
  39101. },
  39102. ]
  39103. ))
  39104. characterMakers.push(() => makeCharacter(
  39105. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39106. {
  39107. front: {
  39108. height: math.unit(6, "feet"),
  39109. weight: math.unit(140, "lb"),
  39110. name: "Front",
  39111. image: {
  39112. source: "./media/characters/sigrun/front.svg",
  39113. extra: 1418/1359,
  39114. bottom: 27/1445
  39115. }
  39116. },
  39117. },
  39118. [
  39119. {
  39120. name: "Macro",
  39121. height: math.unit(35, "feet"),
  39122. default: true
  39123. },
  39124. ]
  39125. ))
  39126. characterMakers.push(() => makeCharacter(
  39127. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39128. {
  39129. front: {
  39130. height: math.unit(6, "feet"),
  39131. weight: math.unit(150, "lb"),
  39132. name: "Front",
  39133. image: {
  39134. source: "./media/characters/numin/front.svg",
  39135. extra: 1433/1388,
  39136. bottom: 12/1445
  39137. }
  39138. },
  39139. },
  39140. [
  39141. {
  39142. name: "Macro",
  39143. height: math.unit(21.5, "km"),
  39144. default: true
  39145. },
  39146. ]
  39147. ))
  39148. characterMakers.push(() => makeCharacter(
  39149. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39150. {
  39151. front: {
  39152. height: math.unit(6, "feet"),
  39153. weight: math.unit(463, "lb"),
  39154. name: "Front",
  39155. image: {
  39156. source: "./media/characters/melwa/front.svg",
  39157. extra: 1307/1248,
  39158. bottom: 93/1400
  39159. }
  39160. },
  39161. },
  39162. [
  39163. {
  39164. name: "Macro",
  39165. height: math.unit(50, "meters"),
  39166. default: true
  39167. },
  39168. ]
  39169. ))
  39170. characterMakers.push(() => makeCharacter(
  39171. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39172. {
  39173. front: {
  39174. height: math.unit(325, "feet"),
  39175. name: "Front",
  39176. image: {
  39177. source: "./media/characters/zorkaiju/front.svg",
  39178. extra: 1955/1814,
  39179. bottom: 40/1995
  39180. }
  39181. },
  39182. frontExtended: {
  39183. height: math.unit(325, "feet"),
  39184. name: "Front (Extended)",
  39185. image: {
  39186. source: "./media/characters/zorkaiju/front-extended.svg",
  39187. extra: 1955/1814,
  39188. bottom: 40/1995
  39189. }
  39190. },
  39191. side: {
  39192. height: math.unit(325, "feet"),
  39193. name: "Side",
  39194. image: {
  39195. source: "./media/characters/zorkaiju/side.svg",
  39196. extra: 1495/1396,
  39197. bottom: 17/1512
  39198. }
  39199. },
  39200. sideExtended: {
  39201. height: math.unit(325, "feet"),
  39202. name: "Side (Extended)",
  39203. image: {
  39204. source: "./media/characters/zorkaiju/side-extended.svg",
  39205. extra: 1495/1396,
  39206. bottom: 17/1512
  39207. }
  39208. },
  39209. back: {
  39210. height: math.unit(325, "feet"),
  39211. name: "Back",
  39212. image: {
  39213. source: "./media/characters/zorkaiju/back.svg",
  39214. extra: 1959/1821,
  39215. bottom: 31/1990
  39216. }
  39217. },
  39218. backExtended: {
  39219. height: math.unit(325, "feet"),
  39220. name: "Back (Extended)",
  39221. image: {
  39222. source: "./media/characters/zorkaiju/back-extended.svg",
  39223. extra: 1959/1821,
  39224. bottom: 31/1990
  39225. }
  39226. },
  39227. hand: {
  39228. height: math.unit(58.4, "feet"),
  39229. name: "Hand",
  39230. image: {
  39231. source: "./media/characters/zorkaiju/hand.svg"
  39232. }
  39233. },
  39234. handExtended: {
  39235. height: math.unit(61.4, "feet"),
  39236. name: "Hand (Extended)",
  39237. image: {
  39238. source: "./media/characters/zorkaiju/hand-extended.svg"
  39239. }
  39240. },
  39241. foot: {
  39242. height: math.unit(95, "feet"),
  39243. name: "Foot",
  39244. image: {
  39245. source: "./media/characters/zorkaiju/foot.svg"
  39246. }
  39247. },
  39248. leftArm: {
  39249. height: math.unit(59, "feet"),
  39250. name: "Left Arm",
  39251. image: {
  39252. source: "./media/characters/zorkaiju/left-arm.svg"
  39253. }
  39254. },
  39255. rightArm: {
  39256. height: math.unit(59, "feet"),
  39257. name: "Right Arm",
  39258. image: {
  39259. source: "./media/characters/zorkaiju/right-arm.svg"
  39260. }
  39261. },
  39262. tail: {
  39263. height: math.unit(104, "feet"),
  39264. name: "Tail",
  39265. image: {
  39266. source: "./media/characters/zorkaiju/tail.svg"
  39267. }
  39268. },
  39269. tailExtended: {
  39270. height: math.unit(104, "feet"),
  39271. name: "Tail (Extended)",
  39272. image: {
  39273. source: "./media/characters/zorkaiju/tail-extended.svg"
  39274. }
  39275. },
  39276. tailBottom: {
  39277. height: math.unit(104, "feet"),
  39278. name: "Tail Bottom",
  39279. image: {
  39280. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39281. }
  39282. },
  39283. crystal: {
  39284. height: math.unit(27.54, "feet"),
  39285. name: "Crystal",
  39286. image: {
  39287. source: "./media/characters/zorkaiju/crystal.svg"
  39288. }
  39289. },
  39290. },
  39291. [
  39292. {
  39293. name: "Kaiju",
  39294. height: math.unit(325, "feet"),
  39295. default: true
  39296. },
  39297. ]
  39298. ))
  39299. //characters
  39300. function makeCharacters() {
  39301. const results = [];
  39302. characterMakers.forEach(character => {
  39303. results.push(character());
  39304. });
  39305. return results;
  39306. }