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

36437 строки
915 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. "mammal"
  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. },
  227. "cougar": {
  228. name: "Cougar",
  229. parents: [
  230. "cat"
  231. ]
  232. },
  233. "goat": {
  234. name: "Goat",
  235. parents: [
  236. "mammal"
  237. ]
  238. },
  239. "lion": {
  240. name: "Lion",
  241. parents: [
  242. "cat"
  243. ]
  244. },
  245. "harpy-eager": {
  246. name: "Harpy Eagle",
  247. parents: [
  248. "avian"
  249. ]
  250. },
  251. "deer": {
  252. name: "Deer",
  253. parents: [
  254. "mammal"
  255. ]
  256. },
  257. "phoenix": {
  258. name: "Phoenix",
  259. parents: [
  260. "avian"
  261. ]
  262. },
  263. "aeromorph": {
  264. name: "Aeromorph",
  265. parents: [
  266. "machine"
  267. ]
  268. },
  269. "machine": {
  270. name: "Machine",
  271. },
  272. "android": {
  273. name: "Android",
  274. parents: [
  275. "machine"
  276. ]
  277. },
  278. "jackal": {
  279. name: "Jackal",
  280. parents: [
  281. "canine"
  282. ]
  283. },
  284. "corvid": {
  285. name: "Corvid",
  286. parents: [
  287. "avian"
  288. ]
  289. },
  290. "pharaoh-hound": {
  291. name: "Pharaoh Hound",
  292. parents: [
  293. "dog"
  294. ]
  295. },
  296. "skunk": {
  297. name: "Skunk",
  298. parents: [
  299. "mammal"
  300. ]
  301. },
  302. "shark": {
  303. name: "Shark",
  304. parents: [
  305. "fish"
  306. ]
  307. },
  308. "black-panther": {
  309. name: "Black Panther",
  310. parents: [
  311. "cat"
  312. ]
  313. },
  314. "umbra": {
  315. name: "Umbra",
  316. parents: [
  317. "animal"
  318. ]
  319. },
  320. "raven": {
  321. name: "Raven",
  322. parents: [
  323. "corvid"
  324. ]
  325. },
  326. "snow-leopard": {
  327. name: "Snow Leopard",
  328. parents: [
  329. "cat"
  330. ]
  331. },
  332. "barbary-lion": {
  333. name: "Barbary Lion",
  334. parents: [
  335. "lion"
  336. ]
  337. },
  338. "dra'gal": {
  339. name: "Dra'Gal",
  340. parents: [
  341. "mammal"
  342. ]
  343. },
  344. "german-shepherd": {
  345. name: "German Shepherd",
  346. parents: [
  347. "dog"
  348. ]
  349. },
  350. "bayleef": {
  351. name: "Bayleef",
  352. parents: [
  353. "pokemon"
  354. ]
  355. },
  356. "mouse": {
  357. name: "Mouse",
  358. parents: [
  359. "rodent"
  360. ]
  361. },
  362. "rat": {
  363. name: "Rat",
  364. parents: [
  365. "mammal"
  366. ]
  367. },
  368. "hoshiko-beast": {
  369. name: "Hoshiko Beast",
  370. parents: ["animal"]
  371. },
  372. "snow-jugani": {
  373. name: "Snow Jugani",
  374. parents: ["cat"]
  375. },
  376. "patamon": {
  377. name: "Patamon",
  378. parents: ["digimon"]
  379. },
  380. "digimon": {
  381. name: "Digimon",
  382. },
  383. "jugani": {
  384. name: "Jugani",
  385. parents: ["cat"]
  386. },
  387. "luxray": {
  388. name: "Luxray",
  389. parents: ["pokemon"]
  390. },
  391. "mech": {
  392. name: "Mech",
  393. parents: ["machine"]
  394. },
  395. "zoid": {
  396. name: "Zoid",
  397. parents: ["mech"]
  398. },
  399. "monster": {
  400. name: "Monster",
  401. parents: ["animal"]
  402. },
  403. "foo-dog": {
  404. name: "Foo Dog",
  405. parents: ["mammal"]
  406. },
  407. "elephant": {
  408. name: "Elephant",
  409. parents: ["mammal"]
  410. },
  411. "eagle": {
  412. name: "Eagle",
  413. parents: ["avian"]
  414. },
  415. "cow": {
  416. name: "Cow",
  417. parents: ["mammal"]
  418. },
  419. "crocodile": {
  420. name: "Crocodile",
  421. parents: ["reptile"]
  422. },
  423. "borzoi": {
  424. name: "Borzoi",
  425. parents: ["dog"]
  426. },
  427. "snake": {
  428. name: "Snake",
  429. parents: ["reptile"]
  430. },
  431. "horned-bush-viper": {
  432. name: "Horned Bush Viper",
  433. parents: ["snake"]
  434. },
  435. "cobra": {
  436. name: "Cobra",
  437. parents: ["snake"]
  438. },
  439. "harpy-eagle": {
  440. name: "Harpy Eagle",
  441. parents: ["eagle"]
  442. },
  443. "raptor": {
  444. name: "Raptor",
  445. parents: ["dinosaur"]
  446. },
  447. "dinosaur": {
  448. name: "Dinosaur",
  449. parents: ["reptile"]
  450. },
  451. "veilhound": {
  452. name: "Veilhound",
  453. parents: ["hellhound", "demon"]
  454. },
  455. "hellhound": {
  456. name: "Hellhound",
  457. parents: ["canine"]
  458. },
  459. "insect": {
  460. name: "Insect",
  461. parents: ["animal"]
  462. },
  463. "beetle": {
  464. name: "Beetle",
  465. parents: ["insect"]
  466. },
  467. "moth": {
  468. name: "Moth",
  469. parents: ["insect"]
  470. },
  471. "eastern-dragon": {
  472. name: "Eastern Dragon",
  473. parents: ["dragon"]
  474. },
  475. "jaguar": {
  476. name: "Jaguar",
  477. parents: ["cat"]
  478. },
  479. "horse": {
  480. name: "Horse",
  481. parents: ["mammal"]
  482. },
  483. "sergal": {
  484. name: "Sergal",
  485. parents: ["mammal"]
  486. },
  487. "gryphon": {
  488. name: "Gryphon",
  489. parents: ["lion", "eagle"]
  490. },
  491. "robot": {
  492. name: "Robot",
  493. parents: ["machine"]
  494. },
  495. "medihound": {
  496. name: "Medihound",
  497. parents: ["robot", "dog"]
  498. },
  499. "sylveon": {
  500. name: "Sylveon",
  501. parents: ["pokemon"]
  502. },
  503. "catgirl": {
  504. name: "Catgirl",
  505. parents: ["mammal"]
  506. },
  507. "cowgirl": {
  508. name: "Cowgirl",
  509. parents: ["mammal"]
  510. },
  511. "pony": {
  512. name: "Pony",
  513. parents: ["horse"]
  514. },
  515. "rabbit": {
  516. name: "Rabbit",
  517. parents: ["mammal"]
  518. },
  519. "fennec-fox": {
  520. name: "Fennec Fox",
  521. parents: ["fox"]
  522. },
  523. "azodian": {
  524. name: "Azodian",
  525. parents: ["mouse"]
  526. },
  527. "shiba-inu": {
  528. name: "Shiba Inu",
  529. parents: ["dog"]
  530. },
  531. "changeling": {
  532. name: "Changeling",
  533. parents: ["insect"]
  534. },
  535. "cheetah": {
  536. name: "Cheetah",
  537. parents: ["cat"]
  538. },
  539. "golden-jackal": {
  540. name: "Golden Jackal",
  541. parents: ["jackal"]
  542. },
  543. "manectric": {
  544. name: "Manectric",
  545. parents: ["pokemon"]
  546. },
  547. "rat": {
  548. name: "Rat",
  549. parents: ["rodent"]
  550. },
  551. "rodent": {
  552. name: "Rodent",
  553. parents: ["mammal"]
  554. },
  555. "octocoon": {
  556. name: "Octocoon",
  557. parents: ["raccoon", "octopus"]
  558. },
  559. "octopus": {
  560. name: "Octopus",
  561. parents: ["fish"]
  562. },
  563. "werewolf": {
  564. name: "Werewolf",
  565. parents: ["wolf"]
  566. },
  567. "meerkat": {
  568. name: "Meerkat",
  569. parents: ["mammal"]
  570. },
  571. "human": {
  572. name: "Human",
  573. parents: ["mammal"]
  574. },
  575. "geth": {
  576. name: "Geth",
  577. parents: ["android"]
  578. },
  579. "husky": {
  580. name: "Husky",
  581. parents: ["dog"]
  582. },
  583. "long-eared-bat": {
  584. name: "Long Eared Bat",
  585. parents: ["bat"]
  586. },
  587. "lizard": {
  588. name: "Lizard",
  589. parents: ["reptile"]
  590. },
  591. "salamander": {
  592. name: "Salamander",
  593. parents: ["lizard"]
  594. },
  595. "chameleon": {
  596. name: "Chameleon",
  597. parents: ["lizard"]
  598. },
  599. "gecko": {
  600. name: "Gecko",
  601. parents: ["lizard"]
  602. },
  603. "kobold": {
  604. name: "Kobold",
  605. parents: ["reptile"]
  606. },
  607. "charizard": {
  608. name: "Charizard",
  609. parents: ["pokemon"]
  610. },
  611. "lugia": {
  612. name: "Lugia",
  613. parents: ["pokemon"]
  614. },
  615. "cerberus": {
  616. name: "Cerberus",
  617. parents: ["dog"]
  618. },
  619. "tyrantrum": {
  620. name: "Tyrantrum",
  621. parents: ["pokemon"]
  622. },
  623. "lemur": {
  624. name: "Lemur",
  625. parents: ["mammal"]
  626. },
  627. "kelpie": {
  628. name: "Kelpie",
  629. parents: ["horse", "monster"]
  630. },
  631. "labrador": {
  632. name: "Labrador",
  633. parents: ["dog"]
  634. },
  635. "sylveon": {
  636. name: "Sylveon",
  637. parents: ["eeveelution"]
  638. },
  639. "eeveelution": {
  640. name: "Eeveelution",
  641. parents: ["pokemon"]
  642. },
  643. "polar-bear": {
  644. name: "Polar Bear",
  645. parents: ["bear"]
  646. },
  647. "bear": {
  648. name: "Bear",
  649. parents: ["mammal"]
  650. },
  651. "absol": {
  652. name: "Absol",
  653. parents: ["pokemon"]
  654. },
  655. "wolver": {
  656. name: "Wolver",
  657. parents: ["mammal"]
  658. },
  659. "rottweiler": {
  660. name: "Rottweiler",
  661. parents: ["dog"]
  662. },
  663. "zebra": {
  664. name: "Zebra",
  665. parents: ["horse"]
  666. },
  667. "yoshi": {
  668. name: "Yoshi",
  669. parents: ["lizard"]
  670. },
  671. "lynx": {
  672. name: "Lynx",
  673. parents: ["cat"]
  674. },
  675. "unknown": {
  676. name: "Unknown",
  677. parents: []
  678. },
  679. "thylacine": {
  680. name: "Thylacine",
  681. parents: ["mammal"]
  682. },
  683. "gabumon": {
  684. name: "Gabumon",
  685. parents: ["digimon"]
  686. },
  687. "border-collie": {
  688. name: "Border Collie",
  689. parents: ["dog"]
  690. },
  691. "imp": {
  692. name: "Imp",
  693. parents: ["demon"]
  694. },
  695. "kangaroo": {
  696. name: "Kangaroo",
  697. parents: ["mammal"]
  698. },
  699. "renamon": {
  700. name: "Renamon",
  701. parents: ["digimon"]
  702. },
  703. "candy-orca-dragon": {
  704. name: "Candy Orca Dragon",
  705. parents: ["fish", "dragon", "candy"]
  706. },
  707. "sabertooth-tiger": {
  708. name: "Sabertooth Tiger",
  709. parents: ["cat"]
  710. },
  711. "espurr": {
  712. name: "Espurr",
  713. parents: ["pokemon"]
  714. },
  715. "otter": {
  716. name: "Otter",
  717. parents: ["mammal"]
  718. },
  719. "elemental": {
  720. name: "Elemental",
  721. parents: ["mammal"]
  722. },
  723. "mew": {
  724. name: "Mew",
  725. parents: ["pokemon"]
  726. },
  727. "goodra": {
  728. name: "Goodra",
  729. parents: ["pokemon"]
  730. },
  731. "fairy": {
  732. name: "Fairy",
  733. parents: ["magical"]
  734. },
  735. "typhlosion": {
  736. name: "Typhlosion",
  737. parents: ["pokemon"]
  738. },
  739. "magical": {
  740. name: "Magical",
  741. parents: []
  742. },
  743. "xenomorph": {
  744. name: "Xenomorph",
  745. parents: ["monster", "alien"]
  746. },
  747. "charr": {
  748. name: "Charr",
  749. parents: ["cat"]
  750. },
  751. "siberian-husky": {
  752. name: "Siberian Husky",
  753. parents: ["husky"]
  754. },
  755. "alligator": {
  756. name: "Alligator",
  757. parents: ["reptile"]
  758. },
  759. "bernese-mountain-dog": {
  760. name: "Bernese Mountain Dog",
  761. parents: ["dog"]
  762. },
  763. "reshiram": {
  764. name: "Reshiram",
  765. parents: ["pokemon"]
  766. },
  767. "grizzly-bear": {
  768. name: "Grizzly Bear",
  769. parents: ["bear"]
  770. },
  771. "water-monitor": {
  772. name: "Water Monitor",
  773. parents: ["lizard"]
  774. },
  775. "banchofossa": {
  776. name: "Banchofossa",
  777. parents: ["mammal"]
  778. },
  779. "kirin": {
  780. name: "Kirin",
  781. parents: ["monster"]
  782. },
  783. "quilava": {
  784. name: "Quilava",
  785. parents: ["pokemon"]
  786. },
  787. "seviper": {
  788. name: "Seviper",
  789. parents: ["pokemon"]
  790. },
  791. "flying-fox": {
  792. name: "Flying Fox",
  793. parents: ["bat"]
  794. },
  795. "keynain": {
  796. name: "Keynain",
  797. parents: ["avian"]
  798. },
  799. "lucario": {
  800. name: "Lucario",
  801. parents: ["pokemon"]
  802. },
  803. "siamese-cat": {
  804. name: "Siamese Cat",
  805. parents: ["cat"]
  806. },
  807. "spider": {
  808. name: "Spider",
  809. parents: ["insect"]
  810. },
  811. "samurott": {
  812. name: "Samurott",
  813. parents: ["pokemon"]
  814. },
  815. "megalodon": {
  816. name: "Megalodon",
  817. parents: ["shark"]
  818. },
  819. "unicorn": {
  820. name: "Unicorn",
  821. parents: ["horse"]
  822. },
  823. "greninja": {
  824. name: "Greninja",
  825. parents: ["pokemon"]
  826. },
  827. "water-dragon": {
  828. name: "Water Dragon",
  829. parents: ["dragon"]
  830. },
  831. "cross-fox": {
  832. name: "Cross Fox",
  833. parents: ["fox"]
  834. },
  835. "synth": {
  836. name: "Synth",
  837. parents: ["machine"]
  838. },
  839. "construct": {
  840. name: "Construct",
  841. parents: []
  842. },
  843. "mexican-wolf": {
  844. name: "Mexican Wolf",
  845. parents: ["wolf"]
  846. },
  847. "leopard": {
  848. name: "Leopard",
  849. parents: ["cat"]
  850. },
  851. "pig": {
  852. name: "Pig",
  853. parents: ["mammal"]
  854. },
  855. "ampharos": {
  856. name: "Ampharos",
  857. parents: ["pokemon"]
  858. },
  859. "orca": {
  860. name: "Orca",
  861. parents: ["fish"]
  862. },
  863. "lycanroc": {
  864. name: "Lycanroc",
  865. parents: ["pokemon"]
  866. },
  867. "surkanu": {
  868. name: "Surkanu",
  869. parents: ["monster"]
  870. },
  871. "seal": {
  872. name: "Seal",
  873. parents: ["mammal"]
  874. },
  875. "keldeo": {
  876. name: "Keldeo",
  877. parents: ["pokemon"]
  878. },
  879. "great-dane": {
  880. name: "Great Dane",
  881. parents: ["dog"]
  882. },
  883. "black-backed-jackal": {
  884. name: "Black Backed Jackal",
  885. parents: ["jackal"]
  886. },
  887. "sheep": {
  888. name: "Sheep",
  889. parents: ["mammal"]
  890. },
  891. "leopard-seal": {
  892. name: "Leopard Seal",
  893. parents: ["seal"]
  894. },
  895. "zoroark": {
  896. name: "Zoroark",
  897. parents: ["pokemon"]
  898. },
  899. "maned-wolf": {
  900. name: "Maned Wolf",
  901. parents: ["canine"]
  902. },
  903. "dracha": {
  904. name: "Dracha",
  905. parents: ["dragon"]
  906. },
  907. "wolxi": {
  908. name: "Wolxi",
  909. parents: ["mammal", "alien"]
  910. },
  911. "dratini": {
  912. name: "Dratini",
  913. parents: ["pokemon", "dragon"]
  914. },
  915. "skaven": {
  916. name: "Skaven",
  917. parents: ["rat"]
  918. },
  919. "mongoose": {
  920. name: "Mongoose",
  921. parents: ["mammal"]
  922. },
  923. "lopunny": {
  924. name: "Lopunny",
  925. parents: ["pokemon", "rabbit"]
  926. },
  927. "feraligatr": {
  928. name: "Feraligatr",
  929. parents: ["pokemon", "alligator"]
  930. },
  931. "houndoom": {
  932. name: "Houndoom",
  933. parents: ["pokemon", "dog"]
  934. },
  935. "protogen": {
  936. name: "Protogen",
  937. parents: ["machine"]
  938. },
  939. "saint-bernard": {
  940. name: "Saint Bernard",
  941. parents: ["dog"]
  942. },
  943. "crow": {
  944. name: "Crow",
  945. parents: ["corvid"]
  946. },
  947. "delphox": {
  948. name: "Delphox",
  949. parents: ["pokemon", "fox"]
  950. },
  951. "moose": {
  952. name: "Moose",
  953. parents: ["mammal"]
  954. },
  955. "joraxian": {
  956. name: "Joraxian",
  957. parents: ["monster", "canine", "demon"]
  958. },
  959. "nimbat": {
  960. name: "Nimbat",
  961. parents: ["mammal"]
  962. },
  963. "aardwolf": {
  964. name: "Aardwolf",
  965. parents: ["canine"]
  966. },
  967. "fluudrani": {
  968. name: "Fluudrani",
  969. parents: ["animal"]
  970. },
  971. "arcanine": {
  972. name: "Arcanine",
  973. parents: ["pokemon", "dog"]
  974. },
  975. "inteleon": {
  976. name: "Inteleon",
  977. parents: ["pokemon", "fish"]
  978. },
  979. "ninetales": {
  980. name: "Ninetales",
  981. parents: ["pokemon", "kitsune"]
  982. },
  983. "tigrex": {
  984. name: "Tigrex",
  985. parents: ["tiger"]
  986. },
  987. "zorua": {
  988. name: "Zorua",
  989. parents: ["pokemon", "fox"]
  990. },
  991. "vulpix": {
  992. name: "Vulpix",
  993. parents: ["pokemon", "fox"]
  994. },
  995. "barghest": {
  996. name: "Barghest",
  997. parents: ["monster"]
  998. },
  999. "gray-wolf": {
  1000. name: "Gray Wolf",
  1001. parents: ["wolf"]
  1002. },
  1003. "ruppells-fox": {
  1004. name: "Rüppell's Fox",
  1005. parents: ["fox"]
  1006. },
  1007. "bull-terrier": {
  1008. name: "Bull Terrier",
  1009. parents: ["dog"]
  1010. },
  1011. "european-honey-buzzard": {
  1012. name: "European Honey Buzzard",
  1013. parents: ["avian"]
  1014. },
  1015. "t-rex": {
  1016. name: "T Rex",
  1017. parents: ["dinosaur"]
  1018. },
  1019. "mactarian": {
  1020. name: "Mactarian",
  1021. parents: ["shark", "monster"]
  1022. },
  1023. "mewtwo-y": {
  1024. name: "Mewtwo Y",
  1025. parents: ["mewtwo"]
  1026. },
  1027. "mewtwo": {
  1028. name: "Mewtwo",
  1029. parents: ["pokemon"]
  1030. },
  1031. "mew": {
  1032. name: "Mew",
  1033. parents: ["pokemon"]
  1034. },
  1035. "eevee": {
  1036. name: "Eevee",
  1037. parents: ["eeveelution"]
  1038. },
  1039. "mienshao": {
  1040. name: "Mienshao",
  1041. parents: ["pokemon"]
  1042. },
  1043. "sugar-glider": {
  1044. name: "Sugar Glider",
  1045. parents: ["opossum"]
  1046. },
  1047. "spectral-bat": {
  1048. name: "Spectral Bat",
  1049. parents: ["bat"]
  1050. },
  1051. "scolipede": {
  1052. name: "Scolipede",
  1053. parents: ["pokemon", "insect"]
  1054. },
  1055. "jackalope": {
  1056. name: "Jackalope",
  1057. parents: ["rabbit", "antelope"]
  1058. },
  1059. "caracal": {
  1060. name: "Caracal",
  1061. parents: ["cat"]
  1062. },
  1063. "stoat": {
  1064. name: "Stoat",
  1065. parents: ["mammal"]
  1066. },
  1067. "african-golden-cat": {
  1068. name: "African Golden Cat",
  1069. parents: ["cat"]
  1070. },
  1071. "gigantosaurus": {
  1072. name: "Gigantosaurus",
  1073. parents: ["dinosaur"]
  1074. },
  1075. "zorgoia": {
  1076. name: "Zorgoia",
  1077. parents: ["mammal"]
  1078. },
  1079. "monitor-lizard": {
  1080. name: "Monitor Lizard",
  1081. parents: ["lizard"]
  1082. },
  1083. "ziralkia": {
  1084. name: "Ziralkia",
  1085. parents: ["mammal"]
  1086. },
  1087. "kiiasi": {
  1088. name: "Kiiasi",
  1089. parents: ["animal"]
  1090. },
  1091. "synx": {
  1092. name: "Synx",
  1093. parents: ["monster"]
  1094. },
  1095. "panther": {
  1096. name: "Panther",
  1097. parents: ["cat"]
  1098. },
  1099. "azumarill": {
  1100. name: "Azumarill",
  1101. parents: ["pokemon"]
  1102. },
  1103. "river-snaptail": {
  1104. name: "River Snaptail",
  1105. parents: ["otter", "crocodile"]
  1106. },
  1107. "great-blue-heron": {
  1108. name: "Great Blue Heron",
  1109. parents: ["avian"]
  1110. },
  1111. "smeargle": {
  1112. name: "Smeargle",
  1113. parents: ["pokemon"]
  1114. },
  1115. "vendeilen": {
  1116. name: "Vendeilen",
  1117. parents: ["monster"]
  1118. },
  1119. "ventura": {
  1120. name: "Ventura",
  1121. parents: ["canine"]
  1122. },
  1123. "clouded-leopard": {
  1124. name: "Clouded Leopard",
  1125. parents: ["leopard"]
  1126. },
  1127. "argonian": {
  1128. name: "Argonian",
  1129. parents: ["lizard"]
  1130. },
  1131. "salazzle": {
  1132. name: "Salazzle",
  1133. parents: ["pokemon", "lizard"]
  1134. },
  1135. "je-stoff-drachen": {
  1136. name: "Je-Stoff Drachen",
  1137. parents: ["dragon"]
  1138. },
  1139. "finnish-spitz-dog": {
  1140. name: "Finnish Spitz Dog",
  1141. parents: ["dog"]
  1142. },
  1143. "gray-fox": {
  1144. name: "Gray Fox",
  1145. parents: ["fox"]
  1146. },
  1147. "opossum": {
  1148. name: "opossum",
  1149. parents: ["mammal"]
  1150. },
  1151. "antelope": {
  1152. name: "Antelope",
  1153. parents: ["mammal"]
  1154. },
  1155. "weavile": {
  1156. name: "Weavile",
  1157. parents: ["pokemon"]
  1158. },
  1159. "pikachu": {
  1160. name: "Pikachu",
  1161. parents: ["pokemon", "mouse"]
  1162. },
  1163. "grovyle": {
  1164. name: "Grovyle",
  1165. parents: ["pokemon", "plant"]
  1166. },
  1167. "sthara": {
  1168. name: "Sthara",
  1169. parents: ["snow-leopard", "reptile"]
  1170. },
  1171. "star-warrior": {
  1172. name: "Star Warrior",
  1173. parents: ["magical"]
  1174. },
  1175. "dragonoid": {
  1176. name: "Dragonoid",
  1177. parents: ["dragon"]
  1178. },
  1179. "suicune": {
  1180. name: "Suicune",
  1181. parents: ["pokemon"]
  1182. },
  1183. "vole": {
  1184. name: "Vole",
  1185. parents: ["mammal"]
  1186. },
  1187. "blaziken": {
  1188. name: "Blaziken",
  1189. parents: ["pokemon", "avian"]
  1190. },
  1191. "buizel": {
  1192. name: "Buizel",
  1193. parents: ["pokemon", "fish"]
  1194. },
  1195. "floatzel": {
  1196. name: "Floatzel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "umok": {
  1200. name: "Umok",
  1201. parents: ["avian"]
  1202. },
  1203. "sea-monster": {
  1204. name: "Sea Monster",
  1205. parents: ["monster", "fish"]
  1206. },
  1207. "egyptian-vulture": {
  1208. name: "Egyptian Vulture",
  1209. parents: ["avian"]
  1210. },
  1211. "doberman": {
  1212. name: "Doberman",
  1213. parents: ["dog"]
  1214. },
  1215. "zangoose": {
  1216. name: "Zangoose",
  1217. parents: ["pokemon", "mongoose"]
  1218. },
  1219. "mongoose": {
  1220. name: "Mongoose",
  1221. parents: ["mammal"]
  1222. },
  1223. "wickerbeast": {
  1224. name: "Wickerbeast",
  1225. parents: ["monster"]
  1226. },
  1227. "zenari": {
  1228. name: "Zenari",
  1229. parents: ["lizard"]
  1230. },
  1231. "plant": {
  1232. name: "Plant",
  1233. parents: []
  1234. },
  1235. "raskatox": {
  1236. name: "Raskatox",
  1237. parents: ["raccoon", "skunk", "cat", "fox"]
  1238. },
  1239. "mikromare": {
  1240. name: "mikromare",
  1241. parents: ["alien"]
  1242. },
  1243. "alien": {
  1244. name: "Alien",
  1245. parents: ["animal"]
  1246. },
  1247. "deity": {
  1248. name: "Deity",
  1249. parents: []
  1250. },
  1251. "skarlan": {
  1252. name: "Skarlan",
  1253. parents: ["slug", "dragon"]
  1254. },
  1255. "slug": {
  1256. name: "Slug",
  1257. parents: ["mollusk"]
  1258. },
  1259. "mollusk": {
  1260. name: "Mollusk",
  1261. parents: ["animal"]
  1262. },
  1263. "chimera": {
  1264. name: "Chimera",
  1265. parents: ["monster"]
  1266. },
  1267. "gestalt": {
  1268. name: "Gestalt",
  1269. parents: ["construct"]
  1270. },
  1271. "mimic": {
  1272. name: "Mimic",
  1273. parents: ["monster"]
  1274. },
  1275. "calico-rat": {
  1276. name: "Calico Rat",
  1277. parents: ["rat"]
  1278. },
  1279. "panda": {
  1280. name: "Panda",
  1281. parents: ["mammal"]
  1282. },
  1283. "oni": {
  1284. name: "Oni",
  1285. parents: ["monster"]
  1286. },
  1287. "pegasus": {
  1288. name: "Pegasus",
  1289. parents: ["horse"]
  1290. },
  1291. "vulpera": {
  1292. name: "Vulpera",
  1293. parents: ["fennec-fox"]
  1294. },
  1295. "ceratosaurus": {
  1296. name: "Ceratosaurus",
  1297. parents: ["dinosaur"]
  1298. },
  1299. "nykur": {
  1300. name: "Nykur",
  1301. parents: ["horse", "monster"]
  1302. },
  1303. "giraffe": {
  1304. name: "Giraffe",
  1305. parents: ["mammal"]
  1306. },
  1307. "tauren": {
  1308. name: "Tauren",
  1309. parents: ["cow"]
  1310. },
  1311. "draconi": {
  1312. name: "Draconi",
  1313. parents: ["alien", "cat", "cyborg"]
  1314. },
  1315. "dire-wolf": {
  1316. name: "Dire Wolf",
  1317. parents: ["wolf"]
  1318. },
  1319. "ferromorph": {
  1320. name: "Ferromorph",
  1321. parents: ["construct"]
  1322. },
  1323. "meowth": {
  1324. name: "Meowth",
  1325. parents: ["cat", "pokemon"]
  1326. },
  1327. "pavodragon": {
  1328. name: "Pavodragon",
  1329. parents: ["dragon"]
  1330. },
  1331. "aaltranae": {
  1332. name: "Aaltranae",
  1333. parents: ["dragon"]
  1334. },
  1335. "cyborg": {
  1336. name: "Cyborg",
  1337. parents: ["machine"]
  1338. },
  1339. "draptor": {
  1340. name: "Draptor",
  1341. parents: ["dragon"]
  1342. },
  1343. "candy": {
  1344. name: "Candy",
  1345. parents: []
  1346. },
  1347. "drenath": {
  1348. name: "Drenath",
  1349. parents: ["dragon", "snake", "rabbit"]
  1350. },
  1351. "coyju": {
  1352. name: "Coyju",
  1353. parents: ["coyote", "kaiju"]
  1354. },
  1355. "kaiju": {
  1356. name: "Kaiju",
  1357. parents: ["monster"]
  1358. },
  1359. "nickit": {
  1360. name: "Nickit",
  1361. parents: ["pokemon", "cat"]
  1362. },
  1363. "lopunny": {
  1364. name: "Lopunny",
  1365. parents: ["pokemon", "rabbit"]
  1366. },
  1367. "korean-jindo-dog": {
  1368. name: "Korean Jindo Dog",
  1369. parents: ["dog"]
  1370. },
  1371. "naga": {
  1372. name: "Naga",
  1373. parents: ["snake", "monster"]
  1374. },
  1375. "undead": {
  1376. name: "Undead",
  1377. parents: ["monster"]
  1378. },
  1379. "whale": {
  1380. name: "Whale",
  1381. parents: ["fish"]
  1382. },
  1383. "gelato-bee": {
  1384. name: "Gelato Bee",
  1385. parents: ["bee"]
  1386. },
  1387. "bee": {
  1388. name: "Bee",
  1389. parents: ["insect"]
  1390. },
  1391. "gardevoir": {
  1392. name: "Gardevoir",
  1393. parents: ["pokemon"]
  1394. },
  1395. "ant": {
  1396. name: "Ant",
  1397. parents: ["insect"]
  1398. },
  1399. "frog": {
  1400. name: "Frog",
  1401. parents: ["amphibian"]
  1402. },
  1403. "amphibian": {
  1404. name: "Amphibian",
  1405. parents: ["animal"]
  1406. },
  1407. "pangolin": {
  1408. name: "Pangolin",
  1409. parents: ["mammal"]
  1410. },
  1411. "uragi'viidorn": {
  1412. name: "Uragi'viidorn",
  1413. parents: ["avian", "bear"]
  1414. },
  1415. "gryphdelphais": {
  1416. name: "Gryphdelphais",
  1417. parents: ["dolphin", "gryphon"]
  1418. },
  1419. "plush": {
  1420. name: "Plush",
  1421. parents: ["construct"]
  1422. },
  1423. "draiger": {
  1424. name: "Draiger",
  1425. parents: ["dragon","tiger"]
  1426. },
  1427. "foxsky": {
  1428. name: "Foxsky",
  1429. parents: ["fox", "husky"]
  1430. },
  1431. "umbreon": {
  1432. name: "Umbreon",
  1433. parents: ["eeveelution"]
  1434. },
  1435. "slime-dragon": {
  1436. name: "Slime Dragon",
  1437. parents: ["dragon"]
  1438. },
  1439. "enderman": {
  1440. name: "Enderman",
  1441. parents: ["monster"]
  1442. },
  1443. "gremlin": {
  1444. name: "Gremlin",
  1445. parents: ["monster"]
  1446. },
  1447. "dragonsune": {
  1448. name: "Dragonsune",
  1449. parents: ["dragon", "kitsune"]
  1450. },
  1451. "ghost": {
  1452. name: "Ghost",
  1453. parents: ["monster"]
  1454. },
  1455. "false-vampire-bat": {
  1456. name: "False Vampire Bat",
  1457. parents: ["bat"]
  1458. },
  1459. "succubus": {
  1460. name: "Succubus",
  1461. parents: ["demon"]
  1462. },
  1463. "mia": {
  1464. name: "Mia",
  1465. parents: ["canine"]
  1466. },
  1467. "rainbow": {
  1468. name: "Rainbow",
  1469. parents: ["monster"]
  1470. },
  1471. "solgaleo": {
  1472. name: "Solgaleo",
  1473. parents: ["pokemon"]
  1474. },
  1475. "lucent-nargacuga": {
  1476. name: "Lucent Nargacuga",
  1477. parents: ["monster-hunter"]
  1478. },
  1479. "monster-hunter": {
  1480. name: "Monster Hunter",
  1481. parents: ["monster"]
  1482. },
  1483. "leviathan": {
  1484. "name": "Leviathan",
  1485. "url": "sea-monster"
  1486. },
  1487. "bull": {
  1488. name: "Bull",
  1489. parents: ["mammal"]
  1490. },
  1491. "tanuki": {
  1492. name: "Tanuki",
  1493. parents: ["monster"]
  1494. },
  1495. "chakat": {
  1496. name: "Chakat",
  1497. parents: ["cat"]
  1498. },
  1499. "hydra": {
  1500. name: "Hydra",
  1501. parents: ["monster"]
  1502. },
  1503. "zigzagoon": {
  1504. name: "Zigzagoon",
  1505. parents: ["raccoon", "pokemon"]
  1506. },
  1507. "vulture": {
  1508. name: "Vulture",
  1509. parents: ["avian"]
  1510. },
  1511. "eastern-dragon": {
  1512. name: "Eastern Dragon",
  1513. parents: ["dragon"]
  1514. },
  1515. "gryffon": {
  1516. name: "Gryffon",
  1517. parents: ["phoenix", "red-panda"]
  1518. },
  1519. "amtsvane": {
  1520. name: "Amtsvane",
  1521. parents: ["reptile"]
  1522. },
  1523. "kigavi": {
  1524. name: "Kigavi",
  1525. parents: ["avian"]
  1526. },
  1527. "turian": {
  1528. name: "Turian",
  1529. parents: ["avian"]
  1530. },
  1531. "zeraora": {
  1532. name: "Zeraora",
  1533. parents: ["pokemon"]
  1534. },
  1535. "sandshrew": {
  1536. name: "Sandshrew",
  1537. parents: ["pokemon", "pangolin"]
  1538. },
  1539. "valais-blacknose-sheep": {
  1540. name: "Valais Blacknose Sheep",
  1541. parents: ["sheep"]
  1542. },
  1543. "novaleit": {
  1544. name: "Novaleit",
  1545. parents: ["mammal"]
  1546. },
  1547. "dunnoh": {
  1548. name: "Dunnoh",
  1549. parents: ["mammal"]
  1550. },
  1551. "lunaral-dragon": {
  1552. name: "Lunaral Dragon",
  1553. parents: ["dragon"]
  1554. },
  1555. "arctic-wolf": {
  1556. name: "Arctic Wolf",
  1557. parents: ["wolf"]
  1558. },
  1559. "donkey": {
  1560. name: "Donkey",
  1561. parents: ["horse"]
  1562. },
  1563. "chinchilla": {
  1564. name: "Chinchilla",
  1565. parents: ["rodent"]
  1566. },
  1567. "felkin": {
  1568. name: "Felkin",
  1569. parents: ["dragon"]
  1570. },
  1571. "tykeriel": {
  1572. name: "Tykeriel",
  1573. parents: ["avian"]
  1574. },
  1575. "folf": {
  1576. name: "Folf",
  1577. parents: ["fox", "wolf"]
  1578. },
  1579. }
  1580. //species
  1581. function getSpeciesInfo(speciesList) {
  1582. let result = new Set();
  1583. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1584. result.add(entry)
  1585. });
  1586. return Array.from(result);
  1587. };
  1588. function getSpeciesInfoHelper(species) {
  1589. if (!speciesData[species]) {
  1590. console.warn(species + " doesn't exist");
  1591. return [];
  1592. }
  1593. if (speciesData[species].parents) {
  1594. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1595. } else {
  1596. return [species];
  1597. }
  1598. }
  1599. characterMakers.push(() => makeCharacter(
  1600. {
  1601. name: "Fen",
  1602. species: ["crux"],
  1603. description: {
  1604. title: "Bio",
  1605. text: "Very furry. Sheds on everything."
  1606. },
  1607. tags: [
  1608. "anthro",
  1609. "goo"
  1610. ]
  1611. },
  1612. {
  1613. back: {
  1614. height: math.unit(2.2428, "meter"),
  1615. weight: math.unit(124.738, "kg"),
  1616. name: "Back",
  1617. image: {
  1618. source: "./media/characters/fen/back.svg",
  1619. extra: 2024 / 1867,
  1620. bottom: 13 / 2037
  1621. },
  1622. info: {
  1623. description: {
  1624. mode: "append",
  1625. text: "\n\nHe is not currently looking at you."
  1626. }
  1627. }
  1628. },
  1629. full: {
  1630. height: math.unit(1.34, "meter"),
  1631. weight: math.unit(225, "kg"),
  1632. name: "Full",
  1633. image: {
  1634. source: "./media/characters/fen/full.svg"
  1635. },
  1636. info: {
  1637. description: {
  1638. mode: "append",
  1639. text: "\n\nMunch."
  1640. }
  1641. }
  1642. },
  1643. kneeling: {
  1644. height: math.unit(5.4, "feet"),
  1645. weight: math.unit(124.738, "kg"),
  1646. name: "Kneeling",
  1647. image: {
  1648. source: "./media/characters/fen/kneeling.svg",
  1649. extra: 563 / 507
  1650. }
  1651. },
  1652. goo: {
  1653. height: math.unit(2.8, "feet"),
  1654. weight: math.unit(125, "kg"),
  1655. capacity: math.unit(1, "people"),
  1656. name: "Goo",
  1657. image: {
  1658. source: "./media/characters/fen/goo.svg",
  1659. bottom: 116 / 613
  1660. }
  1661. },
  1662. lounging: {
  1663. height: math.unit(6.5, "feet"),
  1664. weight: math.unit(125, "kg"),
  1665. name: "Lounging",
  1666. image: {
  1667. source: "./media/characters/fen/lounging.svg"
  1668. }
  1669. },
  1670. },
  1671. [
  1672. {
  1673. name: "Normal",
  1674. height: math.unit(2.2428, "meter")
  1675. },
  1676. {
  1677. name: "Big",
  1678. height: math.unit(12, "feet")
  1679. },
  1680. {
  1681. name: "Minimacro",
  1682. height: math.unit(40, "feet"),
  1683. default: true,
  1684. info: {
  1685. description: {
  1686. mode: "append",
  1687. text: "\n\nTOO DAMN BIG"
  1688. }
  1689. }
  1690. },
  1691. {
  1692. name: "Macro",
  1693. height: math.unit(100, "feet"),
  1694. info: {
  1695. description: {
  1696. mode: "append",
  1697. text: "\n\nTOO DAMN BIG"
  1698. }
  1699. }
  1700. },
  1701. {
  1702. name: "Macro+",
  1703. height: math.unit(300, "feet")
  1704. },
  1705. {
  1706. name: "Megamacro",
  1707. height: math.unit(2, "miles")
  1708. }
  1709. ]
  1710. ))
  1711. characterMakers.push(() => makeCharacter(
  1712. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1713. {
  1714. front: {
  1715. height: math.unit(183, "cm"),
  1716. weight: math.unit(80, "kg"),
  1717. name: "Front",
  1718. image: {
  1719. source: "./media/characters/sofia-fluttertail/front.svg",
  1720. bottom: 0.01,
  1721. extra: 2154 / 2081
  1722. }
  1723. },
  1724. frontAlt: {
  1725. height: math.unit(183, "cm"),
  1726. weight: math.unit(80, "kg"),
  1727. name: "Front (alt)",
  1728. image: {
  1729. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1730. }
  1731. },
  1732. back: {
  1733. height: math.unit(183, "cm"),
  1734. weight: math.unit(80, "kg"),
  1735. name: "Back",
  1736. image: {
  1737. source: "./media/characters/sofia-fluttertail/back.svg"
  1738. }
  1739. },
  1740. kneeling: {
  1741. height: math.unit(125, "cm"),
  1742. weight: math.unit(80, "kg"),
  1743. name: "Kneeling",
  1744. image: {
  1745. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1746. extra: 1033 / 977,
  1747. bottom: 23.7 / 1057
  1748. }
  1749. },
  1750. maw: {
  1751. height: math.unit(183 / 5, "cm"),
  1752. name: "Maw",
  1753. image: {
  1754. source: "./media/characters/sofia-fluttertail/maw.svg"
  1755. }
  1756. },
  1757. mawcloseup: {
  1758. height: math.unit(183 / 5 * 0.41, "cm"),
  1759. name: "Maw (Closeup)",
  1760. image: {
  1761. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1762. }
  1763. },
  1764. paws: {
  1765. height: math.unit(1.17, "feet"),
  1766. name: "Paws",
  1767. image: {
  1768. source: "./media/characters/sofia-fluttertail/paws.svg",
  1769. extra: 851 / 851,
  1770. bottom: 17 / 868
  1771. }
  1772. },
  1773. },
  1774. [
  1775. {
  1776. name: "Normal",
  1777. height: math.unit(1.83, "meter")
  1778. },
  1779. {
  1780. name: "Size Thief",
  1781. height: math.unit(18, "feet")
  1782. },
  1783. {
  1784. name: "50 Foot Collie",
  1785. height: math.unit(50, "feet")
  1786. },
  1787. {
  1788. name: "Macro",
  1789. height: math.unit(96, "feet"),
  1790. default: true
  1791. },
  1792. {
  1793. name: "Megamerger",
  1794. height: math.unit(650, "feet")
  1795. },
  1796. ]
  1797. ))
  1798. characterMakers.push(() => makeCharacter(
  1799. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1800. {
  1801. front: {
  1802. height: math.unit(7, "feet"),
  1803. weight: math.unit(100, "kg"),
  1804. name: "Front",
  1805. image: {
  1806. source: "./media/characters/march/front.svg",
  1807. extra: 1,
  1808. bottom: 0.015
  1809. }
  1810. },
  1811. foot: {
  1812. height: math.unit(0.9, "feet"),
  1813. name: "Foot",
  1814. image: {
  1815. source: "./media/characters/march/foot.svg"
  1816. }
  1817. },
  1818. },
  1819. [
  1820. {
  1821. name: "Normal",
  1822. height: math.unit(7.9, "feet")
  1823. },
  1824. {
  1825. name: "Macro",
  1826. height: math.unit(220, "meters")
  1827. },
  1828. {
  1829. name: "Megamacro",
  1830. height: math.unit(2.98, "km"),
  1831. default: true
  1832. },
  1833. {
  1834. name: "Gigamacro",
  1835. height: math.unit(15963, "km")
  1836. },
  1837. {
  1838. name: "Teramacro",
  1839. height: math.unit(2980000000, "km")
  1840. },
  1841. {
  1842. name: "Examacro",
  1843. height: math.unit(250, "parsecs")
  1844. },
  1845. ]
  1846. ))
  1847. characterMakers.push(() => makeCharacter(
  1848. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1849. {
  1850. front: {
  1851. height: math.unit(6, "feet"),
  1852. weight: math.unit(60, "kg"),
  1853. name: "Front",
  1854. image: {
  1855. source: "./media/characters/noir/front.svg",
  1856. extra: 1,
  1857. bottom: 0.032
  1858. }
  1859. },
  1860. },
  1861. [
  1862. {
  1863. name: "Normal",
  1864. height: math.unit(6.6, "feet")
  1865. },
  1866. {
  1867. name: "Macro",
  1868. height: math.unit(500, "feet")
  1869. },
  1870. {
  1871. name: "Megamacro",
  1872. height: math.unit(2.5, "km"),
  1873. default: true
  1874. },
  1875. {
  1876. name: "Gigamacro",
  1877. height: math.unit(22500, "km")
  1878. },
  1879. {
  1880. name: "Teramacro",
  1881. height: math.unit(2500000000, "km")
  1882. },
  1883. {
  1884. name: "Examacro",
  1885. height: math.unit(200, "parsecs")
  1886. },
  1887. ]
  1888. ))
  1889. characterMakers.push(() => makeCharacter(
  1890. { name: "Okuri", species: ["kitsune"], 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/okuri/front.svg",
  1898. extra: 1,
  1899. bottom: 0.037
  1900. }
  1901. },
  1902. back: {
  1903. height: math.unit(7, "feet"),
  1904. weight: math.unit(100, "kg"),
  1905. name: "Back",
  1906. image: {
  1907. source: "./media/characters/okuri/back.svg",
  1908. extra: 1,
  1909. bottom: 0.007
  1910. }
  1911. },
  1912. },
  1913. [
  1914. {
  1915. name: "Megamacro",
  1916. height: math.unit(100, "miles"),
  1917. default: true
  1918. },
  1919. ]
  1920. ))
  1921. characterMakers.push(() => makeCharacter(
  1922. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1923. {
  1924. front: {
  1925. height: math.unit(7, "feet"),
  1926. weight: math.unit(100, "kg"),
  1927. name: "Front",
  1928. image: {
  1929. source: "./media/characters/manny/front.svg",
  1930. extra: 1,
  1931. bottom: 0.06
  1932. }
  1933. },
  1934. back: {
  1935. height: math.unit(7, "feet"),
  1936. weight: math.unit(100, "kg"),
  1937. name: "Back",
  1938. image: {
  1939. source: "./media/characters/manny/back.svg",
  1940. extra: 1,
  1941. bottom: 0.014
  1942. }
  1943. },
  1944. },
  1945. [
  1946. {
  1947. name: "Normal",
  1948. height: math.unit(7, "feet"),
  1949. },
  1950. {
  1951. name: "Macro",
  1952. height: math.unit(78, "feet"),
  1953. default: true
  1954. },
  1955. {
  1956. name: "Macro+",
  1957. height: math.unit(300, "meters")
  1958. },
  1959. {
  1960. name: "Macro++",
  1961. height: math.unit(2400, "meters")
  1962. },
  1963. {
  1964. name: "Megamacro",
  1965. height: math.unit(5167, "meters")
  1966. },
  1967. {
  1968. name: "Gigamacro",
  1969. height: math.unit(41769, "miles")
  1970. },
  1971. ]
  1972. ))
  1973. characterMakers.push(() => makeCharacter(
  1974. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1975. {
  1976. front: {
  1977. height: math.unit(7, "feet"),
  1978. weight: math.unit(100, "kg"),
  1979. name: "Front",
  1980. image: {
  1981. source: "./media/characters/adake/front-1.svg"
  1982. }
  1983. },
  1984. frontAlt: {
  1985. height: math.unit(7, "feet"),
  1986. weight: math.unit(100, "kg"),
  1987. name: "Front (Alt)",
  1988. image: {
  1989. source: "./media/characters/adake/front-2.svg",
  1990. extra: 1,
  1991. bottom: 0.01
  1992. }
  1993. },
  1994. back: {
  1995. height: math.unit(7, "feet"),
  1996. weight: math.unit(100, "kg"),
  1997. name: "Back",
  1998. image: {
  1999. source: "./media/characters/adake/back.svg",
  2000. }
  2001. },
  2002. kneel: {
  2003. height: math.unit(5.385, "feet"),
  2004. weight: math.unit(100, "kg"),
  2005. name: "Kneeling",
  2006. image: {
  2007. source: "./media/characters/adake/kneel.svg",
  2008. bottom: 0.052
  2009. }
  2010. },
  2011. },
  2012. [
  2013. {
  2014. name: "Normal",
  2015. height: math.unit(7, "feet"),
  2016. },
  2017. {
  2018. name: "Macro",
  2019. height: math.unit(78, "feet"),
  2020. default: true
  2021. },
  2022. {
  2023. name: "Macro+",
  2024. height: math.unit(300, "meters")
  2025. },
  2026. {
  2027. name: "Macro++",
  2028. height: math.unit(2400, "meters")
  2029. },
  2030. {
  2031. name: "Megamacro",
  2032. height: math.unit(5167, "meters")
  2033. },
  2034. {
  2035. name: "Gigamacro",
  2036. height: math.unit(41769, "miles")
  2037. },
  2038. ]
  2039. ))
  2040. characterMakers.push(() => makeCharacter(
  2041. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2042. {
  2043. front: {
  2044. height: math.unit(1.65, "meters"),
  2045. weight: math.unit(50, "kg"),
  2046. name: "Front",
  2047. image: {
  2048. source: "./media/characters/elijah/front.svg",
  2049. extra: 858 / 830,
  2050. bottom: 95.5 / 953.8559
  2051. }
  2052. },
  2053. back: {
  2054. height: math.unit(1.65, "meters"),
  2055. weight: math.unit(50, "kg"),
  2056. name: "Back",
  2057. image: {
  2058. source: "./media/characters/elijah/back.svg",
  2059. extra: 895 / 850,
  2060. bottom: 5.3 / 897.956
  2061. }
  2062. },
  2063. frontNsfw: {
  2064. height: math.unit(1.65, "meters"),
  2065. weight: math.unit(50, "kg"),
  2066. name: "Front (NSFW)",
  2067. image: {
  2068. source: "./media/characters/elijah/front-nsfw.svg",
  2069. extra: 858 / 830,
  2070. bottom: 95.5 / 953.8559
  2071. }
  2072. },
  2073. backNsfw: {
  2074. height: math.unit(1.65, "meters"),
  2075. weight: math.unit(50, "kg"),
  2076. name: "Back (NSFW)",
  2077. image: {
  2078. source: "./media/characters/elijah/back-nsfw.svg",
  2079. extra: 895 / 850,
  2080. bottom: 5.3 / 897.956
  2081. }
  2082. },
  2083. dick: {
  2084. height: math.unit(1, "feet"),
  2085. name: "Dick",
  2086. image: {
  2087. source: "./media/characters/elijah/dick.svg"
  2088. }
  2089. },
  2090. beakOpen: {
  2091. height: math.unit(1.25, "feet"),
  2092. name: "Beak (Open)",
  2093. image: {
  2094. source: "./media/characters/elijah/beak-open.svg"
  2095. }
  2096. },
  2097. beakShut: {
  2098. height: math.unit(1.25, "feet"),
  2099. name: "Beak (Shut)",
  2100. image: {
  2101. source: "./media/characters/elijah/beak-shut.svg"
  2102. }
  2103. },
  2104. footFlexing: {
  2105. height: math.unit(1.61, "feet"),
  2106. name: "Foot (Flexing)",
  2107. image: {
  2108. source: "./media/characters/elijah/foot-flexing.svg"
  2109. }
  2110. },
  2111. footStepping: {
  2112. height: math.unit(1.44, "feet"),
  2113. name: "Foot (Stepping)",
  2114. image: {
  2115. source: "./media/characters/elijah/foot-stepping.svg"
  2116. }
  2117. },
  2118. plantigradeLeg: {
  2119. height: math.unit(2.34, "feet"),
  2120. name: "Plantigrade Leg",
  2121. image: {
  2122. source: "./media/characters/elijah/plantigrade-leg.svg"
  2123. }
  2124. },
  2125. plantigradeFootLeft: {
  2126. height: math.unit(0.9, "feet"),
  2127. name: "Plantigrade Foot (Left)",
  2128. image: {
  2129. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2130. }
  2131. },
  2132. plantigradeFootRight: {
  2133. height: math.unit(0.9, "feet"),
  2134. name: "Plantigrade Foot (Right)",
  2135. image: {
  2136. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2137. }
  2138. },
  2139. },
  2140. [
  2141. {
  2142. name: "Normal",
  2143. height: math.unit(1.65, "meters")
  2144. },
  2145. {
  2146. name: "Macro",
  2147. height: math.unit(55, "meters"),
  2148. default: true
  2149. },
  2150. {
  2151. name: "Macro+",
  2152. height: math.unit(105, "meters")
  2153. },
  2154. ]
  2155. ))
  2156. characterMakers.push(() => makeCharacter(
  2157. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2158. {
  2159. front: {
  2160. height: math.unit(11, "feet"),
  2161. weight: math.unit(80, "kg"),
  2162. name: "Front",
  2163. image: {
  2164. source: "./media/characters/rai/front.svg",
  2165. extra: 1,
  2166. bottom: 0.03
  2167. }
  2168. },
  2169. side: {
  2170. height: math.unit(11, "feet"),
  2171. weight: math.unit(80, "kg"),
  2172. name: "Side",
  2173. image: {
  2174. source: "./media/characters/rai/side.svg"
  2175. }
  2176. },
  2177. back: {
  2178. height: math.unit(11, "feet"),
  2179. weight: math.unit(80, "lb"),
  2180. name: "Back",
  2181. image: {
  2182. source: "./media/characters/rai/back.svg",
  2183. extra: 1,
  2184. bottom: 0.01
  2185. }
  2186. },
  2187. feral: {
  2188. height: math.unit(11, "feet"),
  2189. weight: math.unit(800, "lb"),
  2190. name: "Feral",
  2191. image: {
  2192. source: "./media/characters/rai/feral.svg",
  2193. extra: 1050 / 659,
  2194. bottom: 0.07
  2195. }
  2196. },
  2197. dragon: {
  2198. height: math.unit(23, "feet"),
  2199. weight: math.unit(50000, "lb"),
  2200. name: "Dragon",
  2201. image: {
  2202. source: "./media/characters/rai/dragon.svg",
  2203. extra: 2498 / 2030,
  2204. bottom: 85.2 / 2584
  2205. }
  2206. },
  2207. maw: {
  2208. height: math.unit(6 / 3.81416, "feet"),
  2209. name: "Maw",
  2210. image: {
  2211. source: "./media/characters/rai/maw.svg"
  2212. }
  2213. },
  2214. },
  2215. [
  2216. {
  2217. name: "Normal",
  2218. height: math.unit(11, "feet")
  2219. },
  2220. {
  2221. name: "Macro",
  2222. height: math.unit(302, "feet"),
  2223. default: true
  2224. },
  2225. ]
  2226. ))
  2227. characterMakers.push(() => makeCharacter(
  2228. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2229. {
  2230. frontDressed: {
  2231. height: math.unit(216, "feet"),
  2232. weight: math.unit(7000000, "lb"),
  2233. name: "Front (Dressed)",
  2234. image: {
  2235. source: "./media/characters/jazzy/front-dressed.svg",
  2236. extra: 2738 / 2651,
  2237. bottom: 41.8 / 2786
  2238. }
  2239. },
  2240. backDressed: {
  2241. height: math.unit(216, "feet"),
  2242. weight: math.unit(7000000, "lb"),
  2243. name: "Back (Dressed)",
  2244. image: {
  2245. source: "./media/characters/jazzy/back-dressed.svg",
  2246. extra: 2775 / 2673,
  2247. bottom: 36.8 / 2817
  2248. }
  2249. },
  2250. front: {
  2251. height: math.unit(216, "feet"),
  2252. weight: math.unit(7000000, "lb"),
  2253. name: "Front",
  2254. image: {
  2255. source: "./media/characters/jazzy/front.svg",
  2256. extra: 2738 / 2651,
  2257. bottom: 41.8 / 2786
  2258. }
  2259. },
  2260. back: {
  2261. height: math.unit(216, "feet"),
  2262. weight: math.unit(7000000, "lb"),
  2263. name: "Back",
  2264. image: {
  2265. source: "./media/characters/jazzy/back.svg",
  2266. extra: 2775 / 2673,
  2267. bottom: 36.8 / 2817
  2268. }
  2269. },
  2270. maw: {
  2271. height: math.unit(20, "feet"),
  2272. name: "Maw",
  2273. image: {
  2274. source: "./media/characters/jazzy/maw.svg"
  2275. }
  2276. },
  2277. paws: {
  2278. height: math.unit(27.5, "feet"),
  2279. name: "Paws",
  2280. image: {
  2281. source: "./media/characters/jazzy/paws.svg"
  2282. }
  2283. },
  2284. eye: {
  2285. height: math.unit(4.4, "feet"),
  2286. name: "Eye",
  2287. image: {
  2288. source: "./media/characters/jazzy/eye.svg"
  2289. }
  2290. },
  2291. droneOffense: {
  2292. height: math.unit(9.5, "inches"),
  2293. name: "Drone (Offense)",
  2294. image: {
  2295. source: "./media/characters/jazzy/drone-offense.svg"
  2296. }
  2297. },
  2298. droneRecon: {
  2299. height: math.unit(9.5, "inches"),
  2300. name: "Drone (Recon)",
  2301. image: {
  2302. source: "./media/characters/jazzy/drone-recon.svg"
  2303. }
  2304. },
  2305. droneDefense: {
  2306. height: math.unit(9.5, "inches"),
  2307. name: "Drone (Defense)",
  2308. image: {
  2309. source: "./media/characters/jazzy/drone-defense.svg"
  2310. }
  2311. },
  2312. },
  2313. [
  2314. {
  2315. name: "Macro",
  2316. height: math.unit(216, "feet"),
  2317. default: true
  2318. },
  2319. ]
  2320. ))
  2321. characterMakers.push(() => makeCharacter(
  2322. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2323. {
  2324. front: {
  2325. height: math.unit(9 + 6/12, "feet"),
  2326. weight: math.unit(700, "lb"),
  2327. name: "Front",
  2328. image: {
  2329. source: "./media/characters/flamm/front.svg",
  2330. extra: 1751/1632,
  2331. bottom: 46/1797
  2332. }
  2333. },
  2334. buff: {
  2335. height: math.unit(9 + 6/12, "feet"),
  2336. weight: math.unit(950, "lb"),
  2337. name: "Buff",
  2338. image: {
  2339. source: "./media/characters/flamm/buff.svg",
  2340. extra: 3018/2874,
  2341. bottom: 221/3239
  2342. }
  2343. },
  2344. },
  2345. [
  2346. {
  2347. name: "Normal",
  2348. height: math.unit(9.5, "feet")
  2349. },
  2350. {
  2351. name: "Macro",
  2352. height: math.unit(200, "feet"),
  2353. default: true
  2354. },
  2355. ]
  2356. ))
  2357. characterMakers.push(() => makeCharacter(
  2358. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2359. {
  2360. front: {
  2361. height: math.unit(5 + 3/12, "feet"),
  2362. weight: math.unit(60, "kg"),
  2363. name: "Front",
  2364. image: {
  2365. source: "./media/characters/zephiro/front.svg",
  2366. extra: 2309 / 2162,
  2367. bottom: 0.069
  2368. }
  2369. },
  2370. side: {
  2371. height: math.unit(5 + 3/12, "feet"),
  2372. weight: math.unit(60, "kg"),
  2373. name: "Side",
  2374. image: {
  2375. source: "./media/characters/zephiro/side.svg",
  2376. extra: 2403 / 2279,
  2377. bottom: 0.015
  2378. }
  2379. },
  2380. back: {
  2381. height: math.unit(5 + 3/12, "feet"),
  2382. weight: math.unit(60, "kg"),
  2383. name: "Back",
  2384. image: {
  2385. source: "./media/characters/zephiro/back.svg",
  2386. extra: 2373 / 2244,
  2387. bottom: 0.013
  2388. }
  2389. },
  2390. hand: {
  2391. height: math.unit(0.68, "feet"),
  2392. name: "Hand",
  2393. image: {
  2394. source: "./media/characters/zephiro/hand.svg"
  2395. }
  2396. },
  2397. paw: {
  2398. height: math.unit(1, "feet"),
  2399. name: "Paw",
  2400. image: {
  2401. source: "./media/characters/zephiro/paw.svg"
  2402. }
  2403. },
  2404. beans: {
  2405. height: math.unit(0.93, "feet"),
  2406. name: "Beans",
  2407. image: {
  2408. source: "./media/characters/zephiro/beans.svg"
  2409. }
  2410. },
  2411. },
  2412. [
  2413. {
  2414. name: "Micro",
  2415. height: math.unit(3, "inches")
  2416. },
  2417. {
  2418. name: "Normal",
  2419. height: math.unit(5 + 3 / 12, "feet"),
  2420. default: true
  2421. },
  2422. {
  2423. name: "Macro",
  2424. height: math.unit(118, "feet")
  2425. },
  2426. ]
  2427. ))
  2428. characterMakers.push(() => makeCharacter(
  2429. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2430. {
  2431. front: {
  2432. height: math.unit(5, "feet"),
  2433. weight: math.unit(90, "kg"),
  2434. name: "Front",
  2435. image: {
  2436. source: "./media/characters/fory/front.svg",
  2437. extra: 2862 / 2674,
  2438. bottom: 180 / 3043.8
  2439. }
  2440. },
  2441. back: {
  2442. height: math.unit(5, "feet"),
  2443. weight: math.unit(90, "kg"),
  2444. name: "Back",
  2445. image: {
  2446. source: "./media/characters/fory/back.svg",
  2447. extra: 2962 / 2791,
  2448. bottom: 106 / 3071.8
  2449. }
  2450. },
  2451. foot: {
  2452. height: math.unit(2.14, "feet"),
  2453. name: "Foot",
  2454. image: {
  2455. source: "./media/characters/fory/foot.svg"
  2456. }
  2457. },
  2458. },
  2459. [
  2460. {
  2461. name: "Normal",
  2462. height: math.unit(5, "feet")
  2463. },
  2464. {
  2465. name: "Macro",
  2466. height: math.unit(50, "feet"),
  2467. default: true
  2468. },
  2469. {
  2470. name: "Megamacro",
  2471. height: math.unit(10, "miles")
  2472. },
  2473. {
  2474. name: "Gigamacro",
  2475. height: math.unit(5, "earths")
  2476. },
  2477. ]
  2478. ))
  2479. characterMakers.push(() => makeCharacter(
  2480. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2481. {
  2482. front: {
  2483. height: math.unit(7, "feet"),
  2484. weight: math.unit(90, "kg"),
  2485. name: "Front",
  2486. image: {
  2487. source: "./media/characters/kurrikage/front.svg",
  2488. extra: 1,
  2489. bottom: 0.035
  2490. }
  2491. },
  2492. back: {
  2493. height: math.unit(7, "feet"),
  2494. weight: math.unit(90, "lb"),
  2495. name: "Back",
  2496. image: {
  2497. source: "./media/characters/kurrikage/back.svg"
  2498. }
  2499. },
  2500. paw: {
  2501. height: math.unit(1.5, "feet"),
  2502. name: "Paw",
  2503. image: {
  2504. source: "./media/characters/kurrikage/paw.svg"
  2505. }
  2506. },
  2507. staff: {
  2508. height: math.unit(6.7, "feet"),
  2509. name: "Staff",
  2510. image: {
  2511. source: "./media/characters/kurrikage/staff.svg"
  2512. }
  2513. },
  2514. peek: {
  2515. height: math.unit(1.05, "feet"),
  2516. name: "Peeking",
  2517. image: {
  2518. source: "./media/characters/kurrikage/peek.svg",
  2519. bottom: 0.08
  2520. }
  2521. },
  2522. },
  2523. [
  2524. {
  2525. name: "Normal",
  2526. height: math.unit(12, "feet"),
  2527. default: true
  2528. },
  2529. {
  2530. name: "Big",
  2531. height: math.unit(20, "feet")
  2532. },
  2533. {
  2534. name: "Macro",
  2535. height: math.unit(500, "feet")
  2536. },
  2537. {
  2538. name: "Megamacro",
  2539. height: math.unit(20, "miles")
  2540. },
  2541. ]
  2542. ))
  2543. characterMakers.push(() => makeCharacter(
  2544. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2545. {
  2546. front: {
  2547. height: math.unit(6, "feet"),
  2548. weight: math.unit(75, "kg"),
  2549. name: "Front",
  2550. image: {
  2551. source: "./media/characters/shingo/front.svg",
  2552. extra: 706/681,
  2553. bottom: 11/717
  2554. }
  2555. },
  2556. frontAlt: {
  2557. height: math.unit(6, "feet"),
  2558. weight: math.unit(75, "kg"),
  2559. name: "Front (Alt)",
  2560. image: {
  2561. source: "./media/characters/shingo/front-alt.svg",
  2562. extra: 3511 / 3338,
  2563. bottom: 0.005
  2564. }
  2565. },
  2566. paw: {
  2567. height: math.unit(1, "feet"),
  2568. name: "Paw",
  2569. image: {
  2570. source: "./media/characters/shingo/paw.svg"
  2571. }
  2572. },
  2573. },
  2574. [
  2575. {
  2576. name: "Micro",
  2577. height: math.unit(4, "inches")
  2578. },
  2579. {
  2580. name: "Normal",
  2581. height: math.unit(6, "feet"),
  2582. default: true
  2583. },
  2584. {
  2585. name: "Macro",
  2586. height: math.unit(108, "feet")
  2587. },
  2588. {
  2589. name: "Macro+",
  2590. height: math.unit(1500, "feet")
  2591. },
  2592. ]
  2593. ))
  2594. characterMakers.push(() => makeCharacter(
  2595. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2596. {
  2597. side: {
  2598. height: math.unit(6, "feet"),
  2599. weight: math.unit(75, "kg"),
  2600. name: "Side",
  2601. image: {
  2602. source: "./media/characters/aigey/side.svg"
  2603. }
  2604. },
  2605. },
  2606. [
  2607. {
  2608. name: "Macro",
  2609. height: math.unit(200, "feet"),
  2610. default: true
  2611. },
  2612. {
  2613. name: "Megamacro",
  2614. height: math.unit(100, "miles")
  2615. },
  2616. ]
  2617. )
  2618. )
  2619. characterMakers.push(() => makeCharacter(
  2620. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2621. {
  2622. front: {
  2623. height: math.unit(5 + 5 / 12, "feet"),
  2624. weight: math.unit(75, "kg"),
  2625. name: "Front",
  2626. image: {
  2627. source: "./media/characters/natasha/front.svg",
  2628. extra: 859 / 824,
  2629. bottom: 23 / 879.6
  2630. }
  2631. },
  2632. frontNsfw: {
  2633. height: math.unit(5 + 5 / 12, "feet"),
  2634. weight: math.unit(75, "kg"),
  2635. name: "Front (NSFW)",
  2636. image: {
  2637. source: "./media/characters/natasha/front-nsfw.svg",
  2638. extra: 859 / 824,
  2639. bottom: 23 / 879.6
  2640. }
  2641. },
  2642. frontErect: {
  2643. height: math.unit(5 + 5 / 12, "feet"),
  2644. weight: math.unit(75, "kg"),
  2645. name: "Front (Erect)",
  2646. image: {
  2647. source: "./media/characters/natasha/front-erect.svg",
  2648. extra: 859 / 824,
  2649. bottom: 23 / 879.6
  2650. }
  2651. },
  2652. back: {
  2653. height: math.unit(5 + 5 / 12, "feet"),
  2654. weight: math.unit(75, "kg"),
  2655. name: "Back",
  2656. image: {
  2657. source: "./media/characters/natasha/back.svg",
  2658. extra: 887.9 / 852.6,
  2659. bottom: 9.7 / 896.4
  2660. }
  2661. },
  2662. backAlt: {
  2663. height: math.unit(5 + 5 / 12, "feet"),
  2664. weight: math.unit(75, "kg"),
  2665. name: "Back (Alt)",
  2666. image: {
  2667. source: "./media/characters/natasha/back-alt.svg",
  2668. extra: 1236.7 / 1192,
  2669. bottom: 22.3 / 1258.2
  2670. }
  2671. },
  2672. dick: {
  2673. height: math.unit(1.772, "feet"),
  2674. name: "Dick",
  2675. image: {
  2676. source: "./media/characters/natasha/dick.svg"
  2677. }
  2678. },
  2679. paw: {
  2680. height: math.unit(0.250, "meters"),
  2681. name: "Paw",
  2682. image: {
  2683. source: "./media/characters/natasha/paw.svg"
  2684. }
  2685. },
  2686. },
  2687. [
  2688. {
  2689. name: "Normal",
  2690. height: math.unit(5 + 5 / 12, "feet")
  2691. },
  2692. {
  2693. name: "Large",
  2694. height: math.unit(12, "feet")
  2695. },
  2696. {
  2697. name: "Macro",
  2698. height: math.unit(100, "feet"),
  2699. default: true
  2700. },
  2701. {
  2702. name: "Macro+",
  2703. height: math.unit(260, "feet")
  2704. },
  2705. {
  2706. name: "Macro++",
  2707. height: math.unit(1, "mile")
  2708. },
  2709. ]
  2710. ))
  2711. characterMakers.push(() => makeCharacter(
  2712. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2713. {
  2714. front: {
  2715. height: math.unit(6, "feet"),
  2716. weight: math.unit(75, "kg"),
  2717. name: "Front",
  2718. image: {
  2719. source: "./media/characters/malik/front.svg"
  2720. }
  2721. },
  2722. side: {
  2723. height: math.unit(6, "feet"),
  2724. weight: math.unit(75, "kg"),
  2725. name: "Side",
  2726. image: {
  2727. source: "./media/characters/malik/side.svg",
  2728. extra: 1.1539
  2729. }
  2730. },
  2731. back: {
  2732. height: math.unit(6, "feet"),
  2733. weight: math.unit(75, "kg"),
  2734. name: "Back",
  2735. image: {
  2736. source: "./media/characters/malik/back.svg"
  2737. }
  2738. },
  2739. },
  2740. [
  2741. {
  2742. name: "Macro",
  2743. height: math.unit(156, "feet"),
  2744. default: true
  2745. },
  2746. {
  2747. name: "Macro+",
  2748. height: math.unit(1188, "feet")
  2749. },
  2750. ]
  2751. ))
  2752. characterMakers.push(() => makeCharacter(
  2753. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2754. {
  2755. front: {
  2756. height: math.unit(6, "feet"),
  2757. weight: math.unit(75, "kg"),
  2758. name: "Front",
  2759. image: {
  2760. source: "./media/characters/sefer/front.svg",
  2761. extra: 848 / 659,
  2762. bottom: 28.3 / 876.442
  2763. }
  2764. },
  2765. back: {
  2766. height: math.unit(6, "feet"),
  2767. weight: math.unit(75, "kg"),
  2768. name: "Back",
  2769. image: {
  2770. source: "./media/characters/sefer/back.svg",
  2771. extra: 864 / 695,
  2772. bottom: 10 / 871
  2773. }
  2774. },
  2775. frontDressed: {
  2776. height: math.unit(6, "feet"),
  2777. weight: math.unit(75, "kg"),
  2778. name: "Front (Dressed)",
  2779. image: {
  2780. source: "./media/characters/sefer/front-dressed.svg",
  2781. extra: 839 / 653,
  2782. bottom: 37.6 / 878
  2783. }
  2784. },
  2785. },
  2786. [
  2787. {
  2788. name: "Normal",
  2789. height: math.unit(6, "feet"),
  2790. default: true
  2791. },
  2792. ]
  2793. ))
  2794. characterMakers.push(() => makeCharacter(
  2795. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2796. {
  2797. body: {
  2798. height: math.unit(2.2428, "meter"),
  2799. weight: math.unit(124.738, "kg"),
  2800. name: "Body",
  2801. image: {
  2802. extra: 1225 / 1050,
  2803. source: "./media/characters/north/front.svg"
  2804. }
  2805. }
  2806. },
  2807. [
  2808. {
  2809. name: "Micro",
  2810. height: math.unit(4, "inches")
  2811. },
  2812. {
  2813. name: "Macro",
  2814. height: math.unit(63, "meters")
  2815. },
  2816. {
  2817. name: "Megamacro",
  2818. height: math.unit(101, "miles"),
  2819. default: true
  2820. }
  2821. ]
  2822. ))
  2823. characterMakers.push(() => makeCharacter(
  2824. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2825. {
  2826. angled: {
  2827. height: math.unit(4, "meter"),
  2828. weight: math.unit(150, "kg"),
  2829. name: "Angled",
  2830. image: {
  2831. source: "./media/characters/talan/angled-sfw.svg",
  2832. bottom: 29 / 3734
  2833. }
  2834. },
  2835. angledNsfw: {
  2836. height: math.unit(4, "meter"),
  2837. weight: math.unit(150, "kg"),
  2838. name: "Angled (NSFW)",
  2839. image: {
  2840. source: "./media/characters/talan/angled-nsfw.svg",
  2841. bottom: 29 / 3734
  2842. }
  2843. },
  2844. frontNsfw: {
  2845. height: math.unit(4, "meter"),
  2846. weight: math.unit(150, "kg"),
  2847. name: "Front (NSFW)",
  2848. image: {
  2849. source: "./media/characters/talan/front-nsfw.svg",
  2850. bottom: 29 / 3734
  2851. }
  2852. },
  2853. sideNsfw: {
  2854. height: math.unit(4, "meter"),
  2855. weight: math.unit(150, "kg"),
  2856. name: "Side (NSFW)",
  2857. image: {
  2858. source: "./media/characters/talan/side-nsfw.svg",
  2859. bottom: 29 / 3734
  2860. }
  2861. },
  2862. back: {
  2863. height: math.unit(4, "meter"),
  2864. weight: math.unit(150, "kg"),
  2865. name: "Back",
  2866. image: {
  2867. source: "./media/characters/talan/back.svg"
  2868. }
  2869. },
  2870. dickBottom: {
  2871. height: math.unit(0.621, "meter"),
  2872. name: "Dick (Bottom)",
  2873. image: {
  2874. source: "./media/characters/talan/dick-bottom.svg"
  2875. }
  2876. },
  2877. dickTop: {
  2878. height: math.unit(0.621, "meter"),
  2879. name: "Dick (Top)",
  2880. image: {
  2881. source: "./media/characters/talan/dick-top.svg"
  2882. }
  2883. },
  2884. dickSide: {
  2885. height: math.unit(0.305, "meter"),
  2886. name: "Dick (Side)",
  2887. image: {
  2888. source: "./media/characters/talan/dick-side.svg"
  2889. }
  2890. },
  2891. dickFront: {
  2892. height: math.unit(0.305, "meter"),
  2893. name: "Dick (Front)",
  2894. image: {
  2895. source: "./media/characters/talan/dick-front.svg"
  2896. }
  2897. },
  2898. },
  2899. [
  2900. {
  2901. name: "Normal",
  2902. height: math.unit(4, "meters")
  2903. },
  2904. {
  2905. name: "Macro",
  2906. height: math.unit(100, "meters")
  2907. },
  2908. {
  2909. name: "Megamacro",
  2910. height: math.unit(2, "miles"),
  2911. default: true
  2912. },
  2913. {
  2914. name: "Gigamacro",
  2915. height: math.unit(5000, "miles")
  2916. },
  2917. {
  2918. name: "Teramacro",
  2919. height: math.unit(100, "parsecs")
  2920. }
  2921. ]
  2922. ))
  2923. characterMakers.push(() => makeCharacter(
  2924. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2925. {
  2926. front: {
  2927. height: math.unit(2, "meter"),
  2928. weight: math.unit(90, "kg"),
  2929. name: "Front",
  2930. image: {
  2931. source: "./media/characters/gael'rathus/front.svg"
  2932. }
  2933. },
  2934. frontAlt: {
  2935. height: math.unit(2, "meter"),
  2936. weight: math.unit(90, "kg"),
  2937. name: "Front (alt)",
  2938. image: {
  2939. source: "./media/characters/gael'rathus/front-alt.svg"
  2940. }
  2941. },
  2942. frontAlt2: {
  2943. height: math.unit(2, "meter"),
  2944. weight: math.unit(90, "kg"),
  2945. name: "Front (alt 2)",
  2946. image: {
  2947. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2948. }
  2949. }
  2950. },
  2951. [
  2952. {
  2953. name: "Normal",
  2954. height: math.unit(9, "feet"),
  2955. default: true
  2956. },
  2957. {
  2958. name: "Large",
  2959. height: math.unit(25, "feet")
  2960. },
  2961. {
  2962. name: "Macro",
  2963. height: math.unit(0.25, "miles")
  2964. },
  2965. {
  2966. name: "Megamacro",
  2967. height: math.unit(10, "miles")
  2968. }
  2969. ]
  2970. ))
  2971. characterMakers.push(() => makeCharacter(
  2972. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2973. {
  2974. side: {
  2975. height: math.unit(2, "meter"),
  2976. weight: math.unit(140, "kg"),
  2977. name: "Side",
  2978. image: {
  2979. source: "./media/characters/sosha/side.svg",
  2980. bottom: 0.042
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Normal",
  2987. height: math.unit(12, "feet"),
  2988. default: true
  2989. }
  2990. ]
  2991. ))
  2992. characterMakers.push(() => makeCharacter(
  2993. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2994. {
  2995. side: {
  2996. height: math.unit(5 + 5 / 12, "feet"),
  2997. weight: math.unit(170, "kg"),
  2998. name: "Side",
  2999. image: {
  3000. source: "./media/characters/runnola/side.svg",
  3001. extra: 741 / 448,
  3002. bottom: 0.05
  3003. }
  3004. },
  3005. },
  3006. [
  3007. {
  3008. name: "Small",
  3009. height: math.unit(3, "feet")
  3010. },
  3011. {
  3012. name: "Normal",
  3013. height: math.unit(5 + 5 / 12, "feet"),
  3014. default: true
  3015. },
  3016. {
  3017. name: "Big",
  3018. height: math.unit(10, "feet")
  3019. },
  3020. ]
  3021. ))
  3022. characterMakers.push(() => makeCharacter(
  3023. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3024. {
  3025. front: {
  3026. height: math.unit(2, "meter"),
  3027. weight: math.unit(50, "kg"),
  3028. name: "Front",
  3029. image: {
  3030. source: "./media/characters/kurribird/front.svg",
  3031. bottom: 0.015
  3032. }
  3033. },
  3034. frontAlt: {
  3035. height: math.unit(1.5, "meter"),
  3036. weight: math.unit(50, "kg"),
  3037. name: "Front (Alt)",
  3038. image: {
  3039. source: "./media/characters/kurribird/front-alt.svg",
  3040. extra: 1.45
  3041. }
  3042. },
  3043. },
  3044. [
  3045. {
  3046. name: "Normal",
  3047. height: math.unit(7, "feet")
  3048. },
  3049. {
  3050. name: "Big",
  3051. height: math.unit(12, "feet"),
  3052. default: true
  3053. },
  3054. {
  3055. name: "Macro",
  3056. height: math.unit(1500, "feet")
  3057. },
  3058. {
  3059. name: "Megamacro",
  3060. height: math.unit(2, "miles")
  3061. }
  3062. ]
  3063. ))
  3064. characterMakers.push(() => makeCharacter(
  3065. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3066. {
  3067. front: {
  3068. height: math.unit(2, "meter"),
  3069. weight: math.unit(80, "kg"),
  3070. name: "Front",
  3071. image: {
  3072. source: "./media/characters/elbial/front.svg",
  3073. extra: 1643 / 1556,
  3074. bottom: 60.2 / 1696
  3075. }
  3076. },
  3077. side: {
  3078. height: math.unit(2, "meter"),
  3079. weight: math.unit(80, "kg"),
  3080. name: "Side",
  3081. image: {
  3082. source: "./media/characters/elbial/side.svg",
  3083. extra: 1630 / 1565,
  3084. bottom: 71.5 / 1697
  3085. }
  3086. },
  3087. back: {
  3088. height: math.unit(2, "meter"),
  3089. weight: math.unit(80, "kg"),
  3090. name: "Back",
  3091. image: {
  3092. source: "./media/characters/elbial/back.svg",
  3093. extra: 1668 / 1595,
  3094. bottom: 5.6 / 1672
  3095. }
  3096. },
  3097. frontDressed: {
  3098. height: math.unit(2, "meter"),
  3099. weight: math.unit(80, "kg"),
  3100. name: "Front (Dressed)",
  3101. image: {
  3102. source: "./media/characters/elbial/front-dressed.svg",
  3103. extra: 1653 / 1584,
  3104. bottom: 57 / 1708
  3105. }
  3106. },
  3107. genitals: {
  3108. height: math.unit(2 / 3.367, "meter"),
  3109. name: "Genitals",
  3110. image: {
  3111. source: "./media/characters/elbial/genitals.svg"
  3112. }
  3113. },
  3114. },
  3115. [
  3116. {
  3117. name: "Large",
  3118. height: math.unit(100, "feet")
  3119. },
  3120. {
  3121. name: "Macro",
  3122. height: math.unit(500, "feet"),
  3123. default: true
  3124. },
  3125. {
  3126. name: "Megamacro",
  3127. height: math.unit(10, "miles")
  3128. },
  3129. {
  3130. name: "Gigamacro",
  3131. height: math.unit(25000, "miles")
  3132. },
  3133. {
  3134. name: "Full-Size",
  3135. height: math.unit(8000000, "gigaparsecs")
  3136. }
  3137. ]
  3138. ))
  3139. characterMakers.push(() => makeCharacter(
  3140. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3141. {
  3142. front: {
  3143. height: math.unit(2, "meter"),
  3144. weight: math.unit(60, "kg"),
  3145. name: "Front",
  3146. image: {
  3147. source: "./media/characters/noah/front.svg"
  3148. }
  3149. },
  3150. talons: {
  3151. height: math.unit(0.315, "meter"),
  3152. name: "Talons",
  3153. image: {
  3154. source: "./media/characters/noah/talons.svg"
  3155. }
  3156. }
  3157. },
  3158. [
  3159. {
  3160. name: "Large",
  3161. height: math.unit(50, "feet")
  3162. },
  3163. {
  3164. name: "Macro",
  3165. height: math.unit(750, "feet"),
  3166. default: true
  3167. },
  3168. {
  3169. name: "Megamacro",
  3170. height: math.unit(50, "miles")
  3171. },
  3172. {
  3173. name: "Gigamacro",
  3174. height: math.unit(100000, "miles")
  3175. },
  3176. {
  3177. name: "Full-Size",
  3178. height: math.unit(3000000000, "miles")
  3179. }
  3180. ]
  3181. ))
  3182. characterMakers.push(() => makeCharacter(
  3183. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3184. {
  3185. front: {
  3186. height: math.unit(2, "meter"),
  3187. weight: math.unit(80, "kg"),
  3188. name: "Front",
  3189. image: {
  3190. source: "./media/characters/natalya/front.svg"
  3191. }
  3192. },
  3193. back: {
  3194. height: math.unit(2, "meter"),
  3195. weight: math.unit(80, "kg"),
  3196. name: "Back",
  3197. image: {
  3198. source: "./media/characters/natalya/back.svg"
  3199. }
  3200. }
  3201. },
  3202. [
  3203. {
  3204. name: "Normal",
  3205. height: math.unit(150, "feet"),
  3206. default: true
  3207. },
  3208. {
  3209. name: "Megamacro",
  3210. height: math.unit(5, "miles")
  3211. },
  3212. {
  3213. name: "Full-Size",
  3214. height: math.unit(600, "kiloparsecs")
  3215. }
  3216. ]
  3217. ))
  3218. characterMakers.push(() => makeCharacter(
  3219. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3220. {
  3221. front: {
  3222. height: math.unit(2, "meter"),
  3223. weight: math.unit(50, "kg"),
  3224. name: "Front",
  3225. image: {
  3226. source: "./media/characters/erestrebah/front.svg",
  3227. extra: 208 / 193,
  3228. bottom: 0.055
  3229. }
  3230. },
  3231. back: {
  3232. height: math.unit(2, "meter"),
  3233. weight: math.unit(50, "kg"),
  3234. name: "Back",
  3235. image: {
  3236. source: "./media/characters/erestrebah/back.svg",
  3237. extra: 1.3
  3238. }
  3239. }
  3240. },
  3241. [
  3242. {
  3243. name: "Normal",
  3244. height: math.unit(10, "feet")
  3245. },
  3246. {
  3247. name: "Large",
  3248. height: math.unit(50, "feet"),
  3249. default: true
  3250. },
  3251. {
  3252. name: "Macro",
  3253. height: math.unit(300, "feet")
  3254. },
  3255. {
  3256. name: "Macro+",
  3257. height: math.unit(750, "feet")
  3258. },
  3259. {
  3260. name: "Megamacro",
  3261. height: math.unit(3, "miles")
  3262. }
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3267. {
  3268. front: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(80, "kg"),
  3271. name: "Front",
  3272. image: {
  3273. source: "./media/characters/jennifer/front.svg",
  3274. bottom: 0.11,
  3275. extra: 1.16
  3276. }
  3277. },
  3278. frontAlt: {
  3279. height: math.unit(2, "meter"),
  3280. weight: math.unit(80, "kg"),
  3281. name: "Front (Alt)",
  3282. image: {
  3283. source: "./media/characters/jennifer/front-alt.svg"
  3284. }
  3285. }
  3286. },
  3287. [
  3288. {
  3289. name: "Canon Height",
  3290. height: math.unit(120, "feet"),
  3291. default: true
  3292. },
  3293. {
  3294. name: "Macro+",
  3295. height: math.unit(300, "feet")
  3296. },
  3297. {
  3298. name: "Megamacro",
  3299. height: math.unit(20000, "feet")
  3300. }
  3301. ]
  3302. ))
  3303. characterMakers.push(() => makeCharacter(
  3304. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3305. {
  3306. front: {
  3307. height: math.unit(2, "meter"),
  3308. weight: math.unit(50, "kg"),
  3309. name: "Front",
  3310. image: {
  3311. source: "./media/characters/kalista/front.svg",
  3312. extra: 1947 / 1700,
  3313. bottom: 76.6 / 1412.98
  3314. }
  3315. },
  3316. back: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(50, "kg"),
  3319. name: "Back",
  3320. image: {
  3321. source: "./media/characters/kalista/back.svg",
  3322. extra: 1366 / 1156,
  3323. bottom: 33.9 / 1362.78
  3324. }
  3325. }
  3326. },
  3327. [
  3328. {
  3329. name: "Uncomfortably Small",
  3330. height: math.unit(10, "feet")
  3331. },
  3332. {
  3333. name: "Small",
  3334. height: math.unit(30, "feet")
  3335. },
  3336. {
  3337. name: "Macro",
  3338. height: math.unit(100, "feet"),
  3339. default: true
  3340. },
  3341. {
  3342. name: "Macro+",
  3343. height: math.unit(2000, "feet")
  3344. },
  3345. {
  3346. name: "True Form",
  3347. height: math.unit(8924, "miles")
  3348. }
  3349. ]
  3350. ))
  3351. characterMakers.push(() => makeCharacter(
  3352. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3353. {
  3354. front: {
  3355. height: math.unit(2, "meter"),
  3356. weight: math.unit(120, "kg"),
  3357. name: "Front",
  3358. image: {
  3359. source: "./media/characters/ggv/front.svg"
  3360. }
  3361. },
  3362. side: {
  3363. height: math.unit(2, "meter"),
  3364. weight: math.unit(120, "kg"),
  3365. name: "Side",
  3366. image: {
  3367. source: "./media/characters/ggv/side.svg"
  3368. }
  3369. }
  3370. },
  3371. [
  3372. {
  3373. name: "Extremely Puny",
  3374. height: math.unit(9 + 5 / 12, "feet")
  3375. },
  3376. {
  3377. name: "Horribly Small",
  3378. height: math.unit(47.7, "miles"),
  3379. default: true
  3380. },
  3381. {
  3382. name: "Reasonably Sized",
  3383. height: math.unit(25000, "parsecs")
  3384. },
  3385. {
  3386. name: "Slightly Uncompressed",
  3387. height: math.unit(7.77e31, "parsecs")
  3388. },
  3389. {
  3390. name: "Omniversal",
  3391. height: math.unit(1e300, "meters")
  3392. },
  3393. ]
  3394. ))
  3395. characterMakers.push(() => makeCharacter(
  3396. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3397. {
  3398. front: {
  3399. height: math.unit(2, "meter"),
  3400. weight: math.unit(75, "lb"),
  3401. name: "Front",
  3402. image: {
  3403. source: "./media/characters/napalm/front.svg"
  3404. }
  3405. },
  3406. back: {
  3407. height: math.unit(2, "meter"),
  3408. weight: math.unit(75, "lb"),
  3409. name: "Back",
  3410. image: {
  3411. source: "./media/characters/napalm/back.svg"
  3412. }
  3413. }
  3414. },
  3415. [
  3416. {
  3417. name: "Standard",
  3418. height: math.unit(55, "feet"),
  3419. default: true
  3420. }
  3421. ]
  3422. ))
  3423. characterMakers.push(() => makeCharacter(
  3424. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3425. {
  3426. front: {
  3427. height: math.unit(7 + 5 / 6, "feet"),
  3428. weight: math.unit(325, "lb"),
  3429. name: "Front",
  3430. image: {
  3431. source: "./media/characters/asana/front.svg",
  3432. extra: 1133 / 1060,
  3433. bottom: 15.2 / 1148.6
  3434. }
  3435. },
  3436. back: {
  3437. height: math.unit(7 + 5 / 6, "feet"),
  3438. weight: math.unit(325, "lb"),
  3439. name: "Back",
  3440. image: {
  3441. source: "./media/characters/asana/back.svg",
  3442. extra: 1114 / 1043,
  3443. bottom: 5 / 1120
  3444. }
  3445. },
  3446. dressedDark: {
  3447. height: math.unit(7 + 5 / 6, "feet"),
  3448. weight: math.unit(325, "lb"),
  3449. name: "Dressed (Dark)",
  3450. image: {
  3451. source: "./media/characters/asana/dressed-dark.svg",
  3452. extra: 1133 / 1060,
  3453. bottom: 15.2 / 1148.6
  3454. }
  3455. },
  3456. dressedLight: {
  3457. height: math.unit(7 + 5 / 6, "feet"),
  3458. weight: math.unit(325, "lb"),
  3459. name: "Dressed (Light)",
  3460. image: {
  3461. source: "./media/characters/asana/dressed-light.svg",
  3462. extra: 1133 / 1060,
  3463. bottom: 15.2 / 1148.6
  3464. }
  3465. },
  3466. },
  3467. [
  3468. {
  3469. name: "Standard",
  3470. height: math.unit(7 + 5 / 6, "feet"),
  3471. default: true
  3472. },
  3473. {
  3474. name: "Large",
  3475. height: math.unit(10, "meters")
  3476. },
  3477. {
  3478. name: "Macro",
  3479. height: math.unit(2500, "meters")
  3480. },
  3481. {
  3482. name: "Megamacro",
  3483. height: math.unit(5e6, "meters")
  3484. },
  3485. {
  3486. name: "Examacro",
  3487. height: math.unit(5e12, "lightyears")
  3488. },
  3489. {
  3490. name: "Max Size",
  3491. height: math.unit(1e31, "lightyears")
  3492. }
  3493. ]
  3494. ))
  3495. characterMakers.push(() => makeCharacter(
  3496. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3497. {
  3498. front: {
  3499. height: math.unit(2, "meter"),
  3500. weight: math.unit(60, "kg"),
  3501. name: "Front",
  3502. image: {
  3503. source: "./media/characters/ebony/front.svg",
  3504. bottom: 0.03,
  3505. extra: 1045 / 810 + 0.03
  3506. }
  3507. },
  3508. side: {
  3509. height: math.unit(2, "meter"),
  3510. weight: math.unit(60, "kg"),
  3511. name: "Side",
  3512. image: {
  3513. source: "./media/characters/ebony/side.svg",
  3514. bottom: 0.03,
  3515. extra: 1045 / 810 + 0.03
  3516. }
  3517. },
  3518. back: {
  3519. height: math.unit(2, "meter"),
  3520. weight: math.unit(60, "kg"),
  3521. name: "Back",
  3522. image: {
  3523. source: "./media/characters/ebony/back.svg",
  3524. bottom: 0.01,
  3525. extra: 1045 / 810 + 0.01
  3526. }
  3527. },
  3528. },
  3529. [
  3530. // TODO check why I did this lol
  3531. {
  3532. name: "Standard",
  3533. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3534. default: true
  3535. },
  3536. {
  3537. name: "Macro",
  3538. height: math.unit(200, "feet")
  3539. },
  3540. {
  3541. name: "Gigamacro",
  3542. height: math.unit(13000, "km")
  3543. }
  3544. ]
  3545. ))
  3546. characterMakers.push(() => makeCharacter(
  3547. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3548. {
  3549. front: {
  3550. height: math.unit(6, "feet"),
  3551. weight: math.unit(175, "lb"),
  3552. name: "Front",
  3553. image: {
  3554. source: "./media/characters/mountain/front.svg",
  3555. extra: 972 / 955,
  3556. bottom: 64 / 1036.6
  3557. }
  3558. },
  3559. back: {
  3560. height: math.unit(6, "feet"),
  3561. weight: math.unit(175, "lb"),
  3562. name: "Back",
  3563. image: {
  3564. source: "./media/characters/mountain/back.svg",
  3565. extra: 970 / 950,
  3566. bottom: 28.25 / 999
  3567. }
  3568. },
  3569. },
  3570. [
  3571. {
  3572. name: "Large",
  3573. height: math.unit(20, "meters")
  3574. },
  3575. {
  3576. name: "Macro",
  3577. height: math.unit(300, "meters")
  3578. },
  3579. {
  3580. name: "Gigamacro",
  3581. height: math.unit(10000, "km"),
  3582. default: true
  3583. },
  3584. {
  3585. name: "Examacro",
  3586. height: math.unit(10e9, "lightyears")
  3587. }
  3588. ]
  3589. ))
  3590. characterMakers.push(() => makeCharacter(
  3591. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3592. {
  3593. front: {
  3594. height: math.unit(8, "feet"),
  3595. weight: math.unit(500, "lb"),
  3596. name: "Front",
  3597. image: {
  3598. source: "./media/characters/rick/front.svg"
  3599. }
  3600. }
  3601. },
  3602. [
  3603. {
  3604. name: "Normal",
  3605. height: math.unit(8, "feet"),
  3606. default: true
  3607. },
  3608. {
  3609. name: "Macro",
  3610. height: math.unit(5, "km")
  3611. }
  3612. ]
  3613. ))
  3614. characterMakers.push(() => makeCharacter(
  3615. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3616. {
  3617. front: {
  3618. height: math.unit(8, "feet"),
  3619. weight: math.unit(120, "lb"),
  3620. name: "Front",
  3621. image: {
  3622. source: "./media/characters/ona/front.svg"
  3623. }
  3624. },
  3625. frontAlt: {
  3626. height: math.unit(8, "feet"),
  3627. weight: math.unit(120, "lb"),
  3628. name: "Front (Alt)",
  3629. image: {
  3630. source: "./media/characters/ona/front-alt.svg"
  3631. }
  3632. },
  3633. back: {
  3634. height: math.unit(8, "feet"),
  3635. weight: math.unit(120, "lb"),
  3636. name: "Back",
  3637. image: {
  3638. source: "./media/characters/ona/back.svg"
  3639. }
  3640. },
  3641. foot: {
  3642. height: math.unit(1.1, "feet"),
  3643. name: "Foot",
  3644. image: {
  3645. source: "./media/characters/ona/foot.svg"
  3646. }
  3647. }
  3648. },
  3649. [
  3650. {
  3651. name: "Megamacro",
  3652. height: math.unit(70, "km"),
  3653. default: true
  3654. },
  3655. {
  3656. name: "Gigamacro",
  3657. height: math.unit(681818, "miles")
  3658. },
  3659. {
  3660. name: "Examacro",
  3661. height: math.unit(3800000, "lightyears")
  3662. },
  3663. ]
  3664. ))
  3665. characterMakers.push(() => makeCharacter(
  3666. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3667. {
  3668. front: {
  3669. height: math.unit(12, "feet"),
  3670. weight: math.unit(3000, "lb"),
  3671. name: "Front",
  3672. image: {
  3673. source: "./media/characters/mech/front.svg",
  3674. extra: 2900 / 2770,
  3675. bottom: 110 / 3010
  3676. }
  3677. },
  3678. back: {
  3679. height: math.unit(12, "feet"),
  3680. weight: math.unit(3000, "lb"),
  3681. name: "Back",
  3682. image: {
  3683. source: "./media/characters/mech/back.svg",
  3684. extra: 3011 / 2890,
  3685. bottom: 94 / 3105
  3686. }
  3687. },
  3688. maw: {
  3689. height: math.unit(3.07, "feet"),
  3690. name: "Maw",
  3691. image: {
  3692. source: "./media/characters/mech/maw.svg"
  3693. }
  3694. },
  3695. head: {
  3696. height: math.unit(2.82, "feet"),
  3697. name: "Head",
  3698. image: {
  3699. source: "./media/characters/mech/head.svg"
  3700. }
  3701. },
  3702. dick: {
  3703. height: math.unit(1.43, "feet"),
  3704. name: "Dick",
  3705. image: {
  3706. source: "./media/characters/mech/dick.svg"
  3707. }
  3708. },
  3709. },
  3710. [
  3711. {
  3712. name: "Normal",
  3713. height: math.unit(12, "feet")
  3714. },
  3715. {
  3716. name: "Macro",
  3717. height: math.unit(300, "feet"),
  3718. default: true
  3719. },
  3720. {
  3721. name: "Macro+",
  3722. height: math.unit(1500, "feet")
  3723. },
  3724. ]
  3725. ))
  3726. characterMakers.push(() => makeCharacter(
  3727. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3728. {
  3729. front: {
  3730. height: math.unit(1.3, "meter"),
  3731. weight: math.unit(30, "kg"),
  3732. name: "Front",
  3733. image: {
  3734. source: "./media/characters/gregory/front.svg",
  3735. }
  3736. }
  3737. },
  3738. [
  3739. {
  3740. name: "Normal",
  3741. height: math.unit(1.3, "meter"),
  3742. default: true
  3743. },
  3744. {
  3745. name: "Macro",
  3746. height: math.unit(20, "meter")
  3747. }
  3748. ]
  3749. ))
  3750. characterMakers.push(() => makeCharacter(
  3751. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3752. {
  3753. front: {
  3754. height: math.unit(2.8, "meter"),
  3755. weight: math.unit(200, "kg"),
  3756. name: "Front",
  3757. image: {
  3758. source: "./media/characters/elory/front.svg",
  3759. }
  3760. }
  3761. },
  3762. [
  3763. {
  3764. name: "Normal",
  3765. height: math.unit(2.8, "meter"),
  3766. default: true
  3767. },
  3768. {
  3769. name: "Macro",
  3770. height: math.unit(38, "meter")
  3771. }
  3772. ]
  3773. ))
  3774. characterMakers.push(() => makeCharacter(
  3775. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3776. {
  3777. front: {
  3778. height: math.unit(470, "feet"),
  3779. weight: math.unit(924, "tons"),
  3780. name: "Front",
  3781. image: {
  3782. source: "./media/characters/angelpatamon/front.svg",
  3783. }
  3784. }
  3785. },
  3786. [
  3787. {
  3788. name: "Normal",
  3789. height: math.unit(470, "feet"),
  3790. default: true
  3791. },
  3792. {
  3793. name: "Deity Size I",
  3794. height: math.unit(28651.2, "km")
  3795. },
  3796. {
  3797. name: "Deity Size II",
  3798. height: math.unit(171907.2, "km")
  3799. }
  3800. ]
  3801. ))
  3802. characterMakers.push(() => makeCharacter(
  3803. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3804. {
  3805. side: {
  3806. height: math.unit(7.2, "meter"),
  3807. weight: math.unit(8.2, "tons"),
  3808. name: "Side",
  3809. image: {
  3810. source: "./media/characters/cryae/side.svg",
  3811. extra: 3500 / 1500
  3812. }
  3813. }
  3814. },
  3815. [
  3816. {
  3817. name: "Normal",
  3818. height: math.unit(7.2, "meter"),
  3819. default: true
  3820. }
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3825. {
  3826. front: {
  3827. height: math.unit(6, "feet"),
  3828. weight: math.unit(175, "lb"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/xera/front.svg",
  3832. extra: 2377 / 1972,
  3833. bottom: 75.5 / 2452
  3834. }
  3835. },
  3836. side: {
  3837. height: math.unit(6, "feet"),
  3838. weight: math.unit(175, "lb"),
  3839. name: "Side",
  3840. image: {
  3841. source: "./media/characters/xera/side.svg",
  3842. extra: 2345 / 2019,
  3843. bottom: 39.7 / 2384
  3844. }
  3845. },
  3846. back: {
  3847. height: math.unit(6, "feet"),
  3848. weight: math.unit(175, "lb"),
  3849. name: "Back",
  3850. image: {
  3851. source: "./media/characters/xera/back.svg",
  3852. extra: 2095 / 1984,
  3853. bottom: 67 / 2166
  3854. }
  3855. },
  3856. },
  3857. [
  3858. {
  3859. name: "Small",
  3860. height: math.unit(10, "feet")
  3861. },
  3862. {
  3863. name: "Macro",
  3864. height: math.unit(500, "meters"),
  3865. default: true
  3866. },
  3867. {
  3868. name: "Macro+",
  3869. height: math.unit(10, "km")
  3870. },
  3871. {
  3872. name: "Gigamacro",
  3873. height: math.unit(25000, "km")
  3874. },
  3875. {
  3876. name: "Teramacro",
  3877. height: math.unit(3e6, "km")
  3878. }
  3879. ]
  3880. ))
  3881. characterMakers.push(() => makeCharacter(
  3882. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3883. {
  3884. front: {
  3885. height: math.unit(6, "feet"),
  3886. weight: math.unit(175, "lb"),
  3887. name: "Front",
  3888. image: {
  3889. source: "./media/characters/nebula/front.svg",
  3890. extra: 2566 / 2362,
  3891. bottom: 81 / 2644
  3892. }
  3893. }
  3894. },
  3895. [
  3896. {
  3897. name: "Small",
  3898. height: math.unit(4.5, "meters")
  3899. },
  3900. {
  3901. name: "Macro",
  3902. height: math.unit(1500, "meters"),
  3903. default: true
  3904. },
  3905. {
  3906. name: "Megamacro",
  3907. height: math.unit(150, "km")
  3908. },
  3909. {
  3910. name: "Gigamacro",
  3911. height: math.unit(27000, "km")
  3912. }
  3913. ]
  3914. ))
  3915. characterMakers.push(() => makeCharacter(
  3916. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3917. {
  3918. front: {
  3919. height: math.unit(6, "feet"),
  3920. weight: math.unit(225, "lb"),
  3921. name: "Front",
  3922. image: {
  3923. source: "./media/characters/abysgar/front.svg"
  3924. }
  3925. }
  3926. },
  3927. [
  3928. {
  3929. name: "Small",
  3930. height: math.unit(4.5, "meters")
  3931. },
  3932. {
  3933. name: "Macro",
  3934. height: math.unit(1250, "meters"),
  3935. default: true
  3936. },
  3937. {
  3938. name: "Megamacro",
  3939. height: math.unit(125, "km")
  3940. },
  3941. {
  3942. name: "Gigamacro",
  3943. height: math.unit(26000, "km")
  3944. }
  3945. ]
  3946. ))
  3947. characterMakers.push(() => makeCharacter(
  3948. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3949. {
  3950. front: {
  3951. height: math.unit(6, "feet"),
  3952. weight: math.unit(180, "lb"),
  3953. name: "Front",
  3954. image: {
  3955. source: "./media/characters/yakuz/front.svg"
  3956. }
  3957. }
  3958. },
  3959. [
  3960. {
  3961. name: "Small",
  3962. height: math.unit(5, "meters")
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(1500, "meters"),
  3967. default: true
  3968. },
  3969. {
  3970. name: "Megamacro",
  3971. height: math.unit(200, "km")
  3972. },
  3973. {
  3974. name: "Gigamacro",
  3975. height: math.unit(100000, "km")
  3976. }
  3977. ]
  3978. ))
  3979. characterMakers.push(() => makeCharacter(
  3980. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3981. {
  3982. front: {
  3983. height: math.unit(6, "feet"),
  3984. weight: math.unit(175, "lb"),
  3985. name: "Front",
  3986. image: {
  3987. source: "./media/characters/mirova/front.svg",
  3988. extra: 3334 / 3071,
  3989. bottom: 42 / 3375.6
  3990. }
  3991. }
  3992. },
  3993. [
  3994. {
  3995. name: "Small",
  3996. height: math.unit(5, "meters")
  3997. },
  3998. {
  3999. name: "Macro",
  4000. height: math.unit(900, "meters"),
  4001. default: true
  4002. },
  4003. {
  4004. name: "Megamacro",
  4005. height: math.unit(135, "km")
  4006. },
  4007. {
  4008. name: "Gigamacro",
  4009. height: math.unit(20000, "km")
  4010. }
  4011. ]
  4012. ))
  4013. characterMakers.push(() => makeCharacter(
  4014. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4015. {
  4016. side: {
  4017. height: math.unit(28.35, "feet"),
  4018. weight: math.unit(99.75, "tons"),
  4019. name: "Side",
  4020. image: {
  4021. source: "./media/characters/asana-mech/side.svg",
  4022. extra: 923 / 699,
  4023. bottom: 50 / 975
  4024. }
  4025. },
  4026. chaingun: {
  4027. height: math.unit(7, "feet"),
  4028. weight: math.unit(2400, "lb"),
  4029. name: "Chaingun",
  4030. image: {
  4031. source: "./media/characters/asana-mech/chaingun.svg"
  4032. }
  4033. },
  4034. laser: {
  4035. height: math.unit(7.12, "feet"),
  4036. weight: math.unit(2000, "lb"),
  4037. name: "Laser",
  4038. image: {
  4039. source: "./media/characters/asana-mech/laser.svg"
  4040. }
  4041. },
  4042. },
  4043. [
  4044. {
  4045. name: "Normal",
  4046. height: math.unit(28.35, "feet"),
  4047. default: true
  4048. },
  4049. {
  4050. name: "Macro",
  4051. height: math.unit(2500, "feet")
  4052. },
  4053. {
  4054. name: "Megamacro",
  4055. height: math.unit(25, "miles")
  4056. },
  4057. {
  4058. name: "Examacro",
  4059. height: math.unit(6e8, "lightyears")
  4060. },
  4061. ]
  4062. ))
  4063. characterMakers.push(() => makeCharacter(
  4064. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4065. {
  4066. front: {
  4067. height: math.unit(5, "meters"),
  4068. weight: math.unit(1000, "kg"),
  4069. name: "Front",
  4070. image: {
  4071. source: "./media/characters/asche/front.svg",
  4072. extra: 1258 / 1190,
  4073. bottom: 47 / 1305
  4074. }
  4075. },
  4076. frontUnderwear: {
  4077. height: math.unit(5, "meters"),
  4078. weight: math.unit(1000, "kg"),
  4079. name: "Front (Underwear)",
  4080. image: {
  4081. source: "./media/characters/asche/front-underwear.svg",
  4082. extra: 1258 / 1190,
  4083. bottom: 47 / 1305
  4084. }
  4085. },
  4086. frontDressed: {
  4087. height: math.unit(5, "meters"),
  4088. weight: math.unit(1000, "kg"),
  4089. name: "Front (Dressed)",
  4090. image: {
  4091. source: "./media/characters/asche/front-dressed.svg",
  4092. extra: 1258 / 1190,
  4093. bottom: 47 / 1305
  4094. }
  4095. },
  4096. frontArmor: {
  4097. height: math.unit(5, "meters"),
  4098. weight: math.unit(1000, "kg"),
  4099. name: "Front (Armored)",
  4100. image: {
  4101. source: "./media/characters/asche/front-armored.svg",
  4102. extra: 1374 / 1308,
  4103. bottom: 23 / 1397
  4104. }
  4105. },
  4106. mp724: {
  4107. height: math.unit(0.96, "meters"),
  4108. weight: math.unit(38, "kg"),
  4109. name: "H&K MP724",
  4110. image: {
  4111. source: "./media/characters/asche/h&k-mp724.svg"
  4112. }
  4113. },
  4114. side: {
  4115. height: math.unit(5, "meters"),
  4116. weight: math.unit(1000, "kg"),
  4117. name: "Side",
  4118. image: {
  4119. source: "./media/characters/asche/side.svg",
  4120. extra: 1717 / 1609,
  4121. bottom: 0.005
  4122. }
  4123. },
  4124. back: {
  4125. height: math.unit(5, "meters"),
  4126. weight: math.unit(1000, "kg"),
  4127. name: "Back",
  4128. image: {
  4129. source: "./media/characters/asche/back.svg",
  4130. extra: 1570 / 1501
  4131. }
  4132. },
  4133. },
  4134. [
  4135. {
  4136. name: "DEFCON 5",
  4137. height: math.unit(5, "meters")
  4138. },
  4139. {
  4140. name: "DEFCON 4",
  4141. height: math.unit(500, "meters"),
  4142. default: true
  4143. },
  4144. {
  4145. name: "DEFCON 3",
  4146. height: math.unit(5, "km")
  4147. },
  4148. {
  4149. name: "DEFCON 2",
  4150. height: math.unit(500, "km")
  4151. },
  4152. {
  4153. name: "DEFCON 1",
  4154. height: math.unit(500000, "km")
  4155. },
  4156. {
  4157. name: "DEFCON 0",
  4158. height: math.unit(3, "gigaparsecs")
  4159. },
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4164. {
  4165. front: {
  4166. height: math.unit(2, "meters"),
  4167. weight: math.unit(76, "kg"),
  4168. name: "Front",
  4169. image: {
  4170. source: "./media/characters/gale/front.svg"
  4171. }
  4172. },
  4173. frontAlt1: {
  4174. height: math.unit(2, "meters"),
  4175. weight: math.unit(76, "kg"),
  4176. name: "Front (Alt 1)",
  4177. image: {
  4178. source: "./media/characters/gale/front-alt-1.svg"
  4179. }
  4180. },
  4181. frontAlt2: {
  4182. height: math.unit(2, "meters"),
  4183. weight: math.unit(76, "kg"),
  4184. name: "Front (Alt 2)",
  4185. image: {
  4186. source: "./media/characters/gale/front-alt-2.svg"
  4187. }
  4188. },
  4189. },
  4190. [
  4191. {
  4192. name: "Normal",
  4193. height: math.unit(7, "feet")
  4194. },
  4195. {
  4196. name: "Macro",
  4197. height: math.unit(150, "feet"),
  4198. default: true
  4199. },
  4200. {
  4201. name: "Macro+",
  4202. height: math.unit(300, "feet")
  4203. },
  4204. ]
  4205. ))
  4206. characterMakers.push(() => makeCharacter(
  4207. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4208. {
  4209. front: {
  4210. height: math.unit(2, "meters"),
  4211. weight: math.unit(76, "kg"),
  4212. name: "Front",
  4213. image: {
  4214. source: "./media/characters/draylen/front.svg"
  4215. }
  4216. }
  4217. },
  4218. [
  4219. {
  4220. name: "Macro",
  4221. height: math.unit(150, "feet"),
  4222. default: true
  4223. }
  4224. ]
  4225. ))
  4226. characterMakers.push(() => makeCharacter(
  4227. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4228. {
  4229. front: {
  4230. height: math.unit(7 + 9 / 12, "feet"),
  4231. weight: math.unit(379, "lbs"),
  4232. name: "Front",
  4233. image: {
  4234. source: "./media/characters/chez/front.svg"
  4235. }
  4236. },
  4237. side: {
  4238. height: math.unit(7 + 9 / 12, "feet"),
  4239. weight: math.unit(379, "lbs"),
  4240. name: "Side",
  4241. image: {
  4242. source: "./media/characters/chez/side.svg"
  4243. }
  4244. }
  4245. },
  4246. [
  4247. {
  4248. name: "Normal",
  4249. height: math.unit(7 + 9 / 12, "feet"),
  4250. default: true
  4251. },
  4252. {
  4253. name: "God King",
  4254. height: math.unit(9750000, "meters")
  4255. }
  4256. ]
  4257. ))
  4258. characterMakers.push(() => makeCharacter(
  4259. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4260. {
  4261. front: {
  4262. height: math.unit(6, "feet"),
  4263. weight: math.unit(275, "lbs"),
  4264. name: "Front",
  4265. image: {
  4266. source: "./media/characters/kaylum/front.svg",
  4267. bottom: 0.01,
  4268. extra: 1166 / 1031
  4269. }
  4270. },
  4271. frontWingless: {
  4272. height: math.unit(6, "feet"),
  4273. weight: math.unit(275, "lbs"),
  4274. name: "Front (Wingless)",
  4275. image: {
  4276. source: "./media/characters/kaylum/front-wingless.svg",
  4277. bottom: 0.01,
  4278. extra: 1117 / 1031
  4279. }
  4280. }
  4281. },
  4282. [
  4283. {
  4284. name: "Normal",
  4285. height: math.unit(3.05, "meters")
  4286. },
  4287. {
  4288. name: "Master",
  4289. height: math.unit(5.5, "meters")
  4290. },
  4291. {
  4292. name: "Rampage",
  4293. height: math.unit(19, "meters")
  4294. },
  4295. {
  4296. name: "Macro Lite",
  4297. height: math.unit(37, "meters")
  4298. },
  4299. {
  4300. name: "Hyper Predator",
  4301. height: math.unit(61, "meters")
  4302. },
  4303. {
  4304. name: "Macro",
  4305. height: math.unit(138, "meters"),
  4306. default: true
  4307. }
  4308. ]
  4309. ))
  4310. characterMakers.push(() => makeCharacter(
  4311. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4312. {
  4313. front: {
  4314. height: math.unit(6, "feet"),
  4315. weight: math.unit(150, "lbs"),
  4316. name: "Front",
  4317. image: {
  4318. source: "./media/characters/geta/front.svg"
  4319. }
  4320. }
  4321. },
  4322. [
  4323. {
  4324. name: "Micro",
  4325. height: math.unit(3, "inches"),
  4326. default: true
  4327. },
  4328. {
  4329. name: "Normal",
  4330. height: math.unit(5 + 5 / 12, "feet")
  4331. }
  4332. ]
  4333. ))
  4334. characterMakers.push(() => makeCharacter(
  4335. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4336. {
  4337. front: {
  4338. height: math.unit(6, "feet"),
  4339. weight: math.unit(300, "lbs"),
  4340. name: "Front",
  4341. image: {
  4342. source: "./media/characters/tyrnn/front.svg"
  4343. }
  4344. }
  4345. },
  4346. [
  4347. {
  4348. name: "Main Height",
  4349. height: math.unit(355, "feet"),
  4350. default: true
  4351. },
  4352. {
  4353. name: "Fave. Height",
  4354. height: math.unit(2400, "feet")
  4355. }
  4356. ]
  4357. ))
  4358. characterMakers.push(() => makeCharacter(
  4359. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4360. {
  4361. front: {
  4362. height: math.unit(6, "feet"),
  4363. weight: math.unit(300, "lbs"),
  4364. name: "Front",
  4365. image: {
  4366. source: "./media/characters/appledectomy/front.svg"
  4367. }
  4368. }
  4369. },
  4370. [
  4371. {
  4372. name: "Macro",
  4373. height: math.unit(2500, "feet")
  4374. },
  4375. {
  4376. name: "Megamacro",
  4377. height: math.unit(50, "miles"),
  4378. default: true
  4379. },
  4380. {
  4381. name: "Gigamacro",
  4382. height: math.unit(5000, "miles")
  4383. },
  4384. {
  4385. name: "Teramacro",
  4386. height: math.unit(250000, "miles")
  4387. },
  4388. ]
  4389. ))
  4390. characterMakers.push(() => makeCharacter(
  4391. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4392. {
  4393. front: {
  4394. height: math.unit(6, "feet"),
  4395. weight: math.unit(200, "lbs"),
  4396. name: "Front",
  4397. image: {
  4398. source: "./media/characters/vulpes/front.svg",
  4399. extra: 573 / 543,
  4400. bottom: 0.033
  4401. }
  4402. },
  4403. side: {
  4404. height: math.unit(6, "feet"),
  4405. weight: math.unit(200, "lbs"),
  4406. name: "Side",
  4407. image: {
  4408. source: "./media/characters/vulpes/side.svg",
  4409. extra: 577 / 549,
  4410. bottom: 11 / 588
  4411. }
  4412. },
  4413. back: {
  4414. height: math.unit(6, "feet"),
  4415. weight: math.unit(200, "lbs"),
  4416. name: "Back",
  4417. image: {
  4418. source: "./media/characters/vulpes/back.svg",
  4419. extra: 573 / 549,
  4420. bottom: 20 / 593
  4421. }
  4422. },
  4423. feet: {
  4424. height: math.unit(1.276, "feet"),
  4425. name: "Feet",
  4426. image: {
  4427. source: "./media/characters/vulpes/feet.svg"
  4428. }
  4429. },
  4430. maw: {
  4431. height: math.unit(1.18, "feet"),
  4432. name: "Maw",
  4433. image: {
  4434. source: "./media/characters/vulpes/maw.svg"
  4435. }
  4436. },
  4437. },
  4438. [
  4439. {
  4440. name: "Micro",
  4441. height: math.unit(2, "inches")
  4442. },
  4443. {
  4444. name: "Normal",
  4445. height: math.unit(6.3, "feet")
  4446. },
  4447. {
  4448. name: "Macro",
  4449. height: math.unit(850, "feet")
  4450. },
  4451. {
  4452. name: "Megamacro",
  4453. height: math.unit(7500, "feet"),
  4454. default: true
  4455. },
  4456. {
  4457. name: "Gigamacro",
  4458. height: math.unit(570000, "miles")
  4459. }
  4460. ]
  4461. ))
  4462. characterMakers.push(() => makeCharacter(
  4463. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4464. {
  4465. front: {
  4466. height: math.unit(6, "feet"),
  4467. weight: math.unit(210, "lbs"),
  4468. name: "Front",
  4469. image: {
  4470. source: "./media/characters/rain-fallen/front.svg"
  4471. }
  4472. },
  4473. side: {
  4474. height: math.unit(6, "feet"),
  4475. weight: math.unit(210, "lbs"),
  4476. name: "Side",
  4477. image: {
  4478. source: "./media/characters/rain-fallen/side.svg"
  4479. }
  4480. },
  4481. back: {
  4482. height: math.unit(6, "feet"),
  4483. weight: math.unit(210, "lbs"),
  4484. name: "Back",
  4485. image: {
  4486. source: "./media/characters/rain-fallen/back.svg"
  4487. }
  4488. },
  4489. feral: {
  4490. height: math.unit(9, "feet"),
  4491. weight: math.unit(700, "lbs"),
  4492. name: "Feral",
  4493. image: {
  4494. source: "./media/characters/rain-fallen/feral.svg"
  4495. }
  4496. },
  4497. },
  4498. [
  4499. {
  4500. name: "Meddling with Mortals",
  4501. height: math.unit(8 + 8/12, "feet")
  4502. },
  4503. {
  4504. name: "Normal",
  4505. height: math.unit(5, "meter")
  4506. },
  4507. {
  4508. name: "Macro",
  4509. height: math.unit(150, "meter"),
  4510. default: true
  4511. },
  4512. {
  4513. name: "Megamacro",
  4514. height: math.unit(278e6, "meter")
  4515. },
  4516. {
  4517. name: "Gigamacro",
  4518. height: math.unit(2e9, "meter")
  4519. },
  4520. {
  4521. name: "Teramacro",
  4522. height: math.unit(8e12, "meter")
  4523. },
  4524. {
  4525. name: "Devourer",
  4526. height: math.unit(14, "zettameters")
  4527. },
  4528. {
  4529. name: "Scarlet King",
  4530. height: math.unit(18, "yottameters")
  4531. },
  4532. {
  4533. name: "Void",
  4534. height: math.unit(1e88, "yottameters")
  4535. }
  4536. ]
  4537. ))
  4538. characterMakers.push(() => makeCharacter(
  4539. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4540. {
  4541. standing: {
  4542. height: math.unit(6, "feet"),
  4543. weight: math.unit(180, "lbs"),
  4544. name: "Standing",
  4545. image: {
  4546. source: "./media/characters/zaakira/standing.svg"
  4547. }
  4548. },
  4549. laying: {
  4550. height: math.unit(3, "feet"),
  4551. weight: math.unit(180, "lbs"),
  4552. name: "Laying",
  4553. image: {
  4554. source: "./media/characters/zaakira/laying.svg"
  4555. }
  4556. },
  4557. },
  4558. [
  4559. {
  4560. name: "Normal",
  4561. height: math.unit(12, "feet")
  4562. },
  4563. {
  4564. name: "Macro",
  4565. height: math.unit(279, "feet"),
  4566. default: true
  4567. }
  4568. ]
  4569. ))
  4570. characterMakers.push(() => makeCharacter(
  4571. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4572. {
  4573. femSfw: {
  4574. height: math.unit(8, "feet"),
  4575. weight: math.unit(350, "lb"),
  4576. name: "Fem",
  4577. image: {
  4578. source: "./media/characters/sigvald/fem-sfw.svg",
  4579. extra: 182 / 164,
  4580. bottom: 8.7 / 190.5
  4581. }
  4582. },
  4583. femNsfw: {
  4584. height: math.unit(8, "feet"),
  4585. weight: math.unit(350, "lb"),
  4586. name: "Fem (NSFW)",
  4587. image: {
  4588. source: "./media/characters/sigvald/fem-nsfw.svg",
  4589. extra: 182 / 164,
  4590. bottom: 8.7 / 190.5
  4591. }
  4592. },
  4593. maleNsfw: {
  4594. height: math.unit(8, "feet"),
  4595. weight: math.unit(350, "lb"),
  4596. name: "Male (NSFW)",
  4597. image: {
  4598. source: "./media/characters/sigvald/male-nsfw.svg",
  4599. extra: 182 / 164,
  4600. bottom: 8.7 / 190.5
  4601. }
  4602. },
  4603. hermNsfw: {
  4604. height: math.unit(8, "feet"),
  4605. weight: math.unit(350, "lb"),
  4606. name: "Herm (NSFW)",
  4607. image: {
  4608. source: "./media/characters/sigvald/herm-nsfw.svg",
  4609. extra: 182 / 164,
  4610. bottom: 8.7 / 190.5
  4611. }
  4612. },
  4613. dick: {
  4614. height: math.unit(2.36, "feet"),
  4615. name: "Dick",
  4616. image: {
  4617. source: "./media/characters/sigvald/dick.svg"
  4618. }
  4619. },
  4620. eye: {
  4621. height: math.unit(0.31, "feet"),
  4622. name: "Eye",
  4623. image: {
  4624. source: "./media/characters/sigvald/eye.svg"
  4625. }
  4626. },
  4627. mouth: {
  4628. height: math.unit(0.92, "feet"),
  4629. name: "Mouth",
  4630. image: {
  4631. source: "./media/characters/sigvald/mouth.svg"
  4632. }
  4633. },
  4634. paws: {
  4635. height: math.unit(2.2, "feet"),
  4636. name: "Paws",
  4637. image: {
  4638. source: "./media/characters/sigvald/paws.svg"
  4639. }
  4640. }
  4641. },
  4642. [
  4643. {
  4644. name: "Normal",
  4645. height: math.unit(8, "feet")
  4646. },
  4647. {
  4648. name: "Large",
  4649. height: math.unit(12, "feet")
  4650. },
  4651. {
  4652. name: "Larger",
  4653. height: math.unit(20, "feet")
  4654. },
  4655. {
  4656. name: "Macro",
  4657. height: math.unit(150, "feet")
  4658. },
  4659. {
  4660. name: "Macro+",
  4661. height: math.unit(200, "feet"),
  4662. default: true
  4663. },
  4664. ]
  4665. ))
  4666. characterMakers.push(() => makeCharacter(
  4667. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4668. {
  4669. side: {
  4670. height: math.unit(12, "feet"),
  4671. weight: math.unit(2000, "kg"),
  4672. name: "Side",
  4673. image: {
  4674. source: "./media/characters/scott/side.svg",
  4675. extra: 754 / 724,
  4676. bottom: 0.069
  4677. }
  4678. },
  4679. upright: {
  4680. height: math.unit(12, "feet"),
  4681. weight: math.unit(2000, "kg"),
  4682. name: "Upright",
  4683. image: {
  4684. source: "./media/characters/scott/upright.svg",
  4685. extra: 3881 / 3722,
  4686. bottom: 0.05
  4687. }
  4688. },
  4689. },
  4690. [
  4691. {
  4692. name: "Normal",
  4693. height: math.unit(12, "feet"),
  4694. default: true
  4695. },
  4696. ]
  4697. ))
  4698. characterMakers.push(() => makeCharacter(
  4699. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4700. {
  4701. side: {
  4702. height: math.unit(8, "meters"),
  4703. weight: math.unit(84755, "lbs"),
  4704. name: "Side",
  4705. image: {
  4706. source: "./media/characters/tobias/side.svg",
  4707. extra: 1474 / 1096,
  4708. bottom: 38.9 / 1513.1235
  4709. }
  4710. },
  4711. },
  4712. [
  4713. {
  4714. name: "Normal",
  4715. height: math.unit(8, "meters"),
  4716. default: true
  4717. },
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4722. {
  4723. front: {
  4724. height: math.unit(5.5, "feet"),
  4725. weight: math.unit(400, "lbs"),
  4726. name: "Front",
  4727. image: {
  4728. source: "./media/characters/kieran/front.svg",
  4729. extra: 2694 / 2364,
  4730. bottom: 217 / 2908
  4731. }
  4732. },
  4733. side: {
  4734. height: math.unit(5.5, "feet"),
  4735. weight: math.unit(400, "lbs"),
  4736. name: "Side",
  4737. image: {
  4738. source: "./media/characters/kieran/side.svg",
  4739. extra: 875 / 777,
  4740. bottom: 84.6 / 959
  4741. }
  4742. },
  4743. },
  4744. [
  4745. {
  4746. name: "Normal",
  4747. height: math.unit(5.5, "feet"),
  4748. default: true
  4749. },
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4754. {
  4755. side: {
  4756. height: math.unit(2, "meters"),
  4757. weight: math.unit(70, "kg"),
  4758. name: "Side",
  4759. image: {
  4760. source: "./media/characters/sanya/side.svg",
  4761. bottom: 0.02,
  4762. extra: 1.02
  4763. }
  4764. },
  4765. },
  4766. [
  4767. {
  4768. name: "Small",
  4769. height: math.unit(2, "meters")
  4770. },
  4771. {
  4772. name: "Normal",
  4773. height: math.unit(3, "meters")
  4774. },
  4775. {
  4776. name: "Macro",
  4777. height: math.unit(16, "meters"),
  4778. default: true
  4779. },
  4780. ]
  4781. ))
  4782. characterMakers.push(() => makeCharacter(
  4783. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4784. {
  4785. front: {
  4786. height: math.unit(2, "meters"),
  4787. weight: math.unit(120, "kg"),
  4788. name: "Front",
  4789. image: {
  4790. source: "./media/characters/miranda/front.svg",
  4791. extra: 195 / 185,
  4792. bottom: 10.9 / 206.5
  4793. }
  4794. },
  4795. back: {
  4796. height: math.unit(2, "meters"),
  4797. weight: math.unit(120, "kg"),
  4798. name: "Back",
  4799. image: {
  4800. source: "./media/characters/miranda/back.svg",
  4801. extra: 201 / 193,
  4802. bottom: 2.3 / 203.7
  4803. }
  4804. },
  4805. },
  4806. [
  4807. {
  4808. name: "Normal",
  4809. height: math.unit(10, "feet"),
  4810. default: true
  4811. }
  4812. ]
  4813. ))
  4814. characterMakers.push(() => makeCharacter(
  4815. { name: "James", species: ["deer"], tags: ["anthro"] },
  4816. {
  4817. side: {
  4818. height: math.unit(2, "meters"),
  4819. weight: math.unit(100, "kg"),
  4820. name: "Front",
  4821. image: {
  4822. source: "./media/characters/james/front.svg",
  4823. extra: 10 / 8.5
  4824. }
  4825. },
  4826. },
  4827. [
  4828. {
  4829. name: "Normal",
  4830. height: math.unit(8.5, "feet"),
  4831. default: true
  4832. }
  4833. ]
  4834. ))
  4835. characterMakers.push(() => makeCharacter(
  4836. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4837. {
  4838. side: {
  4839. height: math.unit(9.5, "feet"),
  4840. weight: math.unit(2500, "lbs"),
  4841. name: "Side",
  4842. image: {
  4843. source: "./media/characters/heather/side.svg"
  4844. }
  4845. },
  4846. },
  4847. [
  4848. {
  4849. name: "Normal",
  4850. height: math.unit(9.5, "feet"),
  4851. default: true
  4852. }
  4853. ]
  4854. ))
  4855. characterMakers.push(() => makeCharacter(
  4856. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4857. {
  4858. side: {
  4859. height: math.unit(6.5, "feet"),
  4860. weight: math.unit(400, "lbs"),
  4861. name: "Side",
  4862. image: {
  4863. source: "./media/characters/lukas/side.svg",
  4864. extra: 7.25 / 6.5
  4865. }
  4866. },
  4867. },
  4868. [
  4869. {
  4870. name: "Normal",
  4871. height: math.unit(6.5, "feet"),
  4872. default: true
  4873. }
  4874. ]
  4875. ))
  4876. characterMakers.push(() => makeCharacter(
  4877. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4878. {
  4879. side: {
  4880. height: math.unit(5, "feet"),
  4881. weight: math.unit(3000, "lbs"),
  4882. name: "Side",
  4883. image: {
  4884. source: "./media/characters/louise/side.svg"
  4885. }
  4886. },
  4887. },
  4888. [
  4889. {
  4890. name: "Normal",
  4891. height: math.unit(5, "feet"),
  4892. default: true
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4898. {
  4899. side: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(150, "lbs"),
  4902. name: "Side",
  4903. image: {
  4904. source: "./media/characters/ramona/side.svg"
  4905. }
  4906. },
  4907. },
  4908. [
  4909. {
  4910. name: "Normal",
  4911. height: math.unit(5.3, "meters"),
  4912. default: true
  4913. },
  4914. {
  4915. name: "Macro",
  4916. height: math.unit(20, "stories")
  4917. },
  4918. {
  4919. name: "Macro+",
  4920. height: math.unit(50, "stories")
  4921. },
  4922. ]
  4923. ))
  4924. characterMakers.push(() => makeCharacter(
  4925. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4926. {
  4927. standing: {
  4928. height: math.unit(5.75, "feet"),
  4929. weight: math.unit(160, "lbs"),
  4930. name: "Standing",
  4931. image: {
  4932. source: "./media/characters/deerpuff/standing.svg",
  4933. extra: 682 / 624
  4934. }
  4935. },
  4936. sitting: {
  4937. height: math.unit(5.75 / 1.79, "feet"),
  4938. weight: math.unit(160, "lbs"),
  4939. name: "Sitting",
  4940. image: {
  4941. source: "./media/characters/deerpuff/sitting.svg",
  4942. bottom: 44 / 400,
  4943. extra: 1
  4944. }
  4945. },
  4946. taurLaying: {
  4947. height: math.unit(6, "feet"),
  4948. weight: math.unit(400, "lbs"),
  4949. name: "Taur (Laying)",
  4950. image: {
  4951. source: "./media/characters/deerpuff/taur-laying.svg"
  4952. }
  4953. },
  4954. },
  4955. [
  4956. {
  4957. name: "Puffball",
  4958. height: math.unit(6, "inches")
  4959. },
  4960. {
  4961. name: "Normalpuff",
  4962. height: math.unit(5.75, "feet")
  4963. },
  4964. {
  4965. name: "Macropuff",
  4966. height: math.unit(1500, "feet"),
  4967. default: true
  4968. },
  4969. {
  4970. name: "Megapuff",
  4971. height: math.unit(500, "miles")
  4972. },
  4973. {
  4974. name: "Gigapuff",
  4975. height: math.unit(250000, "miles")
  4976. },
  4977. {
  4978. name: "Omegapuff",
  4979. height: math.unit(1000, "lightyears")
  4980. },
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4985. {
  4986. stomping: {
  4987. height: math.unit(6, "feet"),
  4988. weight: math.unit(170, "lbs"),
  4989. name: "Stomping",
  4990. image: {
  4991. source: "./media/characters/vivian/stomping.svg"
  4992. }
  4993. },
  4994. sitting: {
  4995. height: math.unit(6 / 1.75, "feet"),
  4996. weight: math.unit(170, "lbs"),
  4997. name: "Sitting",
  4998. image: {
  4999. source: "./media/characters/vivian/sitting.svg",
  5000. bottom: 1 / 6.4,
  5001. extra: 1,
  5002. }
  5003. },
  5004. },
  5005. [
  5006. {
  5007. name: "Normal",
  5008. height: math.unit(7, "feet"),
  5009. default: true
  5010. },
  5011. {
  5012. name: "Macro",
  5013. height: math.unit(10, "stories")
  5014. },
  5015. {
  5016. name: "Macro+",
  5017. height: math.unit(30, "stories")
  5018. },
  5019. {
  5020. name: "Megamacro",
  5021. height: math.unit(10, "miles")
  5022. },
  5023. {
  5024. name: "Megamacro+",
  5025. height: math.unit(2750000, "meters")
  5026. },
  5027. ]
  5028. ))
  5029. characterMakers.push(() => makeCharacter(
  5030. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5031. {
  5032. front: {
  5033. height: math.unit(6, "feet"),
  5034. weight: math.unit(160, "lbs"),
  5035. name: "Front",
  5036. image: {
  5037. source: "./media/characters/prince/front.svg",
  5038. extra: 3400 / 3000
  5039. }
  5040. },
  5041. jumping: {
  5042. height: math.unit(6, "feet"),
  5043. weight: math.unit(160, "lbs"),
  5044. name: "Jumping",
  5045. image: {
  5046. source: "./media/characters/prince/jump.svg",
  5047. extra: 2555 / 2134
  5048. }
  5049. },
  5050. },
  5051. [
  5052. {
  5053. name: "Normal",
  5054. height: math.unit(7.75, "feet"),
  5055. default: true
  5056. },
  5057. {
  5058. name: "Not cute",
  5059. height: math.unit(17, "feet")
  5060. },
  5061. {
  5062. name: "I said NOT",
  5063. height: math.unit(91, "feet")
  5064. },
  5065. {
  5066. name: "Please stop",
  5067. height: math.unit(560, "feet")
  5068. },
  5069. {
  5070. name: "What have you done",
  5071. height: math.unit(2200, "feet")
  5072. },
  5073. {
  5074. name: "Deer God",
  5075. height: math.unit(3.6, "miles")
  5076. },
  5077. ]
  5078. ))
  5079. characterMakers.push(() => makeCharacter(
  5080. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5081. {
  5082. standing: {
  5083. height: math.unit(6, "feet"),
  5084. weight: math.unit(300, "lbs"),
  5085. name: "Standing",
  5086. image: {
  5087. source: "./media/characters/psymon/standing.svg",
  5088. extra: 1888 / 1810,
  5089. bottom: 0.05
  5090. }
  5091. },
  5092. slithering: {
  5093. height: math.unit(6, "feet"),
  5094. weight: math.unit(300, "lbs"),
  5095. name: "Slithering",
  5096. image: {
  5097. source: "./media/characters/psymon/slithering.svg",
  5098. extra: 1330 / 1224
  5099. }
  5100. },
  5101. slitheringAlt: {
  5102. height: math.unit(6, "feet"),
  5103. weight: math.unit(300, "lbs"),
  5104. name: "Slithering (Alt)",
  5105. image: {
  5106. source: "./media/characters/psymon/slithering-alt.svg",
  5107. extra: 1330 / 1224
  5108. }
  5109. },
  5110. },
  5111. [
  5112. {
  5113. name: "Normal",
  5114. height: math.unit(11.25, "feet"),
  5115. default: true
  5116. },
  5117. {
  5118. name: "Large",
  5119. height: math.unit(27, "feet")
  5120. },
  5121. {
  5122. name: "Giant",
  5123. height: math.unit(87, "feet")
  5124. },
  5125. {
  5126. name: "Macro",
  5127. height: math.unit(365, "feet")
  5128. },
  5129. {
  5130. name: "Megamacro",
  5131. height: math.unit(3, "miles")
  5132. },
  5133. {
  5134. name: "World Serpent",
  5135. height: math.unit(8000, "miles")
  5136. },
  5137. ]
  5138. ))
  5139. characterMakers.push(() => makeCharacter(
  5140. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5141. {
  5142. front: {
  5143. height: math.unit(6, "feet"),
  5144. weight: math.unit(180, "lbs"),
  5145. name: "Front",
  5146. image: {
  5147. source: "./media/characters/daimos/front.svg",
  5148. extra: 4160 / 3897,
  5149. bottom: 0.021
  5150. }
  5151. }
  5152. },
  5153. [
  5154. {
  5155. name: "Normal",
  5156. height: math.unit(8, "feet"),
  5157. default: true
  5158. },
  5159. {
  5160. name: "Big Dog",
  5161. height: math.unit(22, "feet")
  5162. },
  5163. {
  5164. name: "Macro",
  5165. height: math.unit(127, "feet")
  5166. },
  5167. {
  5168. name: "Megamacro",
  5169. height: math.unit(3600, "feet")
  5170. },
  5171. ]
  5172. ))
  5173. characterMakers.push(() => makeCharacter(
  5174. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5175. {
  5176. side: {
  5177. height: math.unit(6, "feet"),
  5178. weight: math.unit(180, "lbs"),
  5179. name: "Side",
  5180. image: {
  5181. source: "./media/characters/blake/side.svg",
  5182. extra: 1212 / 1120,
  5183. bottom: 0.05
  5184. }
  5185. },
  5186. crouched: {
  5187. height: math.unit(6 * 0.57, "feet"),
  5188. weight: math.unit(180, "lbs"),
  5189. name: "Crouched",
  5190. image: {
  5191. source: "./media/characters/blake/crouched.svg",
  5192. extra: 840 / 587,
  5193. bottom: 0.04
  5194. }
  5195. },
  5196. bent: {
  5197. height: math.unit(6 * 0.75, "feet"),
  5198. weight: math.unit(180, "lbs"),
  5199. name: "Bent",
  5200. image: {
  5201. source: "./media/characters/blake/bent.svg",
  5202. extra: 592 / 544,
  5203. bottom: 0.035
  5204. }
  5205. },
  5206. },
  5207. [
  5208. {
  5209. name: "Normal",
  5210. height: math.unit(8 + 1 / 6, "feet"),
  5211. default: true
  5212. },
  5213. {
  5214. name: "Big Backside",
  5215. height: math.unit(37, "feet")
  5216. },
  5217. {
  5218. name: "Subway Shredder",
  5219. height: math.unit(72, "feet")
  5220. },
  5221. {
  5222. name: "City Carver",
  5223. height: math.unit(1675, "feet")
  5224. },
  5225. {
  5226. name: "Tectonic Tweaker",
  5227. height: math.unit(2300, "miles")
  5228. },
  5229. ]
  5230. ))
  5231. characterMakers.push(() => makeCharacter(
  5232. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5233. {
  5234. front: {
  5235. height: math.unit(6, "feet"),
  5236. weight: math.unit(180, "lbs"),
  5237. name: "Front",
  5238. image: {
  5239. source: "./media/characters/guisetto/front.svg",
  5240. extra: 856 / 817,
  5241. bottom: 0.06
  5242. }
  5243. },
  5244. airborne: {
  5245. height: math.unit(6, "feet"),
  5246. weight: math.unit(180, "lbs"),
  5247. name: "Airborne",
  5248. image: {
  5249. source: "./media/characters/guisetto/airborne.svg",
  5250. extra: 584 / 525
  5251. }
  5252. },
  5253. },
  5254. [
  5255. {
  5256. name: "Normal",
  5257. height: math.unit(10 + 11 / 12, "feet"),
  5258. default: true
  5259. },
  5260. {
  5261. name: "Large",
  5262. height: math.unit(35, "feet")
  5263. },
  5264. {
  5265. name: "Macro",
  5266. height: math.unit(475, "feet")
  5267. },
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5272. {
  5273. front: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(180, "lbs"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/luxor/front.svg",
  5279. extra: 2940 / 2152
  5280. }
  5281. },
  5282. back: {
  5283. height: math.unit(6, "feet"),
  5284. weight: math.unit(180, "lbs"),
  5285. name: "Back",
  5286. image: {
  5287. source: "./media/characters/luxor/back.svg",
  5288. extra: 1083 / 960
  5289. }
  5290. },
  5291. },
  5292. [
  5293. {
  5294. name: "Normal",
  5295. height: math.unit(5 + 5 / 6, "feet"),
  5296. default: true
  5297. },
  5298. {
  5299. name: "Lamp",
  5300. height: math.unit(50, "feet")
  5301. },
  5302. {
  5303. name: "Lämp",
  5304. height: math.unit(300, "feet")
  5305. },
  5306. {
  5307. name: "The sun is a lamp",
  5308. height: math.unit(250000, "miles")
  5309. },
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5314. {
  5315. front: {
  5316. height: math.unit(6, "feet"),
  5317. weight: math.unit(50, "lbs"),
  5318. name: "Front",
  5319. image: {
  5320. source: "./media/characters/huoyan/front.svg"
  5321. }
  5322. },
  5323. side: {
  5324. height: math.unit(6, "feet"),
  5325. weight: math.unit(180, "lbs"),
  5326. name: "Side",
  5327. image: {
  5328. source: "./media/characters/huoyan/side.svg"
  5329. }
  5330. },
  5331. },
  5332. [
  5333. {
  5334. name: "Chef",
  5335. height: math.unit(9, "feet")
  5336. },
  5337. {
  5338. name: "Normal",
  5339. height: math.unit(65, "feet"),
  5340. default: true
  5341. },
  5342. {
  5343. name: "Macro",
  5344. height: math.unit(780, "feet")
  5345. },
  5346. {
  5347. name: "Flaming Mountain",
  5348. height: math.unit(4.8, "miles")
  5349. },
  5350. {
  5351. name: "Celestial",
  5352. height: math.unit(765000, "miles")
  5353. },
  5354. ]
  5355. ))
  5356. characterMakers.push(() => makeCharacter(
  5357. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5358. {
  5359. front: {
  5360. height: math.unit(5 + 3 / 4, "feet"),
  5361. weight: math.unit(120, "lbs"),
  5362. name: "Front",
  5363. image: {
  5364. source: "./media/characters/tails/front.svg"
  5365. }
  5366. }
  5367. },
  5368. [
  5369. {
  5370. name: "Normal",
  5371. height: math.unit(5 + 3 / 4, "feet"),
  5372. default: true
  5373. }
  5374. ]
  5375. ))
  5376. characterMakers.push(() => makeCharacter(
  5377. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5378. {
  5379. front: {
  5380. height: math.unit(4, "feet"),
  5381. weight: math.unit(50, "lbs"),
  5382. name: "Front",
  5383. image: {
  5384. source: "./media/characters/rainy/front.svg"
  5385. }
  5386. }
  5387. },
  5388. [
  5389. {
  5390. name: "Macro",
  5391. height: math.unit(800, "feet"),
  5392. default: true
  5393. }
  5394. ]
  5395. ))
  5396. characterMakers.push(() => makeCharacter(
  5397. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5398. {
  5399. front: {
  5400. height: math.unit(6, "feet"),
  5401. weight: math.unit(150, "lbs"),
  5402. name: "Front",
  5403. image: {
  5404. source: "./media/characters/rainier/front.svg"
  5405. }
  5406. }
  5407. },
  5408. [
  5409. {
  5410. name: "Micro",
  5411. height: math.unit(2, "mm"),
  5412. default: true
  5413. }
  5414. ]
  5415. ))
  5416. characterMakers.push(() => makeCharacter(
  5417. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5418. {
  5419. front: {
  5420. height: math.unit(6, "feet"),
  5421. weight: math.unit(180, "lbs"),
  5422. name: "Front",
  5423. image: {
  5424. source: "./media/characters/andy/front.svg"
  5425. }
  5426. }
  5427. },
  5428. [
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(8, "feet"),
  5432. default: true
  5433. },
  5434. {
  5435. name: "Macro",
  5436. height: math.unit(1000, "feet")
  5437. },
  5438. {
  5439. name: "Megamacro",
  5440. height: math.unit(5, "miles")
  5441. },
  5442. {
  5443. name: "Gigamacro",
  5444. height: math.unit(5000, "miles")
  5445. },
  5446. ]
  5447. ))
  5448. characterMakers.push(() => makeCharacter(
  5449. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5450. {
  5451. front: {
  5452. height: math.unit(6, "feet"),
  5453. weight: math.unit(210, "lbs"),
  5454. name: "Front",
  5455. image: {
  5456. source: "./media/characters/cimmaron/front-sfw.svg",
  5457. extra: 701 / 676,
  5458. bottom: 0.046
  5459. }
  5460. },
  5461. back: {
  5462. height: math.unit(6, "feet"),
  5463. weight: math.unit(210, "lbs"),
  5464. name: "Back",
  5465. image: {
  5466. source: "./media/characters/cimmaron/back-sfw.svg",
  5467. extra: 701 / 676,
  5468. bottom: 0.046
  5469. }
  5470. },
  5471. frontNsfw: {
  5472. height: math.unit(6, "feet"),
  5473. weight: math.unit(210, "lbs"),
  5474. name: "Front (NSFW)",
  5475. image: {
  5476. source: "./media/characters/cimmaron/front-nsfw.svg",
  5477. extra: 701 / 676,
  5478. bottom: 0.046
  5479. }
  5480. },
  5481. backNsfw: {
  5482. height: math.unit(6, "feet"),
  5483. weight: math.unit(210, "lbs"),
  5484. name: "Back (NSFW)",
  5485. image: {
  5486. source: "./media/characters/cimmaron/back-nsfw.svg",
  5487. extra: 701 / 676,
  5488. bottom: 0.046
  5489. }
  5490. },
  5491. dick: {
  5492. height: math.unit(1.714, "feet"),
  5493. name: "Dick",
  5494. image: {
  5495. source: "./media/characters/cimmaron/dick.svg"
  5496. }
  5497. },
  5498. },
  5499. [
  5500. {
  5501. name: "Normal",
  5502. height: math.unit(6, "feet"),
  5503. default: true
  5504. },
  5505. {
  5506. name: "Macro Mayor",
  5507. height: math.unit(350, "meters")
  5508. },
  5509. ]
  5510. ))
  5511. characterMakers.push(() => makeCharacter(
  5512. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5513. {
  5514. front: {
  5515. height: math.unit(6, "feet"),
  5516. weight: math.unit(200, "lbs"),
  5517. name: "Front",
  5518. image: {
  5519. source: "./media/characters/akari/front.svg",
  5520. extra: 962 / 901,
  5521. bottom: 0.04
  5522. }
  5523. }
  5524. },
  5525. [
  5526. {
  5527. name: "Micro",
  5528. height: math.unit(5, "inches"),
  5529. default: true
  5530. },
  5531. {
  5532. name: "Normal",
  5533. height: math.unit(7, "feet")
  5534. },
  5535. ]
  5536. ))
  5537. characterMakers.push(() => makeCharacter(
  5538. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5539. {
  5540. front: {
  5541. height: math.unit(6, "feet"),
  5542. weight: math.unit(140, "lbs"),
  5543. name: "Front",
  5544. image: {
  5545. source: "./media/characters/cynosura/front.svg",
  5546. extra: 896 / 847
  5547. }
  5548. },
  5549. back: {
  5550. height: math.unit(6, "feet"),
  5551. weight: math.unit(140, "lbs"),
  5552. name: "Back",
  5553. image: {
  5554. source: "./media/characters/cynosura/back.svg",
  5555. extra: 1365 / 1250
  5556. }
  5557. },
  5558. },
  5559. [
  5560. {
  5561. name: "Micro",
  5562. height: math.unit(4, "inches")
  5563. },
  5564. {
  5565. name: "Normal",
  5566. height: math.unit(5.75, "feet"),
  5567. default: true
  5568. },
  5569. {
  5570. name: "Tall",
  5571. height: math.unit(10, "feet")
  5572. },
  5573. {
  5574. name: "Big",
  5575. height: math.unit(20, "feet")
  5576. },
  5577. {
  5578. name: "Macro",
  5579. height: math.unit(50, "feet")
  5580. },
  5581. ]
  5582. ))
  5583. characterMakers.push(() => makeCharacter(
  5584. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5585. {
  5586. front: {
  5587. height: math.unit(6, "feet"),
  5588. weight: math.unit(170, "lbs"),
  5589. name: "Front",
  5590. image: {
  5591. source: "./media/characters/gin/front.svg",
  5592. extra: 1.053,
  5593. bottom: 0.025
  5594. }
  5595. },
  5596. foot: {
  5597. height: math.unit(6 / 4.25, "feet"),
  5598. name: "Foot",
  5599. image: {
  5600. source: "./media/characters/gin/foot.svg"
  5601. }
  5602. },
  5603. sole: {
  5604. height: math.unit(6 / 4.40, "feet"),
  5605. name: "Sole",
  5606. image: {
  5607. source: "./media/characters/gin/sole.svg"
  5608. }
  5609. },
  5610. },
  5611. [
  5612. {
  5613. name: "Normal",
  5614. height: math.unit(13 + 2 / 12, "feet")
  5615. },
  5616. {
  5617. name: "Macro",
  5618. height: math.unit(1500, "feet")
  5619. },
  5620. {
  5621. name: "Megamacro",
  5622. height: math.unit(200, "miles"),
  5623. default: true
  5624. },
  5625. {
  5626. name: "Gigamacro",
  5627. height: math.unit(500, "megameters")
  5628. },
  5629. {
  5630. name: "Teramacro",
  5631. height: math.unit(15, "lightyears")
  5632. }
  5633. ]
  5634. ))
  5635. characterMakers.push(() => makeCharacter(
  5636. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5637. {
  5638. front: {
  5639. height: math.unit(6 + 1 / 6, "feet"),
  5640. weight: math.unit(178, "lbs"),
  5641. name: "Front",
  5642. image: {
  5643. source: "./media/characters/guy/front.svg"
  5644. }
  5645. }
  5646. },
  5647. [
  5648. {
  5649. name: "Normal",
  5650. height: math.unit(6 + 1 / 6, "feet"),
  5651. default: true
  5652. },
  5653. {
  5654. name: "Large",
  5655. height: math.unit(25 + 7 / 12, "feet")
  5656. },
  5657. {
  5658. name: "Macro",
  5659. height: math.unit(60 + 9 / 12, "feet")
  5660. },
  5661. {
  5662. name: "Macro+",
  5663. height: math.unit(246, "feet")
  5664. },
  5665. {
  5666. name: "Macro++",
  5667. height: math.unit(878, "feet")
  5668. }
  5669. ]
  5670. ))
  5671. characterMakers.push(() => makeCharacter(
  5672. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5673. {
  5674. front: {
  5675. height: math.unit(9, "feet"),
  5676. weight: math.unit(800, "lbs"),
  5677. name: "Front",
  5678. image: {
  5679. source: "./media/characters/tiberius/front.svg",
  5680. extra: 2295 / 2071
  5681. }
  5682. },
  5683. back: {
  5684. height: math.unit(9, "feet"),
  5685. weight: math.unit(800, "lbs"),
  5686. name: "Back",
  5687. image: {
  5688. source: "./media/characters/tiberius/back.svg",
  5689. extra: 2373 / 2160
  5690. }
  5691. },
  5692. },
  5693. [
  5694. {
  5695. name: "Normal",
  5696. height: math.unit(9, "feet"),
  5697. default: true
  5698. }
  5699. ]
  5700. ))
  5701. characterMakers.push(() => makeCharacter(
  5702. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5703. {
  5704. front: {
  5705. height: math.unit(6, "feet"),
  5706. weight: math.unit(600, "lbs"),
  5707. name: "Front",
  5708. image: {
  5709. source: "./media/characters/surgo/front.svg",
  5710. extra: 3591 / 2227
  5711. }
  5712. },
  5713. back: {
  5714. height: math.unit(6, "feet"),
  5715. weight: math.unit(600, "lbs"),
  5716. name: "Back",
  5717. image: {
  5718. source: "./media/characters/surgo/back.svg",
  5719. extra: 3557 / 2228
  5720. }
  5721. },
  5722. laying: {
  5723. height: math.unit(6 * 0.85, "feet"),
  5724. weight: math.unit(600, "lbs"),
  5725. name: "Laying",
  5726. image: {
  5727. source: "./media/characters/surgo/laying.svg"
  5728. }
  5729. },
  5730. },
  5731. [
  5732. {
  5733. name: "Normal",
  5734. height: math.unit(6, "feet"),
  5735. default: true
  5736. }
  5737. ]
  5738. ))
  5739. characterMakers.push(() => makeCharacter(
  5740. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5741. {
  5742. side: {
  5743. height: math.unit(6, "feet"),
  5744. weight: math.unit(150, "lbs"),
  5745. name: "Side",
  5746. image: {
  5747. source: "./media/characters/cibus/side.svg",
  5748. extra: 800 / 400
  5749. }
  5750. },
  5751. },
  5752. [
  5753. {
  5754. name: "Normal",
  5755. height: math.unit(6, "feet"),
  5756. default: true
  5757. }
  5758. ]
  5759. ))
  5760. characterMakers.push(() => makeCharacter(
  5761. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5762. {
  5763. front: {
  5764. height: math.unit(6, "feet"),
  5765. weight: math.unit(240, "lbs"),
  5766. name: "Front",
  5767. image: {
  5768. source: "./media/characters/nibbles/front.svg"
  5769. }
  5770. },
  5771. side: {
  5772. height: math.unit(6, "feet"),
  5773. weight: math.unit(240, "lbs"),
  5774. name: "Side",
  5775. image: {
  5776. source: "./media/characters/nibbles/side.svg"
  5777. }
  5778. },
  5779. },
  5780. [
  5781. {
  5782. name: "Normal",
  5783. height: math.unit(9, "feet"),
  5784. default: true
  5785. }
  5786. ]
  5787. ))
  5788. characterMakers.push(() => makeCharacter(
  5789. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5790. {
  5791. side: {
  5792. height: math.unit(5 + 1 / 6, "feet"),
  5793. weight: math.unit(130, "lbs"),
  5794. name: "Side",
  5795. image: {
  5796. source: "./media/characters/rikky/side.svg",
  5797. extra: 851 / 801
  5798. }
  5799. },
  5800. },
  5801. [
  5802. {
  5803. name: "Normal",
  5804. height: math.unit(5 + 1 / 6, "feet")
  5805. },
  5806. {
  5807. name: "Macro",
  5808. height: math.unit(152, "feet"),
  5809. default: true
  5810. },
  5811. {
  5812. name: "Megamacro",
  5813. height: math.unit(7, "miles")
  5814. }
  5815. ]
  5816. ))
  5817. characterMakers.push(() => makeCharacter(
  5818. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5819. {
  5820. side: {
  5821. height: math.unit(370, "cm"),
  5822. weight: math.unit(350, "lbs"),
  5823. name: "Side",
  5824. image: {
  5825. source: "./media/characters/malfressa/side.svg"
  5826. }
  5827. },
  5828. walking: {
  5829. height: math.unit(370, "cm"),
  5830. weight: math.unit(350, "lbs"),
  5831. name: "Walking",
  5832. image: {
  5833. source: "./media/characters/malfressa/walking.svg"
  5834. }
  5835. },
  5836. feral: {
  5837. height: math.unit(2500, "cm"),
  5838. weight: math.unit(100000, "lbs"),
  5839. name: "Feral",
  5840. image: {
  5841. source: "./media/characters/malfressa/feral.svg",
  5842. extra: 2108 / 837,
  5843. bottom: 0.02
  5844. }
  5845. },
  5846. },
  5847. [
  5848. {
  5849. name: "Normal",
  5850. height: math.unit(370, "cm")
  5851. },
  5852. {
  5853. name: "Macro",
  5854. height: math.unit(300, "meters"),
  5855. default: true
  5856. }
  5857. ]
  5858. ))
  5859. characterMakers.push(() => makeCharacter(
  5860. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5861. {
  5862. front: {
  5863. height: math.unit(6, "feet"),
  5864. weight: math.unit(60, "kg"),
  5865. name: "Front",
  5866. image: {
  5867. source: "./media/characters/jaro/front.svg"
  5868. }
  5869. },
  5870. back: {
  5871. height: math.unit(6, "feet"),
  5872. weight: math.unit(60, "kg"),
  5873. name: "Back",
  5874. image: {
  5875. source: "./media/characters/jaro/back.svg"
  5876. }
  5877. },
  5878. },
  5879. [
  5880. {
  5881. name: "Micro",
  5882. height: math.unit(7, "inches")
  5883. },
  5884. {
  5885. name: "Normal",
  5886. height: math.unit(5.5, "feet"),
  5887. default: true
  5888. },
  5889. {
  5890. name: "Minimacro",
  5891. height: math.unit(20, "feet")
  5892. },
  5893. {
  5894. name: "Macro",
  5895. height: math.unit(200, "meters")
  5896. }
  5897. ]
  5898. ))
  5899. characterMakers.push(() => makeCharacter(
  5900. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5901. {
  5902. front: {
  5903. height: math.unit(6, "feet"),
  5904. weight: math.unit(195, "lb"),
  5905. name: "Front",
  5906. image: {
  5907. source: "./media/characters/rogue/front.svg"
  5908. }
  5909. },
  5910. },
  5911. [
  5912. {
  5913. name: "Macro",
  5914. height: math.unit(90, "feet"),
  5915. default: true
  5916. },
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(5 + 8 / 12, "feet"),
  5924. weight: math.unit(140, "lb"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/piper/front.svg",
  5928. extra: 3948/3655,
  5929. bottom: 0/3948
  5930. }
  5931. },
  5932. },
  5933. [
  5934. {
  5935. name: "Micro",
  5936. height: math.unit(2, "inches")
  5937. },
  5938. {
  5939. name: "Normal",
  5940. height: math.unit(5 + 8 / 12, "feet")
  5941. },
  5942. {
  5943. name: "Macro",
  5944. height: math.unit(250, "feet"),
  5945. default: true
  5946. },
  5947. {
  5948. name: "Megamacro",
  5949. height: math.unit(7, "miles")
  5950. },
  5951. ]
  5952. ))
  5953. characterMakers.push(() => makeCharacter(
  5954. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5955. {
  5956. front: {
  5957. height: math.unit(6, "feet"),
  5958. weight: math.unit(220, "lb"),
  5959. name: "Front",
  5960. image: {
  5961. source: "./media/characters/gemini/front.svg"
  5962. }
  5963. },
  5964. back: {
  5965. height: math.unit(6, "feet"),
  5966. weight: math.unit(220, "lb"),
  5967. name: "Back",
  5968. image: {
  5969. source: "./media/characters/gemini/back.svg"
  5970. }
  5971. },
  5972. kneeling: {
  5973. height: math.unit(6 / 1.5, "feet"),
  5974. weight: math.unit(220, "lb"),
  5975. name: "Kneeling",
  5976. image: {
  5977. source: "./media/characters/gemini/kneeling.svg",
  5978. bottom: 0.02
  5979. }
  5980. },
  5981. },
  5982. [
  5983. {
  5984. name: "Macro",
  5985. height: math.unit(300, "meters"),
  5986. default: true
  5987. },
  5988. {
  5989. name: "Megamacro",
  5990. height: math.unit(6900, "meters")
  5991. },
  5992. ]
  5993. ))
  5994. characterMakers.push(() => makeCharacter(
  5995. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5996. {
  5997. anthro: {
  5998. height: math.unit(2.35, "meters"),
  5999. weight: math.unit(73, "kg"),
  6000. name: "Anthro",
  6001. image: {
  6002. source: "./media/characters/alicia/anthro.svg",
  6003. extra: 2571 / 2385,
  6004. bottom: 75 / 2648
  6005. }
  6006. },
  6007. paw: {
  6008. height: math.unit(1.32, "feet"),
  6009. name: "Paw",
  6010. image: {
  6011. source: "./media/characters/alicia/paw.svg"
  6012. }
  6013. },
  6014. feral: {
  6015. height: math.unit(1.69, "meters"),
  6016. weight: math.unit(73, "kg"),
  6017. name: "Feral",
  6018. image: {
  6019. source: "./media/characters/alicia/feral.svg",
  6020. extra: 2123 / 1715,
  6021. bottom: 222 / 2349
  6022. }
  6023. },
  6024. },
  6025. [
  6026. {
  6027. name: "Normal",
  6028. height: math.unit(2.35, "meters")
  6029. },
  6030. {
  6031. name: "Macro",
  6032. height: math.unit(60, "meters"),
  6033. default: true
  6034. },
  6035. {
  6036. name: "Megamacro",
  6037. height: math.unit(10000, "kilometers")
  6038. },
  6039. ]
  6040. ))
  6041. characterMakers.push(() => makeCharacter(
  6042. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6043. {
  6044. front: {
  6045. height: math.unit(7, "feet"),
  6046. weight: math.unit(250, "lbs"),
  6047. name: "Front",
  6048. image: {
  6049. source: "./media/characters/archy/front.svg"
  6050. }
  6051. }
  6052. },
  6053. [
  6054. {
  6055. name: "Micro",
  6056. height: math.unit(1, "inch")
  6057. },
  6058. {
  6059. name: "Shorty",
  6060. height: math.unit(5, "feet")
  6061. },
  6062. {
  6063. name: "Normal",
  6064. height: math.unit(7, "feet")
  6065. },
  6066. {
  6067. name: "Macro",
  6068. height: math.unit(600, "meters"),
  6069. default: true
  6070. },
  6071. {
  6072. name: "Megamacro",
  6073. height: math.unit(1, "mile")
  6074. },
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6079. {
  6080. front: {
  6081. height: math.unit(1.65, "meters"),
  6082. weight: math.unit(74, "kg"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/berri/front.svg",
  6086. extra: 857 / 837,
  6087. bottom: 18 / 877
  6088. }
  6089. },
  6090. bum: {
  6091. height: math.unit(1.46, "feet"),
  6092. name: "Bum",
  6093. image: {
  6094. source: "./media/characters/berri/bum.svg"
  6095. }
  6096. },
  6097. mouth: {
  6098. height: math.unit(0.44, "feet"),
  6099. name: "Mouth",
  6100. image: {
  6101. source: "./media/characters/berri/mouth.svg"
  6102. }
  6103. },
  6104. paw: {
  6105. height: math.unit(0.826, "feet"),
  6106. name: "Paw",
  6107. image: {
  6108. source: "./media/characters/berri/paw.svg"
  6109. }
  6110. },
  6111. },
  6112. [
  6113. {
  6114. name: "Normal",
  6115. height: math.unit(1.65, "meters")
  6116. },
  6117. {
  6118. name: "Macro",
  6119. height: math.unit(60, "m"),
  6120. default: true
  6121. },
  6122. {
  6123. name: "Megamacro",
  6124. height: math.unit(9.213, "km")
  6125. },
  6126. {
  6127. name: "Planet Eater",
  6128. height: math.unit(489, "megameters")
  6129. },
  6130. {
  6131. name: "Teramacro",
  6132. height: math.unit(2471635000000, "meters")
  6133. },
  6134. {
  6135. name: "Examacro",
  6136. height: math.unit(8.0624e+26, "meters")
  6137. }
  6138. ]
  6139. ))
  6140. characterMakers.push(() => makeCharacter(
  6141. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6142. {
  6143. front: {
  6144. height: math.unit(1.72, "meters"),
  6145. weight: math.unit(68, "kg"),
  6146. name: "Front",
  6147. image: {
  6148. source: "./media/characters/lexi/front.svg"
  6149. }
  6150. }
  6151. },
  6152. [
  6153. {
  6154. name: "Very Smol",
  6155. height: math.unit(10, "mm")
  6156. },
  6157. {
  6158. name: "Micro",
  6159. height: math.unit(6.8, "cm"),
  6160. default: true
  6161. },
  6162. {
  6163. name: "Normal",
  6164. height: math.unit(1.72, "m")
  6165. }
  6166. ]
  6167. ))
  6168. characterMakers.push(() => makeCharacter(
  6169. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6170. {
  6171. front: {
  6172. height: math.unit(1.69, "meters"),
  6173. weight: math.unit(68, "kg"),
  6174. name: "Front",
  6175. image: {
  6176. source: "./media/characters/martin/front.svg",
  6177. extra: 596 / 581
  6178. }
  6179. }
  6180. },
  6181. [
  6182. {
  6183. name: "Micro",
  6184. height: math.unit(6.85, "cm"),
  6185. default: true
  6186. },
  6187. {
  6188. name: "Normal",
  6189. height: math.unit(1.69, "m")
  6190. }
  6191. ]
  6192. ))
  6193. characterMakers.push(() => makeCharacter(
  6194. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6195. {
  6196. front: {
  6197. height: math.unit(1.69, "meters"),
  6198. weight: math.unit(68, "kg"),
  6199. name: "Front",
  6200. image: {
  6201. source: "./media/characters/juno/front.svg"
  6202. }
  6203. }
  6204. },
  6205. [
  6206. {
  6207. name: "Micro",
  6208. height: math.unit(7, "cm")
  6209. },
  6210. {
  6211. name: "Normal",
  6212. height: math.unit(1.89, "m")
  6213. },
  6214. {
  6215. name: "Macro",
  6216. height: math.unit(353, "meters"),
  6217. default: true
  6218. }
  6219. ]
  6220. ))
  6221. characterMakers.push(() => makeCharacter(
  6222. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6223. {
  6224. front: {
  6225. height: math.unit(1.93, "meters"),
  6226. weight: math.unit(83, "kg"),
  6227. name: "Front",
  6228. image: {
  6229. source: "./media/characters/samantha/front.svg"
  6230. }
  6231. },
  6232. frontClothed: {
  6233. height: math.unit(1.93, "meters"),
  6234. weight: math.unit(83, "kg"),
  6235. name: "Front (Clothed)",
  6236. image: {
  6237. source: "./media/characters/samantha/front-clothed.svg"
  6238. }
  6239. },
  6240. back: {
  6241. height: math.unit(1.93, "meters"),
  6242. weight: math.unit(83, "kg"),
  6243. name: "Back",
  6244. image: {
  6245. source: "./media/characters/samantha/back.svg"
  6246. }
  6247. },
  6248. },
  6249. [
  6250. {
  6251. name: "Normal",
  6252. height: math.unit(1.93, "m")
  6253. },
  6254. {
  6255. name: "Macro",
  6256. height: math.unit(74, "meters"),
  6257. default: true
  6258. },
  6259. {
  6260. name: "Macro+",
  6261. height: math.unit(223, "meters"),
  6262. },
  6263. {
  6264. name: "Megamacro",
  6265. height: math.unit(8381, "meters"),
  6266. },
  6267. {
  6268. name: "Megamacro+",
  6269. height: math.unit(12000, "kilometers")
  6270. },
  6271. ]
  6272. ))
  6273. characterMakers.push(() => makeCharacter(
  6274. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6275. {
  6276. front: {
  6277. height: math.unit(1.92, "meters"),
  6278. weight: math.unit(80, "kg"),
  6279. name: "Front",
  6280. image: {
  6281. source: "./media/characters/dr-clay/front.svg"
  6282. }
  6283. },
  6284. frontClothed: {
  6285. height: math.unit(1.92, "meters"),
  6286. weight: math.unit(80, "kg"),
  6287. name: "Front (Clothed)",
  6288. image: {
  6289. source: "./media/characters/dr-clay/front-clothed.svg"
  6290. }
  6291. }
  6292. },
  6293. [
  6294. {
  6295. name: "Normal",
  6296. height: math.unit(1.92, "m")
  6297. },
  6298. {
  6299. name: "Macro",
  6300. height: math.unit(214, "meters"),
  6301. default: true
  6302. },
  6303. {
  6304. name: "Macro+",
  6305. height: math.unit(12.237, "meters"),
  6306. },
  6307. {
  6308. name: "Megamacro",
  6309. height: math.unit(557, "megameters"),
  6310. },
  6311. {
  6312. name: "Unimaginable",
  6313. height: math.unit(120e9, "lightyears")
  6314. },
  6315. ]
  6316. ))
  6317. characterMakers.push(() => makeCharacter(
  6318. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6319. {
  6320. front: {
  6321. height: math.unit(2, "meters"),
  6322. weight: math.unit(80, "kg"),
  6323. name: "Front",
  6324. image: {
  6325. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6326. }
  6327. }
  6328. },
  6329. [
  6330. {
  6331. name: "Teramacro",
  6332. height: math.unit(500000, "lightyears"),
  6333. default: true
  6334. },
  6335. ]
  6336. ))
  6337. characterMakers.push(() => makeCharacter(
  6338. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6339. {
  6340. front: {
  6341. height: math.unit(2, "meters"),
  6342. weight: math.unit(150, "kg"),
  6343. name: "Front",
  6344. image: {
  6345. source: "./media/characters/vemus/front.svg",
  6346. extra: 2384 / 2084,
  6347. bottom: 0.0123
  6348. }
  6349. }
  6350. },
  6351. [
  6352. {
  6353. name: "Normal",
  6354. height: math.unit(3.75, "meters"),
  6355. default: true
  6356. },
  6357. {
  6358. name: "Big",
  6359. height: math.unit(8, "meters")
  6360. },
  6361. {
  6362. name: "Macro",
  6363. height: math.unit(100, "meters")
  6364. },
  6365. {
  6366. name: "Macro+",
  6367. height: math.unit(1500, "meters")
  6368. },
  6369. {
  6370. name: "Stellar",
  6371. height: math.unit(14e8, "meters")
  6372. },
  6373. ]
  6374. ))
  6375. characterMakers.push(() => makeCharacter(
  6376. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6377. {
  6378. front: {
  6379. height: math.unit(2, "meters"),
  6380. weight: math.unit(70, "kg"),
  6381. name: "Front",
  6382. image: {
  6383. source: "./media/characters/beherit/front.svg",
  6384. extra: 1408 / 1242
  6385. }
  6386. }
  6387. },
  6388. [
  6389. {
  6390. name: "Normal",
  6391. height: math.unit(6, "feet")
  6392. },
  6393. {
  6394. name: "Lorg",
  6395. height: math.unit(25, "feet"),
  6396. default: true
  6397. },
  6398. {
  6399. name: "Lorger",
  6400. height: math.unit(75, "feet")
  6401. },
  6402. {
  6403. name: "Macro",
  6404. height: math.unit(200, "meters")
  6405. },
  6406. ]
  6407. ))
  6408. characterMakers.push(() => makeCharacter(
  6409. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6410. {
  6411. front: {
  6412. height: math.unit(2, "meters"),
  6413. weight: math.unit(150, "kg"),
  6414. name: "Front",
  6415. image: {
  6416. source: "./media/characters/everett/front.svg",
  6417. extra: 2038 / 1737,
  6418. bottom: 0.03
  6419. }
  6420. },
  6421. paw: {
  6422. height: math.unit(2 / 3.6, "meters"),
  6423. name: "Paw",
  6424. image: {
  6425. source: "./media/characters/everett/paw.svg"
  6426. }
  6427. },
  6428. },
  6429. [
  6430. {
  6431. name: "Normal",
  6432. height: math.unit(15, "feet"),
  6433. default: true
  6434. },
  6435. {
  6436. name: "Lorg",
  6437. height: math.unit(70, "feet"),
  6438. default: true
  6439. },
  6440. {
  6441. name: "Lorger",
  6442. height: math.unit(250, "feet")
  6443. },
  6444. {
  6445. name: "Macro",
  6446. height: math.unit(500, "meters")
  6447. },
  6448. ]
  6449. ))
  6450. characterMakers.push(() => makeCharacter(
  6451. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6452. {
  6453. front: {
  6454. height: math.unit(2, "meters"),
  6455. weight: math.unit(86, "kg"),
  6456. name: "Front",
  6457. image: {
  6458. source: "./media/characters/rose/front.svg",
  6459. extra: 350/335,
  6460. bottom: 10/360
  6461. }
  6462. },
  6463. frontAlt: {
  6464. height: math.unit(1.6, "meters"),
  6465. weight: math.unit(86, "kg"),
  6466. name: "Front (Alt)",
  6467. image: {
  6468. source: "./media/characters/rose/front-alt.svg",
  6469. extra: 299/283,
  6470. bottom: 3/302
  6471. }
  6472. },
  6473. plush: {
  6474. height: math.unit(2, "meters"),
  6475. weight: math.unit(86/3, "kg"),
  6476. name: "Plush",
  6477. image: {
  6478. source: "./media/characters/rose/plush.svg",
  6479. extra: 361/337,
  6480. bottom: 11/372
  6481. }
  6482. },
  6483. },
  6484. [
  6485. {
  6486. name: "Mini-Micro",
  6487. height: math.unit(1, "cm")
  6488. },
  6489. {
  6490. name: "Micro",
  6491. height: math.unit(3.5, "inches"),
  6492. default: true
  6493. },
  6494. {
  6495. name: "Normal",
  6496. height: math.unit(6 + 1 / 6, "feet")
  6497. },
  6498. {
  6499. name: "Mini-Macro",
  6500. height: math.unit(9 + 10 / 12, "feet")
  6501. },
  6502. ]
  6503. ))
  6504. characterMakers.push(() => makeCharacter(
  6505. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6506. {
  6507. front: {
  6508. height: math.unit(2, "meters"),
  6509. weight: math.unit(350, "lbs"),
  6510. name: "Front",
  6511. image: {
  6512. source: "./media/characters/regal/front.svg"
  6513. }
  6514. },
  6515. back: {
  6516. height: math.unit(2, "meters"),
  6517. weight: math.unit(350, "lbs"),
  6518. name: "Back",
  6519. image: {
  6520. source: "./media/characters/regal/back.svg"
  6521. }
  6522. },
  6523. },
  6524. [
  6525. {
  6526. name: "Macro",
  6527. height: math.unit(350, "feet"),
  6528. default: true
  6529. }
  6530. ]
  6531. ))
  6532. characterMakers.push(() => makeCharacter(
  6533. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6534. {
  6535. front: {
  6536. height: math.unit(4 + 11 / 12, "feet"),
  6537. weight: math.unit(100, "lbs"),
  6538. name: "Front",
  6539. image: {
  6540. source: "./media/characters/opal/front.svg"
  6541. }
  6542. },
  6543. frontAlt: {
  6544. height: math.unit(4 + 11 / 12, "feet"),
  6545. weight: math.unit(100, "lbs"),
  6546. name: "Front (Alt)",
  6547. image: {
  6548. source: "./media/characters/opal/front-alt.svg"
  6549. }
  6550. },
  6551. },
  6552. [
  6553. {
  6554. name: "Small",
  6555. height: math.unit(4 + 11 / 12, "feet")
  6556. },
  6557. {
  6558. name: "Normal",
  6559. height: math.unit(20, "feet"),
  6560. default: true
  6561. },
  6562. {
  6563. name: "Macro",
  6564. height: math.unit(120, "feet")
  6565. },
  6566. {
  6567. name: "Megamacro",
  6568. height: math.unit(80, "miles")
  6569. },
  6570. {
  6571. name: "True Size",
  6572. height: math.unit(100000, "lightyears")
  6573. },
  6574. ]
  6575. ))
  6576. characterMakers.push(() => makeCharacter(
  6577. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6578. {
  6579. front: {
  6580. height: math.unit(6, "feet"),
  6581. weight: math.unit(200, "lbs"),
  6582. name: "Front",
  6583. image: {
  6584. source: "./media/characters/vector-wuff/front.svg"
  6585. }
  6586. }
  6587. },
  6588. [
  6589. {
  6590. name: "Normal",
  6591. height: math.unit(2.8, "meters")
  6592. },
  6593. {
  6594. name: "Macro",
  6595. height: math.unit(450, "meters"),
  6596. default: true
  6597. },
  6598. {
  6599. name: "Megamacro",
  6600. height: math.unit(15, "kilometers")
  6601. }
  6602. ]
  6603. ))
  6604. characterMakers.push(() => makeCharacter(
  6605. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6606. {
  6607. front: {
  6608. height: math.unit(6, "feet"),
  6609. weight: math.unit(256, "lbs"),
  6610. name: "Front",
  6611. image: {
  6612. source: "./media/characters/dannik/front.svg"
  6613. }
  6614. }
  6615. },
  6616. [
  6617. {
  6618. name: "Macro",
  6619. height: math.unit(69.57, "meters"),
  6620. default: true
  6621. },
  6622. ]
  6623. ))
  6624. characterMakers.push(() => makeCharacter(
  6625. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6626. {
  6627. front: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(120, "lbs"),
  6630. name: "Front",
  6631. image: {
  6632. source: "./media/characters/azura-saharah/front.svg"
  6633. }
  6634. },
  6635. back: {
  6636. height: math.unit(6, "feet"),
  6637. weight: math.unit(120, "lbs"),
  6638. name: "Back",
  6639. image: {
  6640. source: "./media/characters/azura-saharah/back.svg"
  6641. }
  6642. },
  6643. },
  6644. [
  6645. {
  6646. name: "Macro",
  6647. height: math.unit(100, "feet"),
  6648. default: true
  6649. },
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6654. {
  6655. side: {
  6656. height: math.unit(5 + 4 / 12, "feet"),
  6657. weight: math.unit(163, "lbs"),
  6658. name: "Side",
  6659. image: {
  6660. source: "./media/characters/kennedy/side.svg"
  6661. }
  6662. }
  6663. },
  6664. [
  6665. {
  6666. name: "Standard Doggo",
  6667. height: math.unit(5 + 4 / 12, "feet")
  6668. },
  6669. {
  6670. name: "Big Doggo",
  6671. height: math.unit(25 + 3 / 12, "feet"),
  6672. default: true
  6673. },
  6674. ]
  6675. ))
  6676. characterMakers.push(() => makeCharacter(
  6677. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6678. {
  6679. front: {
  6680. height: math.unit(6, "feet"),
  6681. weight: math.unit(90, "lbs"),
  6682. name: "Front",
  6683. image: {
  6684. source: "./media/characters/odi-lunar/front.svg"
  6685. }
  6686. }
  6687. },
  6688. [
  6689. {
  6690. name: "Micro",
  6691. height: math.unit(3, "inches"),
  6692. default: true
  6693. },
  6694. {
  6695. name: "Normal",
  6696. height: math.unit(5.5, "feet")
  6697. }
  6698. ]
  6699. ))
  6700. characterMakers.push(() => makeCharacter(
  6701. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6702. {
  6703. back: {
  6704. height: math.unit(6, "feet"),
  6705. weight: math.unit(220, "lbs"),
  6706. name: "Back",
  6707. image: {
  6708. source: "./media/characters/mandake/back.svg"
  6709. }
  6710. }
  6711. },
  6712. [
  6713. {
  6714. name: "Normal",
  6715. height: math.unit(7, "feet"),
  6716. default: true
  6717. },
  6718. {
  6719. name: "Macro",
  6720. height: math.unit(78, "feet")
  6721. },
  6722. {
  6723. name: "Macro+",
  6724. height: math.unit(300, "meters")
  6725. },
  6726. {
  6727. name: "Macro++",
  6728. height: math.unit(2400, "feet")
  6729. },
  6730. {
  6731. name: "Megamacro",
  6732. height: math.unit(5167, "meters")
  6733. },
  6734. {
  6735. name: "Gigamacro",
  6736. height: math.unit(41769, "miles")
  6737. },
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6742. {
  6743. front: {
  6744. height: math.unit(6, "feet"),
  6745. weight: math.unit(120, "lbs"),
  6746. name: "Front",
  6747. image: {
  6748. source: "./media/characters/yozey/front.svg"
  6749. }
  6750. },
  6751. frontAlt: {
  6752. height: math.unit(6, "feet"),
  6753. weight: math.unit(120, "lbs"),
  6754. name: "Front (Alt)",
  6755. image: {
  6756. source: "./media/characters/yozey/front-alt.svg"
  6757. }
  6758. },
  6759. side: {
  6760. height: math.unit(6, "feet"),
  6761. weight: math.unit(120, "lbs"),
  6762. name: "Side",
  6763. image: {
  6764. source: "./media/characters/yozey/side.svg"
  6765. }
  6766. },
  6767. },
  6768. [
  6769. {
  6770. name: "Micro",
  6771. height: math.unit(3, "inches"),
  6772. default: true
  6773. },
  6774. {
  6775. name: "Normal",
  6776. height: math.unit(6, "feet")
  6777. }
  6778. ]
  6779. ))
  6780. characterMakers.push(() => makeCharacter(
  6781. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6782. {
  6783. front: {
  6784. height: math.unit(6, "feet"),
  6785. weight: math.unit(103, "lbs"),
  6786. name: "Front",
  6787. image: {
  6788. source: "./media/characters/valeska-voss/front.svg"
  6789. }
  6790. }
  6791. },
  6792. [
  6793. {
  6794. name: "Mini-Sized Sub",
  6795. height: math.unit(3.1, "inches")
  6796. },
  6797. {
  6798. name: "Mid-Sized Sub",
  6799. height: math.unit(6.2, "inches")
  6800. },
  6801. {
  6802. name: "Full-Sized Sub",
  6803. height: math.unit(9.3, "inches")
  6804. },
  6805. {
  6806. name: "Normal",
  6807. height: math.unit(5 + 2 / 12, "foot"),
  6808. default: true
  6809. },
  6810. ]
  6811. ))
  6812. characterMakers.push(() => makeCharacter(
  6813. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6814. {
  6815. front: {
  6816. height: math.unit(6, "feet"),
  6817. weight: math.unit(160, "lbs"),
  6818. name: "Front",
  6819. image: {
  6820. source: "./media/characters/gene-zeta/front.svg",
  6821. extra: 3006 / 2826,
  6822. bottom: 182 / 3188
  6823. }
  6824. }
  6825. },
  6826. [
  6827. {
  6828. name: "Micro",
  6829. height: math.unit(6, "inches")
  6830. },
  6831. {
  6832. name: "Normal",
  6833. height: math.unit(5 + 11 / 12, "foot"),
  6834. default: true
  6835. },
  6836. {
  6837. name: "Macro",
  6838. height: math.unit(140, "feet")
  6839. },
  6840. {
  6841. name: "Supercharged",
  6842. height: math.unit(2500, "feet")
  6843. },
  6844. ]
  6845. ))
  6846. characterMakers.push(() => makeCharacter(
  6847. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6848. {
  6849. front: {
  6850. height: math.unit(6, "feet"),
  6851. weight: math.unit(350, "lbs"),
  6852. name: "Front",
  6853. image: {
  6854. source: "./media/characters/razinox/front.svg",
  6855. extra: 1686 / 1548,
  6856. bottom: 28.2 / 1868
  6857. }
  6858. },
  6859. back: {
  6860. height: math.unit(6, "feet"),
  6861. weight: math.unit(350, "lbs"),
  6862. name: "Back",
  6863. image: {
  6864. source: "./media/characters/razinox/back.svg",
  6865. extra: 1660 / 1590,
  6866. bottom: 15 / 1665
  6867. }
  6868. },
  6869. },
  6870. [
  6871. {
  6872. name: "Normal",
  6873. height: math.unit(10 + 8 / 12, "foot")
  6874. },
  6875. {
  6876. name: "Minimacro",
  6877. height: math.unit(15, "foot")
  6878. },
  6879. {
  6880. name: "Macro",
  6881. height: math.unit(60, "foot"),
  6882. default: true
  6883. },
  6884. {
  6885. name: "Megamacro",
  6886. height: math.unit(5, "miles")
  6887. },
  6888. {
  6889. name: "Gigamacro",
  6890. height: math.unit(6000, "miles")
  6891. },
  6892. ]
  6893. ))
  6894. characterMakers.push(() => makeCharacter(
  6895. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6896. {
  6897. front: {
  6898. height: math.unit(6, "feet"),
  6899. weight: math.unit(150, "lbs"),
  6900. name: "Front",
  6901. image: {
  6902. source: "./media/characters/cobalt/front.svg"
  6903. }
  6904. }
  6905. },
  6906. [
  6907. {
  6908. name: "Normal",
  6909. height: math.unit(8 + 1 / 12, "foot")
  6910. },
  6911. {
  6912. name: "Macro",
  6913. height: math.unit(111, "foot"),
  6914. default: true
  6915. },
  6916. {
  6917. name: "Supracosmic",
  6918. height: math.unit(1e42, "feet")
  6919. },
  6920. ]
  6921. ))
  6922. characterMakers.push(() => makeCharacter(
  6923. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6924. {
  6925. front: {
  6926. height: math.unit(6, "feet"),
  6927. weight: math.unit(140, "lbs"),
  6928. name: "Front",
  6929. image: {
  6930. source: "./media/characters/amanda/front.svg"
  6931. }
  6932. }
  6933. },
  6934. [
  6935. {
  6936. name: "Micro",
  6937. height: math.unit(5, "inches"),
  6938. default: true
  6939. },
  6940. ]
  6941. ))
  6942. characterMakers.push(() => makeCharacter(
  6943. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6944. {
  6945. front: {
  6946. height: math.unit(2.75, "meters"),
  6947. weight: math.unit(1200, "lb"),
  6948. name: "Front",
  6949. image: {
  6950. source: "./media/characters/teal/front.svg",
  6951. extra: 2463 / 2320,
  6952. bottom: 166 / 2629
  6953. }
  6954. },
  6955. back: {
  6956. height: math.unit(2.75, "meters"),
  6957. weight: math.unit(1200, "lb"),
  6958. name: "Back",
  6959. image: {
  6960. source: "./media/characters/teal/back.svg",
  6961. extra: 2580 / 2489,
  6962. bottom: 151 / 2731
  6963. }
  6964. },
  6965. sitting: {
  6966. height: math.unit(1.9, "meters"),
  6967. weight: math.unit(1200, "lb"),
  6968. name: "Sitting",
  6969. image: {
  6970. source: "./media/characters/teal/sitting.svg",
  6971. extra: 623 / 590,
  6972. bottom: 121 / 744
  6973. }
  6974. },
  6975. standing: {
  6976. height: math.unit(2.75, "meters"),
  6977. weight: math.unit(1200, "lb"),
  6978. name: "Standing",
  6979. image: {
  6980. source: "./media/characters/teal/standing.svg",
  6981. extra: 923 / 893,
  6982. bottom: 60 / 983
  6983. }
  6984. },
  6985. stretching: {
  6986. height: math.unit(3.65, "meters"),
  6987. weight: math.unit(1200, "lb"),
  6988. name: "Stretching",
  6989. image: {
  6990. source: "./media/characters/teal/stretching.svg",
  6991. extra: 1276 / 1244,
  6992. bottom: 0 / 1276
  6993. }
  6994. },
  6995. legged: {
  6996. height: math.unit(1.3, "meters"),
  6997. weight: math.unit(100, "lb"),
  6998. name: "Legged",
  6999. image: {
  7000. source: "./media/characters/teal/legged.svg",
  7001. extra: 462 / 437,
  7002. bottom: 24 / 486
  7003. }
  7004. },
  7005. naga: {
  7006. height: math.unit(5.4, "meters"),
  7007. weight: math.unit(4000, "lb"),
  7008. name: "Naga",
  7009. image: {
  7010. source: "./media/characters/teal/naga.svg",
  7011. extra: 1902 / 1858,
  7012. bottom: 0 / 1902
  7013. }
  7014. },
  7015. hand: {
  7016. height: math.unit(0.52, "meters"),
  7017. name: "Hand",
  7018. image: {
  7019. source: "./media/characters/teal/hand.svg"
  7020. }
  7021. },
  7022. maw: {
  7023. height: math.unit(0.43, "meters"),
  7024. name: "Maw",
  7025. image: {
  7026. source: "./media/characters/teal/maw.svg"
  7027. }
  7028. },
  7029. slit: {
  7030. height: math.unit(0.25, "meters"),
  7031. name: "Slit",
  7032. image: {
  7033. source: "./media/characters/teal/slit.svg"
  7034. }
  7035. },
  7036. },
  7037. [
  7038. {
  7039. name: "Normal",
  7040. height: math.unit(2.75, "meters"),
  7041. default: true
  7042. },
  7043. {
  7044. name: "Macro",
  7045. height: math.unit(300, "feet")
  7046. },
  7047. {
  7048. name: "Macro+",
  7049. height: math.unit(2000, "feet")
  7050. },
  7051. ]
  7052. ))
  7053. characterMakers.push(() => makeCharacter(
  7054. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7055. {
  7056. frontCat: {
  7057. height: math.unit(6, "feet"),
  7058. weight: math.unit(180, "lbs"),
  7059. name: "Front (Cat)",
  7060. image: {
  7061. source: "./media/characters/ravin-amulet/front-cat.svg"
  7062. }
  7063. },
  7064. frontCatAlt: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(180, "lbs"),
  7067. name: "Front (Alt, Cat)",
  7068. image: {
  7069. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7070. }
  7071. },
  7072. frontWerewolf: {
  7073. height: math.unit(6 * 1.2, "feet"),
  7074. weight: math.unit(225, "lbs"),
  7075. name: "Front (Werewolf)",
  7076. image: {
  7077. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7078. }
  7079. },
  7080. backWerewolf: {
  7081. height: math.unit(6 * 1.2, "feet"),
  7082. weight: math.unit(225, "lbs"),
  7083. name: "Back (Werewolf)",
  7084. image: {
  7085. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7086. }
  7087. },
  7088. },
  7089. [
  7090. {
  7091. name: "Nano",
  7092. height: math.unit(1, "micrometer")
  7093. },
  7094. {
  7095. name: "Micro",
  7096. height: math.unit(1, "inch")
  7097. },
  7098. {
  7099. name: "Normal",
  7100. height: math.unit(6, "feet"),
  7101. default: true
  7102. },
  7103. {
  7104. name: "Macro",
  7105. height: math.unit(60, "feet")
  7106. }
  7107. ]
  7108. ))
  7109. characterMakers.push(() => makeCharacter(
  7110. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7111. {
  7112. front: {
  7113. height: math.unit(6, "feet"),
  7114. weight: math.unit(165, "lbs"),
  7115. name: "Front",
  7116. image: {
  7117. source: "./media/characters/fluoresce/front.svg"
  7118. }
  7119. }
  7120. },
  7121. [
  7122. {
  7123. name: "Micro",
  7124. height: math.unit(6, "cm")
  7125. },
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(5 + 7 / 12, "feet"),
  7129. default: true
  7130. },
  7131. {
  7132. name: "Macro",
  7133. height: math.unit(56, "feet")
  7134. },
  7135. {
  7136. name: "Megamacro",
  7137. height: math.unit(1.9, "miles")
  7138. },
  7139. ]
  7140. ))
  7141. characterMakers.push(() => makeCharacter(
  7142. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7143. {
  7144. front: {
  7145. height: math.unit(9 + 6 / 12, "feet"),
  7146. weight: math.unit(523, "lbs"),
  7147. name: "Side",
  7148. image: {
  7149. source: "./media/characters/aurora/side.svg"
  7150. }
  7151. }
  7152. },
  7153. [
  7154. {
  7155. name: "Normal",
  7156. height: math.unit(9 + 6 / 12, "feet")
  7157. },
  7158. {
  7159. name: "Macro",
  7160. height: math.unit(96, "feet"),
  7161. default: true
  7162. },
  7163. {
  7164. name: "Macro+",
  7165. height: math.unit(243, "feet")
  7166. },
  7167. ]
  7168. ))
  7169. characterMakers.push(() => makeCharacter(
  7170. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7171. {
  7172. front: {
  7173. height: math.unit(194, "cm"),
  7174. weight: math.unit(90, "kg"),
  7175. name: "Front",
  7176. image: {
  7177. source: "./media/characters/ranek/front.svg"
  7178. }
  7179. },
  7180. side: {
  7181. height: math.unit(194, "cm"),
  7182. weight: math.unit(90, "kg"),
  7183. name: "Side",
  7184. image: {
  7185. source: "./media/characters/ranek/side.svg"
  7186. }
  7187. },
  7188. back: {
  7189. height: math.unit(194, "cm"),
  7190. weight: math.unit(90, "kg"),
  7191. name: "Back",
  7192. image: {
  7193. source: "./media/characters/ranek/back.svg"
  7194. }
  7195. },
  7196. feral: {
  7197. height: math.unit(30, "cm"),
  7198. weight: math.unit(1.6, "lbs"),
  7199. name: "Feral",
  7200. image: {
  7201. source: "./media/characters/ranek/feral.svg"
  7202. }
  7203. },
  7204. },
  7205. [
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(194, "cm"),
  7209. default: true
  7210. },
  7211. {
  7212. name: "Macro",
  7213. height: math.unit(100, "meters")
  7214. },
  7215. ]
  7216. ))
  7217. characterMakers.push(() => makeCharacter(
  7218. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7219. {
  7220. front: {
  7221. height: math.unit(5 + 6 / 12, "feet"),
  7222. weight: math.unit(153, "lbs"),
  7223. name: "Front",
  7224. image: {
  7225. source: "./media/characters/andrew-cooper/front.svg"
  7226. }
  7227. },
  7228. },
  7229. [
  7230. {
  7231. name: "Nano",
  7232. height: math.unit(1, "mm")
  7233. },
  7234. {
  7235. name: "Micro",
  7236. height: math.unit(2, "inches")
  7237. },
  7238. {
  7239. name: "Normal",
  7240. height: math.unit(5 + 6 / 12, "feet"),
  7241. default: true
  7242. }
  7243. ]
  7244. ))
  7245. characterMakers.push(() => makeCharacter(
  7246. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7247. {
  7248. front: {
  7249. height: math.unit(6, "feet"),
  7250. weight: math.unit(180, "lbs"),
  7251. name: "Front",
  7252. image: {
  7253. source: "./media/characters/akane-sato/front.svg",
  7254. extra: 1219 / 1140
  7255. }
  7256. },
  7257. back: {
  7258. height: math.unit(6, "feet"),
  7259. weight: math.unit(180, "lbs"),
  7260. name: "Back",
  7261. image: {
  7262. source: "./media/characters/akane-sato/back.svg",
  7263. extra: 1219 / 1170
  7264. }
  7265. },
  7266. },
  7267. [
  7268. {
  7269. name: "Normal",
  7270. height: math.unit(2.5, "meters")
  7271. },
  7272. {
  7273. name: "Macro",
  7274. height: math.unit(250, "meters"),
  7275. default: true
  7276. },
  7277. {
  7278. name: "Megamacro",
  7279. height: math.unit(25, "km")
  7280. },
  7281. ]
  7282. ))
  7283. characterMakers.push(() => makeCharacter(
  7284. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7285. {
  7286. front: {
  7287. height: math.unit(6, "feet"),
  7288. weight: math.unit(65, "kg"),
  7289. name: "Front",
  7290. image: {
  7291. source: "./media/characters/rook/front.svg",
  7292. extra: 960 / 950
  7293. }
  7294. }
  7295. },
  7296. [
  7297. {
  7298. name: "Normal",
  7299. height: math.unit(8.8, "feet")
  7300. },
  7301. {
  7302. name: "Macro",
  7303. height: math.unit(88, "feet"),
  7304. default: true
  7305. },
  7306. {
  7307. name: "Megamacro",
  7308. height: math.unit(8, "miles")
  7309. },
  7310. ]
  7311. ))
  7312. characterMakers.push(() => makeCharacter(
  7313. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7314. {
  7315. front: {
  7316. height: math.unit(12 + 2 / 12, "feet"),
  7317. weight: math.unit(808, "lbs"),
  7318. name: "Front",
  7319. image: {
  7320. source: "./media/characters/prodigy/front.svg"
  7321. }
  7322. }
  7323. },
  7324. [
  7325. {
  7326. name: "Normal",
  7327. height: math.unit(12 + 2 / 12, "feet"),
  7328. default: true
  7329. },
  7330. {
  7331. name: "Macro",
  7332. height: math.unit(143, "feet")
  7333. },
  7334. {
  7335. name: "Macro+",
  7336. height: math.unit(400, "feet")
  7337. },
  7338. ]
  7339. ))
  7340. characterMakers.push(() => makeCharacter(
  7341. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7342. {
  7343. front: {
  7344. height: math.unit(6, "feet"),
  7345. weight: math.unit(225, "lbs"),
  7346. name: "Front",
  7347. image: {
  7348. source: "./media/characters/daniel/front.svg"
  7349. }
  7350. },
  7351. leaning: {
  7352. height: math.unit(6, "feet"),
  7353. weight: math.unit(225, "lbs"),
  7354. name: "Leaning",
  7355. image: {
  7356. source: "./media/characters/daniel/leaning.svg"
  7357. }
  7358. },
  7359. },
  7360. [
  7361. {
  7362. name: "Macro",
  7363. height: math.unit(1000, "feet"),
  7364. default: true
  7365. },
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7370. {
  7371. front: {
  7372. height: math.unit(6, "feet"),
  7373. weight: math.unit(88, "lbs"),
  7374. name: "Front",
  7375. image: {
  7376. source: "./media/characters/chiros/front.svg",
  7377. extra: 306 / 226
  7378. }
  7379. },
  7380. side: {
  7381. height: math.unit(6, "feet"),
  7382. weight: math.unit(88, "lbs"),
  7383. name: "Side",
  7384. image: {
  7385. source: "./media/characters/chiros/side.svg",
  7386. extra: 306 / 226
  7387. }
  7388. },
  7389. },
  7390. [
  7391. {
  7392. name: "Normal",
  7393. height: math.unit(6, "cm"),
  7394. default: true
  7395. },
  7396. ]
  7397. ))
  7398. characterMakers.push(() => makeCharacter(
  7399. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7400. {
  7401. front: {
  7402. height: math.unit(6, "feet"),
  7403. weight: math.unit(100, "lbs"),
  7404. name: "Front",
  7405. image: {
  7406. source: "./media/characters/selka/front.svg",
  7407. extra: 947 / 887
  7408. }
  7409. }
  7410. },
  7411. [
  7412. {
  7413. name: "Normal",
  7414. height: math.unit(5, "cm"),
  7415. default: true
  7416. },
  7417. ]
  7418. ))
  7419. characterMakers.push(() => makeCharacter(
  7420. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7421. {
  7422. front: {
  7423. height: math.unit(8 + 3 / 12, "feet"),
  7424. weight: math.unit(424, "lbs"),
  7425. name: "Front",
  7426. image: {
  7427. source: "./media/characters/verin/front.svg",
  7428. extra: 1845 / 1550
  7429. }
  7430. },
  7431. frontArmored: {
  7432. height: math.unit(8 + 3 / 12, "feet"),
  7433. weight: math.unit(424, "lbs"),
  7434. name: "Front (Armored)",
  7435. image: {
  7436. source: "./media/characters/verin/front-armor.svg",
  7437. extra: 1845 / 1550,
  7438. bottom: 0.01
  7439. }
  7440. },
  7441. back: {
  7442. height: math.unit(8 + 3 / 12, "feet"),
  7443. weight: math.unit(424, "lbs"),
  7444. name: "Back",
  7445. image: {
  7446. source: "./media/characters/verin/back.svg",
  7447. bottom: 0.1,
  7448. extra: 1
  7449. }
  7450. },
  7451. foot: {
  7452. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7453. name: "Foot",
  7454. image: {
  7455. source: "./media/characters/verin/foot.svg"
  7456. }
  7457. },
  7458. },
  7459. [
  7460. {
  7461. name: "Normal",
  7462. height: math.unit(8 + 3 / 12, "feet")
  7463. },
  7464. {
  7465. name: "Minimacro",
  7466. height: math.unit(21, "feet"),
  7467. default: true
  7468. },
  7469. {
  7470. name: "Macro",
  7471. height: math.unit(626, "feet")
  7472. },
  7473. ]
  7474. ))
  7475. characterMakers.push(() => makeCharacter(
  7476. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7477. {
  7478. front: {
  7479. height: math.unit(2.718, "meters"),
  7480. weight: math.unit(150, "lbs"),
  7481. name: "Front",
  7482. image: {
  7483. source: "./media/characters/sovrim-terraquian/front.svg"
  7484. }
  7485. },
  7486. back: {
  7487. height: math.unit(2.718, "meters"),
  7488. weight: math.unit(150, "lbs"),
  7489. name: "Back",
  7490. image: {
  7491. source: "./media/characters/sovrim-terraquian/back.svg"
  7492. }
  7493. }
  7494. },
  7495. [
  7496. {
  7497. name: "Micro",
  7498. height: math.unit(2, "inches")
  7499. },
  7500. {
  7501. name: "Small",
  7502. height: math.unit(1, "meter")
  7503. },
  7504. {
  7505. name: "Normal",
  7506. height: math.unit(Math.E, "meters"),
  7507. default: true
  7508. },
  7509. {
  7510. name: "Macro",
  7511. height: math.unit(20, "meters")
  7512. },
  7513. {
  7514. name: "Macro+",
  7515. height: math.unit(400, "meters")
  7516. },
  7517. ]
  7518. ))
  7519. characterMakers.push(() => makeCharacter(
  7520. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7521. {
  7522. front: {
  7523. height: math.unit(7, "feet"),
  7524. weight: math.unit(489, "lbs"),
  7525. name: "Front",
  7526. image: {
  7527. source: "./media/characters/reece-silvermane/front.svg",
  7528. bottom: 0.02,
  7529. extra: 1
  7530. }
  7531. },
  7532. },
  7533. [
  7534. {
  7535. name: "Macro",
  7536. height: math.unit(1.5, "miles"),
  7537. default: true
  7538. },
  7539. ]
  7540. ))
  7541. characterMakers.push(() => makeCharacter(
  7542. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7543. {
  7544. front: {
  7545. height: math.unit(6, "feet"),
  7546. weight: math.unit(78, "kg"),
  7547. name: "Front",
  7548. image: {
  7549. source: "./media/characters/kane/front.svg",
  7550. extra: 978 / 899
  7551. }
  7552. },
  7553. },
  7554. [
  7555. {
  7556. name: "Normal",
  7557. height: math.unit(2.1, "m"),
  7558. },
  7559. {
  7560. name: "Macro",
  7561. height: math.unit(1, "km"),
  7562. default: true
  7563. },
  7564. ]
  7565. ))
  7566. characterMakers.push(() => makeCharacter(
  7567. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7568. {
  7569. front: {
  7570. height: math.unit(6, "feet"),
  7571. weight: math.unit(200, "kg"),
  7572. name: "Front",
  7573. image: {
  7574. source: "./media/characters/tegon/front.svg",
  7575. bottom: 0.01,
  7576. extra: 1
  7577. }
  7578. },
  7579. },
  7580. [
  7581. {
  7582. name: "Micro",
  7583. height: math.unit(1, "inch")
  7584. },
  7585. {
  7586. name: "Normal",
  7587. height: math.unit(6 + 3 / 12, "feet"),
  7588. default: true
  7589. },
  7590. {
  7591. name: "Macro",
  7592. height: math.unit(300, "feet")
  7593. },
  7594. {
  7595. name: "Megamacro",
  7596. height: math.unit(69, "miles")
  7597. },
  7598. ]
  7599. ))
  7600. characterMakers.push(() => makeCharacter(
  7601. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7602. {
  7603. side: {
  7604. height: math.unit(6, "feet"),
  7605. weight: math.unit(2304, "lbs"),
  7606. name: "Side",
  7607. image: {
  7608. source: "./media/characters/arcturax/side.svg",
  7609. extra: 790 / 376,
  7610. bottom: 0.01
  7611. }
  7612. },
  7613. },
  7614. [
  7615. {
  7616. name: "Micro",
  7617. height: math.unit(2, "inch")
  7618. },
  7619. {
  7620. name: "Normal",
  7621. height: math.unit(6, "feet")
  7622. },
  7623. {
  7624. name: "Macro",
  7625. height: math.unit(39, "feet"),
  7626. default: true
  7627. },
  7628. {
  7629. name: "Megamacro",
  7630. height: math.unit(7, "miles")
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(6, "feet"),
  7639. weight: math.unit(50, "lbs"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/sentri/front.svg",
  7643. extra: 1750 / 1570,
  7644. bottom: 0.025
  7645. }
  7646. },
  7647. frontAlt: {
  7648. height: math.unit(6, "feet"),
  7649. weight: math.unit(50, "lbs"),
  7650. name: "Front (Alt)",
  7651. image: {
  7652. source: "./media/characters/sentri/front-alt.svg",
  7653. extra: 1750 / 1570,
  7654. bottom: 0.025
  7655. }
  7656. },
  7657. },
  7658. [
  7659. {
  7660. name: "Normal",
  7661. height: math.unit(15, "feet"),
  7662. default: true
  7663. },
  7664. {
  7665. name: "Macro",
  7666. height: math.unit(2500, "feet")
  7667. }
  7668. ]
  7669. ))
  7670. characterMakers.push(() => makeCharacter(
  7671. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7672. {
  7673. front: {
  7674. height: math.unit(5 + 8 / 12, "feet"),
  7675. weight: math.unit(130, "lbs"),
  7676. name: "Front",
  7677. image: {
  7678. source: "./media/characters/corvin/front.svg",
  7679. extra: 1803 / 1629
  7680. }
  7681. },
  7682. frontShirt: {
  7683. height: math.unit(5 + 8 / 12, "feet"),
  7684. weight: math.unit(130, "lbs"),
  7685. name: "Front (Shirt)",
  7686. image: {
  7687. source: "./media/characters/corvin/front-shirt.svg",
  7688. extra: 1803 / 1629
  7689. }
  7690. },
  7691. frontPoncho: {
  7692. height: math.unit(5 + 8 / 12, "feet"),
  7693. weight: math.unit(130, "lbs"),
  7694. name: "Front (Poncho)",
  7695. image: {
  7696. source: "./media/characters/corvin/front-poncho.svg",
  7697. extra: 1803 / 1629
  7698. }
  7699. },
  7700. side: {
  7701. height: math.unit(5 + 8 / 12, "feet"),
  7702. weight: math.unit(130, "lbs"),
  7703. name: "Side",
  7704. image: {
  7705. source: "./media/characters/corvin/side.svg",
  7706. extra: 1012 / 945
  7707. }
  7708. },
  7709. back: {
  7710. height: math.unit(5 + 8 / 12, "feet"),
  7711. weight: math.unit(130, "lbs"),
  7712. name: "Back",
  7713. image: {
  7714. source: "./media/characters/corvin/back.svg",
  7715. extra: 1803 / 1629
  7716. }
  7717. },
  7718. },
  7719. [
  7720. {
  7721. name: "Micro",
  7722. height: math.unit(3, "inches")
  7723. },
  7724. {
  7725. name: "Normal",
  7726. height: math.unit(5 + 8 / 12, "feet")
  7727. },
  7728. {
  7729. name: "Macro",
  7730. height: math.unit(300, "feet"),
  7731. default: true
  7732. },
  7733. {
  7734. name: "Megamacro",
  7735. height: math.unit(500, "miles")
  7736. }
  7737. ]
  7738. ))
  7739. characterMakers.push(() => makeCharacter(
  7740. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7741. {
  7742. front: {
  7743. height: math.unit(6, "feet"),
  7744. weight: math.unit(135, "lbs"),
  7745. name: "Front",
  7746. image: {
  7747. source: "./media/characters/q/front.svg",
  7748. extra: 854 / 752,
  7749. bottom: 0.005
  7750. }
  7751. },
  7752. back: {
  7753. height: math.unit(6, "feet"),
  7754. weight: math.unit(130, "lbs"),
  7755. name: "Back",
  7756. image: {
  7757. source: "./media/characters/q/back.svg",
  7758. extra: 854 / 752
  7759. }
  7760. },
  7761. },
  7762. [
  7763. {
  7764. name: "Macro",
  7765. height: math.unit(90, "feet"),
  7766. default: true
  7767. },
  7768. {
  7769. name: "Extra Macro",
  7770. height: math.unit(300, "feet"),
  7771. },
  7772. {
  7773. name: "BIG WALF",
  7774. height: math.unit(750, "feet"),
  7775. },
  7776. ]
  7777. ))
  7778. characterMakers.push(() => makeCharacter(
  7779. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7780. {
  7781. front: {
  7782. height: math.unit(6, "feet"),
  7783. weight: math.unit(150, "lbs"),
  7784. name: "Front",
  7785. image: {
  7786. source: "./media/characters/carley/front.svg",
  7787. extra: 3927 / 3540,
  7788. bottom: 29.2 / 735
  7789. }
  7790. }
  7791. },
  7792. [
  7793. {
  7794. name: "Normal",
  7795. height: math.unit(6 + 3 / 12, "feet")
  7796. },
  7797. {
  7798. name: "Macro",
  7799. height: math.unit(185, "feet"),
  7800. default: true
  7801. },
  7802. {
  7803. name: "Megamacro",
  7804. height: math.unit(8, "miles"),
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7810. {
  7811. front: {
  7812. height: math.unit(3, "feet"),
  7813. weight: math.unit(28, "lbs"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/citrine/front.svg"
  7817. }
  7818. }
  7819. },
  7820. [
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(3, "feet"),
  7824. default: true
  7825. }
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7830. {
  7831. front: {
  7832. height: math.unit(14, "feet"),
  7833. weight: math.unit(1450, "kg"),
  7834. capacity: math.unit(15, "people"),
  7835. name: "Front",
  7836. image: {
  7837. source: "./media/characters/aura-starwind/front.svg",
  7838. extra: 1455 / 1335
  7839. }
  7840. },
  7841. side: {
  7842. height: math.unit(14, "feet"),
  7843. weight: math.unit(1450, "kg"),
  7844. capacity: math.unit(15, "people"),
  7845. name: "Side",
  7846. image: {
  7847. source: "./media/characters/aura-starwind/side.svg",
  7848. extra: 1654 / 1497
  7849. }
  7850. },
  7851. taur: {
  7852. height: math.unit(18, "feet"),
  7853. weight: math.unit(5500, "kg"),
  7854. capacity: math.unit(50, "people"),
  7855. name: "Taur",
  7856. image: {
  7857. source: "./media/characters/aura-starwind/taur.svg",
  7858. extra: 1760 / 1650
  7859. }
  7860. },
  7861. feral: {
  7862. height: math.unit(46, "feet"),
  7863. weight: math.unit(25000, "kg"),
  7864. capacity: math.unit(120, "people"),
  7865. name: "Feral",
  7866. image: {
  7867. source: "./media/characters/aura-starwind/feral.svg"
  7868. }
  7869. },
  7870. },
  7871. [
  7872. {
  7873. name: "Normal",
  7874. height: math.unit(14, "feet"),
  7875. default: true
  7876. },
  7877. {
  7878. name: "Macro",
  7879. height: math.unit(50, "meters")
  7880. },
  7881. {
  7882. name: "Megamacro",
  7883. height: math.unit(5000, "meters")
  7884. },
  7885. {
  7886. name: "Gigamacro",
  7887. height: math.unit(100000, "kilometers")
  7888. },
  7889. ]
  7890. ))
  7891. characterMakers.push(() => makeCharacter(
  7892. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7893. {
  7894. front: {
  7895. height: math.unit(2 + 7 / 12, "feet"),
  7896. weight: math.unit(32, "lbs"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/rivet/front.svg",
  7900. extra: 1716 / 1658,
  7901. bottom: 0.03
  7902. }
  7903. },
  7904. foot: {
  7905. height: math.unit(0.551, "feet"),
  7906. name: "Rivet's Foot",
  7907. image: {
  7908. source: "./media/characters/rivet/foot.svg"
  7909. },
  7910. rename: true
  7911. }
  7912. },
  7913. [
  7914. {
  7915. name: "Micro",
  7916. height: math.unit(1.5, "inches"),
  7917. },
  7918. {
  7919. name: "Normal",
  7920. height: math.unit(2 + 7 / 12, "feet"),
  7921. default: true
  7922. },
  7923. {
  7924. name: "Macro",
  7925. height: math.unit(85, "feet")
  7926. },
  7927. {
  7928. name: "Megamacro",
  7929. height: math.unit(2.2, "km")
  7930. }
  7931. ]
  7932. ))
  7933. characterMakers.push(() => makeCharacter(
  7934. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7935. {
  7936. front: {
  7937. height: math.unit(5 + 9 / 12, "feet"),
  7938. weight: math.unit(150, "lbs"),
  7939. name: "Front",
  7940. image: {
  7941. source: "./media/characters/coffee/front.svg",
  7942. extra: 3666 / 3032,
  7943. bottom: 0.04
  7944. }
  7945. },
  7946. foot: {
  7947. height: math.unit(1.29, "feet"),
  7948. name: "Foot",
  7949. image: {
  7950. source: "./media/characters/coffee/foot.svg"
  7951. }
  7952. },
  7953. },
  7954. [
  7955. {
  7956. name: "Micro",
  7957. height: math.unit(2, "inches"),
  7958. },
  7959. {
  7960. name: "Normal",
  7961. height: math.unit(5 + 9 / 12, "feet"),
  7962. default: true
  7963. },
  7964. {
  7965. name: "Macro",
  7966. height: math.unit(800, "feet")
  7967. },
  7968. {
  7969. name: "Megamacro",
  7970. height: math.unit(25, "miles")
  7971. }
  7972. ]
  7973. ))
  7974. characterMakers.push(() => makeCharacter(
  7975. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7976. {
  7977. front: {
  7978. height: math.unit(6, "feet"),
  7979. weight: math.unit(200, "lbs"),
  7980. name: "Front",
  7981. image: {
  7982. source: "./media/characters/chari-gal/front.svg",
  7983. extra: 1568 / 1385,
  7984. bottom: 0.047
  7985. }
  7986. },
  7987. gigantamax: {
  7988. height: math.unit(6 * 16, "feet"),
  7989. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7990. name: "Gigantamax",
  7991. image: {
  7992. source: "./media/characters/chari-gal/gigantamax.svg",
  7993. extra: 1124 / 888,
  7994. bottom: 0.03
  7995. }
  7996. },
  7997. },
  7998. [
  7999. {
  8000. name: "Normal",
  8001. height: math.unit(5 + 7 / 12, "feet")
  8002. },
  8003. {
  8004. name: "Macro",
  8005. height: math.unit(200, "feet"),
  8006. default: true
  8007. }
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8012. {
  8013. front: {
  8014. height: math.unit(6, "feet"),
  8015. weight: math.unit(150, "lbs"),
  8016. name: "Front",
  8017. image: {
  8018. source: "./media/characters/nova/front.svg",
  8019. extra: 5000 / 4722,
  8020. bottom: 0.02
  8021. }
  8022. }
  8023. },
  8024. [
  8025. {
  8026. name: "Micro-",
  8027. height: math.unit(0.8, "inches")
  8028. },
  8029. {
  8030. name: "Micro",
  8031. height: math.unit(2, "inches"),
  8032. default: true
  8033. },
  8034. ]
  8035. ))
  8036. characterMakers.push(() => makeCharacter(
  8037. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8038. {
  8039. front: {
  8040. height: math.unit(3 + 1 / 12, "feet"),
  8041. weight: math.unit(21.7, "lbs"),
  8042. name: "Front",
  8043. image: {
  8044. source: "./media/characters/argent/front.svg",
  8045. extra: 1471 / 1331,
  8046. bottom: 100.8 / 1575.5
  8047. }
  8048. }
  8049. },
  8050. [
  8051. {
  8052. name: "Micro",
  8053. height: math.unit(2, "inches")
  8054. },
  8055. {
  8056. name: "Normal",
  8057. height: math.unit(3 + 1 / 12, "feet"),
  8058. default: true
  8059. },
  8060. {
  8061. name: "Macro",
  8062. height: math.unit(120, "feet")
  8063. },
  8064. ]
  8065. ))
  8066. characterMakers.push(() => makeCharacter(
  8067. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8068. {
  8069. lamp: {
  8070. height: math.unit(7 * 1559 / 989, "feet"),
  8071. name: "Magic Lamp",
  8072. image: {
  8073. source: "./media/characters/mira-al-cul/lamp.svg",
  8074. extra: 1617 / 1559
  8075. }
  8076. },
  8077. front: {
  8078. height: math.unit(7, "feet"),
  8079. name: "Front",
  8080. image: {
  8081. source: "./media/characters/mira-al-cul/front.svg",
  8082. extra: 1044 / 990
  8083. }
  8084. },
  8085. },
  8086. [
  8087. {
  8088. name: "Heavily Restricted",
  8089. height: math.unit(7 * 1559 / 989, "feet")
  8090. },
  8091. {
  8092. name: "Freshly Freed",
  8093. height: math.unit(50 * 1559 / 989, "feet")
  8094. },
  8095. {
  8096. name: "World Encompassing",
  8097. height: math.unit(10000 * 1559 / 989, "miles")
  8098. },
  8099. {
  8100. name: "Galactic",
  8101. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8102. },
  8103. {
  8104. name: "Palmed Universe",
  8105. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8106. default: true
  8107. },
  8108. {
  8109. name: "Multiversal Matriarch",
  8110. height: math.unit(8.87e10, "yottameters")
  8111. },
  8112. {
  8113. name: "Void Mother",
  8114. height: math.unit(3.14e110, "yottaparsecs")
  8115. },
  8116. {
  8117. name: "Toying with Transcendence",
  8118. height: math.unit(1e307, "meters")
  8119. },
  8120. ]
  8121. ))
  8122. characterMakers.push(() => makeCharacter(
  8123. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8124. {
  8125. front: {
  8126. height: math.unit(17 + 1 / 12, "feet"),
  8127. weight: math.unit(476.2 * 5, "lbs"),
  8128. name: "Front",
  8129. image: {
  8130. source: "./media/characters/kuro-shi-uchū/front.svg",
  8131. extra: 2329 / 1835,
  8132. bottom: 0.02
  8133. }
  8134. },
  8135. },
  8136. [
  8137. {
  8138. name: "Micro",
  8139. height: math.unit(2, "inches")
  8140. },
  8141. {
  8142. name: "Normal",
  8143. height: math.unit(12, "meters")
  8144. },
  8145. {
  8146. name: "Planetary",
  8147. height: math.unit(0.00929, "AU"),
  8148. default: true
  8149. },
  8150. {
  8151. name: "Universal",
  8152. height: math.unit(20, "gigaparsecs")
  8153. },
  8154. ]
  8155. ))
  8156. characterMakers.push(() => makeCharacter(
  8157. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8158. {
  8159. front: {
  8160. height: math.unit(5 + 2 / 12, "feet"),
  8161. weight: math.unit(120, "lbs"),
  8162. name: "Front",
  8163. image: {
  8164. source: "./media/characters/katherine/front.svg",
  8165. extra: 2075 / 1969
  8166. }
  8167. },
  8168. dress: {
  8169. height: math.unit(5 + 2 / 12, "feet"),
  8170. weight: math.unit(120, "lbs"),
  8171. name: "Dress",
  8172. image: {
  8173. source: "./media/characters/katherine/dress.svg",
  8174. extra: 2258 / 2064
  8175. }
  8176. },
  8177. },
  8178. [
  8179. {
  8180. name: "Micro",
  8181. height: math.unit(1, "inches"),
  8182. default: true
  8183. },
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(5 + 2 / 12, "feet")
  8187. },
  8188. {
  8189. name: "Macro",
  8190. height: math.unit(100, "meters")
  8191. },
  8192. {
  8193. name: "Megamacro",
  8194. height: math.unit(80, "miles")
  8195. },
  8196. ]
  8197. ))
  8198. characterMakers.push(() => makeCharacter(
  8199. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8200. {
  8201. front: {
  8202. height: math.unit(7 + 8 / 12, "feet"),
  8203. weight: math.unit(250, "lbs"),
  8204. name: "Front",
  8205. image: {
  8206. source: "./media/characters/yevis/front.svg",
  8207. extra: 1938 / 1755
  8208. }
  8209. }
  8210. },
  8211. [
  8212. {
  8213. name: "Mortal",
  8214. height: math.unit(7 + 8 / 12, "feet")
  8215. },
  8216. {
  8217. name: "Battle",
  8218. height: math.unit(25 + 11 / 12, "feet")
  8219. },
  8220. {
  8221. name: "Wrath",
  8222. height: math.unit(1654 + 11 / 12, "feet")
  8223. },
  8224. {
  8225. name: "Planet Destroyer",
  8226. height: math.unit(12000, "miles")
  8227. },
  8228. {
  8229. name: "Galaxy Conqueror",
  8230. height: math.unit(1.45, "zettameters"),
  8231. default: true
  8232. },
  8233. {
  8234. name: "Universal War",
  8235. height: math.unit(184, "gigaparsecs")
  8236. },
  8237. {
  8238. name: "Eternity War",
  8239. height: math.unit(1.98e55, "yottaparsecs")
  8240. },
  8241. ]
  8242. ))
  8243. characterMakers.push(() => makeCharacter(
  8244. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8245. {
  8246. front: {
  8247. height: math.unit(5 + 8 / 12, "feet"),
  8248. weight: math.unit(63, "kg"),
  8249. name: "Front",
  8250. image: {
  8251. source: "./media/characters/xavier/front.svg",
  8252. extra: 944 / 883
  8253. }
  8254. },
  8255. frontStretch: {
  8256. height: math.unit(5 + 8 / 12, "feet"),
  8257. weight: math.unit(63, "kg"),
  8258. name: "Stretching",
  8259. image: {
  8260. source: "./media/characters/xavier/front-stretch.svg",
  8261. extra: 962 / 820
  8262. }
  8263. },
  8264. },
  8265. [
  8266. {
  8267. name: "Normal",
  8268. height: math.unit(5 + 8 / 12, "feet")
  8269. },
  8270. {
  8271. name: "Macro",
  8272. height: math.unit(100, "meters"),
  8273. default: true
  8274. },
  8275. {
  8276. name: "McLargeHuge",
  8277. height: math.unit(10, "miles")
  8278. },
  8279. ]
  8280. ))
  8281. characterMakers.push(() => makeCharacter(
  8282. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8283. {
  8284. front: {
  8285. height: math.unit(5 + 5 / 12, "feet"),
  8286. weight: math.unit(150, "lb"),
  8287. name: "Front",
  8288. image: {
  8289. source: "./media/characters/joshii/front.svg",
  8290. extra: 765 / 653,
  8291. bottom: 51 / 816
  8292. }
  8293. },
  8294. foot: {
  8295. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8296. name: "Foot",
  8297. image: {
  8298. source: "./media/characters/joshii/foot.svg"
  8299. }
  8300. },
  8301. },
  8302. [
  8303. {
  8304. name: "Micro",
  8305. height: math.unit(2, "inches"),
  8306. default: true
  8307. },
  8308. {
  8309. name: "Normal",
  8310. height: math.unit(5 + 5 / 12, "feet")
  8311. },
  8312. {
  8313. name: "Macro",
  8314. height: math.unit(785, "feet")
  8315. },
  8316. {
  8317. name: "Megamacro",
  8318. height: math.unit(24.5, "miles")
  8319. },
  8320. ]
  8321. ))
  8322. characterMakers.push(() => makeCharacter(
  8323. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8324. {
  8325. front: {
  8326. height: math.unit(6, "feet"),
  8327. weight: math.unit(150, "lb"),
  8328. name: "Front",
  8329. image: {
  8330. source: "./media/characters/goddess-elizabeth/front.svg",
  8331. extra: 1800 / 1525,
  8332. bottom: 0.005
  8333. }
  8334. },
  8335. foot: {
  8336. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8337. name: "Foot",
  8338. image: {
  8339. source: "./media/characters/goddess-elizabeth/foot.svg"
  8340. }
  8341. },
  8342. mouth: {
  8343. height: math.unit(6, "feet"),
  8344. name: "Mouth",
  8345. image: {
  8346. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8347. }
  8348. },
  8349. },
  8350. [
  8351. {
  8352. name: "Micro",
  8353. height: math.unit(12, "feet")
  8354. },
  8355. {
  8356. name: "Normal",
  8357. height: math.unit(80, "miles"),
  8358. default: true
  8359. },
  8360. {
  8361. name: "Macro",
  8362. height: math.unit(15000, "parsecs")
  8363. },
  8364. ]
  8365. ))
  8366. characterMakers.push(() => makeCharacter(
  8367. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8368. {
  8369. front: {
  8370. height: math.unit(5 + 9 / 12, "feet"),
  8371. weight: math.unit(144, "lb"),
  8372. name: "Front",
  8373. image: {
  8374. source: "./media/characters/kara/front.svg"
  8375. }
  8376. },
  8377. feet: {
  8378. height: math.unit(6 / 6.765, "feet"),
  8379. name: "Kara's Feet",
  8380. rename: true,
  8381. image: {
  8382. source: "./media/characters/kara/feet.svg"
  8383. }
  8384. },
  8385. },
  8386. [
  8387. {
  8388. name: "Normal",
  8389. height: math.unit(5 + 9 / 12, "feet")
  8390. },
  8391. {
  8392. name: "Macro",
  8393. height: math.unit(174, "feet"),
  8394. default: true
  8395. },
  8396. ]
  8397. ))
  8398. characterMakers.push(() => makeCharacter(
  8399. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8400. {
  8401. front: {
  8402. height: math.unit(18, "feet"),
  8403. weight: math.unit(4050, "lb"),
  8404. name: "Front",
  8405. image: {
  8406. source: "./media/characters/tyrone/front.svg",
  8407. extra: 2405 / 2270,
  8408. bottom: 182 / 2587
  8409. }
  8410. },
  8411. },
  8412. [
  8413. {
  8414. name: "Normal",
  8415. height: math.unit(18, "feet"),
  8416. default: true
  8417. },
  8418. {
  8419. name: "Macro",
  8420. height: math.unit(300, "feet")
  8421. },
  8422. {
  8423. name: "Megamacro",
  8424. height: math.unit(15, "km")
  8425. },
  8426. {
  8427. name: "Gigamacro",
  8428. height: math.unit(500, "km")
  8429. },
  8430. {
  8431. name: "Teramacro",
  8432. height: math.unit(0.5, "gigameters")
  8433. },
  8434. {
  8435. name: "Omnimacro",
  8436. height: math.unit(1e252, "yottauniverse")
  8437. },
  8438. ]
  8439. ))
  8440. characterMakers.push(() => makeCharacter(
  8441. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8442. {
  8443. front: {
  8444. height: math.unit(7 + 8 / 12, "feet"),
  8445. weight: math.unit(120, "lb"),
  8446. name: "Front",
  8447. image: {
  8448. source: "./media/characters/danny/front.svg",
  8449. extra: 1490 / 1350
  8450. }
  8451. },
  8452. back: {
  8453. height: math.unit(7 + 8 / 12, "feet"),
  8454. weight: math.unit(120, "lb"),
  8455. name: "Back",
  8456. image: {
  8457. source: "./media/characters/danny/back.svg",
  8458. extra: 1490 / 1350
  8459. }
  8460. },
  8461. },
  8462. [
  8463. {
  8464. name: "Normal",
  8465. height: math.unit(7 + 8 / 12, "feet"),
  8466. default: true
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8472. {
  8473. front: {
  8474. height: math.unit(3.5, "inches"),
  8475. weight: math.unit(19, "grams"),
  8476. name: "Front",
  8477. image: {
  8478. source: "./media/characters/mallow/front.svg",
  8479. extra: 471 / 431
  8480. }
  8481. },
  8482. back: {
  8483. height: math.unit(3.5, "inches"),
  8484. weight: math.unit(19, "grams"),
  8485. name: "Back",
  8486. image: {
  8487. source: "./media/characters/mallow/back.svg",
  8488. extra: 471 / 431
  8489. }
  8490. },
  8491. },
  8492. [
  8493. {
  8494. name: "Normal",
  8495. height: math.unit(3.5, "inches"),
  8496. default: true
  8497. },
  8498. ]
  8499. ))
  8500. characterMakers.push(() => makeCharacter(
  8501. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8502. {
  8503. front: {
  8504. height: math.unit(9, "feet"),
  8505. weight: math.unit(230, "kg"),
  8506. name: "Front",
  8507. image: {
  8508. source: "./media/characters/starry-aqua/front.svg"
  8509. }
  8510. },
  8511. back: {
  8512. height: math.unit(9, "feet"),
  8513. weight: math.unit(230, "kg"),
  8514. name: "Back",
  8515. image: {
  8516. source: "./media/characters/starry-aqua/back.svg"
  8517. }
  8518. },
  8519. hand: {
  8520. height: math.unit(9 * 0.1168, "feet"),
  8521. name: "Hand",
  8522. image: {
  8523. source: "./media/characters/starry-aqua/hand.svg"
  8524. }
  8525. },
  8526. foot: {
  8527. height: math.unit(9 * 0.18, "feet"),
  8528. name: "Foot",
  8529. image: {
  8530. source: "./media/characters/starry-aqua/foot.svg"
  8531. }
  8532. }
  8533. },
  8534. [
  8535. {
  8536. name: "Micro",
  8537. height: math.unit(3, "inches")
  8538. },
  8539. {
  8540. name: "Normal",
  8541. height: math.unit(9, "feet")
  8542. },
  8543. {
  8544. name: "Macro",
  8545. height: math.unit(300, "feet"),
  8546. default: true
  8547. },
  8548. {
  8549. name: "Megamacro",
  8550. height: math.unit(3200, "feet")
  8551. }
  8552. ]
  8553. ))
  8554. characterMakers.push(() => makeCharacter(
  8555. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8556. {
  8557. front: {
  8558. height: math.unit(6, "feet"),
  8559. weight: math.unit(230, "lb"),
  8560. name: "Front",
  8561. image: {
  8562. source: "./media/characters/luka/front.svg",
  8563. extra: 1,
  8564. bottom: 0.025
  8565. }
  8566. },
  8567. },
  8568. [
  8569. {
  8570. name: "Normal",
  8571. height: math.unit(12 + 8 / 12, "feet"),
  8572. default: true
  8573. },
  8574. {
  8575. name: "Minimacro",
  8576. height: math.unit(20, "feet")
  8577. },
  8578. {
  8579. name: "Macro",
  8580. height: math.unit(250, "feet")
  8581. },
  8582. {
  8583. name: "Megamacro",
  8584. height: math.unit(5, "miles")
  8585. },
  8586. {
  8587. name: "Gigamacro",
  8588. height: math.unit(8000, "miles")
  8589. },
  8590. ]
  8591. ))
  8592. characterMakers.push(() => makeCharacter(
  8593. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8594. {
  8595. front: {
  8596. height: math.unit(6, "feet"),
  8597. weight: math.unit(150, "lb"),
  8598. name: "Front",
  8599. image: {
  8600. source: "./media/characters/natalie-nightring/front.svg",
  8601. extra: 1,
  8602. bottom: 0.06
  8603. }
  8604. },
  8605. },
  8606. [
  8607. {
  8608. name: "Uh Oh",
  8609. height: math.unit(0.1, "mm")
  8610. },
  8611. {
  8612. name: "Small",
  8613. height: math.unit(3, "inches")
  8614. },
  8615. {
  8616. name: "Human Scale",
  8617. height: math.unit(6, "feet")
  8618. },
  8619. {
  8620. name: "Librarian",
  8621. height: math.unit(50, "feet"),
  8622. default: true
  8623. },
  8624. {
  8625. name: "Immense",
  8626. height: math.unit(200, "miles")
  8627. },
  8628. ]
  8629. ))
  8630. characterMakers.push(() => makeCharacter(
  8631. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8632. {
  8633. front: {
  8634. height: math.unit(6, "feet"),
  8635. weight: math.unit(180, "lbs"),
  8636. name: "Front",
  8637. image: {
  8638. source: "./media/characters/danni-rosie/front.svg",
  8639. extra: 1260 / 1128,
  8640. bottom: 0.022
  8641. }
  8642. },
  8643. },
  8644. [
  8645. {
  8646. name: "Micro",
  8647. height: math.unit(2, "inches"),
  8648. default: true
  8649. },
  8650. ]
  8651. ))
  8652. characterMakers.push(() => makeCharacter(
  8653. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8654. {
  8655. front: {
  8656. height: math.unit(5 + 9 / 12, "feet"),
  8657. weight: math.unit(220, "lb"),
  8658. name: "Front",
  8659. image: {
  8660. source: "./media/characters/samantha-kruse/front.svg",
  8661. extra: (985 / 935),
  8662. bottom: 0.03
  8663. }
  8664. },
  8665. frontUndressed: {
  8666. height: math.unit(5 + 9 / 12, "feet"),
  8667. weight: math.unit(220, "lb"),
  8668. name: "Front (Undressed)",
  8669. image: {
  8670. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8671. extra: (973 / 923),
  8672. bottom: 0.025
  8673. }
  8674. },
  8675. fat: {
  8676. height: math.unit(5 + 9 / 12, "feet"),
  8677. weight: math.unit(900, "lb"),
  8678. name: "Front (Fat)",
  8679. image: {
  8680. source: "./media/characters/samantha-kruse/fat.svg",
  8681. extra: 2688 / 2561
  8682. }
  8683. },
  8684. },
  8685. [
  8686. {
  8687. name: "Normal",
  8688. height: math.unit(5 + 9 / 12, "feet"),
  8689. default: true
  8690. }
  8691. ]
  8692. ))
  8693. characterMakers.push(() => makeCharacter(
  8694. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8695. {
  8696. back: {
  8697. height: math.unit(5 + 4 / 12, "feet"),
  8698. weight: math.unit(4963, "lb"),
  8699. name: "Back",
  8700. image: {
  8701. source: "./media/characters/amelia-rosie/back.svg",
  8702. extra: 1113 / 963,
  8703. bottom: 0.01
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Level 0",
  8710. height: math.unit(5 + 4 / 12, "feet")
  8711. },
  8712. {
  8713. name: "Level 1",
  8714. height: math.unit(164597, "feet"),
  8715. default: true
  8716. },
  8717. {
  8718. name: "Level 2",
  8719. height: math.unit(956243, "miles")
  8720. },
  8721. {
  8722. name: "Level 3",
  8723. height: math.unit(29421709423, "miles")
  8724. },
  8725. {
  8726. name: "Level 4",
  8727. height: math.unit(154, "lightyears")
  8728. },
  8729. {
  8730. name: "Level 5",
  8731. height: math.unit(4738272, "lightyears")
  8732. },
  8733. {
  8734. name: "Level 6",
  8735. height: math.unit(145787152896, "lightyears")
  8736. },
  8737. ]
  8738. ))
  8739. characterMakers.push(() => makeCharacter(
  8740. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8741. {
  8742. front: {
  8743. height: math.unit(5 + 11 / 12, "feet"),
  8744. weight: math.unit(65, "kg"),
  8745. name: "Front",
  8746. image: {
  8747. source: "./media/characters/rook-kitara/front.svg",
  8748. extra: 1347 / 1274,
  8749. bottom: 0.005
  8750. }
  8751. },
  8752. },
  8753. [
  8754. {
  8755. name: "Totally Unfair",
  8756. height: math.unit(1.8, "mm")
  8757. },
  8758. {
  8759. name: "Lap Rookie",
  8760. height: math.unit(1.4, "feet")
  8761. },
  8762. {
  8763. name: "Normal",
  8764. height: math.unit(5 + 11 / 12, "feet"),
  8765. default: true
  8766. },
  8767. {
  8768. name: "How Did This Happen",
  8769. height: math.unit(80, "miles")
  8770. }
  8771. ]
  8772. ))
  8773. characterMakers.push(() => makeCharacter(
  8774. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8775. {
  8776. front: {
  8777. height: math.unit(7, "feet"),
  8778. weight: math.unit(300, "lb"),
  8779. name: "Front",
  8780. image: {
  8781. source: "./media/characters/pisces/front.svg",
  8782. extra: 2255 / 2115,
  8783. bottom: 0.03
  8784. }
  8785. },
  8786. back: {
  8787. height: math.unit(7, "feet"),
  8788. weight: math.unit(300, "lb"),
  8789. name: "Back",
  8790. image: {
  8791. source: "./media/characters/pisces/back.svg",
  8792. extra: 2146 / 2055,
  8793. bottom: 0.04
  8794. }
  8795. },
  8796. },
  8797. [
  8798. {
  8799. name: "Normal",
  8800. height: math.unit(7, "feet"),
  8801. default: true
  8802. },
  8803. {
  8804. name: "Swimming Pool",
  8805. height: math.unit(12.2, "meters")
  8806. },
  8807. {
  8808. name: "Olympic Swimming Pool",
  8809. height: math.unit(56.3, "meters")
  8810. },
  8811. {
  8812. name: "Lake Superior",
  8813. height: math.unit(93900, "meters")
  8814. },
  8815. {
  8816. name: "Mediterranean Sea",
  8817. height: math.unit(644457, "meters")
  8818. },
  8819. {
  8820. name: "World's Oceans",
  8821. height: math.unit(4567491, "meters")
  8822. },
  8823. ]
  8824. ))
  8825. characterMakers.push(() => makeCharacter(
  8826. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8827. {
  8828. front: {
  8829. height: math.unit(2.3, "meters"),
  8830. weight: math.unit(120, "kg"),
  8831. name: "Front",
  8832. image: {
  8833. source: "./media/characters/zelas/front.svg"
  8834. }
  8835. },
  8836. side: {
  8837. height: math.unit(2.3, "meters"),
  8838. weight: math.unit(120, "kg"),
  8839. name: "Side",
  8840. image: {
  8841. source: "./media/characters/zelas/side.svg"
  8842. }
  8843. },
  8844. back: {
  8845. height: math.unit(2.3, "meters"),
  8846. weight: math.unit(120, "kg"),
  8847. name: "Back",
  8848. image: {
  8849. source: "./media/characters/zelas/back.svg"
  8850. }
  8851. },
  8852. foot: {
  8853. height: math.unit(1.116, "feet"),
  8854. name: "Foot",
  8855. image: {
  8856. source: "./media/characters/zelas/foot.svg"
  8857. }
  8858. },
  8859. },
  8860. [
  8861. {
  8862. name: "Normal",
  8863. height: math.unit(2.3, "meters")
  8864. },
  8865. {
  8866. name: "Macro",
  8867. height: math.unit(30, "meters"),
  8868. default: true
  8869. },
  8870. ]
  8871. ))
  8872. characterMakers.push(() => makeCharacter(
  8873. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8874. {
  8875. front: {
  8876. height: math.unit(1, "inch"),
  8877. weight: math.unit(0.21, "grams"),
  8878. name: "Front",
  8879. image: {
  8880. source: "./media/characters/talbot/front.svg",
  8881. extra: 594 / 544
  8882. }
  8883. },
  8884. },
  8885. [
  8886. {
  8887. name: "Micro",
  8888. height: math.unit(1, "inch"),
  8889. default: true
  8890. },
  8891. ]
  8892. ))
  8893. characterMakers.push(() => makeCharacter(
  8894. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8895. {
  8896. front: {
  8897. height: math.unit(3 + 3 / 12, "feet"),
  8898. weight: math.unit(51.8, "lb"),
  8899. name: "Front",
  8900. image: {
  8901. source: "./media/characters/fliss/front.svg",
  8902. extra: 840 / 640
  8903. }
  8904. },
  8905. },
  8906. [
  8907. {
  8908. name: "Teeny Tiny",
  8909. height: math.unit(1, "mm")
  8910. },
  8911. {
  8912. name: "Small",
  8913. height: math.unit(1, "inch"),
  8914. default: true
  8915. },
  8916. {
  8917. name: "Standard Sylveon",
  8918. height: math.unit(3 + 3 / 12, "feet")
  8919. },
  8920. {
  8921. name: "Large Nuisance",
  8922. height: math.unit(33, "feet")
  8923. },
  8924. {
  8925. name: "City Filler",
  8926. height: math.unit(3000, "feet")
  8927. },
  8928. {
  8929. name: "New Horizon",
  8930. height: math.unit(6000, "miles")
  8931. },
  8932. ]
  8933. ))
  8934. characterMakers.push(() => makeCharacter(
  8935. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8936. {
  8937. front: {
  8938. height: math.unit(5, "cm"),
  8939. weight: math.unit(1.94, "g"),
  8940. name: "Front",
  8941. image: {
  8942. source: "./media/characters/fleta/front.svg",
  8943. extra: 835 / 803
  8944. }
  8945. },
  8946. back: {
  8947. height: math.unit(5, "cm"),
  8948. weight: math.unit(1.94, "g"),
  8949. name: "Back",
  8950. image: {
  8951. source: "./media/characters/fleta/back.svg",
  8952. extra: 835 / 803
  8953. }
  8954. },
  8955. },
  8956. [
  8957. {
  8958. name: "Micro",
  8959. height: math.unit(5, "cm"),
  8960. default: true
  8961. },
  8962. ]
  8963. ))
  8964. characterMakers.push(() => makeCharacter(
  8965. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8966. {
  8967. front: {
  8968. height: math.unit(6, "feet"),
  8969. weight: math.unit(225, "lb"),
  8970. name: "Front",
  8971. image: {
  8972. source: "./media/characters/dominic/front.svg",
  8973. extra: 1770 / 1620,
  8974. bottom: 0.025
  8975. }
  8976. },
  8977. back: {
  8978. height: math.unit(6, "feet"),
  8979. weight: math.unit(225, "lb"),
  8980. name: "Back",
  8981. image: {
  8982. source: "./media/characters/dominic/back.svg",
  8983. extra: 1745 / 1620,
  8984. bottom: 0.065
  8985. }
  8986. },
  8987. },
  8988. [
  8989. {
  8990. name: "Nano",
  8991. height: math.unit(0.1, "mm")
  8992. },
  8993. {
  8994. name: "Micro-",
  8995. height: math.unit(1, "mm")
  8996. },
  8997. {
  8998. name: "Micro",
  8999. height: math.unit(4, "inches")
  9000. },
  9001. {
  9002. name: "Normal",
  9003. height: math.unit(6 + 4 / 12, "feet"),
  9004. default: true
  9005. },
  9006. {
  9007. name: "Macro",
  9008. height: math.unit(115, "feet")
  9009. },
  9010. {
  9011. name: "Macro+",
  9012. height: math.unit(955, "feet")
  9013. },
  9014. {
  9015. name: "Megamacro",
  9016. height: math.unit(8990, "feet")
  9017. },
  9018. {
  9019. name: "Gigmacro",
  9020. height: math.unit(9310, "miles")
  9021. },
  9022. {
  9023. name: "Teramacro",
  9024. height: math.unit(1567005010, "miles")
  9025. },
  9026. {
  9027. name: "Examacro",
  9028. height: math.unit(1425, "parsecs")
  9029. },
  9030. ]
  9031. ))
  9032. characterMakers.push(() => makeCharacter(
  9033. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9034. {
  9035. front: {
  9036. height: math.unit(400, "feet"),
  9037. weight: math.unit(44444444, "lb"),
  9038. name: "Front",
  9039. image: {
  9040. source: "./media/characters/major-colonel/front.svg"
  9041. }
  9042. },
  9043. back: {
  9044. height: math.unit(400, "feet"),
  9045. weight: math.unit(44444444, "lb"),
  9046. name: "Back",
  9047. image: {
  9048. source: "./media/characters/major-colonel/back.svg"
  9049. }
  9050. },
  9051. },
  9052. [
  9053. {
  9054. name: "Macro",
  9055. height: math.unit(400, "feet"),
  9056. default: true
  9057. },
  9058. ]
  9059. ))
  9060. characterMakers.push(() => makeCharacter(
  9061. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9062. {
  9063. catFront: {
  9064. height: math.unit(6, "feet"),
  9065. weight: math.unit(120, "lb"),
  9066. name: "Front (Cat Side)",
  9067. image: {
  9068. source: "./media/characters/axel-lycan/cat-front.svg",
  9069. extra: 430 / 402,
  9070. bottom: 43 / 472.35
  9071. }
  9072. },
  9073. catBack: {
  9074. height: math.unit(6, "feet"),
  9075. weight: math.unit(120, "lb"),
  9076. name: "Back (Cat Side)",
  9077. image: {
  9078. source: "./media/characters/axel-lycan/cat-back.svg",
  9079. extra: 447 / 419,
  9080. bottom: 23.3 / 469
  9081. }
  9082. },
  9083. wolfFront: {
  9084. height: math.unit(6, "feet"),
  9085. weight: math.unit(120, "lb"),
  9086. name: "Front (Wolf Side)",
  9087. image: {
  9088. source: "./media/characters/axel-lycan/wolf-front.svg",
  9089. extra: 485 / 456,
  9090. bottom: 19 / 504
  9091. }
  9092. },
  9093. wolfBack: {
  9094. height: math.unit(6, "feet"),
  9095. weight: math.unit(120, "lb"),
  9096. name: "Back (Wolf Side)",
  9097. image: {
  9098. source: "./media/characters/axel-lycan/wolf-back.svg",
  9099. extra: 475 / 438,
  9100. bottom: 39.2 / 514
  9101. }
  9102. },
  9103. },
  9104. [
  9105. {
  9106. name: "Macro",
  9107. height: math.unit(1, "km"),
  9108. default: true
  9109. },
  9110. ]
  9111. ))
  9112. characterMakers.push(() => makeCharacter(
  9113. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9114. {
  9115. front: {
  9116. height: math.unit(5 + 9 / 12, "feet"),
  9117. weight: math.unit(175, "lb"),
  9118. name: "Front",
  9119. image: {
  9120. source: "./media/characters/vanrel-hyena/front.svg",
  9121. extra: 1086 / 1010,
  9122. bottom: 0.04
  9123. }
  9124. },
  9125. },
  9126. [
  9127. {
  9128. name: "Normal",
  9129. height: math.unit(5 + 9 / 12, "feet"),
  9130. default: true
  9131. },
  9132. ]
  9133. ))
  9134. characterMakers.push(() => makeCharacter(
  9135. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9136. {
  9137. front: {
  9138. height: math.unit(6, "feet"),
  9139. weight: math.unit(103, "lb"),
  9140. name: "Front",
  9141. image: {
  9142. source: "./media/characters/abbott-absol/front.svg",
  9143. extra: 2010 / 1842
  9144. }
  9145. },
  9146. },
  9147. [
  9148. {
  9149. name: "Megamicro",
  9150. height: math.unit(0.1, "mm")
  9151. },
  9152. {
  9153. name: "Micro",
  9154. height: math.unit(1, "inch")
  9155. },
  9156. {
  9157. name: "Normal",
  9158. height: math.unit(6, "feet"),
  9159. default: true
  9160. },
  9161. ]
  9162. ))
  9163. characterMakers.push(() => makeCharacter(
  9164. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9165. {
  9166. front: {
  9167. height: math.unit(6, "feet"),
  9168. weight: math.unit(264, "lb"),
  9169. name: "Front",
  9170. image: {
  9171. source: "./media/characters/hector/front.svg",
  9172. extra: 2280 / 2130,
  9173. bottom: 0.07
  9174. }
  9175. },
  9176. },
  9177. [
  9178. {
  9179. name: "Normal",
  9180. height: math.unit(12.25, "foot"),
  9181. default: true
  9182. },
  9183. {
  9184. name: "Macro",
  9185. height: math.unit(160, "feet")
  9186. },
  9187. ]
  9188. ))
  9189. characterMakers.push(() => makeCharacter(
  9190. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9191. {
  9192. front: {
  9193. height: math.unit(6, "feet"),
  9194. weight: math.unit(150, "lb"),
  9195. name: "Front",
  9196. image: {
  9197. source: "./media/characters/sal/front.svg",
  9198. extra: 1846 / 1699,
  9199. bottom: 0.04
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Megamacro",
  9206. height: math.unit(10, "miles"),
  9207. default: true
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9213. {
  9214. front: {
  9215. height: math.unit(3, "meters"),
  9216. weight: math.unit(450, "kg"),
  9217. name: "front",
  9218. image: {
  9219. source: "./media/characters/ranger/front.svg",
  9220. extra: 2401 / 2243,
  9221. bottom: 0.05
  9222. }
  9223. },
  9224. },
  9225. [
  9226. {
  9227. name: "Normal",
  9228. height: math.unit(3, "meters"),
  9229. default: true
  9230. },
  9231. ]
  9232. ))
  9233. characterMakers.push(() => makeCharacter(
  9234. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9235. {
  9236. front: {
  9237. height: math.unit(14, "feet"),
  9238. weight: math.unit(800, "kg"),
  9239. name: "Front",
  9240. image: {
  9241. source: "./media/characters/theresa/front.svg",
  9242. extra: 3575 / 3346,
  9243. bottom: 0.03
  9244. }
  9245. },
  9246. },
  9247. [
  9248. {
  9249. name: "Normal",
  9250. height: math.unit(14, "feet"),
  9251. default: true
  9252. },
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9257. {
  9258. front: {
  9259. height: math.unit(6, "feet"),
  9260. weight: math.unit(3, "kg"),
  9261. name: "Front",
  9262. image: {
  9263. source: "./media/characters/ine/front.svg",
  9264. extra: 678 / 539,
  9265. bottom: 0.023
  9266. }
  9267. },
  9268. },
  9269. [
  9270. {
  9271. name: "Normal",
  9272. height: math.unit(2.265, "feet"),
  9273. default: true
  9274. },
  9275. ]
  9276. ))
  9277. characterMakers.push(() => makeCharacter(
  9278. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9279. {
  9280. front: {
  9281. height: math.unit(5, "feet"),
  9282. weight: math.unit(30, "kg"),
  9283. name: "Front",
  9284. image: {
  9285. source: "./media/characters/vial/front.svg",
  9286. extra: 1365 / 1277,
  9287. bottom: 0.04
  9288. }
  9289. },
  9290. },
  9291. [
  9292. {
  9293. name: "Normal",
  9294. height: math.unit(5, "feet"),
  9295. default: true
  9296. },
  9297. ]
  9298. ))
  9299. characterMakers.push(() => makeCharacter(
  9300. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9301. {
  9302. side: {
  9303. height: math.unit(3.4, "meters"),
  9304. weight: math.unit(1000, "lb"),
  9305. name: "Side",
  9306. image: {
  9307. source: "./media/characters/rovoska/side.svg",
  9308. extra: 4403 / 1515
  9309. }
  9310. },
  9311. },
  9312. [
  9313. {
  9314. name: "Normal",
  9315. height: math.unit(3.4, "meters"),
  9316. default: true
  9317. },
  9318. ]
  9319. ))
  9320. characterMakers.push(() => makeCharacter(
  9321. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9322. {
  9323. front: {
  9324. height: math.unit(8, "feet"),
  9325. weight: math.unit(315, "lb"),
  9326. name: "Front",
  9327. image: {
  9328. source: "./media/characters/gunner-rotthbauer/front.svg"
  9329. }
  9330. },
  9331. back: {
  9332. height: math.unit(8, "feet"),
  9333. weight: math.unit(315, "lb"),
  9334. name: "Back",
  9335. image: {
  9336. source: "./media/characters/gunner-rotthbauer/back.svg"
  9337. }
  9338. },
  9339. },
  9340. [
  9341. {
  9342. name: "Micro",
  9343. height: math.unit(3.5, "inches")
  9344. },
  9345. {
  9346. name: "Normal",
  9347. height: math.unit(8, "feet"),
  9348. default: true
  9349. },
  9350. {
  9351. name: "Macro",
  9352. height: math.unit(250, "feet")
  9353. },
  9354. {
  9355. name: "Megamacro",
  9356. height: math.unit(1, "AU")
  9357. },
  9358. ]
  9359. ))
  9360. characterMakers.push(() => makeCharacter(
  9361. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9362. {
  9363. front: {
  9364. height: math.unit(5 + 5 / 12, "feet"),
  9365. weight: math.unit(140, "lb"),
  9366. name: "Front",
  9367. image: {
  9368. source: "./media/characters/allatia/front.svg",
  9369. extra: 1227 / 1180,
  9370. bottom: 0.027
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Normal",
  9377. height: math.unit(5 + 5 / 12, "feet")
  9378. },
  9379. {
  9380. name: "Macro",
  9381. height: math.unit(250, "feet"),
  9382. default: true
  9383. },
  9384. {
  9385. name: "Megamacro",
  9386. height: math.unit(8, "miles")
  9387. }
  9388. ]
  9389. ))
  9390. characterMakers.push(() => makeCharacter(
  9391. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9392. {
  9393. front: {
  9394. height: math.unit(6, "feet"),
  9395. weight: math.unit(120, "lb"),
  9396. name: "Front",
  9397. image: {
  9398. source: "./media/characters/tene/front.svg",
  9399. extra: 1728 / 1578,
  9400. bottom: 0.022
  9401. }
  9402. },
  9403. stomping: {
  9404. height: math.unit(2.025, "meters"),
  9405. weight: math.unit(120, "lb"),
  9406. name: "Stomping",
  9407. image: {
  9408. source: "./media/characters/tene/stomping.svg",
  9409. extra: 938 / 873,
  9410. bottom: 0.01
  9411. }
  9412. },
  9413. sitting: {
  9414. height: math.unit(1, "meter"),
  9415. weight: math.unit(120, "lb"),
  9416. name: "Sitting",
  9417. image: {
  9418. source: "./media/characters/tene/sitting.svg",
  9419. extra: 437 / 415,
  9420. bottom: 0.1
  9421. }
  9422. },
  9423. feral: {
  9424. height: math.unit(3.9, "feet"),
  9425. weight: math.unit(250, "lb"),
  9426. name: "Feral",
  9427. image: {
  9428. source: "./media/characters/tene/feral.svg",
  9429. extra: 717 / 458,
  9430. bottom: 0.179
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Normal",
  9437. height: math.unit(6, "feet")
  9438. },
  9439. {
  9440. name: "Macro",
  9441. height: math.unit(300, "feet"),
  9442. default: true
  9443. },
  9444. {
  9445. name: "Megamacro",
  9446. height: math.unit(5, "miles")
  9447. },
  9448. ]
  9449. ))
  9450. characterMakers.push(() => makeCharacter(
  9451. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9452. {
  9453. side: {
  9454. height: math.unit(6, "feet"),
  9455. name: "Side",
  9456. image: {
  9457. source: "./media/characters/evander/side.svg",
  9458. extra: 877 / 477
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(0.83, "meters"),
  9466. default: true
  9467. },
  9468. ]
  9469. ))
  9470. characterMakers.push(() => makeCharacter(
  9471. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9472. {
  9473. front: {
  9474. height: math.unit(12, "feet"),
  9475. weight: math.unit(1000, "lb"),
  9476. name: "Front",
  9477. image: {
  9478. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9479. extra: 1762 / 1611
  9480. }
  9481. },
  9482. back: {
  9483. height: math.unit(12, "feet"),
  9484. weight: math.unit(1000, "lb"),
  9485. name: "Back",
  9486. image: {
  9487. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9488. extra: 1762 / 1611
  9489. }
  9490. },
  9491. },
  9492. [
  9493. {
  9494. name: "Normal",
  9495. height: math.unit(12, "feet"),
  9496. default: true
  9497. },
  9498. {
  9499. name: "Kaiju",
  9500. height: math.unit(150, "feet")
  9501. },
  9502. ]
  9503. ))
  9504. characterMakers.push(() => makeCharacter(
  9505. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9506. {
  9507. front: {
  9508. height: math.unit(6, "feet"),
  9509. weight: math.unit(150, "lb"),
  9510. name: "Front",
  9511. image: {
  9512. source: "./media/characters/zero-alurus/front.svg"
  9513. }
  9514. },
  9515. back: {
  9516. height: math.unit(6, "feet"),
  9517. weight: math.unit(150, "lb"),
  9518. name: "Back",
  9519. image: {
  9520. source: "./media/characters/zero-alurus/back.svg"
  9521. }
  9522. },
  9523. },
  9524. [
  9525. {
  9526. name: "Normal",
  9527. height: math.unit(5 + 10 / 12, "feet")
  9528. },
  9529. {
  9530. name: "Macro",
  9531. height: math.unit(60, "feet"),
  9532. default: true
  9533. },
  9534. {
  9535. name: "Macro+",
  9536. height: math.unit(450, "feet")
  9537. },
  9538. ]
  9539. ))
  9540. characterMakers.push(() => makeCharacter(
  9541. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9542. {
  9543. front: {
  9544. height: math.unit(6, "feet"),
  9545. weight: math.unit(200, "lb"),
  9546. name: "Front",
  9547. image: {
  9548. source: "./media/characters/mega-shi/front.svg",
  9549. extra: 1279 / 1250,
  9550. bottom: 0.02
  9551. }
  9552. },
  9553. back: {
  9554. height: math.unit(6, "feet"),
  9555. weight: math.unit(200, "lb"),
  9556. name: "Back",
  9557. image: {
  9558. source: "./media/characters/mega-shi/back.svg",
  9559. extra: 1279 / 1250,
  9560. bottom: 0.02
  9561. }
  9562. },
  9563. },
  9564. [
  9565. {
  9566. name: "Micro",
  9567. height: math.unit(16 + 6 / 12, "feet")
  9568. },
  9569. {
  9570. name: "Third Dimension",
  9571. height: math.unit(40, "meters")
  9572. },
  9573. {
  9574. name: "Normal",
  9575. height: math.unit(660, "feet"),
  9576. default: true
  9577. },
  9578. {
  9579. name: "Megamacro",
  9580. height: math.unit(10, "miles")
  9581. },
  9582. {
  9583. name: "Planetary Launch",
  9584. height: math.unit(500, "miles")
  9585. },
  9586. {
  9587. name: "Interstellar",
  9588. height: math.unit(1e9, "miles")
  9589. },
  9590. {
  9591. name: "Leaving the Universe",
  9592. height: math.unit(1, "gigaparsec")
  9593. },
  9594. {
  9595. name: "Travelling Universes",
  9596. height: math.unit(30e15, "parsecs")
  9597. },
  9598. ]
  9599. ))
  9600. characterMakers.push(() => makeCharacter(
  9601. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9602. {
  9603. front: {
  9604. height: math.unit(6, "feet"),
  9605. weight: math.unit(150, "lb"),
  9606. name: "Front",
  9607. image: {
  9608. source: "./media/characters/odyssey/front.svg",
  9609. extra: 1782 / 1582,
  9610. bottom: 0.01
  9611. }
  9612. },
  9613. side: {
  9614. height: math.unit(5.7, "feet"),
  9615. weight: math.unit(140, "lb"),
  9616. name: "Side",
  9617. image: {
  9618. source: "./media/characters/odyssey/side.svg",
  9619. extra: 6462 / 5700
  9620. }
  9621. },
  9622. },
  9623. [
  9624. {
  9625. name: "Normal",
  9626. height: math.unit(5 + 4 / 12, "feet")
  9627. },
  9628. {
  9629. name: "Macro",
  9630. height: math.unit(1, "km")
  9631. },
  9632. {
  9633. name: "Megamacro",
  9634. height: math.unit(3000, "km")
  9635. },
  9636. {
  9637. name: "Gigamacro",
  9638. height: math.unit(1, "AU"),
  9639. default: true
  9640. },
  9641. {
  9642. name: "Omniversal",
  9643. height: math.unit(100e14, "lightyears")
  9644. },
  9645. ]
  9646. ))
  9647. characterMakers.push(() => makeCharacter(
  9648. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9649. {
  9650. front: {
  9651. height: math.unit(6, "feet"),
  9652. weight: math.unit(300, "lb"),
  9653. name: "Front",
  9654. image: {
  9655. source: "./media/characters/mekuto/front.svg",
  9656. extra: 921 / 832,
  9657. bottom: 0.03
  9658. }
  9659. },
  9660. hand: {
  9661. height: math.unit(6 / 10.24, "feet"),
  9662. name: "Hand",
  9663. image: {
  9664. source: "./media/characters/mekuto/hand.svg"
  9665. }
  9666. },
  9667. foot: {
  9668. height: math.unit(6 / 5.05, "feet"),
  9669. name: "Foot",
  9670. image: {
  9671. source: "./media/characters/mekuto/foot.svg"
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Minimicro",
  9678. height: math.unit(0.2, "inches")
  9679. },
  9680. {
  9681. name: "Micro",
  9682. height: math.unit(1.5, "inches")
  9683. },
  9684. {
  9685. name: "Normal",
  9686. height: math.unit(5 + 11 / 12, "feet"),
  9687. default: true
  9688. },
  9689. {
  9690. name: "Minimacro",
  9691. height: math.unit(17 + 9 / 12, "feet")
  9692. },
  9693. {
  9694. name: "Macro",
  9695. height: math.unit(177.5, "feet")
  9696. },
  9697. {
  9698. name: "Megamacro",
  9699. height: math.unit(152, "miles")
  9700. },
  9701. ]
  9702. ))
  9703. characterMakers.push(() => makeCharacter(
  9704. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9705. {
  9706. front: {
  9707. height: math.unit(6.5, "inches"),
  9708. weight: math.unit(13, "oz"),
  9709. name: "Front",
  9710. image: {
  9711. source: "./media/characters/dafydd-tomos/front.svg",
  9712. extra: 2990 / 2603,
  9713. bottom: 0.03
  9714. }
  9715. },
  9716. },
  9717. [
  9718. {
  9719. name: "Micro",
  9720. height: math.unit(6.5, "inches"),
  9721. default: true
  9722. },
  9723. ]
  9724. ))
  9725. characterMakers.push(() => makeCharacter(
  9726. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9727. {
  9728. front: {
  9729. height: math.unit(6, "feet"),
  9730. weight: math.unit(150, "lb"),
  9731. name: "Front",
  9732. image: {
  9733. source: "./media/characters/splinter/front.svg",
  9734. extra: 2990 / 2882,
  9735. bottom: 0.04
  9736. }
  9737. },
  9738. back: {
  9739. height: math.unit(6, "feet"),
  9740. weight: math.unit(150, "lb"),
  9741. name: "Back",
  9742. image: {
  9743. source: "./media/characters/splinter/back.svg",
  9744. extra: 2990 / 2882,
  9745. bottom: 0.04
  9746. }
  9747. },
  9748. },
  9749. [
  9750. {
  9751. name: "Normal",
  9752. height: math.unit(6, "feet")
  9753. },
  9754. {
  9755. name: "Macro",
  9756. height: math.unit(230, "meters"),
  9757. default: true
  9758. },
  9759. ]
  9760. ))
  9761. characterMakers.push(() => makeCharacter(
  9762. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9763. {
  9764. front: {
  9765. height: math.unit(4 + 10 / 12, "feet"),
  9766. weight: math.unit(480, "lb"),
  9767. name: "Front",
  9768. image: {
  9769. source: "./media/characters/snow-gabumon/front.svg",
  9770. extra: 1140 / 963,
  9771. bottom: 0.058
  9772. }
  9773. },
  9774. back: {
  9775. height: math.unit(4 + 10 / 12, "feet"),
  9776. weight: math.unit(480, "lb"),
  9777. name: "Back",
  9778. image: {
  9779. source: "./media/characters/snow-gabumon/back.svg",
  9780. extra: 1115 / 962,
  9781. bottom: 0.041
  9782. }
  9783. },
  9784. frontUndresed: {
  9785. height: math.unit(4 + 10 / 12, "feet"),
  9786. weight: math.unit(480, "lb"),
  9787. name: "Front (Undressed)",
  9788. image: {
  9789. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9790. extra: 1061 / 960,
  9791. bottom: 0.045
  9792. }
  9793. },
  9794. },
  9795. [
  9796. {
  9797. name: "Micro",
  9798. height: math.unit(1, "inch")
  9799. },
  9800. {
  9801. name: "Normal",
  9802. height: math.unit(4 + 10 / 12, "feet"),
  9803. default: true
  9804. },
  9805. {
  9806. name: "Macro",
  9807. height: math.unit(200, "feet")
  9808. },
  9809. {
  9810. name: "Megamacro",
  9811. height: math.unit(120, "miles")
  9812. },
  9813. {
  9814. name: "Gigamacro",
  9815. height: math.unit(9800, "miles")
  9816. },
  9817. ]
  9818. ))
  9819. characterMakers.push(() => makeCharacter(
  9820. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9821. {
  9822. front: {
  9823. height: math.unit(1.7, "meters"),
  9824. weight: math.unit(140, "lb"),
  9825. name: "Front",
  9826. image: {
  9827. source: "./media/characters/moody/front.svg",
  9828. extra: 3226 / 3007,
  9829. bottom: 0.087
  9830. }
  9831. },
  9832. },
  9833. [
  9834. {
  9835. name: "Micro",
  9836. height: math.unit(1, "mm")
  9837. },
  9838. {
  9839. name: "Normal",
  9840. height: math.unit(1.7, "meters"),
  9841. default: true
  9842. },
  9843. {
  9844. name: "Macro",
  9845. height: math.unit(80, "meters")
  9846. },
  9847. {
  9848. name: "Macro+",
  9849. height: math.unit(500, "meters")
  9850. },
  9851. ]
  9852. ))
  9853. characterMakers.push(() => makeCharacter(
  9854. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9855. {
  9856. front: {
  9857. height: math.unit(6, "feet"),
  9858. weight: math.unit(150, "lb"),
  9859. name: "Front",
  9860. image: {
  9861. source: "./media/characters/zyas/front.svg",
  9862. extra: 1180 / 1120,
  9863. bottom: 0.045
  9864. }
  9865. },
  9866. },
  9867. [
  9868. {
  9869. name: "Normal",
  9870. height: math.unit(10, "feet"),
  9871. default: true
  9872. },
  9873. {
  9874. name: "Macro",
  9875. height: math.unit(500, "feet")
  9876. },
  9877. {
  9878. name: "Megamacro",
  9879. height: math.unit(5, "miles")
  9880. },
  9881. {
  9882. name: "Teramacro",
  9883. height: math.unit(150000, "miles")
  9884. },
  9885. ]
  9886. ))
  9887. characterMakers.push(() => makeCharacter(
  9888. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9889. {
  9890. front: {
  9891. height: math.unit(6, "feet"),
  9892. weight: math.unit(150, "lb"),
  9893. name: "Front",
  9894. image: {
  9895. source: "./media/characters/cuon/front.svg",
  9896. extra: 1390 / 1320,
  9897. bottom: 0.008
  9898. }
  9899. },
  9900. },
  9901. [
  9902. {
  9903. name: "Micro",
  9904. height: math.unit(3, "inches")
  9905. },
  9906. {
  9907. name: "Normal",
  9908. height: math.unit(18 + 9 / 12, "feet"),
  9909. default: true
  9910. },
  9911. {
  9912. name: "Macro",
  9913. height: math.unit(360, "feet")
  9914. },
  9915. {
  9916. name: "Megamacro",
  9917. height: math.unit(360, "miles")
  9918. },
  9919. ]
  9920. ))
  9921. characterMakers.push(() => makeCharacter(
  9922. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9923. {
  9924. front: {
  9925. height: math.unit(2.4, "meters"),
  9926. weight: math.unit(70, "kg"),
  9927. name: "Front",
  9928. image: {
  9929. source: "./media/characters/nyanuxk/front.svg",
  9930. extra: 1172 / 1084,
  9931. bottom: 0.065
  9932. }
  9933. },
  9934. side: {
  9935. height: math.unit(2.4, "meters"),
  9936. weight: math.unit(70, "kg"),
  9937. name: "Side",
  9938. image: {
  9939. source: "./media/characters/nyanuxk/side.svg",
  9940. extra: 1190 / 1132,
  9941. bottom: 0.007
  9942. }
  9943. },
  9944. back: {
  9945. height: math.unit(2.4, "meters"),
  9946. weight: math.unit(70, "kg"),
  9947. name: "Back",
  9948. image: {
  9949. source: "./media/characters/nyanuxk/back.svg",
  9950. extra: 1200 / 1141,
  9951. bottom: 0.015
  9952. }
  9953. },
  9954. foot: {
  9955. height: math.unit(0.52, "meters"),
  9956. name: "Foot",
  9957. image: {
  9958. source: "./media/characters/nyanuxk/foot.svg"
  9959. }
  9960. },
  9961. },
  9962. [
  9963. {
  9964. name: "Micro",
  9965. height: math.unit(2, "cm")
  9966. },
  9967. {
  9968. name: "Normal",
  9969. height: math.unit(2.4, "meters"),
  9970. default: true
  9971. },
  9972. {
  9973. name: "Smaller Macro",
  9974. height: math.unit(120, "meters")
  9975. },
  9976. {
  9977. name: "Bigger Macro",
  9978. height: math.unit(1.2, "km")
  9979. },
  9980. {
  9981. name: "Megamacro",
  9982. height: math.unit(15, "kilometers")
  9983. },
  9984. {
  9985. name: "Gigamacro",
  9986. height: math.unit(2000, "km")
  9987. },
  9988. {
  9989. name: "Teramacro",
  9990. height: math.unit(500000, "km")
  9991. },
  9992. ]
  9993. ))
  9994. characterMakers.push(() => makeCharacter(
  9995. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9996. {
  9997. side: {
  9998. height: math.unit(6, "feet"),
  9999. name: "Side",
  10000. image: {
  10001. source: "./media/characters/ailbhe/side.svg",
  10002. extra: 757 / 464,
  10003. bottom: 0.041
  10004. }
  10005. },
  10006. },
  10007. [
  10008. {
  10009. name: "Normal",
  10010. height: math.unit(1.07, "meters"),
  10011. default: true
  10012. },
  10013. ]
  10014. ))
  10015. characterMakers.push(() => makeCharacter(
  10016. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10017. {
  10018. front: {
  10019. height: math.unit(6, "feet"),
  10020. weight: math.unit(120, "kg"),
  10021. name: "Front",
  10022. image: {
  10023. source: "./media/characters/zevulfius/front.svg",
  10024. extra: 965 / 903
  10025. }
  10026. },
  10027. side: {
  10028. height: math.unit(6, "feet"),
  10029. weight: math.unit(120, "kg"),
  10030. name: "Side",
  10031. image: {
  10032. source: "./media/characters/zevulfius/side.svg",
  10033. extra: 939 / 900
  10034. }
  10035. },
  10036. back: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(120, "kg"),
  10039. name: "Back",
  10040. image: {
  10041. source: "./media/characters/zevulfius/back.svg",
  10042. extra: 918 / 854,
  10043. bottom: 0.005
  10044. }
  10045. },
  10046. foot: {
  10047. height: math.unit(6 / 3.72, "feet"),
  10048. name: "Foot",
  10049. image: {
  10050. source: "./media/characters/zevulfius/foot.svg"
  10051. }
  10052. },
  10053. },
  10054. [
  10055. {
  10056. name: "Macro",
  10057. height: math.unit(750, "meters")
  10058. },
  10059. {
  10060. name: "Megamacro",
  10061. height: math.unit(20, "km"),
  10062. default: true
  10063. },
  10064. {
  10065. name: "Gigamacro",
  10066. height: math.unit(2000, "km")
  10067. },
  10068. {
  10069. name: "Teramacro",
  10070. height: math.unit(250000, "km")
  10071. },
  10072. ]
  10073. ))
  10074. characterMakers.push(() => makeCharacter(
  10075. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10076. {
  10077. front: {
  10078. height: math.unit(100, "feet"),
  10079. weight: math.unit(350, "kg"),
  10080. name: "Front",
  10081. image: {
  10082. source: "./media/characters/rikes/front.svg",
  10083. extra: 1565 / 1483,
  10084. bottom: 0.017
  10085. }
  10086. },
  10087. },
  10088. [
  10089. {
  10090. name: "Macro",
  10091. height: math.unit(100, "feet"),
  10092. default: true
  10093. },
  10094. ]
  10095. ))
  10096. characterMakers.push(() => makeCharacter(
  10097. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10098. {
  10099. anthro: {
  10100. height: math.unit(8, "feet"),
  10101. weight: math.unit(120, "kg"),
  10102. name: "Anthro",
  10103. image: {
  10104. source: "./media/characters/adam-silver-mane/anthro.svg",
  10105. extra: 5743 / 5339,
  10106. bottom: 0.07
  10107. }
  10108. },
  10109. taur: {
  10110. height: math.unit(16, "feet"),
  10111. weight: math.unit(1500, "kg"),
  10112. name: "Taur",
  10113. image: {
  10114. source: "./media/characters/adam-silver-mane/taur.svg",
  10115. extra: 1713 / 1571,
  10116. bottom: 0.01
  10117. }
  10118. },
  10119. },
  10120. [
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(8, "feet")
  10124. },
  10125. {
  10126. name: "Minimacro",
  10127. height: math.unit(80, "feet")
  10128. },
  10129. {
  10130. name: "Macro",
  10131. height: math.unit(800, "feet"),
  10132. default: true
  10133. },
  10134. {
  10135. name: "Megamacro",
  10136. height: math.unit(8000, "feet")
  10137. },
  10138. {
  10139. name: "Gigamacro",
  10140. height: math.unit(800, "miles")
  10141. },
  10142. {
  10143. name: "Teramacro",
  10144. height: math.unit(80000, "miles")
  10145. },
  10146. {
  10147. name: "Celestial",
  10148. height: math.unit(8e6, "miles")
  10149. },
  10150. {
  10151. name: "Star Dragon",
  10152. height: math.unit(800000, "parsecs")
  10153. },
  10154. {
  10155. name: "Godly",
  10156. height: math.unit(800, "teraparsecs")
  10157. },
  10158. ]
  10159. ))
  10160. characterMakers.push(() => makeCharacter(
  10161. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10162. {
  10163. front: {
  10164. height: math.unit(6, "feet"),
  10165. weight: math.unit(150, "lb"),
  10166. name: "Front",
  10167. image: {
  10168. source: "./media/characters/ky'owin/front.svg",
  10169. extra: 3888 / 3068,
  10170. bottom: 0.015
  10171. }
  10172. },
  10173. },
  10174. [
  10175. {
  10176. name: "Normal",
  10177. height: math.unit(6 + 8 / 12, "feet")
  10178. },
  10179. {
  10180. name: "Large",
  10181. height: math.unit(68, "feet")
  10182. },
  10183. {
  10184. name: "Macro",
  10185. height: math.unit(132, "feet")
  10186. },
  10187. {
  10188. name: "Macro+",
  10189. height: math.unit(340, "feet")
  10190. },
  10191. {
  10192. name: "Macro++",
  10193. height: math.unit(680, "feet"),
  10194. default: true
  10195. },
  10196. {
  10197. name: "Megamacro",
  10198. height: math.unit(1, "mile")
  10199. },
  10200. {
  10201. name: "Megamacro+",
  10202. height: math.unit(10, "miles")
  10203. },
  10204. ]
  10205. ))
  10206. characterMakers.push(() => makeCharacter(
  10207. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10208. {
  10209. front: {
  10210. height: math.unit(4, "feet"),
  10211. weight: math.unit(50, "lb"),
  10212. name: "Front",
  10213. image: {
  10214. source: "./media/characters/mal/front.svg",
  10215. extra: 785 / 724,
  10216. bottom: 0.07
  10217. }
  10218. },
  10219. },
  10220. [
  10221. {
  10222. name: "Micro",
  10223. height: math.unit(4, "inches")
  10224. },
  10225. {
  10226. name: "Normal",
  10227. height: math.unit(4, "feet"),
  10228. default: true
  10229. },
  10230. {
  10231. name: "Macro",
  10232. height: math.unit(200, "feet")
  10233. },
  10234. ]
  10235. ))
  10236. characterMakers.push(() => makeCharacter(
  10237. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10238. {
  10239. front: {
  10240. height: math.unit(6, "feet"),
  10241. weight: math.unit(150, "lb"),
  10242. name: "Front",
  10243. image: {
  10244. source: "./media/characters/jordan-deware/front.svg",
  10245. extra: 1191 / 1012
  10246. }
  10247. },
  10248. },
  10249. [
  10250. {
  10251. name: "Nano",
  10252. height: math.unit(0.01, "mm")
  10253. },
  10254. {
  10255. name: "Minimicro",
  10256. height: math.unit(1, "mm")
  10257. },
  10258. {
  10259. name: "Micro",
  10260. height: math.unit(0.5, "inches")
  10261. },
  10262. {
  10263. name: "Normal",
  10264. height: math.unit(4, "feet"),
  10265. default: true
  10266. },
  10267. {
  10268. name: "Minimacro",
  10269. height: math.unit(40, "meters")
  10270. },
  10271. {
  10272. name: "Small Macro",
  10273. height: math.unit(400, "meters")
  10274. },
  10275. {
  10276. name: "Macro",
  10277. height: math.unit(4, "miles")
  10278. },
  10279. {
  10280. name: "Megamacro",
  10281. height: math.unit(40, "miles")
  10282. },
  10283. {
  10284. name: "Megamacro+",
  10285. height: math.unit(400, "miles")
  10286. },
  10287. {
  10288. name: "Gigamacro",
  10289. height: math.unit(400000, "miles")
  10290. },
  10291. ]
  10292. ))
  10293. characterMakers.push(() => makeCharacter(
  10294. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10295. {
  10296. side: {
  10297. height: math.unit(6, "feet"),
  10298. weight: math.unit(150, "lb"),
  10299. name: "Side",
  10300. image: {
  10301. source: "./media/characters/kimiko/side.svg",
  10302. extra: 600 / 358
  10303. }
  10304. },
  10305. },
  10306. [
  10307. {
  10308. name: "Normal",
  10309. height: math.unit(15, "feet"),
  10310. default: true
  10311. },
  10312. {
  10313. name: "Macro",
  10314. height: math.unit(220, "feet")
  10315. },
  10316. {
  10317. name: "Macro+",
  10318. height: math.unit(1450, "feet")
  10319. },
  10320. {
  10321. name: "Megamacro",
  10322. height: math.unit(11500, "feet")
  10323. },
  10324. {
  10325. name: "Gigamacro",
  10326. height: math.unit(9500, "miles")
  10327. },
  10328. {
  10329. name: "Teramacro",
  10330. height: math.unit(2208005005, "miles")
  10331. },
  10332. {
  10333. name: "Examacro",
  10334. height: math.unit(2750, "parsecs")
  10335. },
  10336. {
  10337. name: "Zettamacro",
  10338. height: math.unit(101500, "parsecs")
  10339. },
  10340. ]
  10341. ))
  10342. characterMakers.push(() => makeCharacter(
  10343. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10344. {
  10345. front: {
  10346. height: math.unit(6, "feet"),
  10347. weight: math.unit(70, "kg"),
  10348. name: "Front",
  10349. image: {
  10350. source: "./media/characters/andrew-sleepy/front.svg"
  10351. }
  10352. },
  10353. side: {
  10354. height: math.unit(6, "feet"),
  10355. weight: math.unit(70, "kg"),
  10356. name: "Side",
  10357. image: {
  10358. source: "./media/characters/andrew-sleepy/side.svg"
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Micro",
  10365. height: math.unit(1, "mm"),
  10366. default: true
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10372. {
  10373. front: {
  10374. height: math.unit(6, "feet"),
  10375. weight: math.unit(150, "lb"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/judio/front.svg",
  10379. extra: 1258 / 1110
  10380. }
  10381. },
  10382. },
  10383. [
  10384. {
  10385. name: "Normal",
  10386. height: math.unit(5 + 6 / 12, "feet")
  10387. },
  10388. {
  10389. name: "Macro",
  10390. height: math.unit(1000, "feet"),
  10391. default: true
  10392. },
  10393. {
  10394. name: "Megamacro",
  10395. height: math.unit(10, "miles")
  10396. },
  10397. ]
  10398. ))
  10399. characterMakers.push(() => makeCharacter(
  10400. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10401. {
  10402. front: {
  10403. height: math.unit(6, "feet"),
  10404. weight: math.unit(68, "kg"),
  10405. name: "Front",
  10406. image: {
  10407. source: "./media/characters/nomaxice/front.svg",
  10408. extra: 1498 / 1073,
  10409. bottom: 0.075
  10410. }
  10411. },
  10412. foot: {
  10413. height: math.unit(1.1, "feet"),
  10414. name: "Foot",
  10415. image: {
  10416. source: "./media/characters/nomaxice/foot.svg"
  10417. }
  10418. },
  10419. },
  10420. [
  10421. {
  10422. name: "Micro",
  10423. height: math.unit(8, "cm")
  10424. },
  10425. {
  10426. name: "Norm",
  10427. height: math.unit(1.82, "m")
  10428. },
  10429. {
  10430. name: "Norm+",
  10431. height: math.unit(8.8, "feet")
  10432. },
  10433. {
  10434. name: "Big",
  10435. height: math.unit(8, "meters"),
  10436. default: true
  10437. },
  10438. {
  10439. name: "Macro",
  10440. height: math.unit(18, "meters")
  10441. },
  10442. {
  10443. name: "Macro+",
  10444. height: math.unit(88, "meters")
  10445. },
  10446. ]
  10447. ))
  10448. characterMakers.push(() => makeCharacter(
  10449. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10450. {
  10451. front: {
  10452. height: math.unit(12, "feet"),
  10453. weight: math.unit(1.5, "tons"),
  10454. name: "Front",
  10455. image: {
  10456. source: "./media/characters/dydros/front.svg",
  10457. extra: 863 / 800,
  10458. bottom: 0.015
  10459. }
  10460. },
  10461. back: {
  10462. height: math.unit(12, "feet"),
  10463. weight: math.unit(1.5, "tons"),
  10464. name: "Back",
  10465. image: {
  10466. source: "./media/characters/dydros/back.svg",
  10467. extra: 900 / 843,
  10468. bottom: 0.005
  10469. }
  10470. },
  10471. },
  10472. [
  10473. {
  10474. name: "Normal",
  10475. height: math.unit(12, "feet"),
  10476. default: true
  10477. },
  10478. ]
  10479. ))
  10480. characterMakers.push(() => makeCharacter(
  10481. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10482. {
  10483. front: {
  10484. height: math.unit(6, "feet"),
  10485. weight: math.unit(100, "kg"),
  10486. name: "Front",
  10487. image: {
  10488. source: "./media/characters/riggi/front.svg",
  10489. extra: 5787 / 5303
  10490. }
  10491. },
  10492. hyper: {
  10493. height: math.unit(6 * 5 / 3, "feet"),
  10494. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10495. name: "Hyper",
  10496. image: {
  10497. source: "./media/characters/riggi/hyper.svg",
  10498. extra: 3595 / 3485
  10499. }
  10500. },
  10501. },
  10502. [
  10503. {
  10504. name: "Small Macro",
  10505. height: math.unit(50, "feet")
  10506. },
  10507. {
  10508. name: "Default",
  10509. height: math.unit(200, "feet"),
  10510. default: true
  10511. },
  10512. {
  10513. name: "Loom",
  10514. height: math.unit(10000, "feet")
  10515. },
  10516. {
  10517. name: "Cruising Altitude",
  10518. height: math.unit(30000, "feet")
  10519. },
  10520. {
  10521. name: "Megamacro",
  10522. height: math.unit(100, "miles")
  10523. },
  10524. {
  10525. name: "Continent Sized",
  10526. height: math.unit(2800, "miles")
  10527. },
  10528. {
  10529. name: "Earth Sized",
  10530. height: math.unit(8000, "miles")
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10536. {
  10537. front: {
  10538. height: math.unit(6, "feet"),
  10539. weight: math.unit(250, "lb"),
  10540. name: "Front",
  10541. image: {
  10542. source: "./media/characters/alexi/front.svg",
  10543. extra: 3483 / 3291,
  10544. bottom: 0.04
  10545. }
  10546. },
  10547. back: {
  10548. height: math.unit(6, "feet"),
  10549. weight: math.unit(250, "lb"),
  10550. name: "Back",
  10551. image: {
  10552. source: "./media/characters/alexi/back.svg",
  10553. extra: 3533 / 3356,
  10554. bottom: 0.021
  10555. }
  10556. },
  10557. frontTransforming: {
  10558. height: math.unit(8.58, "feet"),
  10559. weight: math.unit(1300, "lb"),
  10560. name: "Transforming",
  10561. image: {
  10562. source: "./media/characters/alexi/front-transforming.svg",
  10563. extra: 437 / 409,
  10564. bottom: 19 / 458.66
  10565. }
  10566. },
  10567. frontTransformed: {
  10568. height: math.unit(12.5, "feet"),
  10569. weight: math.unit(4000, "lb"),
  10570. name: "Transformed",
  10571. image: {
  10572. source: "./media/characters/alexi/front-transformed.svg",
  10573. extra: 639 / 614,
  10574. bottom: 30.55 / 671
  10575. }
  10576. },
  10577. },
  10578. [
  10579. {
  10580. name: "Normal",
  10581. height: math.unit(14, "feet"),
  10582. default: true
  10583. },
  10584. {
  10585. name: "Minimacro",
  10586. height: math.unit(30, "meters")
  10587. },
  10588. {
  10589. name: "Macro",
  10590. height: math.unit(500, "meters")
  10591. },
  10592. {
  10593. name: "Megamacro",
  10594. height: math.unit(9000, "km")
  10595. },
  10596. {
  10597. name: "Teramacro",
  10598. height: math.unit(384000, "km")
  10599. },
  10600. ]
  10601. ))
  10602. characterMakers.push(() => makeCharacter(
  10603. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10604. {
  10605. front: {
  10606. height: math.unit(6, "feet"),
  10607. weight: math.unit(150, "lb"),
  10608. name: "Front",
  10609. image: {
  10610. source: "./media/characters/kayroo/front.svg",
  10611. extra: 1153 / 1038,
  10612. bottom: 0.06
  10613. }
  10614. },
  10615. foot: {
  10616. height: math.unit(6, "feet"),
  10617. weight: math.unit(150, "lb"),
  10618. name: "Foot",
  10619. image: {
  10620. source: "./media/characters/kayroo/foot.svg"
  10621. }
  10622. },
  10623. },
  10624. [
  10625. {
  10626. name: "Normal",
  10627. height: math.unit(8, "feet"),
  10628. default: true
  10629. },
  10630. {
  10631. name: "Minimacro",
  10632. height: math.unit(250, "feet")
  10633. },
  10634. {
  10635. name: "Macro",
  10636. height: math.unit(2800, "feet")
  10637. },
  10638. {
  10639. name: "Megamacro",
  10640. height: math.unit(5200, "feet")
  10641. },
  10642. {
  10643. name: "Gigamacro",
  10644. height: math.unit(27000, "feet")
  10645. },
  10646. {
  10647. name: "Omega",
  10648. height: math.unit(45000, "feet")
  10649. },
  10650. ]
  10651. ))
  10652. characterMakers.push(() => makeCharacter(
  10653. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10654. {
  10655. front: {
  10656. height: math.unit(18, "feet"),
  10657. weight: math.unit(5800, "lb"),
  10658. name: "Front",
  10659. image: {
  10660. source: "./media/characters/rhys/front.svg",
  10661. extra: 3386 / 3090,
  10662. bottom: 0.07
  10663. }
  10664. },
  10665. },
  10666. [
  10667. {
  10668. name: "Normal",
  10669. height: math.unit(18, "feet"),
  10670. default: true
  10671. },
  10672. {
  10673. name: "Working Size",
  10674. height: math.unit(200, "feet")
  10675. },
  10676. {
  10677. name: "Demolition Size",
  10678. height: math.unit(2000, "feet")
  10679. },
  10680. {
  10681. name: "Maximum Licensed Size",
  10682. height: math.unit(5, "miles")
  10683. },
  10684. {
  10685. name: "Maximum Observed Size",
  10686. height: math.unit(10, "yottameters")
  10687. },
  10688. ]
  10689. ))
  10690. characterMakers.push(() => makeCharacter(
  10691. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10692. {
  10693. front: {
  10694. height: math.unit(6, "feet"),
  10695. weight: math.unit(250, "lb"),
  10696. name: "Front",
  10697. image: {
  10698. source: "./media/characters/toto/front.svg",
  10699. extra: 527 / 479,
  10700. bottom: 0.05
  10701. }
  10702. },
  10703. },
  10704. [
  10705. {
  10706. name: "Micro",
  10707. height: math.unit(3, "feet")
  10708. },
  10709. {
  10710. name: "Normal",
  10711. height: math.unit(10, "feet")
  10712. },
  10713. {
  10714. name: "Macro",
  10715. height: math.unit(150, "feet"),
  10716. default: true
  10717. },
  10718. {
  10719. name: "Megamacro",
  10720. height: math.unit(1200, "feet")
  10721. },
  10722. ]
  10723. ))
  10724. characterMakers.push(() => makeCharacter(
  10725. { name: "King", species: ["lion"], tags: ["anthro"] },
  10726. {
  10727. back: {
  10728. height: math.unit(6, "feet"),
  10729. weight: math.unit(150, "lb"),
  10730. name: "Back",
  10731. image: {
  10732. source: "./media/characters/king/back.svg"
  10733. }
  10734. },
  10735. },
  10736. [
  10737. {
  10738. name: "Micro",
  10739. height: math.unit(2, "inches")
  10740. },
  10741. {
  10742. name: "Normal",
  10743. height: math.unit(8, "feet")
  10744. },
  10745. {
  10746. name: "Macro",
  10747. height: math.unit(200, "feet"),
  10748. default: true
  10749. },
  10750. {
  10751. name: "Megamacro",
  10752. height: math.unit(50, "miles")
  10753. },
  10754. ]
  10755. ))
  10756. characterMakers.push(() => makeCharacter(
  10757. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10758. {
  10759. anthro: {
  10760. height: math.unit(6 + 5 / 12, "feet"),
  10761. weight: math.unit(280, "lb"),
  10762. name: "Anthro",
  10763. image: {
  10764. source: "./media/characters/cordite/anthro.svg",
  10765. extra: 1986 / 1905,
  10766. bottom: 0.025
  10767. }
  10768. },
  10769. feral: {
  10770. height: math.unit(2, "feet"),
  10771. weight: math.unit(90, "lb"),
  10772. name: "Feral",
  10773. image: {
  10774. source: "./media/characters/cordite/feral.svg",
  10775. extra: 1260 / 755,
  10776. bottom: 0.05
  10777. }
  10778. },
  10779. },
  10780. [
  10781. {
  10782. name: "Normal",
  10783. height: math.unit(6 + 5 / 12, "feet"),
  10784. default: true
  10785. },
  10786. ]
  10787. ))
  10788. characterMakers.push(() => makeCharacter(
  10789. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10790. {
  10791. front: {
  10792. height: math.unit(6, "feet"),
  10793. weight: math.unit(150, "lb"),
  10794. name: "Front",
  10795. image: {
  10796. source: "./media/characters/pianostrong/front.svg",
  10797. extra: 6577 / 6254,
  10798. bottom: 0.02
  10799. }
  10800. },
  10801. side: {
  10802. height: math.unit(6, "feet"),
  10803. weight: math.unit(150, "lb"),
  10804. name: "Side",
  10805. image: {
  10806. source: "./media/characters/pianostrong/side.svg",
  10807. extra: 6106 / 5730
  10808. }
  10809. },
  10810. back: {
  10811. height: math.unit(6, "feet"),
  10812. weight: math.unit(150, "lb"),
  10813. name: "Back",
  10814. image: {
  10815. source: "./media/characters/pianostrong/back.svg",
  10816. extra: 6085 / 5733,
  10817. bottom: 0.01
  10818. }
  10819. },
  10820. },
  10821. [
  10822. {
  10823. name: "Macro",
  10824. height: math.unit(100, "feet")
  10825. },
  10826. {
  10827. name: "Macro+",
  10828. height: math.unit(300, "feet"),
  10829. default: true
  10830. },
  10831. {
  10832. name: "Macro++",
  10833. height: math.unit(1000, "feet")
  10834. },
  10835. ]
  10836. ))
  10837. characterMakers.push(() => makeCharacter(
  10838. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10839. {
  10840. front: {
  10841. height: math.unit(6, "feet"),
  10842. weight: math.unit(150, "lb"),
  10843. name: "Front",
  10844. image: {
  10845. source: "./media/characters/kona/front.svg",
  10846. extra: 2960 / 2629,
  10847. bottom: 0.005
  10848. }
  10849. },
  10850. },
  10851. [
  10852. {
  10853. name: "Normal",
  10854. height: math.unit(11 + 8 / 12, "feet")
  10855. },
  10856. {
  10857. name: "Macro",
  10858. height: math.unit(850, "feet"),
  10859. default: true
  10860. },
  10861. {
  10862. name: "Macro+",
  10863. height: math.unit(1.5, "km"),
  10864. default: true
  10865. },
  10866. {
  10867. name: "Megamacro",
  10868. height: math.unit(80, "miles")
  10869. },
  10870. {
  10871. name: "Gigamacro",
  10872. height: math.unit(3500, "miles")
  10873. },
  10874. ]
  10875. ))
  10876. characterMakers.push(() => makeCharacter(
  10877. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10878. {
  10879. side: {
  10880. height: math.unit(1.9, "meters"),
  10881. weight: math.unit(326, "kg"),
  10882. name: "Side",
  10883. image: {
  10884. source: "./media/characters/levi/side.svg",
  10885. extra: 1704 / 1334,
  10886. bottom: 0.02
  10887. }
  10888. },
  10889. },
  10890. [
  10891. {
  10892. name: "Normal",
  10893. height: math.unit(1.9, "meters"),
  10894. default: true
  10895. },
  10896. {
  10897. name: "Macro",
  10898. height: math.unit(20, "meters")
  10899. },
  10900. {
  10901. name: "Macro+",
  10902. height: math.unit(200, "meters")
  10903. },
  10904. {
  10905. name: "Megamacro",
  10906. height: math.unit(2, "km")
  10907. },
  10908. {
  10909. name: "Megamacro+",
  10910. height: math.unit(20, "km")
  10911. },
  10912. {
  10913. name: "Gigamacro",
  10914. height: math.unit(2500, "km")
  10915. },
  10916. {
  10917. name: "Gigamacro+",
  10918. height: math.unit(120000, "km")
  10919. },
  10920. {
  10921. name: "Teramacro",
  10922. height: math.unit(7.77e6, "km")
  10923. },
  10924. ]
  10925. ))
  10926. characterMakers.push(() => makeCharacter(
  10927. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10928. {
  10929. front: {
  10930. height: math.unit(6 + 4 / 12, "feet"),
  10931. weight: math.unit(188, "lb"),
  10932. name: "Front",
  10933. image: {
  10934. source: "./media/characters/bmc/front.svg",
  10935. extra: 1067 / 1022,
  10936. bottom: 0.047
  10937. }
  10938. },
  10939. },
  10940. [
  10941. {
  10942. name: "Human-sized",
  10943. height: math.unit(6 + 4 / 12, "feet")
  10944. },
  10945. {
  10946. name: "Small",
  10947. height: math.unit(250, "feet")
  10948. },
  10949. {
  10950. name: "Normal",
  10951. height: math.unit(1250, "feet"),
  10952. default: true
  10953. },
  10954. {
  10955. name: "Good Day",
  10956. height: math.unit(88, "miles")
  10957. },
  10958. {
  10959. name: "Largest Measured Size",
  10960. height: math.unit(11.2e6, "lightyears")
  10961. },
  10962. ]
  10963. ))
  10964. characterMakers.push(() => makeCharacter(
  10965. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10966. {
  10967. front: {
  10968. height: math.unit(20, "feet"),
  10969. weight: math.unit(2016, "kg"),
  10970. name: "Front",
  10971. image: {
  10972. source: "./media/characters/sven-the-kaiju/front.svg",
  10973. extra: 1479 / 1449,
  10974. bottom: 0.05
  10975. }
  10976. },
  10977. },
  10978. [
  10979. {
  10980. name: "Fairy",
  10981. height: math.unit(6, "inches")
  10982. },
  10983. {
  10984. name: "Normal",
  10985. height: math.unit(20, "feet"),
  10986. default: true
  10987. },
  10988. {
  10989. name: "Rampage",
  10990. height: math.unit(200, "feet")
  10991. },
  10992. {
  10993. name: "Archfey Forest Guardian",
  10994. height: math.unit(1, "mile")
  10995. },
  10996. ]
  10997. ))
  10998. characterMakers.push(() => makeCharacter(
  10999. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11000. {
  11001. front: {
  11002. height: math.unit(4, "meters"),
  11003. weight: math.unit(2, "tons"),
  11004. name: "Front",
  11005. image: {
  11006. source: "./media/characters/marik/front.svg",
  11007. extra: 1057 / 1003,
  11008. bottom: 0.08
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Normal",
  11015. height: math.unit(4, "meters"),
  11016. default: true
  11017. },
  11018. {
  11019. name: "Macro",
  11020. height: math.unit(20, "meters")
  11021. },
  11022. {
  11023. name: "Megamacro",
  11024. height: math.unit(50, "km")
  11025. },
  11026. {
  11027. name: "Gigamacro",
  11028. height: math.unit(100, "km")
  11029. },
  11030. {
  11031. name: "Alpha Macro",
  11032. height: math.unit(7.88e7, "yottameters")
  11033. },
  11034. ]
  11035. ))
  11036. characterMakers.push(() => makeCharacter(
  11037. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11038. {
  11039. front: {
  11040. height: math.unit(6, "feet"),
  11041. weight: math.unit(110, "lb"),
  11042. name: "Front",
  11043. image: {
  11044. source: "./media/characters/mel/front.svg",
  11045. extra: 736 / 617,
  11046. bottom: 0.017
  11047. }
  11048. },
  11049. },
  11050. [
  11051. {
  11052. name: "Pico",
  11053. height: math.unit(3, "pm")
  11054. },
  11055. {
  11056. name: "Nano",
  11057. height: math.unit(3, "nm")
  11058. },
  11059. {
  11060. name: "Micro",
  11061. height: math.unit(0.3, "mm"),
  11062. default: true
  11063. },
  11064. {
  11065. name: "Micro+",
  11066. height: math.unit(3, "mm")
  11067. },
  11068. {
  11069. name: "Normal",
  11070. height: math.unit(5 + 10.5 / 12, "feet")
  11071. },
  11072. ]
  11073. ))
  11074. characterMakers.push(() => makeCharacter(
  11075. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11076. {
  11077. kaiju: {
  11078. height: math.unit(1.75, "meters"),
  11079. weight: math.unit(55, "kg"),
  11080. name: "Kaiju",
  11081. image: {
  11082. source: "./media/characters/lykonous/kaiju.svg",
  11083. extra: 1055 / 946,
  11084. bottom: 0.135
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Normal",
  11091. height: math.unit(2.5, "meters"),
  11092. default: true
  11093. },
  11094. {
  11095. name: "Kaiju Dragon",
  11096. height: math.unit(60, "meters")
  11097. },
  11098. {
  11099. name: "Mega Kaiju",
  11100. height: math.unit(120, "km")
  11101. },
  11102. {
  11103. name: "Giga Kaiju",
  11104. height: math.unit(200, "megameters")
  11105. },
  11106. {
  11107. name: "Terra Kaiju",
  11108. height: math.unit(400, "gigameters")
  11109. },
  11110. {
  11111. name: "Kaiju Dragon God",
  11112. height: math.unit(13000, "exaparsecs")
  11113. },
  11114. ]
  11115. ))
  11116. characterMakers.push(() => makeCharacter(
  11117. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11118. {
  11119. front: {
  11120. height: math.unit(6, "feet"),
  11121. weight: math.unit(150, "lb"),
  11122. name: "Front",
  11123. image: {
  11124. source: "./media/characters/blü/front.svg",
  11125. extra: 1883 / 1564,
  11126. bottom: 0.031
  11127. }
  11128. },
  11129. },
  11130. [
  11131. {
  11132. name: "Normal",
  11133. height: math.unit(13, "feet"),
  11134. default: true
  11135. },
  11136. {
  11137. name: "Big Boi",
  11138. height: math.unit(150, "meters")
  11139. },
  11140. {
  11141. name: "Mini Stomper",
  11142. height: math.unit(300, "meters")
  11143. },
  11144. {
  11145. name: "Macro",
  11146. height: math.unit(1000, "meters")
  11147. },
  11148. {
  11149. name: "Megamacro",
  11150. height: math.unit(11000, "meters")
  11151. },
  11152. {
  11153. name: "Gigamacro",
  11154. height: math.unit(11000, "km")
  11155. },
  11156. {
  11157. name: "Teramacro",
  11158. height: math.unit(420000, "km")
  11159. },
  11160. {
  11161. name: "Examacro",
  11162. height: math.unit(120, "parsecs")
  11163. },
  11164. {
  11165. name: "God Tho",
  11166. height: math.unit(98000000000, "parsecs")
  11167. },
  11168. ]
  11169. ))
  11170. characterMakers.push(() => makeCharacter(
  11171. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11172. {
  11173. taurFront: {
  11174. height: math.unit(6, "feet"),
  11175. weight: math.unit(200, "lb"),
  11176. name: "Taur (Front)",
  11177. image: {
  11178. source: "./media/characters/scales/taur-front.svg",
  11179. extra: 1,
  11180. bottom: 0.05
  11181. }
  11182. },
  11183. taurBack: {
  11184. height: math.unit(6, "feet"),
  11185. weight: math.unit(200, "lb"),
  11186. name: "Taur (Back)",
  11187. image: {
  11188. source: "./media/characters/scales/taur-back.svg",
  11189. extra: 1,
  11190. bottom: 0.08
  11191. }
  11192. },
  11193. anthro: {
  11194. height: math.unit(6 * 7 / 12, "feet"),
  11195. weight: math.unit(100, "lb"),
  11196. name: "Anthro",
  11197. image: {
  11198. source: "./media/characters/scales/anthro.svg",
  11199. extra: 1,
  11200. bottom: 0.06
  11201. }
  11202. },
  11203. },
  11204. [
  11205. {
  11206. name: "Normal",
  11207. height: math.unit(12, "feet"),
  11208. default: true
  11209. },
  11210. ]
  11211. ))
  11212. characterMakers.push(() => makeCharacter(
  11213. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11214. {
  11215. front: {
  11216. height: math.unit(6, "feet"),
  11217. weight: math.unit(150, "lb"),
  11218. name: "Front",
  11219. image: {
  11220. source: "./media/characters/koragos/front.svg",
  11221. extra: 841 / 794,
  11222. bottom: 0.035
  11223. }
  11224. },
  11225. back: {
  11226. height: math.unit(6, "feet"),
  11227. weight: math.unit(150, "lb"),
  11228. name: "Back",
  11229. image: {
  11230. source: "./media/characters/koragos/back.svg",
  11231. extra: 841 / 810,
  11232. bottom: 0.022
  11233. }
  11234. },
  11235. },
  11236. [
  11237. {
  11238. name: "Normal",
  11239. height: math.unit(6 + 11 / 12, "feet"),
  11240. default: true
  11241. },
  11242. {
  11243. name: "Macro",
  11244. height: math.unit(490, "feet")
  11245. },
  11246. {
  11247. name: "Megamacro",
  11248. height: math.unit(10, "miles")
  11249. },
  11250. {
  11251. name: "Gigamacro",
  11252. height: math.unit(50, "miles")
  11253. },
  11254. ]
  11255. ))
  11256. characterMakers.push(() => makeCharacter(
  11257. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11258. {
  11259. front: {
  11260. height: math.unit(6, "feet"),
  11261. weight: math.unit(250, "lb"),
  11262. name: "Front",
  11263. image: {
  11264. source: "./media/characters/xylrem/front.svg",
  11265. extra: 3323 / 3050,
  11266. bottom: 0.065
  11267. }
  11268. },
  11269. },
  11270. [
  11271. {
  11272. name: "Micro",
  11273. height: math.unit(4, "feet")
  11274. },
  11275. {
  11276. name: "Normal",
  11277. height: math.unit(16, "feet"),
  11278. default: true
  11279. },
  11280. {
  11281. name: "Macro",
  11282. height: math.unit(2720, "feet")
  11283. },
  11284. {
  11285. name: "Megamacro",
  11286. height: math.unit(25000, "miles")
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(8, "feet"),
  11295. weight: math.unit(250, "kg"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/ikideru/front.svg",
  11299. extra: 930 / 870,
  11300. bottom: 0.087
  11301. }
  11302. },
  11303. back: {
  11304. height: math.unit(8, "feet"),
  11305. weight: math.unit(250, "kg"),
  11306. name: "Back",
  11307. image: {
  11308. source: "./media/characters/ikideru/back.svg",
  11309. extra: 919 / 852,
  11310. bottom: 0.055
  11311. }
  11312. },
  11313. },
  11314. [
  11315. {
  11316. name: "Rare",
  11317. height: math.unit(8, "feet"),
  11318. default: true
  11319. },
  11320. {
  11321. name: "Playful Loom",
  11322. height: math.unit(80, "feet")
  11323. },
  11324. {
  11325. name: "City Leaner",
  11326. height: math.unit(230, "feet")
  11327. },
  11328. {
  11329. name: "Megamacro",
  11330. height: math.unit(2500, "feet")
  11331. },
  11332. {
  11333. name: "Gigamacro",
  11334. height: math.unit(26400, "feet")
  11335. },
  11336. {
  11337. name: "Tectonic Shifter",
  11338. height: math.unit(1.7, "megameters")
  11339. },
  11340. {
  11341. name: "Planet Carer",
  11342. height: math.unit(21, "megameters")
  11343. },
  11344. {
  11345. name: "God",
  11346. height: math.unit(11157.22, "parsecs")
  11347. },
  11348. ]
  11349. ))
  11350. characterMakers.push(() => makeCharacter(
  11351. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11352. {
  11353. front: {
  11354. height: math.unit(6, "feet"),
  11355. weight: math.unit(120, "lb"),
  11356. name: "Front",
  11357. image: {
  11358. source: "./media/characters/neo/front.svg"
  11359. }
  11360. },
  11361. },
  11362. [
  11363. {
  11364. name: "Micro",
  11365. height: math.unit(2, "inches"),
  11366. default: true
  11367. },
  11368. {
  11369. name: "Human Size",
  11370. height: math.unit(5 + 8 / 12, "feet")
  11371. },
  11372. ]
  11373. ))
  11374. characterMakers.push(() => makeCharacter(
  11375. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11376. {
  11377. front: {
  11378. height: math.unit(13 + 10 / 12, "feet"),
  11379. weight: math.unit(5320, "lb"),
  11380. name: "Front",
  11381. image: {
  11382. source: "./media/characters/chauncey-chantz/front.svg",
  11383. extra: 1587 / 1435,
  11384. bottom: 0.02
  11385. }
  11386. },
  11387. },
  11388. [
  11389. {
  11390. name: "Normal",
  11391. height: math.unit(13 + 10 / 12, "feet"),
  11392. default: true
  11393. },
  11394. {
  11395. name: "Macro",
  11396. height: math.unit(45, "feet")
  11397. },
  11398. {
  11399. name: "Megamacro",
  11400. height: math.unit(250, "miles")
  11401. },
  11402. {
  11403. name: "Planetary",
  11404. height: math.unit(10000, "miles")
  11405. },
  11406. {
  11407. name: "Galactic",
  11408. height: math.unit(40000, "parsecs")
  11409. },
  11410. {
  11411. name: "Universal",
  11412. height: math.unit(1, "yottameter")
  11413. },
  11414. ]
  11415. ))
  11416. characterMakers.push(() => makeCharacter(
  11417. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11418. {
  11419. front: {
  11420. height: math.unit(6, "feet"),
  11421. weight: math.unit(150, "lb"),
  11422. name: "Front",
  11423. image: {
  11424. source: "./media/characters/epifox/front.svg",
  11425. extra: 1,
  11426. bottom: 0.075
  11427. }
  11428. },
  11429. },
  11430. [
  11431. {
  11432. name: "Micro",
  11433. height: math.unit(6, "inches")
  11434. },
  11435. {
  11436. name: "Normal",
  11437. height: math.unit(12, "feet"),
  11438. default: true
  11439. },
  11440. {
  11441. name: "Macro",
  11442. height: math.unit(3810, "feet")
  11443. },
  11444. {
  11445. name: "Megamacro",
  11446. height: math.unit(500, "miles")
  11447. },
  11448. ]
  11449. ))
  11450. characterMakers.push(() => makeCharacter(
  11451. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11452. {
  11453. front: {
  11454. height: math.unit(1.8796, "m"),
  11455. weight: math.unit(230, "lb"),
  11456. name: "Front",
  11457. image: {
  11458. source: "./media/characters/colin-t/front.svg",
  11459. extra: 1272 / 1193,
  11460. bottom: 0.07
  11461. }
  11462. },
  11463. },
  11464. [
  11465. {
  11466. name: "Micro",
  11467. height: math.unit(0.571, "meters")
  11468. },
  11469. {
  11470. name: "Normal",
  11471. height: math.unit(1.8796, "meters"),
  11472. default: true
  11473. },
  11474. {
  11475. name: "Tall",
  11476. height: math.unit(4, "meters")
  11477. },
  11478. {
  11479. name: "Macro",
  11480. height: math.unit(67.241, "meters")
  11481. },
  11482. {
  11483. name: "Megamacro",
  11484. height: math.unit(371.856, "meters")
  11485. },
  11486. {
  11487. name: "Planetary",
  11488. height: math.unit(12631.5689, "km")
  11489. },
  11490. ]
  11491. ))
  11492. characterMakers.push(() => makeCharacter(
  11493. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11494. {
  11495. front: {
  11496. height: math.unit(1.85, "meters"),
  11497. weight: math.unit(80, "kg"),
  11498. name: "Front",
  11499. image: {
  11500. source: "./media/characters/matvei/front.svg",
  11501. extra: 614 / 594,
  11502. bottom: 0.01
  11503. }
  11504. },
  11505. },
  11506. [
  11507. {
  11508. name: "Normal",
  11509. height: math.unit(1.85, "meters"),
  11510. default: true
  11511. },
  11512. ]
  11513. ))
  11514. characterMakers.push(() => makeCharacter(
  11515. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11516. {
  11517. front: {
  11518. height: math.unit(5 + 9 / 12, "feet"),
  11519. weight: math.unit(70, "lb"),
  11520. name: "Front",
  11521. image: {
  11522. source: "./media/characters/quincy/front.svg",
  11523. extra: 3041 / 2751
  11524. }
  11525. },
  11526. back: {
  11527. height: math.unit(5 + 9 / 12, "feet"),
  11528. weight: math.unit(70, "lb"),
  11529. name: "Back",
  11530. image: {
  11531. source: "./media/characters/quincy/back.svg",
  11532. extra: 3041 / 2751
  11533. }
  11534. },
  11535. flying: {
  11536. height: math.unit(5 + 4 / 12, "feet"),
  11537. weight: math.unit(70, "lb"),
  11538. name: "Flying",
  11539. image: {
  11540. source: "./media/characters/quincy/flying.svg",
  11541. extra: 1044 / 930
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Micro",
  11548. height: math.unit(3, "cm")
  11549. },
  11550. {
  11551. name: "Normal",
  11552. height: math.unit(5 + 9 / 12, "feet")
  11553. },
  11554. {
  11555. name: "Macro",
  11556. height: math.unit(200, "meters"),
  11557. default: true
  11558. },
  11559. {
  11560. name: "Megamacro",
  11561. height: math.unit(1000, "meters")
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11567. {
  11568. front: {
  11569. height: math.unit(4 + 7 / 12, "feet"),
  11570. weight: math.unit(50, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/vanrel/front.svg",
  11574. extra: 1,
  11575. bottom: 0.02
  11576. }
  11577. },
  11578. frontAlt: {
  11579. height: math.unit(4 + 7 / 12, "feet"),
  11580. weight: math.unit(50, "lb"),
  11581. name: "Front-alt",
  11582. image: {
  11583. source: "./media/characters/vanrel/front-alt.svg",
  11584. extra: 1,
  11585. bottom: 15 / 1511
  11586. }
  11587. },
  11588. elemental: {
  11589. height: math.unit(3, "feet"),
  11590. weight: math.unit(50, "lb"),
  11591. name: "Elemental",
  11592. image: {
  11593. source: "./media/characters/vanrel/elemental.svg",
  11594. extra: 192.3 / 162.8,
  11595. bottom: 1.79 / 194.17
  11596. }
  11597. },
  11598. side: {
  11599. height: math.unit(4 + 7 / 12, "feet"),
  11600. weight: math.unit(50, "lb"),
  11601. name: "Side",
  11602. image: {
  11603. source: "./media/characters/vanrel/side.svg",
  11604. extra: 1,
  11605. bottom: 0.025
  11606. }
  11607. },
  11608. tome: {
  11609. height: math.unit(1.35, "feet"),
  11610. weight: math.unit(10, "lb"),
  11611. name: "Vanrel's Tome",
  11612. rename: true,
  11613. image: {
  11614. source: "./media/characters/vanrel/tome.svg"
  11615. }
  11616. },
  11617. beans: {
  11618. height: math.unit(0.89, "feet"),
  11619. name: "Beans",
  11620. image: {
  11621. source: "./media/characters/vanrel/beans.svg"
  11622. }
  11623. },
  11624. },
  11625. [
  11626. {
  11627. name: "Normal",
  11628. height: math.unit(4 + 7 / 12, "feet"),
  11629. default: true
  11630. },
  11631. ]
  11632. ))
  11633. characterMakers.push(() => makeCharacter(
  11634. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11635. {
  11636. front: {
  11637. height: math.unit(7 + 5 / 12, "feet"),
  11638. weight: math.unit(150, "lb"),
  11639. name: "Front",
  11640. image: {
  11641. source: "./media/characters/kuiper-vanrel/front.svg",
  11642. extra: 1118 / 1068,
  11643. bottom: 0.09
  11644. }
  11645. },
  11646. foot: {
  11647. height: math.unit(0.55, "meters"),
  11648. name: "Foot",
  11649. image: {
  11650. source: "./media/characters/kuiper-vanrel/foot.svg",
  11651. }
  11652. },
  11653. battle: {
  11654. height: math.unit(6.824, "feet"),
  11655. weight: math.unit(150, "lb"),
  11656. name: "Battle",
  11657. image: {
  11658. source: "./media/characters/kuiper-vanrel/battle.svg",
  11659. extra: 1466 / 1327,
  11660. bottom: 29 / 1492.5
  11661. }
  11662. },
  11663. battleAlt: {
  11664. height: math.unit(6.824, "feet"),
  11665. weight: math.unit(150, "lb"),
  11666. name: "Battle (Alt)",
  11667. image: {
  11668. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11669. extra: 2081 / 1965,
  11670. bottom: 40 / 2121
  11671. }
  11672. },
  11673. },
  11674. [
  11675. {
  11676. name: "Normal",
  11677. height: math.unit(7 + 5 / 12, "feet"),
  11678. default: true
  11679. },
  11680. ]
  11681. ))
  11682. characterMakers.push(() => makeCharacter(
  11683. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11684. {
  11685. front: {
  11686. height: math.unit(8 + 5 / 12, "feet"),
  11687. weight: math.unit(150, "lb"),
  11688. name: "Front",
  11689. image: {
  11690. source: "./media/characters/keset-vanrel/front.svg",
  11691. extra: 1150 / 1084,
  11692. bottom: 0.05
  11693. }
  11694. },
  11695. hand: {
  11696. height: math.unit(0.6, "meters"),
  11697. name: "Hand",
  11698. image: {
  11699. source: "./media/characters/keset-vanrel/hand.svg"
  11700. }
  11701. },
  11702. foot: {
  11703. height: math.unit(0.94978, "meters"),
  11704. name: "Foot",
  11705. image: {
  11706. source: "./media/characters/keset-vanrel/foot.svg"
  11707. }
  11708. },
  11709. battle: {
  11710. height: math.unit(7.408, "feet"),
  11711. weight: math.unit(150, "lb"),
  11712. name: "Battle",
  11713. image: {
  11714. source: "./media/characters/keset-vanrel/battle.svg",
  11715. extra: 1890 / 1386,
  11716. bottom: 73.28 / 1970
  11717. }
  11718. },
  11719. },
  11720. [
  11721. {
  11722. name: "Normal",
  11723. height: math.unit(8 + 5 / 12, "feet"),
  11724. default: true
  11725. },
  11726. ]
  11727. ))
  11728. characterMakers.push(() => makeCharacter(
  11729. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11730. {
  11731. front: {
  11732. height: math.unit(6, "feet"),
  11733. weight: math.unit(150, "lb"),
  11734. name: "Front",
  11735. image: {
  11736. source: "./media/characters/neos/front.svg",
  11737. extra: 1696 / 992,
  11738. bottom: 0.14
  11739. }
  11740. },
  11741. },
  11742. [
  11743. {
  11744. name: "Normal",
  11745. height: math.unit(54, "cm"),
  11746. default: true
  11747. },
  11748. {
  11749. name: "Macro",
  11750. height: math.unit(100, "m")
  11751. },
  11752. {
  11753. name: "Megamacro",
  11754. height: math.unit(10, "km")
  11755. },
  11756. {
  11757. name: "Megamacro+",
  11758. height: math.unit(100, "km")
  11759. },
  11760. {
  11761. name: "Gigamacro",
  11762. height: math.unit(100, "Mm")
  11763. },
  11764. {
  11765. name: "Teramacro",
  11766. height: math.unit(100, "Gm")
  11767. },
  11768. {
  11769. name: "Examacro",
  11770. height: math.unit(100, "Em")
  11771. },
  11772. {
  11773. name: "Godly",
  11774. height: math.unit(10000, "Ym")
  11775. },
  11776. {
  11777. name: "Beyond Godly",
  11778. height: math.unit(25, "multiverses")
  11779. },
  11780. ]
  11781. ))
  11782. characterMakers.push(() => makeCharacter(
  11783. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11784. {
  11785. feminine: {
  11786. height: math.unit(5, "feet"),
  11787. weight: math.unit(100, "lb"),
  11788. name: "Feminine",
  11789. image: {
  11790. source: "./media/characters/sammy-mouse/feminine.svg",
  11791. extra: 2526 / 2425,
  11792. bottom: 0.123
  11793. }
  11794. },
  11795. masculine: {
  11796. height: math.unit(5, "feet"),
  11797. weight: math.unit(100, "lb"),
  11798. name: "Masculine",
  11799. image: {
  11800. source: "./media/characters/sammy-mouse/masculine.svg",
  11801. extra: 2526 / 2425,
  11802. bottom: 0.123
  11803. }
  11804. },
  11805. },
  11806. [
  11807. {
  11808. name: "Micro",
  11809. height: math.unit(5, "inches")
  11810. },
  11811. {
  11812. name: "Normal",
  11813. height: math.unit(5, "feet"),
  11814. default: true
  11815. },
  11816. {
  11817. name: "Macro",
  11818. height: math.unit(60, "feet")
  11819. },
  11820. ]
  11821. ))
  11822. characterMakers.push(() => makeCharacter(
  11823. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11824. {
  11825. front: {
  11826. height: math.unit(4, "feet"),
  11827. weight: math.unit(50, "lb"),
  11828. name: "Front",
  11829. image: {
  11830. source: "./media/characters/kole/front.svg",
  11831. extra: 1423 / 1303,
  11832. bottom: 0.025
  11833. }
  11834. },
  11835. back: {
  11836. height: math.unit(4, "feet"),
  11837. weight: math.unit(50, "lb"),
  11838. name: "Back",
  11839. image: {
  11840. source: "./media/characters/kole/back.svg",
  11841. extra: 1426 / 1280,
  11842. bottom: 0.02
  11843. }
  11844. },
  11845. },
  11846. [
  11847. {
  11848. name: "Normal",
  11849. height: math.unit(4, "feet"),
  11850. default: true
  11851. },
  11852. ]
  11853. ))
  11854. characterMakers.push(() => makeCharacter(
  11855. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11856. {
  11857. front: {
  11858. height: math.unit(2 + 6 / 12, "feet"),
  11859. weight: math.unit(20, "lb"),
  11860. name: "Front",
  11861. image: {
  11862. source: "./media/characters/rufran/front.svg",
  11863. extra: 2041 / 1839,
  11864. bottom: 0.055
  11865. }
  11866. },
  11867. back: {
  11868. height: math.unit(2 + 6 / 12, "feet"),
  11869. weight: math.unit(20, "lb"),
  11870. name: "Back",
  11871. image: {
  11872. source: "./media/characters/rufran/back.svg",
  11873. extra: 2054 / 1839,
  11874. bottom: 0.01
  11875. }
  11876. },
  11877. hand: {
  11878. height: math.unit(0.2166, "meters"),
  11879. name: "Hand",
  11880. image: {
  11881. source: "./media/characters/rufran/hand.svg"
  11882. }
  11883. },
  11884. foot: {
  11885. height: math.unit(0.185, "meters"),
  11886. name: "Foot",
  11887. image: {
  11888. source: "./media/characters/rufran/foot.svg"
  11889. }
  11890. },
  11891. },
  11892. [
  11893. {
  11894. name: "Micro",
  11895. height: math.unit(1, "inch")
  11896. },
  11897. {
  11898. name: "Normal",
  11899. height: math.unit(2 + 6 / 12, "feet"),
  11900. default: true
  11901. },
  11902. {
  11903. name: "Big",
  11904. height: math.unit(60, "feet")
  11905. },
  11906. {
  11907. name: "Macro",
  11908. height: math.unit(325, "feet")
  11909. },
  11910. ]
  11911. ))
  11912. characterMakers.push(() => makeCharacter(
  11913. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11914. {
  11915. front: {
  11916. height: math.unit(0.3, "meters"),
  11917. weight: math.unit(3.5, "kg"),
  11918. name: "Front",
  11919. image: {
  11920. source: "./media/characters/chip/front.svg",
  11921. extra: 748 / 674
  11922. }
  11923. },
  11924. },
  11925. [
  11926. {
  11927. name: "Micro",
  11928. height: math.unit(1, "inch"),
  11929. default: true
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11935. {
  11936. side: {
  11937. height: math.unit(2.3, "meters"),
  11938. weight: math.unit(3500, "lb"),
  11939. name: "Side",
  11940. image: {
  11941. source: "./media/characters/torvid/side.svg",
  11942. extra: 1972 / 722,
  11943. bottom: 0.035
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Normal",
  11950. height: math.unit(2.3, "meters"),
  11951. default: true
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(2, "meters"),
  11960. weight: math.unit(150.5, "kg"),
  11961. name: "Front",
  11962. image: {
  11963. source: "./media/characters/susan/front.svg",
  11964. extra: 693 / 635,
  11965. bottom: 0.05
  11966. }
  11967. },
  11968. },
  11969. [
  11970. {
  11971. name: "Megamacro",
  11972. height: math.unit(505, "miles"),
  11973. default: true
  11974. },
  11975. ]
  11976. ))
  11977. characterMakers.push(() => makeCharacter(
  11978. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11979. {
  11980. front: {
  11981. height: math.unit(6, "feet"),
  11982. weight: math.unit(150, "lb"),
  11983. name: "Front",
  11984. image: {
  11985. source: "./media/characters/raindrops/front.svg",
  11986. extra: 2655 / 2461,
  11987. bottom: 49 / 2705
  11988. }
  11989. },
  11990. back: {
  11991. height: math.unit(6, "feet"),
  11992. weight: math.unit(150, "lb"),
  11993. name: "Back",
  11994. image: {
  11995. source: "./media/characters/raindrops/back.svg",
  11996. extra: 2574 / 2400,
  11997. bottom: 65 / 2634
  11998. }
  11999. },
  12000. },
  12001. [
  12002. {
  12003. name: "Micro",
  12004. height: math.unit(6, "inches")
  12005. },
  12006. {
  12007. name: "Normal",
  12008. height: math.unit(6 + 2 / 12, "feet")
  12009. },
  12010. {
  12011. name: "Macro",
  12012. height: math.unit(131, "feet"),
  12013. default: true
  12014. },
  12015. {
  12016. name: "Megamacro",
  12017. height: math.unit(15, "miles")
  12018. },
  12019. {
  12020. name: "Gigamacro",
  12021. height: math.unit(4000, "miles")
  12022. },
  12023. {
  12024. name: "Teramacro",
  12025. height: math.unit(315000, "miles")
  12026. },
  12027. ]
  12028. ))
  12029. characterMakers.push(() => makeCharacter(
  12030. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12031. {
  12032. front: {
  12033. height: math.unit(2.794, "meters"),
  12034. weight: math.unit(325, "kg"),
  12035. name: "Front",
  12036. image: {
  12037. source: "./media/characters/tezwa/front.svg",
  12038. extra: 2083 / 1906,
  12039. bottom: 0.031
  12040. }
  12041. },
  12042. foot: {
  12043. height: math.unit(0.687, "meters"),
  12044. name: "Foot",
  12045. image: {
  12046. source: "./media/characters/tezwa/foot.svg"
  12047. }
  12048. },
  12049. },
  12050. [
  12051. {
  12052. name: "Normal",
  12053. height: math.unit(9 + 2 / 12, "feet"),
  12054. default: true
  12055. },
  12056. ]
  12057. ))
  12058. characterMakers.push(() => makeCharacter(
  12059. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12060. {
  12061. front: {
  12062. height: math.unit(58, "feet"),
  12063. weight: math.unit(89000, "lb"),
  12064. name: "Front",
  12065. image: {
  12066. source: "./media/characters/typhus/front.svg",
  12067. extra: 816 / 800,
  12068. bottom: 0.065
  12069. }
  12070. },
  12071. },
  12072. [
  12073. {
  12074. name: "Macro",
  12075. height: math.unit(58, "feet"),
  12076. default: true
  12077. },
  12078. ]
  12079. ))
  12080. characterMakers.push(() => makeCharacter(
  12081. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12082. {
  12083. front: {
  12084. height: math.unit(12, "feet"),
  12085. weight: math.unit(6, "tonnes"),
  12086. name: "Front",
  12087. image: {
  12088. source: "./media/characters/lyra-von-wulf/front.svg",
  12089. extra: 1,
  12090. bottom: 0.10
  12091. }
  12092. },
  12093. frontMecha: {
  12094. height: math.unit(12, "feet"),
  12095. weight: math.unit(12, "tonnes"),
  12096. name: "Front (Mecha)",
  12097. image: {
  12098. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12099. extra: 1,
  12100. bottom: 0.042
  12101. }
  12102. },
  12103. maw: {
  12104. height: math.unit(2.2, "feet"),
  12105. name: "Maw",
  12106. image: {
  12107. source: "./media/characters/lyra-von-wulf/maw.svg"
  12108. }
  12109. },
  12110. },
  12111. [
  12112. {
  12113. name: "Normal",
  12114. height: math.unit(12, "feet"),
  12115. default: true
  12116. },
  12117. {
  12118. name: "Classic",
  12119. height: math.unit(50, "feet")
  12120. },
  12121. {
  12122. name: "Macro",
  12123. height: math.unit(500, "feet")
  12124. },
  12125. {
  12126. name: "Megamacro",
  12127. height: math.unit(1, "mile")
  12128. },
  12129. {
  12130. name: "Gigamacro",
  12131. height: math.unit(400, "miles")
  12132. },
  12133. {
  12134. name: "Teramacro",
  12135. height: math.unit(22000, "miles")
  12136. },
  12137. {
  12138. name: "Solarmacro",
  12139. height: math.unit(8600000, "miles")
  12140. },
  12141. {
  12142. name: "Galactic",
  12143. height: math.unit(1057000, "lightyears")
  12144. },
  12145. ]
  12146. ))
  12147. characterMakers.push(() => makeCharacter(
  12148. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12149. {
  12150. front: {
  12151. height: math.unit(6 + 10 / 12, "feet"),
  12152. weight: math.unit(150, "lb"),
  12153. name: "Front",
  12154. image: {
  12155. source: "./media/characters/dixon/front.svg",
  12156. extra: 3361 / 3209,
  12157. bottom: 0.01
  12158. }
  12159. },
  12160. },
  12161. [
  12162. {
  12163. name: "Normal",
  12164. height: math.unit(6 + 10 / 12, "feet"),
  12165. default: true
  12166. },
  12167. {
  12168. name: "Big",
  12169. height: math.unit(12, "meters")
  12170. },
  12171. {
  12172. name: "Macro",
  12173. height: math.unit(500, "meters")
  12174. },
  12175. {
  12176. name: "Megamacro",
  12177. height: math.unit(2, "km")
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(185, "cm"),
  12186. weight: math.unit(68, "kg"),
  12187. name: "Front",
  12188. image: {
  12189. source: "./media/characters/kauko/front.svg",
  12190. extra: 1455 / 1421,
  12191. bottom: 0.03
  12192. }
  12193. },
  12194. back: {
  12195. height: math.unit(185, "cm"),
  12196. weight: math.unit(68, "kg"),
  12197. name: "Back",
  12198. image: {
  12199. source: "./media/characters/kauko/back.svg",
  12200. extra: 1455 / 1421,
  12201. bottom: 0.004
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Normal",
  12208. height: math.unit(185, "cm"),
  12209. default: true
  12210. },
  12211. ]
  12212. ))
  12213. characterMakers.push(() => makeCharacter(
  12214. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12215. {
  12216. front: {
  12217. height: math.unit(6, "feet"),
  12218. weight: math.unit(150, "kg"),
  12219. name: "Front",
  12220. image: {
  12221. source: "./media/characters/varg/front.svg",
  12222. extra: 1108 / 1018,
  12223. bottom: 0.0375
  12224. }
  12225. },
  12226. },
  12227. [
  12228. {
  12229. name: "Normal",
  12230. height: math.unit(5, "meters")
  12231. },
  12232. {
  12233. name: "Macro",
  12234. height: math.unit(200, "meters")
  12235. },
  12236. {
  12237. name: "Megamacro",
  12238. height: math.unit(20, "kilometers")
  12239. },
  12240. {
  12241. name: "True Size",
  12242. height: math.unit(211, "km"),
  12243. default: true
  12244. },
  12245. {
  12246. name: "Gigamacro",
  12247. height: math.unit(1000, "km")
  12248. },
  12249. {
  12250. name: "Gigamacro+",
  12251. height: math.unit(8000, "km")
  12252. },
  12253. {
  12254. name: "Teramacro",
  12255. height: math.unit(1000000, "km")
  12256. },
  12257. ]
  12258. ))
  12259. characterMakers.push(() => makeCharacter(
  12260. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12261. {
  12262. front: {
  12263. height: math.unit(7 + 7 / 12, "feet"),
  12264. weight: math.unit(267, "lb"),
  12265. name: "Front",
  12266. image: {
  12267. source: "./media/characters/dayza/front.svg",
  12268. extra: 1262 / 1200,
  12269. bottom: 0.035
  12270. }
  12271. },
  12272. side: {
  12273. height: math.unit(7 + 7 / 12, "feet"),
  12274. weight: math.unit(267, "lb"),
  12275. name: "Side",
  12276. image: {
  12277. source: "./media/characters/dayza/side.svg",
  12278. extra: 1295 / 1245,
  12279. bottom: 0.05
  12280. }
  12281. },
  12282. back: {
  12283. height: math.unit(7 + 7 / 12, "feet"),
  12284. weight: math.unit(267, "lb"),
  12285. name: "Back",
  12286. image: {
  12287. source: "./media/characters/dayza/back.svg",
  12288. extra: 1241 / 1170
  12289. }
  12290. },
  12291. },
  12292. [
  12293. {
  12294. name: "Normal",
  12295. height: math.unit(7 + 7 / 12, "feet"),
  12296. default: true
  12297. },
  12298. {
  12299. name: "Macro",
  12300. height: math.unit(155, "feet")
  12301. },
  12302. ]
  12303. ))
  12304. characterMakers.push(() => makeCharacter(
  12305. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12306. {
  12307. front: {
  12308. height: math.unit(6 + 5 / 12, "feet"),
  12309. weight: math.unit(160, "lb"),
  12310. name: "Front",
  12311. image: {
  12312. source: "./media/characters/xanthos/front.svg",
  12313. extra: 1,
  12314. bottom: 0.04
  12315. }
  12316. },
  12317. back: {
  12318. height: math.unit(6 + 5 / 12, "feet"),
  12319. weight: math.unit(160, "lb"),
  12320. name: "Back",
  12321. image: {
  12322. source: "./media/characters/xanthos/back.svg",
  12323. extra: 1,
  12324. bottom: 0.03
  12325. }
  12326. },
  12327. hand: {
  12328. height: math.unit(0.928, "feet"),
  12329. name: "Hand",
  12330. image: {
  12331. source: "./media/characters/xanthos/hand.svg"
  12332. }
  12333. },
  12334. foot: {
  12335. height: math.unit(1.286, "feet"),
  12336. name: "Foot",
  12337. image: {
  12338. source: "./media/characters/xanthos/foot.svg"
  12339. }
  12340. },
  12341. },
  12342. [
  12343. {
  12344. name: "Normal",
  12345. height: math.unit(6 + 5 / 12, "feet"),
  12346. default: true
  12347. },
  12348. {
  12349. name: "Normal+",
  12350. height: math.unit(6, "meters")
  12351. },
  12352. {
  12353. name: "Macro",
  12354. height: math.unit(40, "feet")
  12355. },
  12356. {
  12357. name: "Macro+",
  12358. height: math.unit(200, "meters")
  12359. },
  12360. {
  12361. name: "Megamacro",
  12362. height: math.unit(20, "km")
  12363. },
  12364. {
  12365. name: "Megamacro+",
  12366. height: math.unit(100, "km")
  12367. },
  12368. ]
  12369. ))
  12370. characterMakers.push(() => makeCharacter(
  12371. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12372. {
  12373. front: {
  12374. height: math.unit(6 + 3 / 12, "feet"),
  12375. weight: math.unit(215, "lb"),
  12376. name: "Front",
  12377. image: {
  12378. source: "./media/characters/grynn/front.svg",
  12379. extra: 4627 / 4209,
  12380. bottom: 0.047
  12381. }
  12382. },
  12383. },
  12384. [
  12385. {
  12386. name: "Micro",
  12387. height: math.unit(6, "inches")
  12388. },
  12389. {
  12390. name: "Normal",
  12391. height: math.unit(6 + 3 / 12, "feet"),
  12392. default: true
  12393. },
  12394. {
  12395. name: "Big",
  12396. height: math.unit(104, "feet")
  12397. },
  12398. {
  12399. name: "Macro",
  12400. height: math.unit(944, "feet")
  12401. },
  12402. {
  12403. name: "Macro+",
  12404. height: math.unit(9480, "feet")
  12405. },
  12406. {
  12407. name: "Megamacro",
  12408. height: math.unit(78752, "feet")
  12409. },
  12410. {
  12411. name: "Megamacro+",
  12412. height: math.unit(630128, "feet")
  12413. },
  12414. {
  12415. name: "Megamacro++",
  12416. height: math.unit(3150695, "feet")
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12422. {
  12423. front: {
  12424. height: math.unit(7 + 5 / 12, "feet"),
  12425. weight: math.unit(450, "lb"),
  12426. name: "Front",
  12427. image: {
  12428. source: "./media/characters/mocha-aura/front.svg",
  12429. extra: 1907 / 1817,
  12430. bottom: 0.04
  12431. }
  12432. },
  12433. back: {
  12434. height: math.unit(7 + 5 / 12, "feet"),
  12435. weight: math.unit(450, "lb"),
  12436. name: "Back",
  12437. image: {
  12438. source: "./media/characters/mocha-aura/back.svg",
  12439. extra: 1900 / 1825,
  12440. bottom: 0.045
  12441. }
  12442. },
  12443. },
  12444. [
  12445. {
  12446. name: "Nano",
  12447. height: math.unit(1, "nm")
  12448. },
  12449. {
  12450. name: "Megamicro",
  12451. height: math.unit(1, "mm")
  12452. },
  12453. {
  12454. name: "Micro",
  12455. height: math.unit(3, "inches")
  12456. },
  12457. {
  12458. name: "Normal",
  12459. height: math.unit(7 + 5 / 12, "feet"),
  12460. default: true
  12461. },
  12462. {
  12463. name: "Macro",
  12464. height: math.unit(30, "feet")
  12465. },
  12466. {
  12467. name: "Megamacro",
  12468. height: math.unit(3500, "feet")
  12469. },
  12470. {
  12471. name: "Teramacro",
  12472. height: math.unit(500000, "miles")
  12473. },
  12474. {
  12475. name: "Petamacro",
  12476. height: math.unit(50000000000000000, "parsecs")
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12482. {
  12483. front: {
  12484. height: math.unit(6, "feet"),
  12485. weight: math.unit(150, "lb"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/ilisha-devya/front.svg",
  12489. extra: 1,
  12490. bottom: 0.175
  12491. }
  12492. },
  12493. back: {
  12494. height: math.unit(6, "feet"),
  12495. weight: math.unit(150, "lb"),
  12496. name: "Back",
  12497. image: {
  12498. source: "./media/characters/ilisha-devya/back.svg",
  12499. extra: 1,
  12500. bottom: 0.015
  12501. }
  12502. },
  12503. },
  12504. [
  12505. {
  12506. name: "Macro",
  12507. height: math.unit(500, "feet"),
  12508. default: true
  12509. },
  12510. {
  12511. name: "Megamacro",
  12512. height: math.unit(10, "miles")
  12513. },
  12514. {
  12515. name: "Gigamacro",
  12516. height: math.unit(100000, "miles")
  12517. },
  12518. {
  12519. name: "Examacro",
  12520. height: math.unit(1e9, "lightyears")
  12521. },
  12522. {
  12523. name: "Omniversal",
  12524. height: math.unit(1e33, "lightyears")
  12525. },
  12526. {
  12527. name: "Beyond Infinite",
  12528. height: math.unit(1e100, "lightyears")
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12534. {
  12535. Side: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(150, "lb"),
  12538. name: "Side",
  12539. image: {
  12540. source: "./media/characters/mira/side.svg",
  12541. extra: 900 / 799,
  12542. bottom: 0.02
  12543. }
  12544. },
  12545. },
  12546. [
  12547. {
  12548. name: "Human Size",
  12549. height: math.unit(6, "feet")
  12550. },
  12551. {
  12552. name: "Macro",
  12553. height: math.unit(100, "feet"),
  12554. default: true
  12555. },
  12556. {
  12557. name: "Megamacro",
  12558. height: math.unit(10, "miles")
  12559. },
  12560. {
  12561. name: "Gigamacro",
  12562. height: math.unit(25000, "miles")
  12563. },
  12564. {
  12565. name: "Teramacro",
  12566. height: math.unit(300, "AU")
  12567. },
  12568. {
  12569. name: "Full Size",
  12570. height: math.unit(4.5e10, "lightyears")
  12571. },
  12572. ]
  12573. ))
  12574. characterMakers.push(() => makeCharacter(
  12575. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12576. {
  12577. front: {
  12578. height: math.unit(6, "feet"),
  12579. weight: math.unit(150, "lb"),
  12580. name: "Front",
  12581. image: {
  12582. source: "./media/characters/holly/front.svg",
  12583. extra: 639 / 606
  12584. }
  12585. },
  12586. back: {
  12587. height: math.unit(6, "feet"),
  12588. weight: math.unit(150, "lb"),
  12589. name: "Back",
  12590. image: {
  12591. source: "./media/characters/holly/back.svg",
  12592. extra: 623 / 598
  12593. }
  12594. },
  12595. frontWorking: {
  12596. height: math.unit(6, "feet"),
  12597. weight: math.unit(150, "lb"),
  12598. name: "Front (Working)",
  12599. image: {
  12600. source: "./media/characters/holly/front-working.svg",
  12601. extra: 607 / 577,
  12602. bottom: 0.048
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Normal",
  12609. height: math.unit(12 + 3 / 12, "feet"),
  12610. default: true
  12611. },
  12612. ]
  12613. ))
  12614. characterMakers.push(() => makeCharacter(
  12615. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12616. {
  12617. front: {
  12618. height: math.unit(6, "feet"),
  12619. weight: math.unit(150, "lb"),
  12620. name: "Front",
  12621. image: {
  12622. source: "./media/characters/porter/front.svg",
  12623. extra: 1,
  12624. bottom: 0.01
  12625. }
  12626. },
  12627. frontRobes: {
  12628. height: math.unit(6, "feet"),
  12629. weight: math.unit(150, "lb"),
  12630. name: "Front (Robes)",
  12631. image: {
  12632. source: "./media/characters/porter/front-robes.svg",
  12633. extra: 1.01,
  12634. bottom: 0.01
  12635. }
  12636. },
  12637. },
  12638. [
  12639. {
  12640. name: "Normal",
  12641. height: math.unit(11 + 9 / 12, "feet"),
  12642. default: true
  12643. },
  12644. ]
  12645. ))
  12646. characterMakers.push(() => makeCharacter(
  12647. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12648. {
  12649. legendary: {
  12650. height: math.unit(6, "feet"),
  12651. weight: math.unit(150, "lb"),
  12652. name: "Legendary",
  12653. image: {
  12654. source: "./media/characters/lucy/legendary.svg",
  12655. extra: 1355 / 1100,
  12656. bottom: 0.045
  12657. }
  12658. },
  12659. },
  12660. [
  12661. {
  12662. name: "Legendary",
  12663. height: math.unit(86882 * 2, "miles"),
  12664. default: true
  12665. },
  12666. ]
  12667. ))
  12668. characterMakers.push(() => makeCharacter(
  12669. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12670. {
  12671. front: {
  12672. height: math.unit(6, "feet"),
  12673. weight: math.unit(150, "lb"),
  12674. name: "Front",
  12675. image: {
  12676. source: "./media/characters/drusilla/front.svg",
  12677. extra: 678 / 635,
  12678. bottom: 0.03
  12679. }
  12680. },
  12681. back: {
  12682. height: math.unit(6, "feet"),
  12683. weight: math.unit(150, "lb"),
  12684. name: "Back",
  12685. image: {
  12686. source: "./media/characters/drusilla/back.svg",
  12687. extra: 678 / 635,
  12688. bottom: 0.005
  12689. }
  12690. },
  12691. },
  12692. [
  12693. {
  12694. name: "Macro",
  12695. height: math.unit(100, "feet")
  12696. },
  12697. {
  12698. name: "Canon Height",
  12699. height: math.unit(2000, "feet"),
  12700. default: true
  12701. },
  12702. ]
  12703. ))
  12704. characterMakers.push(() => makeCharacter(
  12705. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12706. {
  12707. front: {
  12708. height: math.unit(6, "feet"),
  12709. weight: math.unit(180, "lb"),
  12710. name: "Front",
  12711. image: {
  12712. source: "./media/characters/renard-thatch/front.svg",
  12713. extra: 2411 / 2275,
  12714. bottom: 0.01
  12715. }
  12716. },
  12717. frontPosing: {
  12718. height: math.unit(6, "feet"),
  12719. weight: math.unit(180, "lb"),
  12720. name: "Front (Posing)",
  12721. image: {
  12722. source: "./media/characters/renard-thatch/front-posing.svg",
  12723. extra: 2381 / 2261,
  12724. bottom: 0.01
  12725. }
  12726. },
  12727. back: {
  12728. height: math.unit(6, "feet"),
  12729. weight: math.unit(180, "lb"),
  12730. name: "Back",
  12731. image: {
  12732. source: "./media/characters/renard-thatch/back.svg",
  12733. extra: 2428 / 2288
  12734. }
  12735. },
  12736. },
  12737. [
  12738. {
  12739. name: "Micro",
  12740. height: math.unit(3, "inches")
  12741. },
  12742. {
  12743. name: "Default",
  12744. height: math.unit(6, "feet"),
  12745. default: true
  12746. },
  12747. {
  12748. name: "Macro",
  12749. height: math.unit(75, "feet")
  12750. },
  12751. ]
  12752. ))
  12753. characterMakers.push(() => makeCharacter(
  12754. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12755. {
  12756. front: {
  12757. height: math.unit(1450, "feet"),
  12758. weight: math.unit(1.21e6, "tons"),
  12759. name: "Front",
  12760. image: {
  12761. source: "./media/characters/sekvra/front.svg",
  12762. extra: 1,
  12763. bottom: 0.03
  12764. }
  12765. },
  12766. frontClothed: {
  12767. height: math.unit(1450, "feet"),
  12768. weight: math.unit(1.21e6, "tons"),
  12769. name: "Front (Clothed)",
  12770. image: {
  12771. source: "./media/characters/sekvra/front-clothed.svg",
  12772. extra: 1,
  12773. bottom: 0.03
  12774. }
  12775. },
  12776. side: {
  12777. height: math.unit(1450, "feet"),
  12778. weight: math.unit(1.21e6, "tons"),
  12779. name: "Side",
  12780. image: {
  12781. source: "./media/characters/sekvra/side.svg",
  12782. extra: 1,
  12783. bottom: 0.025
  12784. }
  12785. },
  12786. back: {
  12787. height: math.unit(1450, "feet"),
  12788. weight: math.unit(1.21e6, "tons"),
  12789. name: "Back",
  12790. image: {
  12791. source: "./media/characters/sekvra/back.svg",
  12792. extra: 1,
  12793. bottom: 0.005
  12794. }
  12795. },
  12796. },
  12797. [
  12798. {
  12799. name: "Macro",
  12800. height: math.unit(1450, "feet"),
  12801. default: true
  12802. },
  12803. {
  12804. name: "Megamacro",
  12805. height: math.unit(15000, "feet")
  12806. },
  12807. ]
  12808. ))
  12809. characterMakers.push(() => makeCharacter(
  12810. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12811. {
  12812. front: {
  12813. height: math.unit(6, "feet"),
  12814. weight: math.unit(150, "lb"),
  12815. name: "Front",
  12816. image: {
  12817. source: "./media/characters/carmine/front.svg",
  12818. extra: 1,
  12819. bottom: 0.035
  12820. }
  12821. },
  12822. frontArmor: {
  12823. height: math.unit(6, "feet"),
  12824. weight: math.unit(150, "lb"),
  12825. name: "Front (Armor)",
  12826. image: {
  12827. source: "./media/characters/carmine/front-armor.svg",
  12828. extra: 1,
  12829. bottom: 0.035
  12830. }
  12831. },
  12832. },
  12833. [
  12834. {
  12835. name: "Large",
  12836. height: math.unit(1, "mile")
  12837. },
  12838. {
  12839. name: "Huge",
  12840. height: math.unit(40, "miles"),
  12841. default: true
  12842. },
  12843. {
  12844. name: "Colossal",
  12845. height: math.unit(2500, "miles")
  12846. },
  12847. ]
  12848. ))
  12849. characterMakers.push(() => makeCharacter(
  12850. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12851. {
  12852. front: {
  12853. height: math.unit(6, "feet"),
  12854. weight: math.unit(150, "lb"),
  12855. name: "Front",
  12856. image: {
  12857. source: "./media/characters/elyssia/front.svg",
  12858. extra: 2201 / 2035,
  12859. bottom: 0.05
  12860. }
  12861. },
  12862. frontClothed: {
  12863. height: math.unit(6, "feet"),
  12864. weight: math.unit(150, "lb"),
  12865. name: "Front (Clothed)",
  12866. image: {
  12867. source: "./media/characters/elyssia/front-clothed.svg",
  12868. extra: 2201 / 2035,
  12869. bottom: 0.05
  12870. }
  12871. },
  12872. back: {
  12873. height: math.unit(6, "feet"),
  12874. weight: math.unit(150, "lb"),
  12875. name: "Back",
  12876. image: {
  12877. source: "./media/characters/elyssia/back.svg",
  12878. extra: 2201 / 2035,
  12879. bottom: 0.013
  12880. }
  12881. },
  12882. },
  12883. [
  12884. {
  12885. name: "Smaller",
  12886. height: math.unit(150, "feet")
  12887. },
  12888. {
  12889. name: "Standard",
  12890. height: math.unit(1400, "feet"),
  12891. default: true
  12892. },
  12893. {
  12894. name: "Distracted",
  12895. height: math.unit(15000, "feet")
  12896. },
  12897. ]
  12898. ))
  12899. characterMakers.push(() => makeCharacter(
  12900. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12901. {
  12902. front: {
  12903. height: math.unit(7 + 4 / 12, "feet"),
  12904. weight: math.unit(500, "lb"),
  12905. name: "Front",
  12906. image: {
  12907. source: "./media/characters/geno-maxwell/front.svg",
  12908. extra: 2207 / 2040,
  12909. bottom: 0.015
  12910. }
  12911. },
  12912. },
  12913. [
  12914. {
  12915. name: "Micro",
  12916. height: math.unit(3, "inches")
  12917. },
  12918. {
  12919. name: "Normal",
  12920. height: math.unit(7 + 4 / 12, "feet"),
  12921. default: true
  12922. },
  12923. {
  12924. name: "Macro",
  12925. height: math.unit(220, "feet")
  12926. },
  12927. {
  12928. name: "Megamacro",
  12929. height: math.unit(11, "miles")
  12930. },
  12931. ]
  12932. ))
  12933. characterMakers.push(() => makeCharacter(
  12934. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12935. {
  12936. front: {
  12937. height: math.unit(7 + 4 / 12, "feet"),
  12938. weight: math.unit(500, "lb"),
  12939. name: "Front",
  12940. image: {
  12941. source: "./media/characters/regena-maxwell/front.svg",
  12942. extra: 3115 / 2770,
  12943. bottom: 0.02
  12944. }
  12945. },
  12946. },
  12947. [
  12948. {
  12949. name: "Normal",
  12950. height: math.unit(7 + 4 / 12, "feet"),
  12951. default: true
  12952. },
  12953. {
  12954. name: "Macro",
  12955. height: math.unit(220, "feet")
  12956. },
  12957. {
  12958. name: "Megamacro",
  12959. height: math.unit(11, "miles")
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12965. {
  12966. front: {
  12967. height: math.unit(6, "feet"),
  12968. weight: math.unit(150, "lb"),
  12969. name: "Front",
  12970. image: {
  12971. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12972. extra: 860 / 690,
  12973. bottom: 0.03
  12974. }
  12975. },
  12976. },
  12977. [
  12978. {
  12979. name: "Normal",
  12980. height: math.unit(1.7, "meters"),
  12981. default: true
  12982. },
  12983. ]
  12984. ))
  12985. characterMakers.push(() => makeCharacter(
  12986. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12987. {
  12988. front: {
  12989. height: math.unit(6, "feet"),
  12990. weight: math.unit(150, "lb"),
  12991. name: "Front",
  12992. image: {
  12993. source: "./media/characters/quilly/front.svg",
  12994. extra: 890 / 776
  12995. }
  12996. },
  12997. },
  12998. [
  12999. {
  13000. name: "Gigamacro",
  13001. height: math.unit(404090, "miles"),
  13002. default: true
  13003. },
  13004. ]
  13005. ))
  13006. characterMakers.push(() => makeCharacter(
  13007. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13008. {
  13009. front: {
  13010. height: math.unit(7 + 8 / 12, "feet"),
  13011. weight: math.unit(350, "lb"),
  13012. name: "Front",
  13013. image: {
  13014. source: "./media/characters/tempest/front.svg",
  13015. extra: 1175 / 1086,
  13016. bottom: 0.02
  13017. }
  13018. },
  13019. },
  13020. [
  13021. {
  13022. name: "Normal",
  13023. height: math.unit(7 + 8 / 12, "feet"),
  13024. default: true
  13025. },
  13026. ]
  13027. ))
  13028. characterMakers.push(() => makeCharacter(
  13029. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13030. {
  13031. side: {
  13032. height: math.unit(4 + 5 / 12, "feet"),
  13033. weight: math.unit(80, "lb"),
  13034. name: "Side",
  13035. image: {
  13036. source: "./media/characters/rodger/side.svg",
  13037. extra: 1235 / 1118
  13038. }
  13039. },
  13040. },
  13041. [
  13042. {
  13043. name: "Micro",
  13044. height: math.unit(1, "inch")
  13045. },
  13046. {
  13047. name: "Normal",
  13048. height: math.unit(4 + 5 / 12, "feet"),
  13049. default: true
  13050. },
  13051. {
  13052. name: "Macro",
  13053. height: math.unit(120, "feet")
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13059. {
  13060. front: {
  13061. height: math.unit(6, "feet"),
  13062. weight: math.unit(150, "lb"),
  13063. name: "Front",
  13064. image: {
  13065. source: "./media/characters/danyel/front.svg",
  13066. extra: 1185 / 1123,
  13067. bottom: 0.05
  13068. }
  13069. },
  13070. },
  13071. [
  13072. {
  13073. name: "Shrunken",
  13074. height: math.unit(0.5, "mm")
  13075. },
  13076. {
  13077. name: "Micro",
  13078. height: math.unit(1, "mm"),
  13079. default: true
  13080. },
  13081. {
  13082. name: "Upsized",
  13083. height: math.unit(5 + 5 / 12, "feet")
  13084. },
  13085. ]
  13086. ))
  13087. characterMakers.push(() => makeCharacter(
  13088. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13089. {
  13090. front: {
  13091. height: math.unit(5 + 6 / 12, "feet"),
  13092. weight: math.unit(200, "lb"),
  13093. name: "Front",
  13094. image: {
  13095. source: "./media/characters/vivian-bijoux/front.svg",
  13096. extra: 1,
  13097. bottom: 0.072
  13098. }
  13099. },
  13100. },
  13101. [
  13102. {
  13103. name: "Normal",
  13104. height: math.unit(5 + 6 / 12, "feet"),
  13105. default: true
  13106. },
  13107. {
  13108. name: "Bad Dream",
  13109. height: math.unit(500, "feet")
  13110. },
  13111. {
  13112. name: "Nightmare",
  13113. height: math.unit(500, "miles")
  13114. },
  13115. ]
  13116. ))
  13117. characterMakers.push(() => makeCharacter(
  13118. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13119. {
  13120. front: {
  13121. height: math.unit(6 + 1 / 12, "feet"),
  13122. weight: math.unit(260, "lb"),
  13123. name: "Front",
  13124. image: {
  13125. source: "./media/characters/zeta/front.svg",
  13126. extra: 1968 / 1889,
  13127. bottom: 0.06
  13128. }
  13129. },
  13130. back: {
  13131. height: math.unit(6 + 1 / 12, "feet"),
  13132. weight: math.unit(260, "lb"),
  13133. name: "Back",
  13134. image: {
  13135. source: "./media/characters/zeta/back.svg",
  13136. extra: 1944 / 1858,
  13137. bottom: 0.03
  13138. }
  13139. },
  13140. hand: {
  13141. height: math.unit(1.112, "feet"),
  13142. name: "Hand",
  13143. image: {
  13144. source: "./media/characters/zeta/hand.svg"
  13145. }
  13146. },
  13147. foot: {
  13148. height: math.unit(1.48, "feet"),
  13149. name: "Foot",
  13150. image: {
  13151. source: "./media/characters/zeta/foot.svg"
  13152. }
  13153. },
  13154. },
  13155. [
  13156. {
  13157. name: "Micro",
  13158. height: math.unit(6, "inches")
  13159. },
  13160. {
  13161. name: "Normal",
  13162. height: math.unit(6 + 1 / 12, "feet"),
  13163. default: true
  13164. },
  13165. {
  13166. name: "Macro",
  13167. height: math.unit(20, "feet")
  13168. },
  13169. ]
  13170. ))
  13171. characterMakers.push(() => makeCharacter(
  13172. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13173. {
  13174. front: {
  13175. height: math.unit(6, "feet"),
  13176. weight: math.unit(150, "lb"),
  13177. name: "Front",
  13178. image: {
  13179. source: "./media/characters/jamie-larsen/front.svg",
  13180. extra: 962 / 933,
  13181. bottom: 0.02
  13182. }
  13183. },
  13184. back: {
  13185. height: math.unit(6, "feet"),
  13186. weight: math.unit(150, "lb"),
  13187. name: "Back",
  13188. image: {
  13189. source: "./media/characters/jamie-larsen/back.svg",
  13190. extra: 997 / 946
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Macro",
  13197. height: math.unit(28 + 7 / 12, "feet"),
  13198. default: true
  13199. },
  13200. {
  13201. name: "Macro+",
  13202. height: math.unit(180, "feet")
  13203. },
  13204. {
  13205. name: "Megamacro",
  13206. height: math.unit(10, "miles")
  13207. },
  13208. {
  13209. name: "Gigamacro",
  13210. height: math.unit(200000, "miles")
  13211. },
  13212. ]
  13213. ))
  13214. characterMakers.push(() => makeCharacter(
  13215. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13216. {
  13217. front: {
  13218. height: math.unit(6, "feet"),
  13219. weight: math.unit(120, "lb"),
  13220. name: "Front",
  13221. image: {
  13222. source: "./media/characters/vance/front.svg",
  13223. extra: 1980 / 1890,
  13224. bottom: 0.09
  13225. }
  13226. },
  13227. back: {
  13228. height: math.unit(6, "feet"),
  13229. weight: math.unit(120, "lb"),
  13230. name: "Back",
  13231. image: {
  13232. source: "./media/characters/vance/back.svg",
  13233. extra: 2081 / 1994,
  13234. bottom: 0.014
  13235. }
  13236. },
  13237. hand: {
  13238. height: math.unit(0.88, "feet"),
  13239. name: "Hand",
  13240. image: {
  13241. source: "./media/characters/vance/hand.svg"
  13242. }
  13243. },
  13244. foot: {
  13245. height: math.unit(0.64, "feet"),
  13246. name: "Foot",
  13247. image: {
  13248. source: "./media/characters/vance/foot.svg"
  13249. }
  13250. },
  13251. },
  13252. [
  13253. {
  13254. name: "Small",
  13255. height: math.unit(90, "feet"),
  13256. default: true
  13257. },
  13258. {
  13259. name: "Macro",
  13260. height: math.unit(100, "meters")
  13261. },
  13262. {
  13263. name: "Megamacro",
  13264. height: math.unit(15, "miles")
  13265. },
  13266. ]
  13267. ))
  13268. characterMakers.push(() => makeCharacter(
  13269. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13270. {
  13271. front: {
  13272. height: math.unit(6, "feet"),
  13273. weight: math.unit(180, "lb"),
  13274. name: "Front",
  13275. image: {
  13276. source: "./media/characters/xochitl/front.svg",
  13277. extra: 2297 / 2261,
  13278. bottom: 0.065
  13279. }
  13280. },
  13281. back: {
  13282. height: math.unit(6, "feet"),
  13283. weight: math.unit(180, "lb"),
  13284. name: "Back",
  13285. image: {
  13286. source: "./media/characters/xochitl/back.svg",
  13287. extra: 2386 / 2354,
  13288. bottom: 0.01
  13289. }
  13290. },
  13291. foot: {
  13292. height: math.unit(6 / 5 * 1.15, "feet"),
  13293. weight: math.unit(150, "lb"),
  13294. name: "Foot",
  13295. image: {
  13296. source: "./media/characters/xochitl/foot.svg"
  13297. }
  13298. },
  13299. },
  13300. [
  13301. {
  13302. name: "Macro",
  13303. height: math.unit(80, "feet")
  13304. },
  13305. {
  13306. name: "Macro+",
  13307. height: math.unit(400, "feet"),
  13308. default: true
  13309. },
  13310. {
  13311. name: "Gigamacro",
  13312. height: math.unit(80000, "miles")
  13313. },
  13314. {
  13315. name: "Gigamacro+",
  13316. height: math.unit(400000, "miles")
  13317. },
  13318. {
  13319. name: "Teramacro",
  13320. height: math.unit(300, "AU")
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13326. {
  13327. front: {
  13328. height: math.unit(6, "feet"),
  13329. weight: math.unit(150, "lb"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/vincent/front.svg",
  13333. extra: 1130 / 1080,
  13334. bottom: 0.055
  13335. }
  13336. },
  13337. beak: {
  13338. height: math.unit(6 * 0.1, "feet"),
  13339. name: "Beak",
  13340. image: {
  13341. source: "./media/characters/vincent/beak.svg"
  13342. }
  13343. },
  13344. hand: {
  13345. height: math.unit(6 * 0.85, "feet"),
  13346. weight: math.unit(150, "lb"),
  13347. name: "Hand",
  13348. image: {
  13349. source: "./media/characters/vincent/hand.svg"
  13350. }
  13351. },
  13352. foot: {
  13353. height: math.unit(6 * 0.19, "feet"),
  13354. weight: math.unit(150, "lb"),
  13355. name: "Foot",
  13356. image: {
  13357. source: "./media/characters/vincent/foot.svg"
  13358. }
  13359. },
  13360. },
  13361. [
  13362. {
  13363. name: "Base",
  13364. height: math.unit(6 + 5 / 12, "feet"),
  13365. default: true
  13366. },
  13367. {
  13368. name: "Macro",
  13369. height: math.unit(300, "feet")
  13370. },
  13371. {
  13372. name: "Megamacro",
  13373. height: math.unit(2, "miles")
  13374. },
  13375. {
  13376. name: "Gigamacro",
  13377. height: math.unit(1000, "miles")
  13378. },
  13379. ]
  13380. ))
  13381. characterMakers.push(() => makeCharacter(
  13382. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13383. {
  13384. front: {
  13385. height: math.unit(6 + 2 / 12, "feet"),
  13386. weight: math.unit(265, "lb"),
  13387. name: "Front",
  13388. image: {
  13389. source: "./media/characters/jay/front.svg",
  13390. extra: 1510 / 1430,
  13391. bottom: 0.042
  13392. }
  13393. },
  13394. back: {
  13395. height: math.unit(6 + 2 / 12, "feet"),
  13396. weight: math.unit(265, "lb"),
  13397. name: "Back",
  13398. image: {
  13399. source: "./media/characters/jay/back.svg",
  13400. extra: 1510 / 1430,
  13401. bottom: 0.025
  13402. }
  13403. },
  13404. clothed: {
  13405. height: math.unit(6 + 2 / 12, "feet"),
  13406. weight: math.unit(265, "lb"),
  13407. name: "Front (Clothed)",
  13408. image: {
  13409. source: "./media/characters/jay/clothed.svg",
  13410. extra: 744 / 699,
  13411. bottom: 0.043
  13412. }
  13413. },
  13414. head: {
  13415. height: math.unit(1.772, "feet"),
  13416. name: "Head",
  13417. image: {
  13418. source: "./media/characters/jay/head.svg"
  13419. }
  13420. },
  13421. sizeRay: {
  13422. height: math.unit(1.331, "feet"),
  13423. name: "Size Ray",
  13424. image: {
  13425. source: "./media/characters/jay/size-ray.svg"
  13426. }
  13427. },
  13428. },
  13429. [
  13430. {
  13431. name: "Micro",
  13432. height: math.unit(1, "inch")
  13433. },
  13434. {
  13435. name: "Normal",
  13436. height: math.unit(6 + 2 / 12, "feet"),
  13437. default: true
  13438. },
  13439. {
  13440. name: "Macro",
  13441. height: math.unit(1, "mile")
  13442. },
  13443. {
  13444. name: "Megamacro",
  13445. height: math.unit(100, "miles")
  13446. },
  13447. ]
  13448. ))
  13449. characterMakers.push(() => makeCharacter(
  13450. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13451. {
  13452. front: {
  13453. height: math.unit(2, "meters"),
  13454. weight: math.unit(500, "kg"),
  13455. name: "Front",
  13456. image: {
  13457. source: "./media/characters/coatl/front.svg",
  13458. extra: 3948 / 3500,
  13459. bottom: 0.082
  13460. }
  13461. },
  13462. },
  13463. [
  13464. {
  13465. name: "Normal",
  13466. height: math.unit(4, "meters")
  13467. },
  13468. {
  13469. name: "Macro",
  13470. height: math.unit(100, "meters"),
  13471. default: true
  13472. },
  13473. {
  13474. name: "Macro+",
  13475. height: math.unit(300, "meters")
  13476. },
  13477. {
  13478. name: "Megamacro",
  13479. height: math.unit(3, "gigameters")
  13480. },
  13481. {
  13482. name: "Megamacro+",
  13483. height: math.unit(300, "terameters")
  13484. },
  13485. {
  13486. name: "Megamacro++",
  13487. height: math.unit(3, "lightyears")
  13488. },
  13489. ]
  13490. ))
  13491. characterMakers.push(() => makeCharacter(
  13492. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13493. {
  13494. front: {
  13495. height: math.unit(6, "feet"),
  13496. weight: math.unit(50, "kg"),
  13497. name: "front",
  13498. image: {
  13499. source: "./media/characters/shiroryu/front.svg",
  13500. extra: 1990 / 1935
  13501. }
  13502. },
  13503. },
  13504. [
  13505. {
  13506. name: "Mortal Mingling",
  13507. height: math.unit(3, "meters")
  13508. },
  13509. {
  13510. name: "Kaiju-ish",
  13511. height: math.unit(250, "meters")
  13512. },
  13513. {
  13514. name: "Somewhat Godly",
  13515. height: math.unit(400, "km"),
  13516. default: true
  13517. },
  13518. {
  13519. name: "Planetary",
  13520. height: math.unit(300, "megameters")
  13521. },
  13522. {
  13523. name: "Galaxy-dwarfing",
  13524. height: math.unit(450, "kiloparsecs")
  13525. },
  13526. {
  13527. name: "Universe Eater",
  13528. height: math.unit(150, "gigaparsecs")
  13529. },
  13530. {
  13531. name: "Almost Immeasurable",
  13532. height: math.unit(1.3e266, "yottaparsecs")
  13533. },
  13534. ]
  13535. ))
  13536. characterMakers.push(() => makeCharacter(
  13537. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13538. {
  13539. front: {
  13540. height: math.unit(6, "feet"),
  13541. weight: math.unit(150, "lb"),
  13542. name: "Front",
  13543. image: {
  13544. source: "./media/characters/umeko/front.svg",
  13545. extra: 1,
  13546. bottom: 0.019
  13547. }
  13548. },
  13549. frontArmored: {
  13550. height: math.unit(6, "feet"),
  13551. weight: math.unit(150, "lb"),
  13552. name: "Front (Armored)",
  13553. image: {
  13554. source: "./media/characters/umeko/front-armored.svg",
  13555. extra: 1,
  13556. bottom: 0.021
  13557. }
  13558. },
  13559. },
  13560. [
  13561. {
  13562. name: "Macro",
  13563. height: math.unit(220, "feet"),
  13564. default: true
  13565. },
  13566. {
  13567. name: "Guardian Dragon",
  13568. height: math.unit(50, "miles")
  13569. },
  13570. {
  13571. name: "Cosmic",
  13572. height: math.unit(800000, "miles")
  13573. },
  13574. ]
  13575. ))
  13576. characterMakers.push(() => makeCharacter(
  13577. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13578. {
  13579. front: {
  13580. height: math.unit(6, "feet"),
  13581. weight: math.unit(150, "lb"),
  13582. name: "Front",
  13583. image: {
  13584. source: "./media/characters/cassidy/front.svg",
  13585. extra: 1,
  13586. bottom: 0.043
  13587. }
  13588. },
  13589. },
  13590. [
  13591. {
  13592. name: "Canon Height",
  13593. height: math.unit(120, "feet"),
  13594. default: true
  13595. },
  13596. {
  13597. name: "Macro+",
  13598. height: math.unit(400, "feet")
  13599. },
  13600. {
  13601. name: "Macro++",
  13602. height: math.unit(4000, "feet")
  13603. },
  13604. {
  13605. name: "Megamacro",
  13606. height: math.unit(3, "miles")
  13607. },
  13608. ]
  13609. ))
  13610. characterMakers.push(() => makeCharacter(
  13611. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13612. {
  13613. front: {
  13614. height: math.unit(6, "feet"),
  13615. weight: math.unit(150, "lb"),
  13616. name: "Front",
  13617. image: {
  13618. source: "./media/characters/isaac/front.svg",
  13619. extra: 896 / 815,
  13620. bottom: 0.11
  13621. }
  13622. },
  13623. },
  13624. [
  13625. {
  13626. name: "Human Size",
  13627. height: math.unit(8, "feet"),
  13628. default: true
  13629. },
  13630. {
  13631. name: "Macro",
  13632. height: math.unit(400, "feet")
  13633. },
  13634. {
  13635. name: "Megamacro",
  13636. height: math.unit(50, "miles")
  13637. },
  13638. {
  13639. name: "Canon Height",
  13640. height: math.unit(200, "AU")
  13641. },
  13642. ]
  13643. ))
  13644. characterMakers.push(() => makeCharacter(
  13645. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13646. {
  13647. front: {
  13648. height: math.unit(6, "feet"),
  13649. weight: math.unit(72, "kg"),
  13650. name: "Front",
  13651. image: {
  13652. source: "./media/characters/sleekit/front.svg",
  13653. extra: 4693 / 4487,
  13654. bottom: 0.012
  13655. }
  13656. },
  13657. },
  13658. [
  13659. {
  13660. name: "Minimum Height",
  13661. height: math.unit(10, "meters")
  13662. },
  13663. {
  13664. name: "Smaller",
  13665. height: math.unit(25, "meters")
  13666. },
  13667. {
  13668. name: "Larger",
  13669. height: math.unit(38, "meters"),
  13670. default: true
  13671. },
  13672. {
  13673. name: "Maximum height",
  13674. height: math.unit(100, "meters")
  13675. },
  13676. ]
  13677. ))
  13678. characterMakers.push(() => makeCharacter(
  13679. { name: "Nillia", species: ["caracal"], 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/nillia/front.svg",
  13687. extra: 2195 / 2037,
  13688. bottom: 0.005
  13689. }
  13690. },
  13691. back: {
  13692. height: math.unit(6, "feet"),
  13693. weight: math.unit(150, "lb"),
  13694. name: "Back",
  13695. image: {
  13696. source: "./media/characters/nillia/back.svg",
  13697. extra: 2195 / 2037,
  13698. bottom: 0.005
  13699. }
  13700. },
  13701. },
  13702. [
  13703. {
  13704. name: "Canon Height",
  13705. height: math.unit(489, "feet"),
  13706. default: true
  13707. }
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13712. {
  13713. front: {
  13714. height: math.unit(6, "feet"),
  13715. weight: math.unit(150, "lb"),
  13716. name: "Front",
  13717. image: {
  13718. source: "./media/characters/mesmyriza/front.svg",
  13719. extra: 2067 / 1784,
  13720. bottom: 0.035
  13721. }
  13722. },
  13723. foot: {
  13724. height: math.unit(6 / (250 / 35), "feet"),
  13725. name: "Foot",
  13726. image: {
  13727. source: "./media/characters/mesmyriza/foot.svg"
  13728. }
  13729. },
  13730. },
  13731. [
  13732. {
  13733. name: "Macro",
  13734. height: math.unit(457, "meters"),
  13735. default: true
  13736. },
  13737. {
  13738. name: "Megamacro",
  13739. height: math.unit(8, "megameters")
  13740. },
  13741. ]
  13742. ))
  13743. characterMakers.push(() => makeCharacter(
  13744. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13745. {
  13746. front: {
  13747. height: math.unit(6, "feet"),
  13748. weight: math.unit(250, "lb"),
  13749. name: "Front",
  13750. image: {
  13751. source: "./media/characters/saudade/front.svg",
  13752. extra: 1172 / 1139,
  13753. bottom: 0.035
  13754. }
  13755. },
  13756. },
  13757. [
  13758. {
  13759. name: "Micro",
  13760. height: math.unit(3, "inches")
  13761. },
  13762. {
  13763. name: "Normal",
  13764. height: math.unit(6, "feet"),
  13765. default: true
  13766. },
  13767. {
  13768. name: "Macro",
  13769. height: math.unit(50, "feet")
  13770. },
  13771. {
  13772. name: "Megamacro",
  13773. height: math.unit(2800, "feet")
  13774. },
  13775. ]
  13776. ))
  13777. characterMakers.push(() => makeCharacter(
  13778. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13779. {
  13780. front: {
  13781. height: math.unit(5 + 4 / 12, "feet"),
  13782. weight: math.unit(100, "lb"),
  13783. name: "Front",
  13784. image: {
  13785. source: "./media/characters/keireer/front.svg",
  13786. extra: 716 / 666,
  13787. bottom: 0.05
  13788. }
  13789. },
  13790. },
  13791. [
  13792. {
  13793. name: "Normal",
  13794. height: math.unit(5 + 4 / 12, "feet"),
  13795. default: true
  13796. },
  13797. ]
  13798. ))
  13799. characterMakers.push(() => makeCharacter(
  13800. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13801. {
  13802. front: {
  13803. height: math.unit(6, "feet"),
  13804. weight: math.unit(90, "kg"),
  13805. name: "Front",
  13806. image: {
  13807. source: "./media/characters/mirja/front.svg",
  13808. extra: 1789 / 1683,
  13809. bottom: 0.05
  13810. }
  13811. },
  13812. frontDressed: {
  13813. height: math.unit(6, "feet"),
  13814. weight: math.unit(90, "lb"),
  13815. name: "Front (Dressed)",
  13816. image: {
  13817. source: "./media/characters/mirja/front-dressed.svg",
  13818. extra: 1789 / 1683,
  13819. bottom: 0.05
  13820. }
  13821. },
  13822. back: {
  13823. height: math.unit(6, "feet"),
  13824. weight: math.unit(90, "lb"),
  13825. name: "Back",
  13826. image: {
  13827. source: "./media/characters/mirja/back.svg",
  13828. extra: 953 / 917,
  13829. bottom: 0.017
  13830. }
  13831. },
  13832. },
  13833. [
  13834. {
  13835. name: "\"Incognito\"",
  13836. height: math.unit(3, "meters")
  13837. },
  13838. {
  13839. name: "Strolling Size",
  13840. height: math.unit(15, "km")
  13841. },
  13842. {
  13843. name: "Larger Strolling Size",
  13844. height: math.unit(400, "km")
  13845. },
  13846. {
  13847. name: "Preferred Size",
  13848. height: math.unit(5000, "km")
  13849. },
  13850. {
  13851. name: "True Size",
  13852. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13853. default: true
  13854. },
  13855. ]
  13856. ))
  13857. characterMakers.push(() => makeCharacter(
  13858. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13859. {
  13860. front: {
  13861. height: math.unit(15, "feet"),
  13862. weight: math.unit(880, "kg"),
  13863. name: "Front",
  13864. image: {
  13865. source: "./media/characters/nightraver/front.svg",
  13866. extra: 2444 / 2160,
  13867. bottom: 0.027
  13868. }
  13869. },
  13870. back: {
  13871. height: math.unit(15, "feet"),
  13872. weight: math.unit(880, "kg"),
  13873. name: "Back",
  13874. image: {
  13875. source: "./media/characters/nightraver/back.svg",
  13876. extra: 2309 / 2180,
  13877. bottom: 0.005
  13878. }
  13879. },
  13880. sole: {
  13881. height: math.unit(2.878, "feet"),
  13882. name: "Sole",
  13883. image: {
  13884. source: "./media/characters/nightraver/sole.svg"
  13885. }
  13886. },
  13887. foot: {
  13888. height: math.unit(2.285, "feet"),
  13889. name: "Foot",
  13890. image: {
  13891. source: "./media/characters/nightraver/foot.svg"
  13892. }
  13893. },
  13894. maw: {
  13895. height: math.unit(2.67, "feet"),
  13896. name: "Maw",
  13897. image: {
  13898. source: "./media/characters/nightraver/maw.svg"
  13899. }
  13900. },
  13901. },
  13902. [
  13903. {
  13904. name: "Micro",
  13905. height: math.unit(1, "cm")
  13906. },
  13907. {
  13908. name: "Normal",
  13909. height: math.unit(15, "feet"),
  13910. default: true
  13911. },
  13912. {
  13913. name: "Macro",
  13914. height: math.unit(300, "feet")
  13915. },
  13916. {
  13917. name: "Megamacro",
  13918. height: math.unit(300, "miles")
  13919. },
  13920. {
  13921. name: "Gigamacro",
  13922. height: math.unit(10000, "miles")
  13923. },
  13924. ]
  13925. ))
  13926. characterMakers.push(() => makeCharacter(
  13927. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13928. {
  13929. side: {
  13930. height: math.unit(2, "inches"),
  13931. weight: math.unit(5, "grams"),
  13932. name: "Side",
  13933. image: {
  13934. source: "./media/characters/arc/side.svg"
  13935. }
  13936. },
  13937. },
  13938. [
  13939. {
  13940. name: "Micro",
  13941. height: math.unit(2, "inches"),
  13942. default: true
  13943. },
  13944. ]
  13945. ))
  13946. characterMakers.push(() => makeCharacter(
  13947. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13948. {
  13949. front: {
  13950. height: math.unit(1.1938, "meters"),
  13951. weight: math.unit(54, "kg"),
  13952. name: "Front",
  13953. image: {
  13954. source: "./media/characters/nebula-shahar/front.svg",
  13955. extra: 1642 / 1436,
  13956. bottom: 0.06
  13957. }
  13958. },
  13959. },
  13960. [
  13961. {
  13962. name: "Megamicro",
  13963. height: math.unit(0.3, "mm")
  13964. },
  13965. {
  13966. name: "Micro",
  13967. height: math.unit(3, "cm")
  13968. },
  13969. {
  13970. name: "Normal",
  13971. height: math.unit(138, "cm"),
  13972. default: true
  13973. },
  13974. {
  13975. name: "Macro",
  13976. height: math.unit(30, "m")
  13977. },
  13978. ]
  13979. ))
  13980. characterMakers.push(() => makeCharacter(
  13981. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13982. {
  13983. front: {
  13984. height: math.unit(5.24, "feet"),
  13985. weight: math.unit(150, "lb"),
  13986. name: "Front",
  13987. image: {
  13988. source: "./media/characters/shayla/front.svg",
  13989. extra: 1512 / 1414,
  13990. bottom: 0.01
  13991. }
  13992. },
  13993. back: {
  13994. height: math.unit(5.24, "feet"),
  13995. weight: math.unit(150, "lb"),
  13996. name: "Back",
  13997. image: {
  13998. source: "./media/characters/shayla/back.svg",
  13999. extra: 1512 / 1414
  14000. }
  14001. },
  14002. hand: {
  14003. height: math.unit(0.7781496062992126, "feet"),
  14004. name: "Hand",
  14005. image: {
  14006. source: "./media/characters/shayla/hand.svg"
  14007. }
  14008. },
  14009. foot: {
  14010. height: math.unit(1.4206036745406823, "feet"),
  14011. name: "Foot",
  14012. image: {
  14013. source: "./media/characters/shayla/foot.svg"
  14014. }
  14015. },
  14016. },
  14017. [
  14018. {
  14019. name: "Micro",
  14020. height: math.unit(0.32, "feet")
  14021. },
  14022. {
  14023. name: "Normal",
  14024. height: math.unit(5.24, "feet"),
  14025. default: true
  14026. },
  14027. {
  14028. name: "Macro",
  14029. height: math.unit(492.12, "feet")
  14030. },
  14031. {
  14032. name: "Megamacro",
  14033. height: math.unit(186.41, "miles")
  14034. },
  14035. ]
  14036. ))
  14037. characterMakers.push(() => makeCharacter(
  14038. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14039. {
  14040. front: {
  14041. height: math.unit(2.2, "m"),
  14042. weight: math.unit(120, "kg"),
  14043. name: "Front",
  14044. image: {
  14045. source: "./media/characters/pia-jr/front.svg",
  14046. extra: 1000 / 970,
  14047. bottom: 0.035
  14048. }
  14049. },
  14050. hand: {
  14051. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14052. name: "Hand",
  14053. image: {
  14054. source: "./media/characters/pia-jr/hand.svg"
  14055. }
  14056. },
  14057. paw: {
  14058. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14059. name: "Paw",
  14060. image: {
  14061. source: "./media/characters/pia-jr/paw.svg"
  14062. }
  14063. },
  14064. },
  14065. [
  14066. {
  14067. name: "Micro",
  14068. height: math.unit(1.2, "cm")
  14069. },
  14070. {
  14071. name: "Normal",
  14072. height: math.unit(2.2, "m"),
  14073. default: true
  14074. },
  14075. {
  14076. name: "Macro",
  14077. height: math.unit(180, "m")
  14078. },
  14079. {
  14080. name: "Megamacro",
  14081. height: math.unit(420, "km")
  14082. },
  14083. ]
  14084. ))
  14085. characterMakers.push(() => makeCharacter(
  14086. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14087. {
  14088. front: {
  14089. height: math.unit(2, "m"),
  14090. weight: math.unit(115, "kg"),
  14091. name: "Front",
  14092. image: {
  14093. source: "./media/characters/pia-sr/front.svg",
  14094. extra: 760 / 730,
  14095. bottom: 0.015
  14096. }
  14097. },
  14098. back: {
  14099. height: math.unit(2, "m"),
  14100. weight: math.unit(115, "kg"),
  14101. name: "Back",
  14102. image: {
  14103. source: "./media/characters/pia-sr/back.svg",
  14104. extra: 760 / 730,
  14105. bottom: 0.01
  14106. }
  14107. },
  14108. hand: {
  14109. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14110. name: "Hand",
  14111. image: {
  14112. source: "./media/characters/pia-sr/hand.svg"
  14113. }
  14114. },
  14115. foot: {
  14116. height: math.unit(1.83, "feet"),
  14117. name: "Foot",
  14118. image: {
  14119. source: "./media/characters/pia-sr/foot.svg"
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Micro",
  14126. height: math.unit(88, "mm")
  14127. },
  14128. {
  14129. name: "Normal",
  14130. height: math.unit(2, "m"),
  14131. default: true
  14132. },
  14133. {
  14134. name: "Macro",
  14135. height: math.unit(200, "m")
  14136. },
  14137. {
  14138. name: "Megamacro",
  14139. height: math.unit(420, "km")
  14140. },
  14141. ]
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14145. {
  14146. front: {
  14147. height: math.unit(8 + 2 / 12, "feet"),
  14148. weight: math.unit(300, "lb"),
  14149. name: "Front",
  14150. image: {
  14151. source: "./media/characters/kibibyte/front.svg",
  14152. extra: 2221 / 2098,
  14153. bottom: 0.04
  14154. }
  14155. },
  14156. },
  14157. [
  14158. {
  14159. name: "Normal",
  14160. height: math.unit(8 + 2 / 12, "feet"),
  14161. default: true
  14162. },
  14163. {
  14164. name: "Socialable Macro",
  14165. height: math.unit(50, "feet")
  14166. },
  14167. {
  14168. name: "Macro",
  14169. height: math.unit(300, "feet")
  14170. },
  14171. {
  14172. name: "Megamacro",
  14173. height: math.unit(500, "miles")
  14174. },
  14175. ]
  14176. ))
  14177. characterMakers.push(() => makeCharacter(
  14178. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14179. {
  14180. front: {
  14181. height: math.unit(6, "feet"),
  14182. weight: math.unit(150, "lb"),
  14183. name: "Front",
  14184. image: {
  14185. source: "./media/characters/felix/front.svg",
  14186. extra: 762 / 722,
  14187. bottom: 0.02
  14188. }
  14189. },
  14190. frontClothed: {
  14191. height: math.unit(6, "feet"),
  14192. weight: math.unit(150, "lb"),
  14193. name: "Front (Clothed)",
  14194. image: {
  14195. source: "./media/characters/felix/front-clothed.svg",
  14196. extra: 762 / 722,
  14197. bottom: 0.02
  14198. }
  14199. },
  14200. },
  14201. [
  14202. {
  14203. name: "Normal",
  14204. height: math.unit(6 + 8 / 12, "feet"),
  14205. default: true
  14206. },
  14207. {
  14208. name: "Macro",
  14209. height: math.unit(2600, "feet")
  14210. },
  14211. {
  14212. name: "Megamacro",
  14213. height: math.unit(450, "miles")
  14214. },
  14215. ]
  14216. ))
  14217. characterMakers.push(() => makeCharacter(
  14218. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14219. {
  14220. front: {
  14221. height: math.unit(6 + 1 / 12, "feet"),
  14222. weight: math.unit(250, "lb"),
  14223. name: "Front",
  14224. image: {
  14225. source: "./media/characters/tobo/front.svg",
  14226. extra: 608 / 586,
  14227. bottom: 0.023
  14228. }
  14229. },
  14230. back: {
  14231. height: math.unit(6 + 1 / 12, "feet"),
  14232. weight: math.unit(250, "lb"),
  14233. name: "Back",
  14234. image: {
  14235. source: "./media/characters/tobo/back.svg",
  14236. extra: 608 / 586
  14237. }
  14238. },
  14239. },
  14240. [
  14241. {
  14242. name: "Nano",
  14243. height: math.unit(2, "nm")
  14244. },
  14245. {
  14246. name: "Megamicro",
  14247. height: math.unit(0.1, "mm")
  14248. },
  14249. {
  14250. name: "Micro",
  14251. height: math.unit(1, "inch"),
  14252. default: true
  14253. },
  14254. {
  14255. name: "Human-sized",
  14256. height: math.unit(6 + 1 / 12, "feet")
  14257. },
  14258. {
  14259. name: "Macro",
  14260. height: math.unit(250, "feet")
  14261. },
  14262. {
  14263. name: "Megamacro",
  14264. height: math.unit(75, "miles")
  14265. },
  14266. {
  14267. name: "Texas-sized",
  14268. height: math.unit(750, "miles")
  14269. },
  14270. {
  14271. name: "Teramacro",
  14272. height: math.unit(50000, "miles")
  14273. },
  14274. ]
  14275. ))
  14276. characterMakers.push(() => makeCharacter(
  14277. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14278. {
  14279. front: {
  14280. height: math.unit(6, "feet"),
  14281. weight: math.unit(269, "lb"),
  14282. name: "Front",
  14283. image: {
  14284. source: "./media/characters/danny-kapowsky/front.svg",
  14285. extra: 766 / 736,
  14286. bottom: 0.044
  14287. }
  14288. },
  14289. back: {
  14290. height: math.unit(6, "feet"),
  14291. weight: math.unit(269, "lb"),
  14292. name: "Back",
  14293. image: {
  14294. source: "./media/characters/danny-kapowsky/back.svg",
  14295. extra: 797 / 760,
  14296. bottom: 0.025
  14297. }
  14298. },
  14299. },
  14300. [
  14301. {
  14302. name: "Macro",
  14303. height: math.unit(150, "feet"),
  14304. default: true
  14305. },
  14306. {
  14307. name: "Macro+",
  14308. height: math.unit(200, "feet")
  14309. },
  14310. {
  14311. name: "Macro++",
  14312. height: math.unit(300, "feet")
  14313. },
  14314. {
  14315. name: "Macro+++",
  14316. height: math.unit(400, "feet")
  14317. },
  14318. ]
  14319. ))
  14320. characterMakers.push(() => makeCharacter(
  14321. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14322. {
  14323. side: {
  14324. height: math.unit(6, "feet"),
  14325. weight: math.unit(170, "lb"),
  14326. name: "Side",
  14327. image: {
  14328. source: "./media/characters/finn/side.svg",
  14329. extra: 1953 / 1807,
  14330. bottom: 0.057
  14331. }
  14332. },
  14333. },
  14334. [
  14335. {
  14336. name: "Megamacro",
  14337. height: math.unit(14445, "feet"),
  14338. default: true
  14339. },
  14340. ]
  14341. ))
  14342. characterMakers.push(() => makeCharacter(
  14343. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14344. {
  14345. front: {
  14346. height: math.unit(5 + 6 / 12, "feet"),
  14347. weight: math.unit(125, "lb"),
  14348. name: "Front",
  14349. image: {
  14350. source: "./media/characters/roy/front.svg",
  14351. extra: 1,
  14352. bottom: 0.11
  14353. }
  14354. },
  14355. },
  14356. [
  14357. {
  14358. name: "Micro",
  14359. height: math.unit(3, "inches"),
  14360. default: true
  14361. },
  14362. {
  14363. name: "Normal",
  14364. height: math.unit(5 + 6 / 12, "feet")
  14365. },
  14366. {
  14367. name: "Lesser Macro",
  14368. height: math.unit(60, "feet")
  14369. },
  14370. {
  14371. name: "Greater Macro",
  14372. height: math.unit(120, "feet")
  14373. },
  14374. ]
  14375. ))
  14376. characterMakers.push(() => makeCharacter(
  14377. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14378. {
  14379. front: {
  14380. height: math.unit(6, "feet"),
  14381. weight: math.unit(100, "lb"),
  14382. name: "Front",
  14383. image: {
  14384. source: "./media/characters/aevsivs/front.svg",
  14385. extra: 1,
  14386. bottom: 0.03
  14387. }
  14388. },
  14389. back: {
  14390. height: math.unit(6, "feet"),
  14391. weight: math.unit(100, "lb"),
  14392. name: "Back",
  14393. image: {
  14394. source: "./media/characters/aevsivs/back.svg"
  14395. }
  14396. },
  14397. },
  14398. [
  14399. {
  14400. name: "Micro",
  14401. height: math.unit(2, "inches"),
  14402. default: true
  14403. },
  14404. {
  14405. name: "Normal",
  14406. height: math.unit(5, "feet")
  14407. },
  14408. ]
  14409. ))
  14410. characterMakers.push(() => makeCharacter(
  14411. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14412. {
  14413. front: {
  14414. height: math.unit(5 + 7 / 12, "feet"),
  14415. weight: math.unit(159, "lb"),
  14416. name: "Front",
  14417. image: {
  14418. source: "./media/characters/hildegard/front.svg",
  14419. extra: 289 / 269,
  14420. bottom: 7.63 / 297.8
  14421. }
  14422. },
  14423. back: {
  14424. height: math.unit(5 + 7 / 12, "feet"),
  14425. weight: math.unit(159, "lb"),
  14426. name: "Back",
  14427. image: {
  14428. source: "./media/characters/hildegard/back.svg",
  14429. extra: 280 / 260,
  14430. bottom: 2.3 / 282
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Normal",
  14437. height: math.unit(5 + 7 / 12, "feet"),
  14438. default: true
  14439. },
  14440. ]
  14441. ))
  14442. characterMakers.push(() => makeCharacter(
  14443. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14444. {
  14445. bernard: {
  14446. height: math.unit(2 + 7 / 12, "feet"),
  14447. weight: math.unit(66, "lb"),
  14448. name: "Bernard",
  14449. rename: true,
  14450. image: {
  14451. source: "./media/characters/bernard-wilder/bernard.svg",
  14452. extra: 192 / 128,
  14453. bottom: 0.05
  14454. }
  14455. },
  14456. wilder: {
  14457. height: math.unit(5 + 8 / 12, "feet"),
  14458. weight: math.unit(143, "lb"),
  14459. name: "Wilder",
  14460. rename: true,
  14461. image: {
  14462. source: "./media/characters/bernard-wilder/wilder.svg",
  14463. extra: 361 / 312,
  14464. bottom: 0.02
  14465. }
  14466. },
  14467. },
  14468. [
  14469. {
  14470. name: "Normal",
  14471. height: math.unit(2 + 7 / 12, "feet"),
  14472. default: true
  14473. },
  14474. ]
  14475. ))
  14476. characterMakers.push(() => makeCharacter(
  14477. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14478. {
  14479. anthro: {
  14480. height: math.unit(6 + 1 / 12, "feet"),
  14481. weight: math.unit(155, "lb"),
  14482. name: "Anthro",
  14483. image: {
  14484. source: "./media/characters/hearth/anthro.svg",
  14485. extra: 260 / 250,
  14486. bottom: 0.02
  14487. }
  14488. },
  14489. feral: {
  14490. height: math.unit(3.78, "feet"),
  14491. weight: math.unit(35, "kg"),
  14492. name: "Feral",
  14493. image: {
  14494. source: "./media/characters/hearth/feral.svg",
  14495. extra: 153 / 135,
  14496. bottom: 0.03
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Normal",
  14503. height: math.unit(6 + 1 / 12, "feet"),
  14504. default: true
  14505. },
  14506. ]
  14507. ))
  14508. characterMakers.push(() => makeCharacter(
  14509. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14510. {
  14511. front: {
  14512. height: math.unit(6, "feet"),
  14513. weight: math.unit(182, "lb"),
  14514. name: "Front",
  14515. image: {
  14516. source: "./media/characters/ingrid/front.svg",
  14517. extra: 294 / 268,
  14518. bottom: 0.027
  14519. }
  14520. },
  14521. },
  14522. [
  14523. {
  14524. name: "Normal",
  14525. height: math.unit(6, "feet"),
  14526. default: true
  14527. },
  14528. ]
  14529. ))
  14530. characterMakers.push(() => makeCharacter(
  14531. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14532. {
  14533. eevee: {
  14534. height: math.unit(2 + 10 / 12, "feet"),
  14535. weight: math.unit(86, "lb"),
  14536. name: "Malgam",
  14537. image: {
  14538. source: "./media/characters/malgam/eevee.svg",
  14539. extra: 218 / 180,
  14540. bottom: 0.2
  14541. }
  14542. },
  14543. sylveon: {
  14544. height: math.unit(4, "feet"),
  14545. weight: math.unit(101, "lb"),
  14546. name: "Future Malgam",
  14547. rename: true,
  14548. image: {
  14549. source: "./media/characters/malgam/sylveon.svg",
  14550. extra: 371 / 325,
  14551. bottom: 0.015
  14552. }
  14553. },
  14554. gigantamax: {
  14555. height: math.unit(50, "feet"),
  14556. name: "Gigantamax Malgam",
  14557. rename: true,
  14558. image: {
  14559. source: "./media/characters/malgam/gigantamax.svg"
  14560. }
  14561. },
  14562. },
  14563. [
  14564. {
  14565. name: "Normal",
  14566. height: math.unit(2 + 10 / 12, "feet"),
  14567. default: true
  14568. },
  14569. ]
  14570. ))
  14571. characterMakers.push(() => makeCharacter(
  14572. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14573. {
  14574. front: {
  14575. height: math.unit(5 + 11 / 12, "feet"),
  14576. weight: math.unit(188, "lb"),
  14577. name: "Front",
  14578. image: {
  14579. source: "./media/characters/fleur/front.svg",
  14580. extra: 309 / 283,
  14581. bottom: 0.007
  14582. }
  14583. },
  14584. },
  14585. [
  14586. {
  14587. name: "Normal",
  14588. height: math.unit(5 + 11 / 12, "feet"),
  14589. default: true
  14590. },
  14591. ]
  14592. ))
  14593. characterMakers.push(() => makeCharacter(
  14594. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14595. {
  14596. front: {
  14597. height: math.unit(5 + 4 / 12, "feet"),
  14598. weight: math.unit(122, "lb"),
  14599. name: "Front",
  14600. image: {
  14601. source: "./media/characters/jude/front.svg",
  14602. extra: 288 / 273,
  14603. bottom: 0.03
  14604. }
  14605. },
  14606. },
  14607. [
  14608. {
  14609. name: "Normal",
  14610. height: math.unit(5 + 4 / 12, "feet"),
  14611. default: true
  14612. },
  14613. ]
  14614. ))
  14615. characterMakers.push(() => makeCharacter(
  14616. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14617. {
  14618. front: {
  14619. height: math.unit(5 + 11 / 12, "feet"),
  14620. weight: math.unit(190, "lb"),
  14621. name: "Front",
  14622. image: {
  14623. source: "./media/characters/seara/front.svg",
  14624. extra: 1,
  14625. bottom: 0.05
  14626. }
  14627. },
  14628. },
  14629. [
  14630. {
  14631. name: "Normal",
  14632. height: math.unit(5 + 11 / 12, "feet"),
  14633. default: true
  14634. },
  14635. ]
  14636. ))
  14637. characterMakers.push(() => makeCharacter(
  14638. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14639. {
  14640. front: {
  14641. height: math.unit(16 + 5 / 12, "feet"),
  14642. weight: math.unit(524, "lb"),
  14643. name: "Front",
  14644. image: {
  14645. source: "./media/characters/caspian/front.svg",
  14646. extra: 1,
  14647. bottom: 0.04
  14648. }
  14649. },
  14650. },
  14651. [
  14652. {
  14653. name: "Normal",
  14654. height: math.unit(16 + 5 / 12, "feet"),
  14655. default: true
  14656. },
  14657. ]
  14658. ))
  14659. characterMakers.push(() => makeCharacter(
  14660. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14661. {
  14662. front: {
  14663. height: math.unit(5 + 7 / 12, "feet"),
  14664. weight: math.unit(170, "lb"),
  14665. name: "Front",
  14666. image: {
  14667. source: "./media/characters/mika/front.svg",
  14668. extra: 1,
  14669. bottom: 0.016
  14670. }
  14671. },
  14672. },
  14673. [
  14674. {
  14675. name: "Normal",
  14676. height: math.unit(5 + 7 / 12, "feet"),
  14677. default: true
  14678. },
  14679. ]
  14680. ))
  14681. characterMakers.push(() => makeCharacter(
  14682. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14683. {
  14684. front: {
  14685. height: math.unit(6 + 2 / 12, "feet"),
  14686. weight: math.unit(268, "lb"),
  14687. name: "Front",
  14688. image: {
  14689. source: "./media/characters/sol/front.svg",
  14690. extra: 247 / 231,
  14691. bottom: 0.05
  14692. }
  14693. },
  14694. },
  14695. [
  14696. {
  14697. name: "Normal",
  14698. height: math.unit(6 + 2 / 12, "feet"),
  14699. default: true
  14700. },
  14701. ]
  14702. ))
  14703. characterMakers.push(() => makeCharacter(
  14704. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14705. {
  14706. buizel: {
  14707. height: math.unit(2 + 5 / 12, "feet"),
  14708. weight: math.unit(87, "lb"),
  14709. name: "Buizel",
  14710. image: {
  14711. source: "./media/characters/umiko/buizel.svg",
  14712. extra: 172 / 157,
  14713. bottom: 0.01
  14714. }
  14715. },
  14716. floatzel: {
  14717. height: math.unit(5 + 9 / 12, "feet"),
  14718. weight: math.unit(250, "lb"),
  14719. name: "Floatzel",
  14720. image: {
  14721. source: "./media/characters/umiko/floatzel.svg",
  14722. extra: 262 / 248
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Normal",
  14729. height: math.unit(2 + 5 / 12, "feet"),
  14730. default: true
  14731. },
  14732. ]
  14733. ))
  14734. characterMakers.push(() => makeCharacter(
  14735. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14736. {
  14737. front: {
  14738. height: math.unit(6 + 2 / 12, "feet"),
  14739. weight: math.unit(146, "lb"),
  14740. name: "Front",
  14741. image: {
  14742. source: "./media/characters/iliac/front.svg",
  14743. extra: 389 / 365,
  14744. bottom: 0.035
  14745. }
  14746. },
  14747. },
  14748. [
  14749. {
  14750. name: "Normal",
  14751. height: math.unit(6 + 2 / 12, "feet"),
  14752. default: true
  14753. },
  14754. ]
  14755. ))
  14756. characterMakers.push(() => makeCharacter(
  14757. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14758. {
  14759. front: {
  14760. height: math.unit(6, "feet"),
  14761. weight: math.unit(170, "lb"),
  14762. name: "Front",
  14763. image: {
  14764. source: "./media/characters/topaz/front.svg",
  14765. extra: 317 / 303,
  14766. bottom: 0.055
  14767. }
  14768. },
  14769. },
  14770. [
  14771. {
  14772. name: "Normal",
  14773. height: math.unit(6, "feet"),
  14774. default: true
  14775. },
  14776. ]
  14777. ))
  14778. characterMakers.push(() => makeCharacter(
  14779. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14780. {
  14781. front: {
  14782. height: math.unit(5 + 11 / 12, "feet"),
  14783. weight: math.unit(144, "lb"),
  14784. name: "Front",
  14785. image: {
  14786. source: "./media/characters/gabriel/front.svg",
  14787. extra: 285 / 262,
  14788. bottom: 0.004
  14789. }
  14790. },
  14791. },
  14792. [
  14793. {
  14794. name: "Normal",
  14795. height: math.unit(5 + 11 / 12, "feet"),
  14796. default: true
  14797. },
  14798. ]
  14799. ))
  14800. characterMakers.push(() => makeCharacter(
  14801. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14802. {
  14803. side: {
  14804. height: math.unit(6 + 5 / 12, "feet"),
  14805. weight: math.unit(300, "lb"),
  14806. name: "Side",
  14807. image: {
  14808. source: "./media/characters/tempest-suicune/side.svg",
  14809. extra: 195 / 154,
  14810. bottom: 0.04
  14811. }
  14812. },
  14813. },
  14814. [
  14815. {
  14816. name: "Normal",
  14817. height: math.unit(6 + 5 / 12, "feet"),
  14818. default: true
  14819. },
  14820. ]
  14821. ))
  14822. characterMakers.push(() => makeCharacter(
  14823. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14824. {
  14825. front: {
  14826. height: math.unit(7 + 2 / 12, "feet"),
  14827. weight: math.unit(322, "lb"),
  14828. name: "Front",
  14829. image: {
  14830. source: "./media/characters/vulcan/front.svg",
  14831. extra: 154 / 147,
  14832. bottom: 0.04
  14833. }
  14834. },
  14835. },
  14836. [
  14837. {
  14838. name: "Normal",
  14839. height: math.unit(7 + 2 / 12, "feet"),
  14840. default: true
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(5 + 10 / 12, "feet"),
  14849. weight: math.unit(264, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/gault/front.svg",
  14853. extra: 161 / 140,
  14854. bottom: 0.028
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Normal",
  14861. height: math.unit(5 + 10 / 12, "feet"),
  14862. default: true
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(6, "feet"),
  14871. weight: math.unit(150, "lb"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/shard/front.svg",
  14875. extra: 273 / 238,
  14876. bottom: 0.02
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Normal",
  14883. height: math.unit(3 + 6 / 12, "feet"),
  14884. default: true
  14885. },
  14886. ]
  14887. ))
  14888. characterMakers.push(() => makeCharacter(
  14889. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14890. {
  14891. front: {
  14892. height: math.unit(5 + 11 / 12, "feet"),
  14893. weight: math.unit(146, "lb"),
  14894. name: "Front",
  14895. image: {
  14896. source: "./media/characters/ashe/front.svg",
  14897. extra: 400 / 373,
  14898. bottom: 0.01
  14899. }
  14900. },
  14901. },
  14902. [
  14903. {
  14904. name: "Normal",
  14905. height: math.unit(5 + 11 / 12, "feet"),
  14906. default: true
  14907. },
  14908. ]
  14909. ))
  14910. characterMakers.push(() => makeCharacter(
  14911. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14912. {
  14913. front: {
  14914. height: math.unit(5 + 5 / 12, "feet"),
  14915. weight: math.unit(135, "lb"),
  14916. name: "Front",
  14917. image: {
  14918. source: "./media/characters/beatrix/front.svg",
  14919. extra: 392 / 379,
  14920. bottom: 0.01
  14921. }
  14922. },
  14923. },
  14924. [
  14925. {
  14926. name: "Normal",
  14927. height: math.unit(6, "feet"),
  14928. default: true
  14929. },
  14930. ]
  14931. ))
  14932. characterMakers.push(() => makeCharacter(
  14933. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14934. {
  14935. front: {
  14936. height: math.unit(6, "feet"),
  14937. weight: math.unit(150, "lb"),
  14938. name: "Front",
  14939. image: {
  14940. source: "./media/characters/ignatius/front.svg",
  14941. extra: 245 / 222,
  14942. bottom: 0.01
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Normal",
  14949. height: math.unit(5 + 5 / 12, "feet"),
  14950. default: true
  14951. },
  14952. ]
  14953. ))
  14954. characterMakers.push(() => makeCharacter(
  14955. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14956. {
  14957. front: {
  14958. height: math.unit(6 + 2 / 12, "feet"),
  14959. weight: math.unit(138, "lb"),
  14960. name: "Front",
  14961. image: {
  14962. source: "./media/characters/mei-li/front.svg",
  14963. extra: 237 / 229,
  14964. bottom: 0.03
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Normal",
  14971. height: math.unit(6 + 2 / 12, "feet"),
  14972. default: true
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14978. {
  14979. front: {
  14980. height: math.unit(2 + 4 / 12, "feet"),
  14981. weight: math.unit(62, "lb"),
  14982. name: "Front",
  14983. image: {
  14984. source: "./media/characters/puru/front.svg",
  14985. extra: 206 / 149,
  14986. bottom: 0.06
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Normal",
  14993. height: math.unit(2 + 4 / 12, "feet"),
  14994. default: true
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15000. {
  15001. anthro: {
  15002. height: math.unit(5 + 8/12, "feet"),
  15003. weight: math.unit(200, "lb"),
  15004. energyNeed: math.unit(2000, "kcal"),
  15005. name: "Anthro",
  15006. image: {
  15007. source: "./media/characters/kee/anthro.svg",
  15008. extra: 3251/3184,
  15009. bottom: 250/3501
  15010. }
  15011. },
  15012. taur: {
  15013. height: math.unit(11, "feet"),
  15014. weight: math.unit(500, "lb"),
  15015. energyNeed: math.unit(5000, "kcal"),
  15016. name: "Taur",
  15017. image: {
  15018. source: "./media/characters/kee/taur.svg",
  15019. extra: 1362/1320,
  15020. bottom: 83/1445
  15021. }
  15022. },
  15023. },
  15024. [
  15025. {
  15026. name: "Normal",
  15027. height: math.unit(5 + 8/12, "feet"),
  15028. default: true
  15029. },
  15030. {
  15031. name: "Macro",
  15032. height: math.unit(35, "feet")
  15033. },
  15034. ]
  15035. ))
  15036. characterMakers.push(() => makeCharacter(
  15037. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15038. {
  15039. anthro: {
  15040. height: math.unit(7, "feet"),
  15041. weight: math.unit(190, "lb"),
  15042. name: "Anthro",
  15043. image: {
  15044. source: "./media/characters/cobalt-dracha/anthro.svg",
  15045. extra: 231 / 225,
  15046. bottom: 0.04
  15047. }
  15048. },
  15049. feral: {
  15050. height: math.unit(9 + 7 / 12, "feet"),
  15051. weight: math.unit(294, "lb"),
  15052. name: "Feral",
  15053. image: {
  15054. source: "./media/characters/cobalt-dracha/feral.svg",
  15055. extra: 692 / 633,
  15056. bottom: 0.05
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(7, "feet"),
  15064. default: true
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15070. {
  15071. fallen: {
  15072. height: math.unit(11 + 8 / 12, "feet"),
  15073. weight: math.unit(485, "lb"),
  15074. name: "Java (Fallen)",
  15075. rename: true,
  15076. image: {
  15077. source: "./media/characters/java/fallen.svg",
  15078. extra: 226 / 208,
  15079. bottom: 0.005
  15080. }
  15081. },
  15082. godkin: {
  15083. height: math.unit(10 + 6 / 12, "feet"),
  15084. weight: math.unit(328, "lb"),
  15085. name: "Java (Godkin)",
  15086. rename: true,
  15087. image: {
  15088. source: "./media/characters/java/godkin.svg",
  15089. extra: 270 / 262,
  15090. bottom: 0.02
  15091. }
  15092. },
  15093. },
  15094. [
  15095. {
  15096. name: "Normal",
  15097. height: math.unit(11 + 8 / 12, "feet"),
  15098. default: true
  15099. },
  15100. ]
  15101. ))
  15102. characterMakers.push(() => makeCharacter(
  15103. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15104. {
  15105. front: {
  15106. height: math.unit(7 + 8 / 12, "feet"),
  15107. weight: math.unit(320, "lb"),
  15108. name: "Front",
  15109. image: {
  15110. source: "./media/characters/skoll/front.svg",
  15111. extra: 232 / 220,
  15112. bottom: 0.02
  15113. }
  15114. },
  15115. },
  15116. [
  15117. {
  15118. name: "Normal",
  15119. height: math.unit(7 + 8 / 12, "feet"),
  15120. default: true
  15121. },
  15122. ]
  15123. ))
  15124. characterMakers.push(() => makeCharacter(
  15125. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15126. {
  15127. front: {
  15128. height: math.unit(5 + 9 / 12, "feet"),
  15129. weight: math.unit(170, "lb"),
  15130. name: "Front",
  15131. image: {
  15132. source: "./media/characters/purna/front.svg",
  15133. extra: 239 / 229,
  15134. bottom: 0.01
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Normal",
  15141. height: math.unit(5 + 9 / 12, "feet"),
  15142. default: true
  15143. },
  15144. ]
  15145. ))
  15146. characterMakers.push(() => makeCharacter(
  15147. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15148. {
  15149. front: {
  15150. height: math.unit(5 + 9 / 12, "feet"),
  15151. weight: math.unit(142, "lb"),
  15152. name: "Front",
  15153. image: {
  15154. source: "./media/characters/kuva/front.svg",
  15155. extra: 281 / 271,
  15156. bottom: 0.006
  15157. }
  15158. },
  15159. },
  15160. [
  15161. {
  15162. name: "Normal",
  15163. height: math.unit(5 + 9 / 12, "feet"),
  15164. default: true
  15165. },
  15166. ]
  15167. ))
  15168. characterMakers.push(() => makeCharacter(
  15169. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15170. {
  15171. anthro: {
  15172. height: math.unit(9 + 2 / 12, "feet"),
  15173. weight: math.unit(270, "lb"),
  15174. name: "Anthro",
  15175. image: {
  15176. source: "./media/characters/embra/anthro.svg",
  15177. extra: 200 / 187,
  15178. bottom: 0.02
  15179. }
  15180. },
  15181. feral: {
  15182. height: math.unit(18 + 8 / 12, "feet"),
  15183. weight: math.unit(576, "lb"),
  15184. name: "Feral",
  15185. image: {
  15186. source: "./media/characters/embra/feral.svg",
  15187. extra: 152 / 137,
  15188. bottom: 0.037
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Normal",
  15195. height: math.unit(9 + 2 / 12, "feet"),
  15196. default: true
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15202. {
  15203. anthro: {
  15204. height: math.unit(10 + 9 / 12, "feet"),
  15205. weight: math.unit(224, "lb"),
  15206. name: "Anthro",
  15207. image: {
  15208. source: "./media/characters/grottos/anthro.svg",
  15209. extra: 350 / 332,
  15210. bottom: 0.045
  15211. }
  15212. },
  15213. feral: {
  15214. height: math.unit(20 + 7 / 12, "feet"),
  15215. weight: math.unit(629, "lb"),
  15216. name: "Feral",
  15217. image: {
  15218. source: "./media/characters/grottos/feral.svg",
  15219. extra: 207 / 190,
  15220. bottom: 0.05
  15221. }
  15222. },
  15223. },
  15224. [
  15225. {
  15226. name: "Normal",
  15227. height: math.unit(10 + 9 / 12, "feet"),
  15228. default: true
  15229. },
  15230. ]
  15231. ))
  15232. characterMakers.push(() => makeCharacter(
  15233. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15234. {
  15235. anthro: {
  15236. height: math.unit(9 + 6 / 12, "feet"),
  15237. weight: math.unit(298, "lb"),
  15238. name: "Anthro",
  15239. image: {
  15240. source: "./media/characters/frifna/anthro.svg",
  15241. extra: 282 / 269,
  15242. bottom: 0.015
  15243. }
  15244. },
  15245. feral: {
  15246. height: math.unit(16 + 2 / 12, "feet"),
  15247. weight: math.unit(624, "lb"),
  15248. name: "Feral",
  15249. image: {
  15250. source: "./media/characters/frifna/feral.svg"
  15251. }
  15252. },
  15253. },
  15254. [
  15255. {
  15256. name: "Normal",
  15257. height: math.unit(9 + 6 / 12, "feet"),
  15258. default: true
  15259. },
  15260. ]
  15261. ))
  15262. characterMakers.push(() => makeCharacter(
  15263. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15264. {
  15265. front: {
  15266. height: math.unit(6 + 2 / 12, "feet"),
  15267. weight: math.unit(168, "lb"),
  15268. name: "Front",
  15269. image: {
  15270. source: "./media/characters/elise/front.svg",
  15271. extra: 276 / 271
  15272. }
  15273. },
  15274. },
  15275. [
  15276. {
  15277. name: "Normal",
  15278. height: math.unit(6 + 2 / 12, "feet"),
  15279. default: true
  15280. },
  15281. ]
  15282. ))
  15283. characterMakers.push(() => makeCharacter(
  15284. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15285. {
  15286. front: {
  15287. height: math.unit(5 + 10 / 12, "feet"),
  15288. weight: math.unit(210, "lb"),
  15289. name: "Front",
  15290. image: {
  15291. source: "./media/characters/glade/front.svg",
  15292. extra: 258 / 247,
  15293. bottom: 0.008
  15294. }
  15295. },
  15296. },
  15297. [
  15298. {
  15299. name: "Normal",
  15300. height: math.unit(5 + 10 / 12, "feet"),
  15301. default: true
  15302. },
  15303. ]
  15304. ))
  15305. characterMakers.push(() => makeCharacter(
  15306. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15307. {
  15308. front: {
  15309. height: math.unit(5 + 10 / 12, "feet"),
  15310. weight: math.unit(129, "lb"),
  15311. name: "Front",
  15312. image: {
  15313. source: "./media/characters/rina/front.svg",
  15314. extra: 266 / 255,
  15315. bottom: 0.005
  15316. }
  15317. },
  15318. },
  15319. [
  15320. {
  15321. name: "Normal",
  15322. height: math.unit(5 + 10 / 12, "feet"),
  15323. default: true
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15329. {
  15330. front: {
  15331. height: math.unit(6 + 1 / 12, "feet"),
  15332. weight: math.unit(192, "lb"),
  15333. name: "Front",
  15334. image: {
  15335. source: "./media/characters/veronica/front.svg",
  15336. extra: 319 / 309,
  15337. bottom: 0.005
  15338. }
  15339. },
  15340. },
  15341. [
  15342. {
  15343. name: "Normal",
  15344. height: math.unit(6 + 1 / 12, "feet"),
  15345. default: true
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(9 + 3 / 12, "feet"),
  15354. weight: math.unit(1100, "lb"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/braxton/front.svg",
  15358. extra: 1057 / 984,
  15359. bottom: 0.05
  15360. }
  15361. },
  15362. },
  15363. [
  15364. {
  15365. name: "Normal",
  15366. height: math.unit(9 + 3 / 12, "feet")
  15367. },
  15368. {
  15369. name: "Giant",
  15370. height: math.unit(300, "feet"),
  15371. default: true
  15372. },
  15373. {
  15374. name: "Macro",
  15375. height: math.unit(700, "feet")
  15376. },
  15377. {
  15378. name: "Megamacro",
  15379. height: math.unit(6000, "feet")
  15380. },
  15381. ]
  15382. ))
  15383. characterMakers.push(() => makeCharacter(
  15384. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15385. {
  15386. front: {
  15387. height: math.unit(6 + 7 / 12, "feet"),
  15388. weight: math.unit(150, "lb"),
  15389. name: "Front",
  15390. image: {
  15391. source: "./media/characters/blue-feyonics/front.svg",
  15392. extra: 1403 / 1306,
  15393. bottom: 0.047
  15394. }
  15395. },
  15396. },
  15397. [
  15398. {
  15399. name: "Normal",
  15400. height: math.unit(6 + 7 / 12, "feet"),
  15401. default: true
  15402. },
  15403. ]
  15404. ))
  15405. characterMakers.push(() => makeCharacter(
  15406. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15407. {
  15408. front: {
  15409. height: math.unit(1.8, "meters"),
  15410. weight: math.unit(60, "kg"),
  15411. name: "Front",
  15412. image: {
  15413. source: "./media/characters/maxwell/front.svg",
  15414. extra: 2060 / 1873
  15415. }
  15416. },
  15417. },
  15418. [
  15419. {
  15420. name: "Micro",
  15421. height: math.unit(1, "mm")
  15422. },
  15423. {
  15424. name: "Normal",
  15425. height: math.unit(1.8, "meter"),
  15426. default: true
  15427. },
  15428. {
  15429. name: "Macro",
  15430. height: math.unit(30, "meters")
  15431. },
  15432. {
  15433. name: "Megamacro",
  15434. height: math.unit(10, "km")
  15435. },
  15436. ]
  15437. ))
  15438. characterMakers.push(() => makeCharacter(
  15439. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15440. {
  15441. front: {
  15442. height: math.unit(6, "feet"),
  15443. weight: math.unit(150, "lb"),
  15444. name: "Front",
  15445. image: {
  15446. source: "./media/characters/jack/front.svg",
  15447. extra: 1754 / 1640,
  15448. bottom: 0.01
  15449. }
  15450. },
  15451. },
  15452. [
  15453. {
  15454. name: "Normal",
  15455. height: math.unit(80000, "feet"),
  15456. default: true
  15457. },
  15458. {
  15459. name: "Max size",
  15460. height: math.unit(10, "lightyears")
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15466. {
  15467. upright: {
  15468. height: math.unit(7, "feet"),
  15469. weight: math.unit(170, "lb"),
  15470. name: "Upright",
  15471. image: {
  15472. source: "./media/characters/cafat/upright.svg",
  15473. bottom: 0.01
  15474. }
  15475. },
  15476. uprightFull: {
  15477. height: math.unit(7, "feet"),
  15478. weight: math.unit(170, "lb"),
  15479. name: "Upright (Full)",
  15480. image: {
  15481. source: "./media/characters/cafat/upright-full.svg",
  15482. bottom: 0.01
  15483. }
  15484. },
  15485. side: {
  15486. height: math.unit(5, "feet"),
  15487. weight: math.unit(150, "lb"),
  15488. name: "Side",
  15489. image: {
  15490. source: "./media/characters/cafat/side.svg"
  15491. }
  15492. },
  15493. },
  15494. [
  15495. {
  15496. name: "Small",
  15497. height: math.unit(7, "feet"),
  15498. default: true
  15499. },
  15500. {
  15501. name: "Large",
  15502. height: math.unit(15.5, "feet")
  15503. },
  15504. ]
  15505. ))
  15506. characterMakers.push(() => makeCharacter(
  15507. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15508. {
  15509. front: {
  15510. height: math.unit(6, "feet"),
  15511. weight: math.unit(150, "lb"),
  15512. name: "Front",
  15513. image: {
  15514. source: "./media/characters/verin-raharra/front.svg",
  15515. extra: 5019 / 4835,
  15516. bottom: 0.023
  15517. }
  15518. },
  15519. },
  15520. [
  15521. {
  15522. name: "Normal",
  15523. height: math.unit(7 + 5 / 12, "feet"),
  15524. default: true
  15525. },
  15526. {
  15527. name: "Upsized",
  15528. height: math.unit(20, "feet")
  15529. },
  15530. ]
  15531. ))
  15532. characterMakers.push(() => makeCharacter(
  15533. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15534. {
  15535. front: {
  15536. height: math.unit(7, "feet"),
  15537. weight: math.unit(230, "lb"),
  15538. name: "Front",
  15539. image: {
  15540. source: "./media/characters/nakata/front.svg",
  15541. extra: 1.005,
  15542. bottom: 0.01
  15543. }
  15544. },
  15545. },
  15546. [
  15547. {
  15548. name: "Normal",
  15549. height: math.unit(7, "feet"),
  15550. default: true
  15551. },
  15552. {
  15553. name: "Big",
  15554. height: math.unit(14, "feet")
  15555. },
  15556. {
  15557. name: "Macro",
  15558. height: math.unit(400, "feet")
  15559. },
  15560. ]
  15561. ))
  15562. characterMakers.push(() => makeCharacter(
  15563. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15564. {
  15565. front: {
  15566. height: math.unit(4.91, "feet"),
  15567. weight: math.unit(100, "lb"),
  15568. name: "Front",
  15569. image: {
  15570. source: "./media/characters/lily/front.svg",
  15571. extra: 1585 / 1415,
  15572. bottom: 0.02
  15573. }
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Normal",
  15579. height: math.unit(4.91, "feet"),
  15580. default: true
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15586. {
  15587. laying: {
  15588. height: math.unit(4 + 4 / 12, "feet"),
  15589. weight: math.unit(600, "lb"),
  15590. name: "Laying",
  15591. image: {
  15592. source: "./media/characters/sheila/laying.svg",
  15593. extra: 1333 / 1265,
  15594. bottom: 0.16
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(4 + 4 / 12, "feet"),
  15602. default: true
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(6, "feet"),
  15611. weight: math.unit(190, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/sax/front.svg",
  15615. extra: 1187 / 973,
  15616. bottom: 0.042
  15617. }
  15618. },
  15619. },
  15620. [
  15621. {
  15622. name: "Micro",
  15623. height: math.unit(4, "inches"),
  15624. default: true
  15625. },
  15626. ]
  15627. ))
  15628. characterMakers.push(() => makeCharacter(
  15629. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15630. {
  15631. front: {
  15632. height: math.unit(6, "feet"),
  15633. weight: math.unit(150, "lb"),
  15634. name: "Front",
  15635. image: {
  15636. source: "./media/characters/pandora/front.svg",
  15637. extra: 2720 / 2556,
  15638. bottom: 0.015
  15639. }
  15640. },
  15641. back: {
  15642. height: math.unit(6, "feet"),
  15643. weight: math.unit(150, "lb"),
  15644. name: "Back",
  15645. image: {
  15646. source: "./media/characters/pandora/back.svg",
  15647. extra: 2720 / 2556,
  15648. bottom: 0.01
  15649. }
  15650. },
  15651. beans: {
  15652. height: math.unit(6 / 8, "feet"),
  15653. name: "Beans",
  15654. image: {
  15655. source: "./media/characters/pandora/beans.svg"
  15656. }
  15657. },
  15658. skirt: {
  15659. height: math.unit(6, "feet"),
  15660. weight: math.unit(150, "lb"),
  15661. name: "Skirt",
  15662. image: {
  15663. source: "./media/characters/pandora/skirt.svg",
  15664. extra: 1622 / 1525,
  15665. bottom: 0.015
  15666. }
  15667. },
  15668. hoodie: {
  15669. height: math.unit(6, "feet"),
  15670. weight: math.unit(150, "lb"),
  15671. name: "Hoodie",
  15672. image: {
  15673. source: "./media/characters/pandora/hoodie.svg",
  15674. extra: 1622 / 1525,
  15675. bottom: 0.015
  15676. }
  15677. },
  15678. casual: {
  15679. height: math.unit(6, "feet"),
  15680. weight: math.unit(150, "lb"),
  15681. name: "Casual",
  15682. image: {
  15683. source: "./media/characters/pandora/casual.svg",
  15684. extra: 1622 / 1525,
  15685. bottom: 0.015
  15686. }
  15687. },
  15688. },
  15689. [
  15690. {
  15691. name: "Normal",
  15692. height: math.unit(6, "feet")
  15693. },
  15694. {
  15695. name: "Big Steppy",
  15696. height: math.unit(1, "km"),
  15697. default: true
  15698. },
  15699. ]
  15700. ))
  15701. characterMakers.push(() => makeCharacter(
  15702. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15703. {
  15704. side: {
  15705. height: math.unit(10, "feet"),
  15706. weight: math.unit(800, "kg"),
  15707. name: "Side",
  15708. image: {
  15709. source: "./media/characters/venio-darcony/side.svg",
  15710. extra: 1373 / 1003,
  15711. bottom: 0.037
  15712. }
  15713. },
  15714. front: {
  15715. height: math.unit(19, "feet"),
  15716. weight: math.unit(800, "kg"),
  15717. name: "Front",
  15718. image: {
  15719. source: "./media/characters/venio-darcony/front.svg"
  15720. }
  15721. },
  15722. back: {
  15723. height: math.unit(19, "feet"),
  15724. weight: math.unit(800, "kg"),
  15725. name: "Back",
  15726. image: {
  15727. source: "./media/characters/venio-darcony/back.svg"
  15728. }
  15729. },
  15730. sideNsfw: {
  15731. height: math.unit(10, "feet"),
  15732. weight: math.unit(800, "kg"),
  15733. name: "Side (NSFW)",
  15734. image: {
  15735. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15736. extra: 1373 / 1003,
  15737. bottom: 0.037
  15738. }
  15739. },
  15740. frontNsfw: {
  15741. height: math.unit(19, "feet"),
  15742. weight: math.unit(800, "kg"),
  15743. name: "Front (NSFW)",
  15744. image: {
  15745. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15746. }
  15747. },
  15748. backNsfw: {
  15749. height: math.unit(19, "feet"),
  15750. weight: math.unit(800, "kg"),
  15751. name: "Back (NSFW)",
  15752. image: {
  15753. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15754. }
  15755. },
  15756. sideArmored: {
  15757. height: math.unit(10, "feet"),
  15758. weight: math.unit(800, "kg"),
  15759. name: "Side (Armored)",
  15760. image: {
  15761. source: "./media/characters/venio-darcony/side-armored.svg",
  15762. extra: 1373 / 1003,
  15763. bottom: 0.037
  15764. }
  15765. },
  15766. frontArmored: {
  15767. height: math.unit(19, "feet"),
  15768. weight: math.unit(900, "kg"),
  15769. name: "Front (Armored)",
  15770. image: {
  15771. source: "./media/characters/venio-darcony/front-armored.svg"
  15772. }
  15773. },
  15774. backArmored: {
  15775. height: math.unit(19, "feet"),
  15776. weight: math.unit(900, "kg"),
  15777. name: "Back (Armored)",
  15778. image: {
  15779. source: "./media/characters/venio-darcony/back-armored.svg"
  15780. }
  15781. },
  15782. sword: {
  15783. height: math.unit(10, "feet"),
  15784. weight: math.unit(50, "lb"),
  15785. name: "Sword",
  15786. image: {
  15787. source: "./media/characters/venio-darcony/sword.svg"
  15788. }
  15789. },
  15790. },
  15791. [
  15792. {
  15793. name: "Normal",
  15794. height: math.unit(10, "feet")
  15795. },
  15796. {
  15797. name: "Macro",
  15798. height: math.unit(130, "feet"),
  15799. default: true
  15800. },
  15801. {
  15802. name: "Macro+",
  15803. height: math.unit(240, "feet")
  15804. },
  15805. ]
  15806. ))
  15807. characterMakers.push(() => makeCharacter(
  15808. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15809. {
  15810. front: {
  15811. height: math.unit(6, "feet"),
  15812. weight: math.unit(150, "lb"),
  15813. name: "Front",
  15814. image: {
  15815. source: "./media/characters/veski/front.svg",
  15816. extra: 1299 / 1225,
  15817. bottom: 0.04
  15818. }
  15819. },
  15820. back: {
  15821. height: math.unit(6, "feet"),
  15822. weight: math.unit(150, "lb"),
  15823. name: "Back",
  15824. image: {
  15825. source: "./media/characters/veski/back.svg",
  15826. extra: 1299 / 1225,
  15827. bottom: 0.008
  15828. }
  15829. },
  15830. maw: {
  15831. height: math.unit(1.5 * 1.21, "feet"),
  15832. name: "Maw",
  15833. image: {
  15834. source: "./media/characters/veski/maw.svg"
  15835. }
  15836. },
  15837. },
  15838. [
  15839. {
  15840. name: "Macro",
  15841. height: math.unit(2, "km"),
  15842. default: true
  15843. },
  15844. ]
  15845. ))
  15846. characterMakers.push(() => makeCharacter(
  15847. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15848. {
  15849. front: {
  15850. height: math.unit(5 + 7 / 12, "feet"),
  15851. name: "Front",
  15852. image: {
  15853. source: "./media/characters/isabelle/front.svg",
  15854. extra: 2130 / 1976,
  15855. bottom: 0.05
  15856. }
  15857. },
  15858. },
  15859. [
  15860. {
  15861. name: "Supermicro",
  15862. height: math.unit(10, "micrometers")
  15863. },
  15864. {
  15865. name: "Micro",
  15866. height: math.unit(1, "inch")
  15867. },
  15868. {
  15869. name: "Tiny",
  15870. height: math.unit(5, "inches")
  15871. },
  15872. {
  15873. name: "Standard",
  15874. height: math.unit(5 + 7 / 12, "inches")
  15875. },
  15876. {
  15877. name: "Macro",
  15878. height: math.unit(80, "meters"),
  15879. default: true
  15880. },
  15881. {
  15882. name: "Megamacro",
  15883. height: math.unit(250, "meters")
  15884. },
  15885. {
  15886. name: "Gigamacro",
  15887. height: math.unit(5, "km")
  15888. },
  15889. {
  15890. name: "Cosmic",
  15891. height: math.unit(2.5e6, "miles")
  15892. },
  15893. ]
  15894. ))
  15895. characterMakers.push(() => makeCharacter(
  15896. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15897. {
  15898. front: {
  15899. height: math.unit(6, "feet"),
  15900. weight: math.unit(150, "lb"),
  15901. name: "Front",
  15902. image: {
  15903. source: "./media/characters/hanzo/front.svg",
  15904. extra: 374 / 344,
  15905. bottom: 0.02
  15906. }
  15907. },
  15908. },
  15909. [
  15910. {
  15911. name: "Normal",
  15912. height: math.unit(8, "feet"),
  15913. default: true
  15914. },
  15915. ]
  15916. ))
  15917. characterMakers.push(() => makeCharacter(
  15918. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15919. {
  15920. front: {
  15921. height: math.unit(7, "feet"),
  15922. weight: math.unit(130, "lb"),
  15923. name: "Front",
  15924. image: {
  15925. source: "./media/characters/anna/front.svg",
  15926. extra: 169 / 145,
  15927. bottom: 0.06
  15928. }
  15929. },
  15930. full: {
  15931. height: math.unit(4.96, "feet"),
  15932. weight: math.unit(220, "lb"),
  15933. name: "Full",
  15934. image: {
  15935. source: "./media/characters/anna/full.svg",
  15936. extra: 138 / 114,
  15937. bottom: 0.15
  15938. }
  15939. },
  15940. tongue: {
  15941. height: math.unit(2.53, "feet"),
  15942. name: "Tongue",
  15943. image: {
  15944. source: "./media/characters/anna/tongue.svg"
  15945. }
  15946. },
  15947. },
  15948. [
  15949. {
  15950. name: "Normal",
  15951. height: math.unit(7, "feet"),
  15952. default: true
  15953. },
  15954. ]
  15955. ))
  15956. characterMakers.push(() => makeCharacter(
  15957. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15958. {
  15959. front: {
  15960. height: math.unit(7, "feet"),
  15961. weight: math.unit(150, "lb"),
  15962. name: "Front",
  15963. image: {
  15964. source: "./media/characters/ian-corvid/front.svg",
  15965. extra: 150 / 142,
  15966. bottom: 0.02
  15967. }
  15968. },
  15969. back: {
  15970. height: math.unit(7, "feet"),
  15971. weight: math.unit(150, "lb"),
  15972. name: "Back",
  15973. image: {
  15974. source: "./media/characters/ian-corvid/back.svg",
  15975. extra: 150 / 143,
  15976. bottom: 0.01
  15977. }
  15978. },
  15979. stomping: {
  15980. height: math.unit(7, "feet"),
  15981. weight: math.unit(150, "lb"),
  15982. name: "Stomping",
  15983. image: {
  15984. source: "./media/characters/ian-corvid/stomping.svg",
  15985. extra: 76 / 72
  15986. }
  15987. },
  15988. sitting: {
  15989. height: math.unit(7 / 1.8, "feet"),
  15990. weight: math.unit(150, "lb"),
  15991. name: "Sitting",
  15992. image: {
  15993. source: "./media/characters/ian-corvid/sitting.svg",
  15994. extra: 1400 / 1269,
  15995. bottom: 0.15
  15996. }
  15997. },
  15998. },
  15999. [
  16000. {
  16001. name: "Tiny Microw",
  16002. height: math.unit(1, "inch")
  16003. },
  16004. {
  16005. name: "Microw",
  16006. height: math.unit(6, "inches")
  16007. },
  16008. {
  16009. name: "Crow",
  16010. height: math.unit(7 + 1 / 12, "feet"),
  16011. default: true
  16012. },
  16013. {
  16014. name: "Macrow",
  16015. height: math.unit(176, "feet")
  16016. },
  16017. ]
  16018. ))
  16019. characterMakers.push(() => makeCharacter(
  16020. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16021. {
  16022. front: {
  16023. height: math.unit(5 + 7 / 12, "feet"),
  16024. weight: math.unit(147, "lb"),
  16025. name: "Front",
  16026. image: {
  16027. source: "./media/characters/natalie-kellon/front.svg",
  16028. extra: 1214 / 1141,
  16029. bottom: 0.02
  16030. }
  16031. },
  16032. },
  16033. [
  16034. {
  16035. name: "Micro",
  16036. height: math.unit(1 / 16, "inch")
  16037. },
  16038. {
  16039. name: "Tiny",
  16040. height: math.unit(4, "inches")
  16041. },
  16042. {
  16043. name: "Normal",
  16044. height: math.unit(5 + 7 / 12, "feet"),
  16045. default: true
  16046. },
  16047. {
  16048. name: "Amazon",
  16049. height: math.unit(12, "feet")
  16050. },
  16051. {
  16052. name: "Giantess",
  16053. height: math.unit(160, "meters")
  16054. },
  16055. {
  16056. name: "Titaness",
  16057. height: math.unit(800, "meters")
  16058. },
  16059. ]
  16060. ))
  16061. characterMakers.push(() => makeCharacter(
  16062. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16063. {
  16064. front: {
  16065. height: math.unit(6, "feet"),
  16066. weight: math.unit(150, "lb"),
  16067. name: "Front",
  16068. image: {
  16069. source: "./media/characters/alluria/front.svg",
  16070. extra: 806 / 738,
  16071. bottom: 0.01
  16072. }
  16073. },
  16074. side: {
  16075. height: math.unit(6, "feet"),
  16076. weight: math.unit(150, "lb"),
  16077. name: "Side",
  16078. image: {
  16079. source: "./media/characters/alluria/side.svg",
  16080. extra: 800 / 750,
  16081. }
  16082. },
  16083. back: {
  16084. height: math.unit(6, "feet"),
  16085. weight: math.unit(150, "lb"),
  16086. name: "Back",
  16087. image: {
  16088. source: "./media/characters/alluria/back.svg",
  16089. extra: 806 / 738,
  16090. }
  16091. },
  16092. frontMaid: {
  16093. height: math.unit(6, "feet"),
  16094. weight: math.unit(150, "lb"),
  16095. name: "Front (Maid)",
  16096. image: {
  16097. source: "./media/characters/alluria/front-maid.svg",
  16098. extra: 806 / 738,
  16099. bottom: 0.01
  16100. }
  16101. },
  16102. sideMaid: {
  16103. height: math.unit(6, "feet"),
  16104. weight: math.unit(150, "lb"),
  16105. name: "Side (Maid)",
  16106. image: {
  16107. source: "./media/characters/alluria/side-maid.svg",
  16108. extra: 800 / 750,
  16109. bottom: 0.005
  16110. }
  16111. },
  16112. backMaid: {
  16113. height: math.unit(6, "feet"),
  16114. weight: math.unit(150, "lb"),
  16115. name: "Back (Maid)",
  16116. image: {
  16117. source: "./media/characters/alluria/back-maid.svg",
  16118. extra: 806 / 738,
  16119. }
  16120. },
  16121. },
  16122. [
  16123. {
  16124. name: "Micro",
  16125. height: math.unit(6, "inches"),
  16126. default: true
  16127. },
  16128. ]
  16129. ))
  16130. characterMakers.push(() => makeCharacter(
  16131. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16132. {
  16133. front: {
  16134. height: math.unit(6, "feet"),
  16135. weight: math.unit(150, "lb"),
  16136. name: "Front",
  16137. image: {
  16138. source: "./media/characters/kyle/front.svg",
  16139. extra: 1069 / 962,
  16140. bottom: 77.228 / 1727.45
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Macro",
  16147. height: math.unit(150, "feet"),
  16148. default: true
  16149. },
  16150. ]
  16151. ))
  16152. characterMakers.push(() => makeCharacter(
  16153. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16154. {
  16155. front: {
  16156. height: math.unit(6, "feet"),
  16157. weight: math.unit(300, "lb"),
  16158. name: "Front",
  16159. image: {
  16160. source: "./media/characters/duncan/front.svg",
  16161. extra: 1650 / 1482,
  16162. bottom: 0.05
  16163. }
  16164. },
  16165. },
  16166. [
  16167. {
  16168. name: "Macro",
  16169. height: math.unit(100, "feet"),
  16170. default: true
  16171. },
  16172. ]
  16173. ))
  16174. characterMakers.push(() => makeCharacter(
  16175. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16176. {
  16177. front: {
  16178. height: math.unit(5 + 4 / 12, "feet"),
  16179. weight: math.unit(220, "lb"),
  16180. name: "Front",
  16181. image: {
  16182. source: "./media/characters/memory/front.svg",
  16183. extra: 3641 / 3545,
  16184. bottom: 0.03
  16185. }
  16186. },
  16187. back: {
  16188. height: math.unit(5 + 4 / 12, "feet"),
  16189. weight: math.unit(220, "lb"),
  16190. name: "Back",
  16191. image: {
  16192. source: "./media/characters/memory/back.svg",
  16193. extra: 3641 / 3545,
  16194. bottom: 0.025
  16195. }
  16196. },
  16197. frontSkirt: {
  16198. height: math.unit(5 + 4 / 12, "feet"),
  16199. weight: math.unit(220, "lb"),
  16200. name: "Front (Skirt)",
  16201. image: {
  16202. source: "./media/characters/memory/front-skirt.svg",
  16203. extra: 3641 / 3545,
  16204. bottom: 0.03
  16205. }
  16206. },
  16207. frontDress: {
  16208. height: math.unit(5 + 4 / 12, "feet"),
  16209. weight: math.unit(220, "lb"),
  16210. name: "Front (Dress)",
  16211. image: {
  16212. source: "./media/characters/memory/front-dress.svg",
  16213. extra: 3641 / 3545,
  16214. bottom: 0.03
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Micro",
  16221. height: math.unit(6, "inches"),
  16222. default: true
  16223. },
  16224. {
  16225. name: "Normal",
  16226. height: math.unit(5 + 4 / 12, "feet")
  16227. },
  16228. ]
  16229. ))
  16230. characterMakers.push(() => makeCharacter(
  16231. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16232. {
  16233. front: {
  16234. height: math.unit(4 + 11 / 12, "feet"),
  16235. weight: math.unit(100, "lb"),
  16236. name: "Front",
  16237. image: {
  16238. source: "./media/characters/luno/front.svg",
  16239. extra: 1535 / 1487,
  16240. bottom: 0.03
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Micro",
  16247. height: math.unit(3, "inches")
  16248. },
  16249. {
  16250. name: "Normal",
  16251. height: math.unit(4 + 11 / 12, "feet"),
  16252. default: true
  16253. },
  16254. {
  16255. name: "Macro",
  16256. height: math.unit(300, "feet")
  16257. },
  16258. {
  16259. name: "Megamacro",
  16260. height: math.unit(700, "miles")
  16261. },
  16262. ]
  16263. ))
  16264. characterMakers.push(() => makeCharacter(
  16265. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16266. {
  16267. front: {
  16268. height: math.unit(6 + 2 / 12, "feet"),
  16269. weight: math.unit(170, "lb"),
  16270. name: "Front",
  16271. image: {
  16272. source: "./media/characters/jamesy/front.svg",
  16273. extra: 440 / 382,
  16274. bottom: 0.005
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Micro",
  16281. height: math.unit(3, "inches")
  16282. },
  16283. {
  16284. name: "Normal",
  16285. height: math.unit(6 + 2 / 12, "feet"),
  16286. default: true
  16287. },
  16288. {
  16289. name: "Macro",
  16290. height: math.unit(300, "feet")
  16291. },
  16292. {
  16293. name: "Megamacro",
  16294. height: math.unit(700, "miles")
  16295. },
  16296. ]
  16297. ))
  16298. characterMakers.push(() => makeCharacter(
  16299. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16300. {
  16301. front: {
  16302. height: math.unit(6, "feet"),
  16303. weight: math.unit(160, "lb"),
  16304. name: "Front",
  16305. image: {
  16306. source: "./media/characters/mark/front.svg",
  16307. extra: 3300 / 3100,
  16308. bottom: 136.42 / 3440.47
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Macro",
  16315. height: math.unit(120, "meters")
  16316. },
  16317. {
  16318. name: "Bigger Macro",
  16319. height: math.unit(350, "meters")
  16320. },
  16321. {
  16322. name: "Megamacro",
  16323. height: math.unit(8, "km"),
  16324. default: true
  16325. },
  16326. {
  16327. name: "Continental",
  16328. height: math.unit(4550, "km")
  16329. },
  16330. {
  16331. name: "Planetary",
  16332. height: math.unit(65000, "km")
  16333. },
  16334. ]
  16335. ))
  16336. characterMakers.push(() => makeCharacter(
  16337. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16338. {
  16339. front: {
  16340. height: math.unit(6, "feet"),
  16341. weight: math.unit(400, "lb"),
  16342. name: "Front",
  16343. image: {
  16344. source: "./media/characters/mac/front.svg",
  16345. extra: 1048 / 987.7,
  16346. bottom: 60 / 1107.6,
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Macro",
  16353. height: math.unit(500, "feet"),
  16354. default: true
  16355. },
  16356. ]
  16357. ))
  16358. characterMakers.push(() => makeCharacter(
  16359. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16360. {
  16361. front: {
  16362. height: math.unit(5 + 2 / 12, "feet"),
  16363. weight: math.unit(190, "lb"),
  16364. name: "Front",
  16365. image: {
  16366. source: "./media/characters/bari/front.svg",
  16367. extra: 3156 / 2880,
  16368. bottom: 0.03
  16369. }
  16370. },
  16371. back: {
  16372. height: math.unit(5 + 2 / 12, "feet"),
  16373. weight: math.unit(190, "lb"),
  16374. name: "Back",
  16375. image: {
  16376. source: "./media/characters/bari/back.svg",
  16377. extra: 3260 / 2834,
  16378. bottom: 0.025
  16379. }
  16380. },
  16381. frontPlush: {
  16382. height: math.unit(5 + 2 / 12, "feet"),
  16383. weight: math.unit(190, "lb"),
  16384. name: "Front (Plush)",
  16385. image: {
  16386. source: "./media/characters/bari/front-plush.svg",
  16387. extra: 1112 / 1061,
  16388. bottom: 0.002
  16389. }
  16390. },
  16391. },
  16392. [
  16393. {
  16394. name: "Micro",
  16395. height: math.unit(3, "inches")
  16396. },
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(5 + 2 / 12, "feet"),
  16400. default: true
  16401. },
  16402. {
  16403. name: "Macro",
  16404. height: math.unit(20, "feet")
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16410. {
  16411. front: {
  16412. height: math.unit(6 + 1 / 12, "feet"),
  16413. weight: math.unit(275, "lb"),
  16414. name: "Front",
  16415. image: {
  16416. source: "./media/characters/hunter-misha-raven/front.svg"
  16417. }
  16418. },
  16419. },
  16420. [
  16421. {
  16422. name: "Mortal",
  16423. height: math.unit(6 + 1 / 12, "feet")
  16424. },
  16425. {
  16426. name: "Divine",
  16427. height: math.unit(1.12134e34, "parsecs"),
  16428. default: true
  16429. },
  16430. ]
  16431. ))
  16432. characterMakers.push(() => makeCharacter(
  16433. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16434. {
  16435. front: {
  16436. height: math.unit(6 + 3 / 12, "feet"),
  16437. weight: math.unit(220, "lb"),
  16438. name: "Front",
  16439. image: {
  16440. source: "./media/characters/max-calore/front.svg",
  16441. extra: 1700 / 1648,
  16442. bottom: 0.01
  16443. }
  16444. },
  16445. back: {
  16446. height: math.unit(6 + 3 / 12, "feet"),
  16447. weight: math.unit(220, "lb"),
  16448. name: "Back",
  16449. image: {
  16450. source: "./media/characters/max-calore/back.svg",
  16451. extra: 1700 / 1648,
  16452. bottom: 0.01
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Normal",
  16459. height: math.unit(6 + 3 / 12, "feet"),
  16460. default: true
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16466. {
  16467. side: {
  16468. height: math.unit(2 + 8 / 12, "feet"),
  16469. weight: math.unit(99, "lb"),
  16470. name: "Side",
  16471. image: {
  16472. source: "./media/characters/aspen/side.svg",
  16473. extra: 152 / 138,
  16474. bottom: 0.032
  16475. }
  16476. },
  16477. },
  16478. [
  16479. {
  16480. name: "Normal",
  16481. height: math.unit(2 + 8 / 12, "feet"),
  16482. default: true
  16483. },
  16484. ]
  16485. ))
  16486. characterMakers.push(() => makeCharacter(
  16487. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16488. {
  16489. side: {
  16490. height: math.unit(3 + 2 / 12, "feet"),
  16491. weight: math.unit(224, "lb"),
  16492. name: "Side",
  16493. image: {
  16494. source: "./media/characters/sheila-feral-wolf/side.svg",
  16495. extra: 179 / 166,
  16496. bottom: 0.03
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Normal",
  16503. height: math.unit(3 + 2 / 12, "feet"),
  16504. default: true
  16505. },
  16506. ]
  16507. ))
  16508. characterMakers.push(() => makeCharacter(
  16509. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16510. {
  16511. side: {
  16512. height: math.unit(1 + 9 / 12, "feet"),
  16513. weight: math.unit(38, "lb"),
  16514. name: "Side",
  16515. image: {
  16516. source: "./media/characters/michelle/side.svg",
  16517. extra: 147 / 136.7,
  16518. bottom: 0.03
  16519. }
  16520. },
  16521. },
  16522. [
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(1 + 9 / 12, "feet"),
  16526. default: true
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16532. {
  16533. front: {
  16534. height: math.unit(1 + 1 / 12, "feet"),
  16535. weight: math.unit(18, "lb"),
  16536. name: "Front",
  16537. image: {
  16538. source: "./media/characters/nino/front.svg"
  16539. }
  16540. },
  16541. },
  16542. [
  16543. {
  16544. name: "Normal",
  16545. height: math.unit(1 + 1 / 12, "feet"),
  16546. default: true
  16547. },
  16548. ]
  16549. ))
  16550. characterMakers.push(() => makeCharacter(
  16551. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16552. {
  16553. front: {
  16554. height: math.unit(1, "feet"),
  16555. weight: math.unit(16, "lb"),
  16556. name: "Front",
  16557. image: {
  16558. source: "./media/characters/viola/front.svg"
  16559. }
  16560. },
  16561. },
  16562. [
  16563. {
  16564. name: "Normal",
  16565. height: math.unit(1, "feet"),
  16566. default: true
  16567. },
  16568. ]
  16569. ))
  16570. characterMakers.push(() => makeCharacter(
  16571. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16572. {
  16573. front: {
  16574. height: math.unit(6 + 5 / 12, "feet"),
  16575. weight: math.unit(580, "lb"),
  16576. name: "Front",
  16577. image: {
  16578. source: "./media/characters/atlas/front.svg",
  16579. extra: 298.5 / 290,
  16580. bottom: 0.015
  16581. }
  16582. },
  16583. },
  16584. [
  16585. {
  16586. name: "Normal",
  16587. height: math.unit(6 + 5 / 12, "feet"),
  16588. default: true
  16589. },
  16590. ]
  16591. ))
  16592. characterMakers.push(() => makeCharacter(
  16593. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16594. {
  16595. side: {
  16596. height: math.unit(1 + 10 / 12, "feet"),
  16597. weight: math.unit(25, "lb"),
  16598. name: "Side",
  16599. image: {
  16600. source: "./media/characters/davy/side.svg",
  16601. extra: 200 / 170,
  16602. bottom: 0.01
  16603. }
  16604. },
  16605. },
  16606. [
  16607. {
  16608. name: "Normal",
  16609. height: math.unit(1 + 10 / 12, "feet"),
  16610. default: true
  16611. },
  16612. ]
  16613. ))
  16614. characterMakers.push(() => makeCharacter(
  16615. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16616. {
  16617. side: {
  16618. height: math.unit(4 + 8 / 12, "feet"),
  16619. weight: math.unit(166, "lb"),
  16620. name: "Side",
  16621. image: {
  16622. source: "./media/characters/fiona/side.svg",
  16623. extra: 232 / 220,
  16624. bottom: 0.03
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Normal",
  16631. height: math.unit(4 + 8 / 12, "feet"),
  16632. default: true
  16633. },
  16634. ]
  16635. ))
  16636. characterMakers.push(() => makeCharacter(
  16637. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16638. {
  16639. front: {
  16640. height: math.unit(2, "feet"),
  16641. weight: math.unit(62, "lb"),
  16642. name: "Front",
  16643. image: {
  16644. source: "./media/characters/lyla/front.svg",
  16645. bottom: 0.1
  16646. }
  16647. },
  16648. },
  16649. [
  16650. {
  16651. name: "Normal",
  16652. height: math.unit(2, "feet"),
  16653. default: true
  16654. },
  16655. ]
  16656. ))
  16657. characterMakers.push(() => makeCharacter(
  16658. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16659. {
  16660. side: {
  16661. height: math.unit(1.8, "feet"),
  16662. weight: math.unit(44, "lb"),
  16663. name: "Side",
  16664. image: {
  16665. source: "./media/characters/perseus/side.svg",
  16666. bottom: 0.21
  16667. }
  16668. },
  16669. },
  16670. [
  16671. {
  16672. name: "Normal",
  16673. height: math.unit(1.8, "feet"),
  16674. default: true
  16675. },
  16676. ]
  16677. ))
  16678. characterMakers.push(() => makeCharacter(
  16679. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16680. {
  16681. side: {
  16682. height: math.unit(4 + 2 / 12, "feet"),
  16683. weight: math.unit(20, "lb"),
  16684. name: "Side",
  16685. image: {
  16686. source: "./media/characters/remus/side.svg"
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(4 + 2 / 12, "feet"),
  16694. default: true
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16700. {
  16701. front: {
  16702. height: math.unit(4 + 11 / 12, "feet"),
  16703. weight: math.unit(114, "lb"),
  16704. name: "Front",
  16705. image: {
  16706. source: "./media/characters/raf/front.svg",
  16707. bottom: 20.5 / 1863
  16708. }
  16709. },
  16710. side: {
  16711. height: math.unit(4 + 11 / 12, "feet"),
  16712. weight: math.unit(114, "lb"),
  16713. name: "Side",
  16714. image: {
  16715. source: "./media/characters/raf/side.svg",
  16716. bottom: 22 / 1822
  16717. }
  16718. },
  16719. },
  16720. [
  16721. {
  16722. name: "Micro",
  16723. height: math.unit(2, "inches")
  16724. },
  16725. {
  16726. name: "Normal",
  16727. height: math.unit(4 + 11 / 12, "feet"),
  16728. default: true
  16729. },
  16730. {
  16731. name: "Macro",
  16732. height: math.unit(70, "feet")
  16733. },
  16734. ]
  16735. ))
  16736. characterMakers.push(() => makeCharacter(
  16737. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16738. {
  16739. front: {
  16740. height: math.unit(1.5, "meters"),
  16741. weight: math.unit(68, "kg"),
  16742. name: "Front",
  16743. image: {
  16744. source: "./media/characters/liam-einarr/front.svg",
  16745. extra: 2822 / 2666
  16746. }
  16747. },
  16748. back: {
  16749. height: math.unit(1.5, "meters"),
  16750. weight: math.unit(68, "kg"),
  16751. name: "Back",
  16752. image: {
  16753. source: "./media/characters/liam-einarr/back.svg",
  16754. extra: 2822 / 2666,
  16755. bottom: 0.015
  16756. }
  16757. },
  16758. },
  16759. [
  16760. {
  16761. name: "Normal",
  16762. height: math.unit(1.5, "meters"),
  16763. default: true
  16764. },
  16765. {
  16766. name: "Macro",
  16767. height: math.unit(150, "meters")
  16768. },
  16769. {
  16770. name: "Megamacro",
  16771. height: math.unit(35, "km")
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16777. {
  16778. front: {
  16779. height: math.unit(6, "feet"),
  16780. weight: math.unit(75, "kg"),
  16781. name: "Front",
  16782. image: {
  16783. source: "./media/characters/linda/front.svg",
  16784. extra: 930 / 874,
  16785. bottom: 0.004
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Normal",
  16792. height: math.unit(6, "feet"),
  16793. default: true
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16799. {
  16800. front: {
  16801. height: math.unit(6 + 8 / 12, "feet"),
  16802. weight: math.unit(220, "lb"),
  16803. name: "Front",
  16804. image: {
  16805. source: "./media/characters/caylex/front.svg",
  16806. extra: 821 / 772,
  16807. bottom: 0.07
  16808. }
  16809. },
  16810. back: {
  16811. height: math.unit(6 + 8 / 12, "feet"),
  16812. weight: math.unit(220, "lb"),
  16813. name: "Back",
  16814. image: {
  16815. source: "./media/characters/caylex/back.svg",
  16816. extra: 821 / 772,
  16817. bottom: 0.022
  16818. }
  16819. },
  16820. hand: {
  16821. height: math.unit(1.25, "feet"),
  16822. name: "Hand",
  16823. image: {
  16824. source: "./media/characters/caylex/hand.svg"
  16825. }
  16826. },
  16827. foot: {
  16828. height: math.unit(1.6, "feet"),
  16829. name: "Foot",
  16830. image: {
  16831. source: "./media/characters/caylex/foot.svg"
  16832. }
  16833. },
  16834. armored: {
  16835. height: math.unit(6 + 8 / 12, "feet"),
  16836. weight: math.unit(250, "lb"),
  16837. name: "Armored",
  16838. image: {
  16839. source: "./media/characters/caylex/armored.svg",
  16840. extra: 1420 / 1310,
  16841. bottom: 0.045
  16842. }
  16843. },
  16844. },
  16845. [
  16846. {
  16847. name: "Normal",
  16848. height: math.unit(6 + 8 / 12, "feet"),
  16849. default: true
  16850. },
  16851. {
  16852. name: "Normal+",
  16853. height: math.unit(12, "feet")
  16854. },
  16855. ]
  16856. ))
  16857. characterMakers.push(() => makeCharacter(
  16858. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16859. {
  16860. front: {
  16861. height: math.unit(7 + 6 / 12, "feet"),
  16862. weight: math.unit(288, "lb"),
  16863. name: "Front",
  16864. image: {
  16865. source: "./media/characters/alana/front.svg",
  16866. extra: 679 / 653,
  16867. bottom: 22.5 / 701
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(7 + 6 / 12, "feet")
  16875. },
  16876. {
  16877. name: "Large",
  16878. height: math.unit(50, "feet")
  16879. },
  16880. {
  16881. name: "Macro",
  16882. height: math.unit(100, "feet"),
  16883. default: true
  16884. },
  16885. {
  16886. name: "Macro+",
  16887. height: math.unit(200, "feet")
  16888. },
  16889. ]
  16890. ))
  16891. characterMakers.push(() => makeCharacter(
  16892. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16893. {
  16894. front: {
  16895. height: math.unit(6 + 1 / 12, "feet"),
  16896. weight: math.unit(210, "lb"),
  16897. name: "Front",
  16898. image: {
  16899. source: "./media/characters/hasani/front.svg",
  16900. extra: 244 / 232,
  16901. bottom: 0.01
  16902. }
  16903. },
  16904. back: {
  16905. height: math.unit(6 + 1 / 12, "feet"),
  16906. weight: math.unit(210, "lb"),
  16907. name: "Back",
  16908. image: {
  16909. source: "./media/characters/hasani/back.svg",
  16910. extra: 244 / 232,
  16911. bottom: 0.01
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Normal",
  16918. height: math.unit(6 + 1 / 12, "feet")
  16919. },
  16920. {
  16921. name: "Macro",
  16922. height: math.unit(175, "feet"),
  16923. default: true
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16929. {
  16930. front: {
  16931. height: math.unit(1.82, "meters"),
  16932. weight: math.unit(140, "lb"),
  16933. name: "Front",
  16934. image: {
  16935. source: "./media/characters/nita/front.svg",
  16936. extra: 2473 / 2363,
  16937. bottom: 0.01
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Normal",
  16944. height: math.unit(1.82, "m")
  16945. },
  16946. {
  16947. name: "Macro",
  16948. height: math.unit(300, "m")
  16949. },
  16950. {
  16951. name: "Mistake Canon",
  16952. height: math.unit(0.5, "miles"),
  16953. default: true
  16954. },
  16955. {
  16956. name: "Big Mistake",
  16957. height: math.unit(13, "miles")
  16958. },
  16959. {
  16960. name: "Playing God",
  16961. height: math.unit(2450, "miles")
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16967. {
  16968. front: {
  16969. height: math.unit(4, "feet"),
  16970. weight: math.unit(120, "lb"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/shiriko/front.svg",
  16974. extra: 195 / 188
  16975. }
  16976. },
  16977. },
  16978. [
  16979. {
  16980. name: "Normal",
  16981. height: math.unit(4, "feet"),
  16982. default: true
  16983. },
  16984. ]
  16985. ))
  16986. characterMakers.push(() => makeCharacter(
  16987. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16988. {
  16989. front: {
  16990. height: math.unit(6, "feet"),
  16991. name: "front",
  16992. image: {
  16993. source: "./media/characters/deja/front.svg",
  16994. extra: 926 / 840,
  16995. bottom: 0.07
  16996. }
  16997. },
  16998. },
  16999. [
  17000. {
  17001. name: "Planck Length",
  17002. height: math.unit(1.6e-35, "meters")
  17003. },
  17004. {
  17005. name: "Normal",
  17006. height: math.unit(30.48, "meters"),
  17007. default: true
  17008. },
  17009. {
  17010. name: "Universal",
  17011. height: math.unit(8.8e26, "meters")
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17017. {
  17018. side: {
  17019. height: math.unit(8, "feet"),
  17020. weight: math.unit(6300, "lb"),
  17021. name: "Side",
  17022. image: {
  17023. source: "./media/characters/anima/side.svg",
  17024. bottom: 0.035
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Normal",
  17031. height: math.unit(8, "feet"),
  17032. default: true
  17033. },
  17034. ]
  17035. ))
  17036. characterMakers.push(() => makeCharacter(
  17037. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17038. {
  17039. front: {
  17040. height: math.unit(8, "feet"),
  17041. weight: math.unit(350, "lb"),
  17042. name: "Front",
  17043. image: {
  17044. source: "./media/characters/bianca/front.svg",
  17045. extra: 234 / 225,
  17046. bottom: 0.03
  17047. }
  17048. },
  17049. },
  17050. [
  17051. {
  17052. name: "Normal",
  17053. height: math.unit(8, "feet"),
  17054. default: true
  17055. },
  17056. ]
  17057. ))
  17058. characterMakers.push(() => makeCharacter(
  17059. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17060. {
  17061. front: {
  17062. height: math.unit(6, "feet"),
  17063. weight: math.unit(150, "lb"),
  17064. name: "Front",
  17065. image: {
  17066. source: "./media/characters/adinia/front.svg",
  17067. extra: 1845 / 1672,
  17068. bottom: 0.02
  17069. }
  17070. },
  17071. back: {
  17072. height: math.unit(6, "feet"),
  17073. weight: math.unit(150, "lb"),
  17074. name: "Back",
  17075. image: {
  17076. source: "./media/characters/adinia/back.svg",
  17077. extra: 1845 / 1672,
  17078. bottom: 0.002
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Normal",
  17085. height: math.unit(11 + 5 / 12, "feet"),
  17086. default: true
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17092. {
  17093. front: {
  17094. height: math.unit(3, "meters"),
  17095. weight: math.unit(200, "kg"),
  17096. name: "Front",
  17097. image: {
  17098. source: "./media/characters/lykasa/front.svg",
  17099. extra: 1076 / 976,
  17100. bottom: 0.06
  17101. }
  17102. },
  17103. },
  17104. [
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(3, "meters")
  17108. },
  17109. {
  17110. name: "Kaiju",
  17111. height: math.unit(120, "meters"),
  17112. default: true
  17113. },
  17114. {
  17115. name: "Mega Kaiju",
  17116. height: math.unit(240, "km")
  17117. },
  17118. {
  17119. name: "Giga Kaiju",
  17120. height: math.unit(400, "megameters")
  17121. },
  17122. {
  17123. name: "Tera Kaiju",
  17124. height: math.unit(800, "gigameters")
  17125. },
  17126. {
  17127. name: "Kaiju Dragon Goddess",
  17128. height: math.unit(26, "zettaparsecs")
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17134. {
  17135. side: {
  17136. height: math.unit(283 / 124 * 6, "feet"),
  17137. weight: math.unit(35000, "lb"),
  17138. name: "Side",
  17139. image: {
  17140. source: "./media/characters/malfaren/side.svg",
  17141. extra: 2500 / 1010,
  17142. bottom: 0.01
  17143. }
  17144. },
  17145. front: {
  17146. height: math.unit(22.36, "feet"),
  17147. weight: math.unit(35000, "lb"),
  17148. name: "Front",
  17149. image: {
  17150. source: "./media/characters/malfaren/front.svg",
  17151. extra: 1631 / 1476,
  17152. bottom: 0.01
  17153. }
  17154. },
  17155. maw: {
  17156. height: math.unit(6.9, "feet"),
  17157. name: "Maw",
  17158. image: {
  17159. source: "./media/characters/malfaren/maw.svg"
  17160. }
  17161. },
  17162. },
  17163. [
  17164. {
  17165. name: "Big",
  17166. height: math.unit(283 / 162 * 6, "feet"),
  17167. },
  17168. {
  17169. name: "Bigger",
  17170. height: math.unit(283 / 124 * 6, "feet")
  17171. },
  17172. {
  17173. name: "Massive",
  17174. height: math.unit(283 / 92 * 6, "feet"),
  17175. default: true
  17176. },
  17177. {
  17178. name: "👀💦",
  17179. height: math.unit(283 / 73 * 6, "feet"),
  17180. },
  17181. ]
  17182. ))
  17183. characterMakers.push(() => makeCharacter(
  17184. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17185. {
  17186. front: {
  17187. height: math.unit(1.7, "m"),
  17188. weight: math.unit(70, "kg"),
  17189. name: "Front",
  17190. image: {
  17191. source: "./media/characters/kernel/front.svg",
  17192. extra: 222 / 210,
  17193. bottom: 0.007
  17194. }
  17195. },
  17196. },
  17197. [
  17198. {
  17199. name: "Nano",
  17200. height: math.unit(17, "micrometers")
  17201. },
  17202. {
  17203. name: "Micro",
  17204. height: math.unit(1.7, "mm")
  17205. },
  17206. {
  17207. name: "Small",
  17208. height: math.unit(1.7, "cm")
  17209. },
  17210. {
  17211. name: "Normal",
  17212. height: math.unit(1.7, "m"),
  17213. default: true
  17214. },
  17215. ]
  17216. ))
  17217. characterMakers.push(() => makeCharacter(
  17218. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17219. {
  17220. front: {
  17221. height: math.unit(1.75, "meters"),
  17222. weight: math.unit(65, "kg"),
  17223. name: "Front",
  17224. image: {
  17225. source: "./media/characters/jayne-folest/front.svg",
  17226. extra: 2115 / 2007,
  17227. bottom: 0.02
  17228. }
  17229. },
  17230. back: {
  17231. height: math.unit(1.75, "meters"),
  17232. weight: math.unit(65, "kg"),
  17233. name: "Back",
  17234. image: {
  17235. source: "./media/characters/jayne-folest/back.svg",
  17236. extra: 2115 / 2007,
  17237. bottom: 0.005
  17238. }
  17239. },
  17240. frontClothed: {
  17241. height: math.unit(1.75, "meters"),
  17242. weight: math.unit(65, "kg"),
  17243. name: "Front (Clothed)",
  17244. image: {
  17245. source: "./media/characters/jayne-folest/front-clothed.svg",
  17246. extra: 2115 / 2007,
  17247. bottom: 0.035
  17248. }
  17249. },
  17250. hand: {
  17251. height: math.unit(1 / 1.260, "feet"),
  17252. name: "Hand",
  17253. image: {
  17254. source: "./media/characters/jayne-folest/hand.svg"
  17255. }
  17256. },
  17257. foot: {
  17258. height: math.unit(1 / 0.918, "feet"),
  17259. name: "Foot",
  17260. image: {
  17261. source: "./media/characters/jayne-folest/foot.svg"
  17262. }
  17263. },
  17264. },
  17265. [
  17266. {
  17267. name: "Micro",
  17268. height: math.unit(4, "cm")
  17269. },
  17270. {
  17271. name: "Normal",
  17272. height: math.unit(1.75, "meters")
  17273. },
  17274. {
  17275. name: "Macro",
  17276. height: math.unit(47.5, "meters"),
  17277. default: true
  17278. },
  17279. ]
  17280. ))
  17281. characterMakers.push(() => makeCharacter(
  17282. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17283. {
  17284. front: {
  17285. height: math.unit(180, "cm"),
  17286. weight: math.unit(70, "kg"),
  17287. name: "Front",
  17288. image: {
  17289. source: "./media/characters/algier/front.svg",
  17290. extra: 596 / 572,
  17291. bottom: 0.04
  17292. }
  17293. },
  17294. back: {
  17295. height: math.unit(180, "cm"),
  17296. weight: math.unit(70, "kg"),
  17297. name: "Back",
  17298. image: {
  17299. source: "./media/characters/algier/back.svg",
  17300. extra: 596 / 572,
  17301. bottom: 0.025
  17302. }
  17303. },
  17304. frontdressed: {
  17305. height: math.unit(180, "cm"),
  17306. weight: math.unit(150, "kg"),
  17307. name: "Front-dressed",
  17308. image: {
  17309. source: "./media/characters/algier/front-dressed.svg",
  17310. extra: 596 / 572,
  17311. bottom: 0.038
  17312. }
  17313. },
  17314. },
  17315. [
  17316. {
  17317. name: "Micro",
  17318. height: math.unit(5, "cm")
  17319. },
  17320. {
  17321. name: "Normal",
  17322. height: math.unit(180, "cm"),
  17323. default: true
  17324. },
  17325. {
  17326. name: "Macro",
  17327. height: math.unit(64, "m")
  17328. },
  17329. ]
  17330. ))
  17331. characterMakers.push(() => makeCharacter(
  17332. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17333. {
  17334. upright: {
  17335. height: math.unit(7, "feet"),
  17336. weight: math.unit(300, "lb"),
  17337. name: "Upright",
  17338. image: {
  17339. source: "./media/characters/pretzel/upright.svg",
  17340. extra: 534 / 522,
  17341. bottom: 0.065
  17342. }
  17343. },
  17344. sprawling: {
  17345. height: math.unit(3.75, "feet"),
  17346. weight: math.unit(300, "lb"),
  17347. name: "Sprawling",
  17348. image: {
  17349. source: "./media/characters/pretzel/sprawling.svg",
  17350. extra: 314 / 281,
  17351. bottom: 0.1
  17352. }
  17353. },
  17354. tongue: {
  17355. height: math.unit(2, "feet"),
  17356. name: "Tongue",
  17357. image: {
  17358. source: "./media/characters/pretzel/tongue.svg"
  17359. }
  17360. },
  17361. },
  17362. [
  17363. {
  17364. name: "Normal",
  17365. height: math.unit(7, "feet"),
  17366. default: true
  17367. },
  17368. {
  17369. name: "Oversized",
  17370. height: math.unit(15, "feet")
  17371. },
  17372. {
  17373. name: "Huge",
  17374. height: math.unit(30, "feet")
  17375. },
  17376. {
  17377. name: "Macro",
  17378. height: math.unit(250, "feet")
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17384. {
  17385. sideFront: {
  17386. height: math.unit(5 + 2 / 12, "feet"),
  17387. weight: math.unit(120, "lb"),
  17388. name: "Front Side",
  17389. image: {
  17390. source: "./media/characters/roxi/side-front.svg",
  17391. extra: 2924 / 2717,
  17392. bottom: 0.08
  17393. }
  17394. },
  17395. sideBack: {
  17396. height: math.unit(5 + 2 / 12, "feet"),
  17397. weight: math.unit(120, "lb"),
  17398. name: "Back Side",
  17399. image: {
  17400. source: "./media/characters/roxi/side-back.svg",
  17401. extra: 2904 / 2693,
  17402. bottom: 0.06
  17403. }
  17404. },
  17405. front: {
  17406. height: math.unit(5 + 2 / 12, "feet"),
  17407. weight: math.unit(120, "lb"),
  17408. name: "Front",
  17409. image: {
  17410. source: "./media/characters/roxi/front.svg",
  17411. extra: 2028 / 1907,
  17412. bottom: 0.01
  17413. }
  17414. },
  17415. frontAlt: {
  17416. height: math.unit(5 + 2 / 12, "feet"),
  17417. weight: math.unit(120, "lb"),
  17418. name: "Front (Alt)",
  17419. image: {
  17420. source: "./media/characters/roxi/front-alt.svg",
  17421. extra: 1828 / 1798,
  17422. bottom: 0.01
  17423. }
  17424. },
  17425. sitting: {
  17426. height: math.unit(2.8, "feet"),
  17427. weight: math.unit(120, "lb"),
  17428. name: "Sitting",
  17429. image: {
  17430. source: "./media/characters/roxi/sitting.svg",
  17431. extra: 2660 / 2462,
  17432. bottom: 0.1
  17433. }
  17434. },
  17435. },
  17436. [
  17437. {
  17438. name: "Normal",
  17439. height: math.unit(5 + 2 / 12, "feet"),
  17440. default: true
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17446. {
  17447. side: {
  17448. height: math.unit(55, "feet"),
  17449. weight: math.unit(153, "tons"),
  17450. name: "Side",
  17451. image: {
  17452. source: "./media/characters/shadow/side.svg",
  17453. extra: 701 / 628,
  17454. bottom: 0.02
  17455. }
  17456. },
  17457. flying: {
  17458. height: math.unit(145, "feet"),
  17459. weight: math.unit(153, "tons"),
  17460. name: "Flying",
  17461. image: {
  17462. source: "./media/characters/shadow/flying.svg"
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(55, "feet"),
  17470. default: true
  17471. },
  17472. ]
  17473. ))
  17474. characterMakers.push(() => makeCharacter(
  17475. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17476. {
  17477. front: {
  17478. height: math.unit(6, "feet"),
  17479. weight: math.unit(200, "lb"),
  17480. name: "Front",
  17481. image: {
  17482. source: "./media/characters/marcie/front.svg",
  17483. extra: 960 / 876,
  17484. bottom: 58 / 1017.87
  17485. }
  17486. },
  17487. },
  17488. [
  17489. {
  17490. name: "Macro",
  17491. height: math.unit(1, "mile"),
  17492. default: true
  17493. },
  17494. ]
  17495. ))
  17496. characterMakers.push(() => makeCharacter(
  17497. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17498. {
  17499. front: {
  17500. height: math.unit(7, "feet"),
  17501. weight: math.unit(200, "lb"),
  17502. name: "Front",
  17503. image: {
  17504. source: "./media/characters/kachina/front.svg",
  17505. extra: 1290.68 / 1119,
  17506. bottom: 36.5 / 1327.18
  17507. }
  17508. },
  17509. },
  17510. [
  17511. {
  17512. name: "Normal",
  17513. height: math.unit(7, "feet"),
  17514. default: true
  17515. },
  17516. ]
  17517. ))
  17518. characterMakers.push(() => makeCharacter(
  17519. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17520. {
  17521. looking: {
  17522. height: math.unit(2, "meters"),
  17523. weight: math.unit(300, "kg"),
  17524. name: "Looking",
  17525. image: {
  17526. source: "./media/characters/kash/looking.svg",
  17527. extra: 474 / 344,
  17528. bottom: 0.03
  17529. }
  17530. },
  17531. side: {
  17532. height: math.unit(2, "meters"),
  17533. weight: math.unit(300, "kg"),
  17534. name: "Side",
  17535. image: {
  17536. source: "./media/characters/kash/side.svg",
  17537. extra: 302 / 251,
  17538. bottom: 0.03
  17539. }
  17540. },
  17541. front: {
  17542. height: math.unit(2, "meters"),
  17543. weight: math.unit(300, "kg"),
  17544. name: "Front",
  17545. image: {
  17546. source: "./media/characters/kash/front.svg",
  17547. extra: 495 / 360,
  17548. bottom: 0.015
  17549. }
  17550. },
  17551. },
  17552. [
  17553. {
  17554. name: "Normal",
  17555. height: math.unit(2, "meters"),
  17556. default: true
  17557. },
  17558. {
  17559. name: "Big",
  17560. height: math.unit(3, "meters")
  17561. },
  17562. {
  17563. name: "Large",
  17564. height: math.unit(5, "meters")
  17565. },
  17566. ]
  17567. ))
  17568. characterMakers.push(() => makeCharacter(
  17569. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17570. {
  17571. feeding: {
  17572. height: math.unit(6.7, "feet"),
  17573. weight: math.unit(350, "lb"),
  17574. name: "Feeding",
  17575. image: {
  17576. source: "./media/characters/lalim/feeding.svg",
  17577. }
  17578. },
  17579. },
  17580. [
  17581. {
  17582. name: "Normal",
  17583. height: math.unit(6.7, "feet"),
  17584. default: true
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17590. {
  17591. front: {
  17592. height: math.unit(9.5, "feet"),
  17593. weight: math.unit(600, "lb"),
  17594. name: "Front",
  17595. image: {
  17596. source: "./media/characters/de'vout/front.svg",
  17597. extra: 1443 / 1328,
  17598. bottom: 0.025
  17599. }
  17600. },
  17601. back: {
  17602. height: math.unit(9.5, "feet"),
  17603. weight: math.unit(600, "lb"),
  17604. name: "Back",
  17605. image: {
  17606. source: "./media/characters/de'vout/back.svg",
  17607. extra: 1443 / 1328
  17608. }
  17609. },
  17610. frontDressed: {
  17611. height: math.unit(9.5, "feet"),
  17612. weight: math.unit(600, "lb"),
  17613. name: "Front (Dressed",
  17614. image: {
  17615. source: "./media/characters/de'vout/front-dressed.svg",
  17616. extra: 1443 / 1328,
  17617. bottom: 0.025
  17618. }
  17619. },
  17620. backDressed: {
  17621. height: math.unit(9.5, "feet"),
  17622. weight: math.unit(600, "lb"),
  17623. name: "Back (Dressed",
  17624. image: {
  17625. source: "./media/characters/de'vout/back-dressed.svg",
  17626. extra: 1443 / 1328
  17627. }
  17628. },
  17629. },
  17630. [
  17631. {
  17632. name: "Normal",
  17633. height: math.unit(9.5, "feet"),
  17634. default: true
  17635. },
  17636. ]
  17637. ))
  17638. characterMakers.push(() => makeCharacter(
  17639. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17640. {
  17641. front: {
  17642. height: math.unit(8, "feet"),
  17643. weight: math.unit(225, "lb"),
  17644. name: "Front",
  17645. image: {
  17646. source: "./media/characters/talana/front.svg",
  17647. extra: 1410 / 1300,
  17648. bottom: 0.015
  17649. }
  17650. },
  17651. frontDressed: {
  17652. height: math.unit(8, "feet"),
  17653. weight: math.unit(225, "lb"),
  17654. name: "Front (Dressed",
  17655. image: {
  17656. source: "./media/characters/talana/front-dressed.svg",
  17657. extra: 1410 / 1300,
  17658. bottom: 0.015
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(8, "feet"),
  17666. default: true
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17672. {
  17673. side: {
  17674. height: math.unit(7.2, "feet"),
  17675. weight: math.unit(150, "lb"),
  17676. name: "Side",
  17677. image: {
  17678. source: "./media/characters/xeauvok/side.svg",
  17679. extra: 1975 / 1523,
  17680. bottom: 0.07
  17681. }
  17682. },
  17683. },
  17684. [
  17685. {
  17686. name: "Normal",
  17687. height: math.unit(7.2, "feet"),
  17688. default: true
  17689. },
  17690. ]
  17691. ))
  17692. characterMakers.push(() => makeCharacter(
  17693. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17694. {
  17695. side: {
  17696. height: math.unit(10, "feet"),
  17697. weight: math.unit(900, "kg"),
  17698. name: "Side",
  17699. image: {
  17700. source: "./media/characters/zara/side.svg",
  17701. extra: 504 / 498
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Normal",
  17708. height: math.unit(10, "feet"),
  17709. default: true
  17710. },
  17711. ]
  17712. ))
  17713. characterMakers.push(() => makeCharacter(
  17714. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17715. {
  17716. side: {
  17717. height: math.unit(6, "feet"),
  17718. weight: math.unit(150, "lb"),
  17719. name: "Side",
  17720. image: {
  17721. source: "./media/characters/richard-dragon/side.svg",
  17722. extra: 845 / 340,
  17723. bottom: 0.017
  17724. }
  17725. },
  17726. maw: {
  17727. height: math.unit(2.97, "feet"),
  17728. name: "Maw",
  17729. image: {
  17730. source: "./media/characters/richard-dragon/maw.svg"
  17731. }
  17732. },
  17733. },
  17734. [
  17735. ]
  17736. ))
  17737. characterMakers.push(() => makeCharacter(
  17738. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17739. {
  17740. front: {
  17741. height: math.unit(4, "feet"),
  17742. weight: math.unit(100, "lb"),
  17743. name: "Front",
  17744. image: {
  17745. source: "./media/characters/richard-smeargle/front.svg",
  17746. extra: 2952 / 2820,
  17747. bottom: 0.028
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(4, "feet"),
  17755. default: true
  17756. },
  17757. {
  17758. name: "Dynamax",
  17759. height: math.unit(20, "meters")
  17760. },
  17761. ]
  17762. ))
  17763. characterMakers.push(() => makeCharacter(
  17764. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17765. {
  17766. front: {
  17767. height: math.unit(6, "feet"),
  17768. weight: math.unit(110, "lb"),
  17769. name: "Front",
  17770. image: {
  17771. source: "./media/characters/klay/front.svg",
  17772. extra: 962 / 883,
  17773. bottom: 0.04
  17774. }
  17775. },
  17776. back: {
  17777. height: math.unit(6, "feet"),
  17778. weight: math.unit(110, "lb"),
  17779. name: "Back",
  17780. image: {
  17781. source: "./media/characters/klay/back.svg",
  17782. extra: 962 / 883
  17783. }
  17784. },
  17785. beans: {
  17786. height: math.unit(1.15, "feet"),
  17787. name: "Beans",
  17788. image: {
  17789. source: "./media/characters/klay/beans.svg"
  17790. }
  17791. },
  17792. },
  17793. [
  17794. {
  17795. name: "Micro",
  17796. height: math.unit(6, "inches")
  17797. },
  17798. {
  17799. name: "Mini",
  17800. height: math.unit(3, "feet")
  17801. },
  17802. {
  17803. name: "Normal",
  17804. height: math.unit(6, "feet"),
  17805. default: true
  17806. },
  17807. {
  17808. name: "Big",
  17809. height: math.unit(25, "feet")
  17810. },
  17811. {
  17812. name: "Macro",
  17813. height: math.unit(100, "feet")
  17814. },
  17815. {
  17816. name: "Megamacro",
  17817. height: math.unit(400, "feet")
  17818. },
  17819. ]
  17820. ))
  17821. characterMakers.push(() => makeCharacter(
  17822. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17823. {
  17824. front: {
  17825. height: math.unit(6, "feet"),
  17826. weight: math.unit(160, "lb"),
  17827. name: "Front",
  17828. image: {
  17829. source: "./media/characters/marcus/front.svg",
  17830. extra: 734 / 676,
  17831. bottom: 0.03
  17832. }
  17833. },
  17834. },
  17835. [
  17836. {
  17837. name: "Little",
  17838. height: math.unit(6, "feet")
  17839. },
  17840. {
  17841. name: "Normal",
  17842. height: math.unit(110, "feet"),
  17843. default: true
  17844. },
  17845. {
  17846. name: "Macro",
  17847. height: math.unit(250, "feet")
  17848. },
  17849. {
  17850. name: "Megamacro",
  17851. height: math.unit(1000, "feet")
  17852. },
  17853. ]
  17854. ))
  17855. characterMakers.push(() => makeCharacter(
  17856. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17857. {
  17858. front: {
  17859. height: math.unit(7, "feet"),
  17860. weight: math.unit(275, "lb"),
  17861. name: "Front",
  17862. image: {
  17863. source: "./media/characters/claude-delroute/front.svg",
  17864. extra: 230 / 214,
  17865. bottom: 0.007
  17866. }
  17867. },
  17868. side: {
  17869. height: math.unit(7, "feet"),
  17870. weight: math.unit(275, "lb"),
  17871. name: "Side",
  17872. image: {
  17873. source: "./media/characters/claude-delroute/side.svg",
  17874. extra: 222 / 214,
  17875. bottom: 0.01
  17876. }
  17877. },
  17878. back: {
  17879. height: math.unit(7, "feet"),
  17880. weight: math.unit(275, "lb"),
  17881. name: "Back",
  17882. image: {
  17883. source: "./media/characters/claude-delroute/back.svg",
  17884. extra: 230 / 214,
  17885. bottom: 0.015
  17886. }
  17887. },
  17888. maw: {
  17889. height: math.unit(0.6407, "meters"),
  17890. name: "Maw",
  17891. image: {
  17892. source: "./media/characters/claude-delroute/maw.svg"
  17893. }
  17894. },
  17895. },
  17896. [
  17897. {
  17898. name: "Normal",
  17899. height: math.unit(7, "feet"),
  17900. default: true
  17901. },
  17902. {
  17903. name: "Lorge",
  17904. height: math.unit(20, "feet")
  17905. },
  17906. ]
  17907. ))
  17908. characterMakers.push(() => makeCharacter(
  17909. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17910. {
  17911. front: {
  17912. height: math.unit(8 + 4 / 12, "feet"),
  17913. weight: math.unit(600, "lb"),
  17914. name: "Front",
  17915. image: {
  17916. source: "./media/characters/dragonien/front.svg",
  17917. extra: 100 / 94,
  17918. bottom: 3.3 / 103.3445
  17919. }
  17920. },
  17921. back: {
  17922. height: math.unit(8 + 4 / 12, "feet"),
  17923. weight: math.unit(600, "lb"),
  17924. name: "Back",
  17925. image: {
  17926. source: "./media/characters/dragonien/back.svg",
  17927. extra: 776 / 746,
  17928. bottom: 6.4 / 782.0616
  17929. }
  17930. },
  17931. foot: {
  17932. height: math.unit(1.54, "feet"),
  17933. name: "Foot",
  17934. image: {
  17935. source: "./media/characters/dragonien/foot.svg",
  17936. }
  17937. },
  17938. },
  17939. [
  17940. {
  17941. name: "Normal",
  17942. height: math.unit(8 + 4 / 12, "feet"),
  17943. default: true
  17944. },
  17945. {
  17946. name: "Macro",
  17947. height: math.unit(200, "feet")
  17948. },
  17949. {
  17950. name: "Megamacro",
  17951. height: math.unit(1, "mile")
  17952. },
  17953. {
  17954. name: "Gigamacro",
  17955. height: math.unit(1000, "miles")
  17956. },
  17957. ]
  17958. ))
  17959. characterMakers.push(() => makeCharacter(
  17960. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17961. {
  17962. front: {
  17963. height: math.unit(5 + 2 / 12, "feet"),
  17964. weight: math.unit(110, "lb"),
  17965. name: "Front",
  17966. image: {
  17967. source: "./media/characters/desta/front.svg",
  17968. extra: 767 / 726,
  17969. bottom: 11.7 / 779
  17970. }
  17971. },
  17972. back: {
  17973. height: math.unit(5 + 2 / 12, "feet"),
  17974. weight: math.unit(110, "lb"),
  17975. name: "Back",
  17976. image: {
  17977. source: "./media/characters/desta/back.svg",
  17978. extra: 777 / 728,
  17979. bottom: 6 / 784
  17980. }
  17981. },
  17982. frontAlt: {
  17983. height: math.unit(5 + 2 / 12, "feet"),
  17984. weight: math.unit(110, "lb"),
  17985. name: "Front",
  17986. image: {
  17987. source: "./media/characters/desta/front-alt.svg",
  17988. extra: 1482 / 1417
  17989. }
  17990. },
  17991. side: {
  17992. height: math.unit(5 + 2 / 12, "feet"),
  17993. weight: math.unit(110, "lb"),
  17994. name: "Side",
  17995. image: {
  17996. source: "./media/characters/desta/side.svg",
  17997. extra: 2579 / 2491,
  17998. bottom: 0.053
  17999. }
  18000. },
  18001. },
  18002. [
  18003. {
  18004. name: "Micro",
  18005. height: math.unit(6, "inches")
  18006. },
  18007. {
  18008. name: "Normal",
  18009. height: math.unit(5 + 2 / 12, "feet"),
  18010. default: true
  18011. },
  18012. {
  18013. name: "Macro",
  18014. height: math.unit(62, "feet")
  18015. },
  18016. {
  18017. name: "Megamacro",
  18018. height: math.unit(1800, "feet")
  18019. },
  18020. ]
  18021. ))
  18022. characterMakers.push(() => makeCharacter(
  18023. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18024. {
  18025. front: {
  18026. height: math.unit(10, "feet"),
  18027. weight: math.unit(700, "lb"),
  18028. name: "Front",
  18029. image: {
  18030. source: "./media/characters/storm-alystar/front.svg",
  18031. extra: 2112 / 1898,
  18032. bottom: 0.034
  18033. }
  18034. },
  18035. },
  18036. [
  18037. {
  18038. name: "Micro",
  18039. height: math.unit(3.5, "inches")
  18040. },
  18041. {
  18042. name: "Normal",
  18043. height: math.unit(10, "feet"),
  18044. default: true
  18045. },
  18046. {
  18047. name: "Macro",
  18048. height: math.unit(400, "feet")
  18049. },
  18050. {
  18051. name: "Deific",
  18052. height: math.unit(60, "miles")
  18053. },
  18054. ]
  18055. ))
  18056. characterMakers.push(() => makeCharacter(
  18057. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18058. {
  18059. front: {
  18060. height: math.unit(2.35, "meters"),
  18061. weight: math.unit(119, "kg"),
  18062. name: "Front",
  18063. image: {
  18064. source: "./media/characters/ilia/front.svg",
  18065. extra: 1285 / 1255,
  18066. bottom: 0.06
  18067. }
  18068. },
  18069. },
  18070. [
  18071. {
  18072. name: "Normal",
  18073. height: math.unit(2.35, "meters")
  18074. },
  18075. {
  18076. name: "Macro",
  18077. height: math.unit(140, "meters"),
  18078. default: true
  18079. },
  18080. {
  18081. name: "Megamacro",
  18082. height: math.unit(100, "miles")
  18083. },
  18084. ]
  18085. ))
  18086. characterMakers.push(() => makeCharacter(
  18087. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18088. {
  18089. front: {
  18090. height: math.unit(6 + 5 / 12, "feet"),
  18091. weight: math.unit(190, "lb"),
  18092. name: "Front",
  18093. image: {
  18094. source: "./media/characters/kingdead/front.svg",
  18095. extra: 1228 / 1177
  18096. }
  18097. },
  18098. },
  18099. [
  18100. {
  18101. name: "Micro",
  18102. height: math.unit(7, "inches")
  18103. },
  18104. {
  18105. name: "Normal",
  18106. height: math.unit(6 + 5 / 12, "feet")
  18107. },
  18108. {
  18109. name: "Macro",
  18110. height: math.unit(150, "feet"),
  18111. default: true
  18112. },
  18113. {
  18114. name: "Megamacro",
  18115. height: math.unit(200, "miles")
  18116. },
  18117. ]
  18118. ))
  18119. characterMakers.push(() => makeCharacter(
  18120. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18121. {
  18122. front: {
  18123. height: math.unit(8, "feet"),
  18124. weight: math.unit(600, "lb"),
  18125. name: "Front",
  18126. image: {
  18127. source: "./media/characters/kyrehx/front.svg",
  18128. extra: 1195 / 1095,
  18129. bottom: 0.034
  18130. }
  18131. },
  18132. },
  18133. [
  18134. {
  18135. name: "Micro",
  18136. height: math.unit(2, "inches")
  18137. },
  18138. {
  18139. name: "Normal",
  18140. height: math.unit(8, "feet"),
  18141. default: true
  18142. },
  18143. {
  18144. name: "Macro",
  18145. height: math.unit(255, "feet")
  18146. },
  18147. ]
  18148. ))
  18149. characterMakers.push(() => makeCharacter(
  18150. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18151. {
  18152. front: {
  18153. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18154. weight: math.unit(184, "lb"),
  18155. name: "Front",
  18156. image: {
  18157. source: "./media/characters/xang/front.svg",
  18158. extra: 845 / 755
  18159. }
  18160. },
  18161. },
  18162. [
  18163. {
  18164. name: "Normal",
  18165. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18166. default: true
  18167. },
  18168. {
  18169. name: "Macro",
  18170. height: math.unit(0.935 * 146, "feet")
  18171. },
  18172. {
  18173. name: "Megamacro",
  18174. height: math.unit(0.935 * 3, "miles")
  18175. },
  18176. ]
  18177. ))
  18178. characterMakers.push(() => makeCharacter(
  18179. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18180. {
  18181. frontDressed: {
  18182. height: math.unit(5 + 7 / 12, "feet"),
  18183. weight: math.unit(140, "lb"),
  18184. name: "Front (Dressed)",
  18185. image: {
  18186. source: "./media/characters/doc-weardno/front-dressed.svg",
  18187. extra: 263 / 234
  18188. }
  18189. },
  18190. backDressed: {
  18191. height: math.unit(5 + 7 / 12, "feet"),
  18192. weight: math.unit(140, "lb"),
  18193. name: "Back (Dressed)",
  18194. image: {
  18195. source: "./media/characters/doc-weardno/back-dressed.svg",
  18196. extra: 266 / 238
  18197. }
  18198. },
  18199. front: {
  18200. height: math.unit(5 + 7 / 12, "feet"),
  18201. weight: math.unit(140, "lb"),
  18202. name: "Front",
  18203. image: {
  18204. source: "./media/characters/doc-weardno/front.svg",
  18205. extra: 254 / 233
  18206. }
  18207. },
  18208. },
  18209. [
  18210. {
  18211. name: "Micro",
  18212. height: math.unit(3, "inches")
  18213. },
  18214. {
  18215. name: "Normal",
  18216. height: math.unit(5 + 7 / 12, "feet"),
  18217. default: true
  18218. },
  18219. {
  18220. name: "Macro",
  18221. height: math.unit(25, "feet")
  18222. },
  18223. {
  18224. name: "Megamacro",
  18225. height: math.unit(2, "miles")
  18226. },
  18227. ]
  18228. ))
  18229. characterMakers.push(() => makeCharacter(
  18230. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18231. {
  18232. front: {
  18233. height: math.unit(6 + 2 / 12, "feet"),
  18234. weight: math.unit(153, "lb"),
  18235. name: "Front",
  18236. image: {
  18237. source: "./media/characters/seth-whilst/front.svg",
  18238. bottom: 0.07
  18239. }
  18240. },
  18241. },
  18242. [
  18243. {
  18244. name: "Micro",
  18245. height: math.unit(5, "inches")
  18246. },
  18247. {
  18248. name: "Normal",
  18249. height: math.unit(6 + 2 / 12, "feet"),
  18250. default: true
  18251. },
  18252. ]
  18253. ))
  18254. characterMakers.push(() => makeCharacter(
  18255. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18256. {
  18257. front: {
  18258. height: math.unit(3, "inches"),
  18259. weight: math.unit(8, "grams"),
  18260. name: "Front",
  18261. image: {
  18262. source: "./media/characters/pocket-jabari/front.svg",
  18263. extra: 1024 / 974,
  18264. bottom: 0.039
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Minimicro",
  18271. height: math.unit(8, "mm")
  18272. },
  18273. {
  18274. name: "Micro",
  18275. height: math.unit(3, "inches"),
  18276. default: true
  18277. },
  18278. {
  18279. name: "Normal",
  18280. height: math.unit(3, "feet")
  18281. },
  18282. ]
  18283. ))
  18284. characterMakers.push(() => makeCharacter(
  18285. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18286. {
  18287. front: {
  18288. height: math.unit(15, "feet"),
  18289. weight: math.unit(3280, "lb"),
  18290. name: "Front",
  18291. image: {
  18292. source: "./media/characters/sapphy/front.svg",
  18293. extra: 671 / 577,
  18294. bottom: 0.085
  18295. }
  18296. },
  18297. back: {
  18298. height: math.unit(15, "feet"),
  18299. weight: math.unit(3280, "lb"),
  18300. name: "Back",
  18301. image: {
  18302. source: "./media/characters/sapphy/back.svg",
  18303. extra: 631 / 607,
  18304. bottom: 0.045
  18305. }
  18306. },
  18307. },
  18308. [
  18309. {
  18310. name: "Normal",
  18311. height: math.unit(15, "feet")
  18312. },
  18313. {
  18314. name: "Casual Macro",
  18315. height: math.unit(120, "feet")
  18316. },
  18317. {
  18318. name: "Macro",
  18319. height: math.unit(2150, "feet"),
  18320. default: true
  18321. },
  18322. {
  18323. name: "Megamacro",
  18324. height: math.unit(8, "miles")
  18325. },
  18326. {
  18327. name: "Galaxy Mom",
  18328. height: math.unit(6, "megalightyears")
  18329. },
  18330. ]
  18331. ))
  18332. characterMakers.push(() => makeCharacter(
  18333. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18334. {
  18335. front: {
  18336. height: math.unit(6, "feet"),
  18337. weight: math.unit(170, "lb"),
  18338. name: "Front",
  18339. image: {
  18340. source: "./media/characters/kiro/front.svg",
  18341. extra: 1064 / 1012,
  18342. bottom: 0.052
  18343. }
  18344. },
  18345. },
  18346. [
  18347. {
  18348. name: "Micro",
  18349. height: math.unit(6, "inches")
  18350. },
  18351. {
  18352. name: "Normal",
  18353. height: math.unit(6, "feet"),
  18354. default: true
  18355. },
  18356. {
  18357. name: "Macro",
  18358. height: math.unit(72, "feet")
  18359. },
  18360. ]
  18361. ))
  18362. characterMakers.push(() => makeCharacter(
  18363. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18364. {
  18365. front: {
  18366. height: math.unit(5 + 9 / 12, "feet"),
  18367. weight: math.unit(175, "lb"),
  18368. name: "Front",
  18369. image: {
  18370. source: "./media/characters/irishfox/front.svg",
  18371. extra: 1912 / 1680,
  18372. bottom: 0.02
  18373. }
  18374. },
  18375. },
  18376. [
  18377. {
  18378. name: "Nano",
  18379. height: math.unit(1, "mm")
  18380. },
  18381. {
  18382. name: "Micro",
  18383. height: math.unit(2, "inches")
  18384. },
  18385. {
  18386. name: "Normal",
  18387. height: math.unit(5 + 9 / 12, "feet"),
  18388. default: true
  18389. },
  18390. {
  18391. name: "Macro",
  18392. height: math.unit(45, "feet")
  18393. },
  18394. ]
  18395. ))
  18396. characterMakers.push(() => makeCharacter(
  18397. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18398. {
  18399. front: {
  18400. height: math.unit(6 + 1 / 12, "feet"),
  18401. weight: math.unit(75, "lb"),
  18402. name: "Front",
  18403. image: {
  18404. source: "./media/characters/aronai-sieyes/front.svg",
  18405. extra: 1556 / 1480,
  18406. bottom: 0.015
  18407. }
  18408. },
  18409. side: {
  18410. height: math.unit(6 + 1 / 12, "feet"),
  18411. weight: math.unit(75, "lb"),
  18412. name: "Side",
  18413. image: {
  18414. source: "./media/characters/aronai-sieyes/side.svg",
  18415. extra: 1433 / 1390,
  18416. bottom: 0.0393
  18417. }
  18418. },
  18419. back: {
  18420. height: math.unit(6 + 1 / 12, "feet"),
  18421. weight: math.unit(75, "lb"),
  18422. name: "Back",
  18423. image: {
  18424. source: "./media/characters/aronai-sieyes/back.svg",
  18425. extra: 1544 / 1494,
  18426. bottom: 0.02
  18427. }
  18428. },
  18429. frontClothed: {
  18430. height: math.unit(6 + 1 / 12, "feet"),
  18431. weight: math.unit(75, "lb"),
  18432. name: "Front (Clothed)",
  18433. image: {
  18434. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18435. extra: 1582 / 1527
  18436. }
  18437. },
  18438. feral: {
  18439. height: math.unit(18, "feet"),
  18440. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18441. name: "Feral",
  18442. image: {
  18443. source: "./media/characters/aronai-sieyes/feral.svg",
  18444. extra: 1530 / 1240,
  18445. bottom: 0.035
  18446. }
  18447. },
  18448. },
  18449. [
  18450. {
  18451. name: "Micro",
  18452. height: math.unit(2, "inches")
  18453. },
  18454. {
  18455. name: "Normal",
  18456. height: math.unit(6 + 1 / 12, "feet"),
  18457. default: true
  18458. }
  18459. ]
  18460. ))
  18461. characterMakers.push(() => makeCharacter(
  18462. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18463. {
  18464. front: {
  18465. height: math.unit(12, "feet"),
  18466. weight: math.unit(410, "kg"),
  18467. name: "Front",
  18468. image: {
  18469. source: "./media/characters/xuna/front.svg",
  18470. extra: 2184 / 1980
  18471. }
  18472. },
  18473. side: {
  18474. height: math.unit(12, "feet"),
  18475. weight: math.unit(410, "kg"),
  18476. name: "Side",
  18477. image: {
  18478. source: "./media/characters/xuna/side.svg",
  18479. extra: 2184 / 1980
  18480. }
  18481. },
  18482. back: {
  18483. height: math.unit(12, "feet"),
  18484. weight: math.unit(410, "kg"),
  18485. name: "Back",
  18486. image: {
  18487. source: "./media/characters/xuna/back.svg",
  18488. extra: 2184 / 1980
  18489. }
  18490. },
  18491. },
  18492. [
  18493. {
  18494. name: "Nano glow",
  18495. height: math.unit(10, "nm")
  18496. },
  18497. {
  18498. name: "Micro floof",
  18499. height: math.unit(0.3, "m")
  18500. },
  18501. {
  18502. name: "Huggable softy boi",
  18503. height: math.unit(3.6576, "m"),
  18504. default: true
  18505. },
  18506. {
  18507. name: "Admirable floof",
  18508. height: math.unit(80, "meters")
  18509. },
  18510. {
  18511. name: "Gentle macro",
  18512. height: math.unit(300, "meters")
  18513. },
  18514. {
  18515. name: "Very careful floof",
  18516. height: math.unit(3200, "meters")
  18517. },
  18518. {
  18519. name: "The mega floof",
  18520. height: math.unit(36000, "meters")
  18521. },
  18522. {
  18523. name: "Giga-fur-Wicker",
  18524. height: math.unit(4800000, "meters")
  18525. },
  18526. {
  18527. name: "Licky world",
  18528. height: math.unit(20000000, "meters")
  18529. },
  18530. {
  18531. name: "Floofy cyan sun",
  18532. height: math.unit(1500000000, "meters")
  18533. },
  18534. {
  18535. name: "Milky Wicker",
  18536. height: math.unit(1000000000000000000000, "meters")
  18537. },
  18538. {
  18539. name: "The observing Wicker",
  18540. height: math.unit(999999999999999999999999999, "meters")
  18541. },
  18542. ]
  18543. ))
  18544. characterMakers.push(() => makeCharacter(
  18545. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18546. {
  18547. front: {
  18548. height: math.unit(5 + 9 / 12, "feet"),
  18549. weight: math.unit(150, "lb"),
  18550. name: "Front",
  18551. image: {
  18552. source: "./media/characters/arokha-sieyes/front.svg",
  18553. extra: 1425 / 1284,
  18554. bottom: 0.05
  18555. }
  18556. },
  18557. },
  18558. [
  18559. {
  18560. name: "Normal",
  18561. height: math.unit(5 + 9 / 12, "feet")
  18562. },
  18563. {
  18564. name: "Macro",
  18565. height: math.unit(30, "meters"),
  18566. default: true
  18567. },
  18568. ]
  18569. ))
  18570. characterMakers.push(() => makeCharacter(
  18571. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18572. {
  18573. front: {
  18574. height: math.unit(6, "feet"),
  18575. weight: math.unit(180, "lb"),
  18576. name: "Front",
  18577. image: {
  18578. source: "./media/characters/arokh-sieyes/front.svg",
  18579. extra: 1830 / 1769,
  18580. bottom: 0.01
  18581. }
  18582. },
  18583. },
  18584. [
  18585. {
  18586. name: "Normal",
  18587. height: math.unit(6, "feet")
  18588. },
  18589. {
  18590. name: "Macro",
  18591. height: math.unit(30, "meters"),
  18592. default: true
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18598. {
  18599. side: {
  18600. height: math.unit(13 + 1 / 12, "feet"),
  18601. weight: math.unit(8.5, "tonnes"),
  18602. name: "Side",
  18603. image: {
  18604. source: "./media/characters/goldeneye/side.svg",
  18605. extra: 1182 / 778,
  18606. bottom: 0.067
  18607. }
  18608. },
  18609. paw: {
  18610. height: math.unit(3.4, "feet"),
  18611. name: "Paw",
  18612. image: {
  18613. source: "./media/characters/goldeneye/paw.svg"
  18614. }
  18615. },
  18616. },
  18617. [
  18618. {
  18619. name: "Normal",
  18620. height: math.unit(13 + 1 / 12, "feet"),
  18621. default: true
  18622. },
  18623. ]
  18624. ))
  18625. characterMakers.push(() => makeCharacter(
  18626. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18627. {
  18628. front: {
  18629. height: math.unit(6 + 1 / 12, "feet"),
  18630. weight: math.unit(210, "lb"),
  18631. name: "Front",
  18632. image: {
  18633. source: "./media/characters/leonardo-lycheborne/front.svg",
  18634. extra: 390 / 365,
  18635. bottom: 0.032
  18636. }
  18637. },
  18638. side: {
  18639. height: math.unit(6 + 1 / 12, "feet"),
  18640. weight: math.unit(210, "lb"),
  18641. name: "Side",
  18642. image: {
  18643. source: "./media/characters/leonardo-lycheborne/side.svg",
  18644. extra: 390 / 365,
  18645. bottom: 0.005
  18646. }
  18647. },
  18648. back: {
  18649. height: math.unit(6 + 1 / 12, "feet"),
  18650. weight: math.unit(210, "lb"),
  18651. name: "Back",
  18652. image: {
  18653. source: "./media/characters/leonardo-lycheborne/back.svg",
  18654. extra: 392 / 366,
  18655. bottom: 0.01
  18656. }
  18657. },
  18658. hand: {
  18659. height: math.unit(1.08, "feet"),
  18660. name: "Hand",
  18661. image: {
  18662. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18663. }
  18664. },
  18665. foot: {
  18666. height: math.unit(1.32, "feet"),
  18667. name: "Foot",
  18668. image: {
  18669. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18670. }
  18671. },
  18672. were: {
  18673. height: math.unit(20, "feet"),
  18674. weight: math.unit(7800, "lb"),
  18675. name: "Were",
  18676. image: {
  18677. source: "./media/characters/leonardo-lycheborne/were.svg",
  18678. extra: 308 / 294,
  18679. bottom: 0.048
  18680. }
  18681. },
  18682. feral: {
  18683. height: math.unit(7.5, "feet"),
  18684. weight: math.unit(600, "lb"),
  18685. name: "Feral",
  18686. image: {
  18687. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18688. extra: 210 / 186,
  18689. bottom: 0.108
  18690. }
  18691. },
  18692. taur: {
  18693. height: math.unit(11, "feet"),
  18694. weight: math.unit(3300, "lb"),
  18695. name: "Taur",
  18696. image: {
  18697. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18698. extra: 320 / 303,
  18699. bottom: 0.025
  18700. }
  18701. },
  18702. barghest: {
  18703. height: math.unit(11, "feet"),
  18704. weight: math.unit(1300, "lb"),
  18705. name: "Barghest",
  18706. image: {
  18707. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18708. extra: 323 / 302,
  18709. bottom: 0.027
  18710. }
  18711. },
  18712. dick: {
  18713. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18714. name: "Dick",
  18715. image: {
  18716. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18717. }
  18718. },
  18719. dickWere: {
  18720. height: math.unit((20) / 3.8, "feet"),
  18721. name: "Dick (Were)",
  18722. image: {
  18723. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18724. }
  18725. },
  18726. },
  18727. [
  18728. {
  18729. name: "Normal",
  18730. height: math.unit(6 + 1 / 12, "feet"),
  18731. default: true
  18732. },
  18733. ]
  18734. ))
  18735. characterMakers.push(() => makeCharacter(
  18736. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18737. {
  18738. front: {
  18739. height: math.unit(10, "feet"),
  18740. weight: math.unit(350, "lb"),
  18741. name: "Front",
  18742. image: {
  18743. source: "./media/characters/jet/front.svg",
  18744. extra: 2050 / 1980,
  18745. bottom: 0.013
  18746. }
  18747. },
  18748. back: {
  18749. height: math.unit(10, "feet"),
  18750. weight: math.unit(350, "lb"),
  18751. name: "Back",
  18752. image: {
  18753. source: "./media/characters/jet/back.svg",
  18754. extra: 2050 / 1980,
  18755. bottom: 0.013
  18756. }
  18757. },
  18758. },
  18759. [
  18760. {
  18761. name: "Micro",
  18762. height: math.unit(6, "inches")
  18763. },
  18764. {
  18765. name: "Normal",
  18766. height: math.unit(10, "feet"),
  18767. default: true
  18768. },
  18769. {
  18770. name: "Macro",
  18771. height: math.unit(100, "feet")
  18772. },
  18773. ]
  18774. ))
  18775. characterMakers.push(() => makeCharacter(
  18776. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18777. {
  18778. front: {
  18779. height: math.unit(15, "feet"),
  18780. weight: math.unit(2800, "lb"),
  18781. name: "Front",
  18782. image: {
  18783. source: "./media/characters/tanarath/front.svg",
  18784. extra: 2392 / 2220,
  18785. bottom: 0.03
  18786. }
  18787. },
  18788. back: {
  18789. height: math.unit(15, "feet"),
  18790. weight: math.unit(2800, "lb"),
  18791. name: "Back",
  18792. image: {
  18793. source: "./media/characters/tanarath/back.svg",
  18794. extra: 2392 / 2220,
  18795. bottom: 0.03
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Normal",
  18802. height: math.unit(15, "feet"),
  18803. default: true
  18804. },
  18805. ]
  18806. ))
  18807. characterMakers.push(() => makeCharacter(
  18808. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18809. {
  18810. front: {
  18811. height: math.unit(7 + 1 / 12, "feet"),
  18812. weight: math.unit(175, "lb"),
  18813. name: "Front",
  18814. image: {
  18815. source: "./media/characters/patty-cattybatty/front.svg",
  18816. extra: 908 / 874,
  18817. bottom: 0.025
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Micro",
  18824. height: math.unit(1, "inch")
  18825. },
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(7 + 1 / 12, "feet")
  18829. },
  18830. {
  18831. name: "Mini Macro",
  18832. height: math.unit(155, "feet")
  18833. },
  18834. {
  18835. name: "Macro",
  18836. height: math.unit(1077, "feet")
  18837. },
  18838. {
  18839. name: "Mega Macro",
  18840. height: math.unit(47650, "feet"),
  18841. default: true
  18842. },
  18843. {
  18844. name: "Giga Macro",
  18845. height: math.unit(440, "miles")
  18846. },
  18847. {
  18848. name: "Tera Macro",
  18849. height: math.unit(8700, "miles")
  18850. },
  18851. {
  18852. name: "Planetary Macro",
  18853. height: math.unit(32700, "miles")
  18854. },
  18855. {
  18856. name: "Solar Macro",
  18857. height: math.unit(550000, "miles")
  18858. },
  18859. {
  18860. name: "Celestial Macro",
  18861. height: math.unit(2.5, "AU")
  18862. },
  18863. ]
  18864. ))
  18865. characterMakers.push(() => makeCharacter(
  18866. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18867. {
  18868. front: {
  18869. height: math.unit(4 + 5 / 12, "feet"),
  18870. weight: math.unit(90, "lb"),
  18871. name: "Front",
  18872. image: {
  18873. source: "./media/characters/cappu/front.svg",
  18874. extra: 1247 / 1152,
  18875. bottom: 0.012
  18876. }
  18877. },
  18878. },
  18879. [
  18880. {
  18881. name: "Normal",
  18882. height: math.unit(4 + 5 / 12, "feet"),
  18883. default: true
  18884. },
  18885. ]
  18886. ))
  18887. characterMakers.push(() => makeCharacter(
  18888. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18889. {
  18890. frontDressed: {
  18891. height: math.unit(70, "cm"),
  18892. weight: math.unit(6, "kg"),
  18893. name: "Front (Dressed)",
  18894. image: {
  18895. source: "./media/characters/sebi/front-dressed.svg",
  18896. extra: 713.5 / 686.5,
  18897. bottom: 0.003
  18898. }
  18899. },
  18900. front: {
  18901. height: math.unit(70, "cm"),
  18902. weight: math.unit(5, "kg"),
  18903. name: "Front",
  18904. image: {
  18905. source: "./media/characters/sebi/front.svg",
  18906. extra: 713.5 / 686.5,
  18907. bottom: 0.003
  18908. }
  18909. }
  18910. },
  18911. [
  18912. {
  18913. name: "Normal",
  18914. height: math.unit(70, "cm"),
  18915. default: true
  18916. },
  18917. {
  18918. name: "Macro",
  18919. height: math.unit(8, "meters")
  18920. },
  18921. ]
  18922. ))
  18923. characterMakers.push(() => makeCharacter(
  18924. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18925. {
  18926. front: {
  18927. height: math.unit(6, "feet"),
  18928. weight: math.unit(150, "lb"),
  18929. name: "Front",
  18930. image: {
  18931. source: "./media/characters/typhek/front.svg",
  18932. extra: 1948 / 1929,
  18933. bottom: 0.025
  18934. }
  18935. },
  18936. side: {
  18937. height: math.unit(6, "feet"),
  18938. weight: math.unit(150, "lb"),
  18939. name: "Side",
  18940. image: {
  18941. source: "./media/characters/typhek/side.svg",
  18942. extra: 2034 / 2010,
  18943. bottom: 0.003
  18944. }
  18945. },
  18946. back: {
  18947. height: math.unit(6, "feet"),
  18948. weight: math.unit(150, "lb"),
  18949. name: "Back",
  18950. image: {
  18951. source: "./media/characters/typhek/back.svg",
  18952. extra: 2005 / 1978,
  18953. bottom: 0.004
  18954. }
  18955. },
  18956. palm: {
  18957. height: math.unit(1.2, "feet"),
  18958. name: "Palm",
  18959. image: {
  18960. source: "./media/characters/typhek/palm.svg"
  18961. }
  18962. },
  18963. fist: {
  18964. height: math.unit(1.1, "feet"),
  18965. name: "Fist",
  18966. image: {
  18967. source: "./media/characters/typhek/fist.svg"
  18968. }
  18969. },
  18970. foot: {
  18971. height: math.unit(1.57, "feet"),
  18972. name: "Foot",
  18973. image: {
  18974. source: "./media/characters/typhek/foot.svg"
  18975. }
  18976. },
  18977. sole: {
  18978. height: math.unit(2.05, "feet"),
  18979. name: "Sole",
  18980. image: {
  18981. source: "./media/characters/typhek/sole.svg"
  18982. }
  18983. },
  18984. },
  18985. [
  18986. {
  18987. name: "Macro",
  18988. height: math.unit(40, "stories"),
  18989. default: true
  18990. },
  18991. {
  18992. name: "Megamacro",
  18993. height: math.unit(1, "mile")
  18994. },
  18995. {
  18996. name: "Gigamacro",
  18997. height: math.unit(4000, "solarradii")
  18998. },
  18999. {
  19000. name: "Universal",
  19001. height: math.unit(1.1, "universes")
  19002. }
  19003. ]
  19004. ))
  19005. characterMakers.push(() => makeCharacter(
  19006. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19007. {
  19008. side: {
  19009. height: math.unit(5 + 7 / 12, "feet"),
  19010. weight: math.unit(150, "lb"),
  19011. name: "Side",
  19012. image: {
  19013. source: "./media/characters/kassy/side.svg",
  19014. extra: 1280 / 1225,
  19015. bottom: 0.002
  19016. }
  19017. },
  19018. front: {
  19019. height: math.unit(5 + 7 / 12, "feet"),
  19020. weight: math.unit(150, "lb"),
  19021. name: "Front",
  19022. image: {
  19023. source: "./media/characters/kassy/front.svg",
  19024. extra: 1280 / 1225,
  19025. bottom: 0.025
  19026. }
  19027. },
  19028. back: {
  19029. height: math.unit(5 + 7 / 12, "feet"),
  19030. weight: math.unit(150, "lb"),
  19031. name: "Back",
  19032. image: {
  19033. source: "./media/characters/kassy/back.svg",
  19034. extra: 1280 / 1225,
  19035. bottom: 0.002
  19036. }
  19037. },
  19038. foot: {
  19039. height: math.unit(1.266, "feet"),
  19040. name: "Foot",
  19041. image: {
  19042. source: "./media/characters/kassy/foot.svg"
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Normal",
  19049. height: math.unit(5 + 7 / 12, "feet")
  19050. },
  19051. {
  19052. name: "Macro",
  19053. height: math.unit(137, "feet"),
  19054. default: true
  19055. },
  19056. {
  19057. name: "Megamacro",
  19058. height: math.unit(1, "mile")
  19059. },
  19060. ]
  19061. ))
  19062. characterMakers.push(() => makeCharacter(
  19063. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19064. {
  19065. front: {
  19066. height: math.unit(6 + 1 / 12, "feet"),
  19067. weight: math.unit(200, "lb"),
  19068. name: "Front",
  19069. image: {
  19070. source: "./media/characters/neil/front.svg",
  19071. extra: 1326 / 1250,
  19072. bottom: 0.023
  19073. }
  19074. },
  19075. },
  19076. [
  19077. {
  19078. name: "Normal",
  19079. height: math.unit(6 + 1 / 12, "feet"),
  19080. default: true
  19081. },
  19082. {
  19083. name: "Macro",
  19084. height: math.unit(200, "feet")
  19085. },
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19090. {
  19091. front: {
  19092. height: math.unit(5 + 9 / 12, "feet"),
  19093. weight: math.unit(190, "lb"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/atticus/front.svg",
  19097. extra: 2934 / 2785,
  19098. bottom: 0.025
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Normal",
  19105. height: math.unit(5 + 9 / 12, "feet"),
  19106. default: true
  19107. },
  19108. {
  19109. name: "Macro",
  19110. height: math.unit(180, "feet")
  19111. },
  19112. ]
  19113. ))
  19114. characterMakers.push(() => makeCharacter(
  19115. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19116. {
  19117. side: {
  19118. height: math.unit(9, "feet"),
  19119. weight: math.unit(650, "lb"),
  19120. name: "Side",
  19121. image: {
  19122. source: "./media/characters/milo/side.svg",
  19123. extra: 2644 / 2310,
  19124. bottom: 0.032
  19125. }
  19126. },
  19127. },
  19128. [
  19129. {
  19130. name: "Normal",
  19131. height: math.unit(9, "feet"),
  19132. default: true
  19133. },
  19134. {
  19135. name: "Macro",
  19136. height: math.unit(300, "feet")
  19137. },
  19138. ]
  19139. ))
  19140. characterMakers.push(() => makeCharacter(
  19141. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19142. {
  19143. side: {
  19144. height: math.unit(8, "meters"),
  19145. weight: math.unit(90000, "kg"),
  19146. name: "Side",
  19147. image: {
  19148. source: "./media/characters/ijzer/side.svg",
  19149. extra: 2756 / 1600,
  19150. bottom: 0.01
  19151. }
  19152. },
  19153. },
  19154. [
  19155. {
  19156. name: "Small",
  19157. height: math.unit(3, "meters")
  19158. },
  19159. {
  19160. name: "Normal",
  19161. height: math.unit(8, "meters"),
  19162. default: true
  19163. },
  19164. {
  19165. name: "Normal+",
  19166. height: math.unit(10, "meters")
  19167. },
  19168. {
  19169. name: "Bigger",
  19170. height: math.unit(24, "meters")
  19171. },
  19172. {
  19173. name: "Huge",
  19174. height: math.unit(80, "meters")
  19175. },
  19176. ]
  19177. ))
  19178. characterMakers.push(() => makeCharacter(
  19179. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19180. {
  19181. front: {
  19182. height: math.unit(6 + 2 / 12, "feet"),
  19183. weight: math.unit(153, "lb"),
  19184. name: "Front",
  19185. image: {
  19186. source: "./media/characters/luca-cervicum/front.svg",
  19187. extra: 370 / 327,
  19188. bottom: 0.015
  19189. }
  19190. },
  19191. back: {
  19192. height: math.unit(6 + 2 / 12, "feet"),
  19193. weight: math.unit(153, "lb"),
  19194. name: "Back",
  19195. image: {
  19196. source: "./media/characters/luca-cervicum/back.svg",
  19197. extra: 367 / 333,
  19198. bottom: 0.005
  19199. }
  19200. },
  19201. frontGear: {
  19202. height: math.unit(6 + 2 / 12, "feet"),
  19203. weight: math.unit(173, "lb"),
  19204. name: "Front (Gear)",
  19205. image: {
  19206. source: "./media/characters/luca-cervicum/front-gear.svg",
  19207. extra: 377 / 333,
  19208. bottom: 0.006
  19209. }
  19210. },
  19211. },
  19212. [
  19213. {
  19214. name: "Normal",
  19215. height: math.unit(6 + 2 / 12, "feet"),
  19216. default: true
  19217. },
  19218. ]
  19219. ))
  19220. characterMakers.push(() => makeCharacter(
  19221. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19222. {
  19223. front: {
  19224. height: math.unit(6 + 1 / 12, "feet"),
  19225. weight: math.unit(304, "lb"),
  19226. name: "Front",
  19227. image: {
  19228. source: "./media/characters/oliver/front.svg",
  19229. extra: 157 / 143,
  19230. bottom: 0.08
  19231. }
  19232. },
  19233. },
  19234. [
  19235. {
  19236. name: "Normal",
  19237. height: math.unit(6 + 1 / 12, "feet"),
  19238. default: true
  19239. },
  19240. ]
  19241. ))
  19242. characterMakers.push(() => makeCharacter(
  19243. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19244. {
  19245. front: {
  19246. height: math.unit(5 + 7 / 12, "feet"),
  19247. weight: math.unit(140, "lb"),
  19248. name: "Front",
  19249. image: {
  19250. source: "./media/characters/shane/front.svg",
  19251. extra: 304 / 289,
  19252. bottom: 0.005
  19253. }
  19254. },
  19255. },
  19256. [
  19257. {
  19258. name: "Normal",
  19259. height: math.unit(5 + 7 / 12, "feet"),
  19260. default: true
  19261. },
  19262. ]
  19263. ))
  19264. characterMakers.push(() => makeCharacter(
  19265. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19266. {
  19267. front: {
  19268. height: math.unit(5 + 9 / 12, "feet"),
  19269. weight: math.unit(178, "lb"),
  19270. name: "Front",
  19271. image: {
  19272. source: "./media/characters/shin/front.svg",
  19273. extra: 159 / 151,
  19274. bottom: 0.015
  19275. }
  19276. },
  19277. },
  19278. [
  19279. {
  19280. name: "Normal",
  19281. height: math.unit(5 + 9 / 12, "feet"),
  19282. default: true
  19283. },
  19284. ]
  19285. ))
  19286. characterMakers.push(() => makeCharacter(
  19287. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19288. {
  19289. front: {
  19290. height: math.unit(5 + 10 / 12, "feet"),
  19291. weight: math.unit(168, "lb"),
  19292. name: "Front",
  19293. image: {
  19294. source: "./media/characters/xerxes/front.svg",
  19295. extra: 282 / 260,
  19296. bottom: 0.045
  19297. }
  19298. },
  19299. },
  19300. [
  19301. {
  19302. name: "Normal",
  19303. height: math.unit(5 + 10 / 12, "feet"),
  19304. default: true
  19305. },
  19306. ]
  19307. ))
  19308. characterMakers.push(() => makeCharacter(
  19309. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19310. {
  19311. front: {
  19312. height: math.unit(6 + 7 / 12, "feet"),
  19313. weight: math.unit(208, "lb"),
  19314. name: "Front",
  19315. image: {
  19316. source: "./media/characters/chaska/front.svg",
  19317. extra: 332 / 319,
  19318. bottom: 0.015
  19319. }
  19320. },
  19321. },
  19322. [
  19323. {
  19324. name: "Normal",
  19325. height: math.unit(6 + 7 / 12, "feet"),
  19326. default: true
  19327. },
  19328. ]
  19329. ))
  19330. characterMakers.push(() => makeCharacter(
  19331. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19332. {
  19333. front: {
  19334. height: math.unit(5 + 8 / 12, "feet"),
  19335. weight: math.unit(208, "lb"),
  19336. name: "Front",
  19337. image: {
  19338. source: "./media/characters/enuk/front.svg",
  19339. extra: 437 / 406,
  19340. bottom: 0.02
  19341. }
  19342. },
  19343. },
  19344. [
  19345. {
  19346. name: "Normal",
  19347. height: math.unit(5 + 8 / 12, "feet"),
  19348. default: true
  19349. },
  19350. ]
  19351. ))
  19352. characterMakers.push(() => makeCharacter(
  19353. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19354. {
  19355. front: {
  19356. height: math.unit(5 + 10 / 12, "feet"),
  19357. weight: math.unit(252, "lb"),
  19358. name: "Front",
  19359. image: {
  19360. source: "./media/characters/bruun/front.svg",
  19361. extra: 197 / 187,
  19362. bottom: 0.012
  19363. }
  19364. },
  19365. },
  19366. [
  19367. {
  19368. name: "Normal",
  19369. height: math.unit(5 + 10 / 12, "feet"),
  19370. default: true
  19371. },
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19376. {
  19377. front: {
  19378. height: math.unit(6 + 10 / 12, "feet"),
  19379. weight: math.unit(255, "lb"),
  19380. name: "Front",
  19381. image: {
  19382. source: "./media/characters/alexeev/front.svg",
  19383. extra: 213 / 200,
  19384. bottom: 0.05
  19385. }
  19386. },
  19387. },
  19388. [
  19389. {
  19390. name: "Normal",
  19391. height: math.unit(6 + 10 / 12, "feet"),
  19392. default: true
  19393. },
  19394. ]
  19395. ))
  19396. characterMakers.push(() => makeCharacter(
  19397. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19398. {
  19399. front: {
  19400. height: math.unit(2 + 8 / 12, "feet"),
  19401. weight: math.unit(22, "lb"),
  19402. name: "Front",
  19403. image: {
  19404. source: "./media/characters/evelyn/front.svg",
  19405. extra: 208 / 180
  19406. }
  19407. },
  19408. },
  19409. [
  19410. {
  19411. name: "Normal",
  19412. height: math.unit(2 + 8 / 12, "feet"),
  19413. default: true
  19414. },
  19415. ]
  19416. ))
  19417. characterMakers.push(() => makeCharacter(
  19418. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19419. {
  19420. front: {
  19421. height: math.unit(5 + 9 / 12, "feet"),
  19422. weight: math.unit(139, "lb"),
  19423. name: "Front",
  19424. image: {
  19425. source: "./media/characters/inca/front.svg",
  19426. extra: 294 / 291,
  19427. bottom: 0.03
  19428. }
  19429. },
  19430. },
  19431. [
  19432. {
  19433. name: "Normal",
  19434. height: math.unit(5 + 9 / 12, "feet"),
  19435. default: true
  19436. },
  19437. ]
  19438. ))
  19439. characterMakers.push(() => makeCharacter(
  19440. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19441. {
  19442. front: {
  19443. height: math.unit(5 + 1 / 12, "feet"),
  19444. weight: math.unit(84, "lb"),
  19445. name: "Front",
  19446. image: {
  19447. source: "./media/characters/magdalene/front.svg",
  19448. extra: 293 / 273
  19449. }
  19450. },
  19451. },
  19452. [
  19453. {
  19454. name: "Normal",
  19455. height: math.unit(5 + 1 / 12, "feet"),
  19456. default: true
  19457. },
  19458. ]
  19459. ))
  19460. characterMakers.push(() => makeCharacter(
  19461. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19462. {
  19463. front: {
  19464. height: math.unit(6 + 3 / 12, "feet"),
  19465. weight: math.unit(185, "lb"),
  19466. name: "Front",
  19467. image: {
  19468. source: "./media/characters/mera/front.svg",
  19469. extra: 291 / 277,
  19470. bottom: 0.03
  19471. }
  19472. },
  19473. },
  19474. [
  19475. {
  19476. name: "Normal",
  19477. height: math.unit(6 + 3 / 12, "feet"),
  19478. default: true
  19479. },
  19480. ]
  19481. ))
  19482. characterMakers.push(() => makeCharacter(
  19483. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19484. {
  19485. front: {
  19486. height: math.unit(6 + 7 / 12, "feet"),
  19487. weight: math.unit(160, "lb"),
  19488. name: "Front",
  19489. image: {
  19490. source: "./media/characters/ceres/front.svg",
  19491. extra: 1023 / 950,
  19492. bottom: 0.027
  19493. }
  19494. },
  19495. back: {
  19496. height: math.unit(6 + 7 / 12, "feet"),
  19497. weight: math.unit(160, "lb"),
  19498. name: "Back",
  19499. image: {
  19500. source: "./media/characters/ceres/back.svg",
  19501. extra: 1023 / 950
  19502. }
  19503. },
  19504. },
  19505. [
  19506. {
  19507. name: "Normal",
  19508. height: math.unit(6 + 7 / 12, "feet"),
  19509. default: true
  19510. },
  19511. ]
  19512. ))
  19513. characterMakers.push(() => makeCharacter(
  19514. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19515. {
  19516. front: {
  19517. height: math.unit(5 + 10 / 12, "feet"),
  19518. weight: math.unit(150, "lb"),
  19519. name: "Front",
  19520. image: {
  19521. source: "./media/characters/kris/front.svg",
  19522. extra: 885 / 803,
  19523. bottom: 0.03
  19524. }
  19525. },
  19526. },
  19527. [
  19528. {
  19529. name: "Normal",
  19530. height: math.unit(5 + 10 / 12, "feet"),
  19531. default: true
  19532. },
  19533. ]
  19534. ))
  19535. characterMakers.push(() => makeCharacter(
  19536. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19537. {
  19538. front: {
  19539. height: math.unit(7, "feet"),
  19540. weight: math.unit(120, "kg"),
  19541. name: "Front",
  19542. image: {
  19543. source: "./media/characters/taluthus/front.svg",
  19544. extra: 903 / 833,
  19545. bottom: 0.015
  19546. }
  19547. },
  19548. },
  19549. [
  19550. {
  19551. name: "Normal",
  19552. height: math.unit(7, "feet"),
  19553. default: true
  19554. },
  19555. {
  19556. name: "Macro",
  19557. height: math.unit(300, "feet")
  19558. },
  19559. ]
  19560. ))
  19561. characterMakers.push(() => makeCharacter(
  19562. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19563. {
  19564. front: {
  19565. height: math.unit(5 + 9 / 12, "feet"),
  19566. weight: math.unit(145, "lb"),
  19567. name: "Front",
  19568. image: {
  19569. source: "./media/characters/dawn/front.svg",
  19570. extra: 2094 / 2016,
  19571. bottom: 0.025
  19572. }
  19573. },
  19574. back: {
  19575. height: math.unit(5 + 9 / 12, "feet"),
  19576. weight: math.unit(160, "lb"),
  19577. name: "Back",
  19578. image: {
  19579. source: "./media/characters/dawn/back.svg",
  19580. extra: 2112 / 2080,
  19581. bottom: 0.005
  19582. }
  19583. },
  19584. },
  19585. [
  19586. {
  19587. name: "Normal",
  19588. height: math.unit(6 + 7 / 12, "feet"),
  19589. default: true
  19590. },
  19591. ]
  19592. ))
  19593. characterMakers.push(() => makeCharacter(
  19594. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19595. {
  19596. anthro: {
  19597. height: math.unit(8 + 3 / 12, "feet"),
  19598. weight: math.unit(450, "lb"),
  19599. name: "Anthro",
  19600. image: {
  19601. source: "./media/characters/arador/anthro.svg",
  19602. extra: 1835 / 1718,
  19603. bottom: 0.025
  19604. }
  19605. },
  19606. feral: {
  19607. height: math.unit(4, "feet"),
  19608. weight: math.unit(200, "lb"),
  19609. name: "Feral",
  19610. image: {
  19611. source: "./media/characters/arador/feral.svg",
  19612. extra: 1683 / 1514,
  19613. bottom: 0.07
  19614. }
  19615. },
  19616. },
  19617. [
  19618. {
  19619. name: "Normal",
  19620. height: math.unit(8 + 3 / 12, "feet")
  19621. },
  19622. {
  19623. name: "Macro",
  19624. height: math.unit(82.5, "feet"),
  19625. default: true
  19626. },
  19627. ]
  19628. ))
  19629. characterMakers.push(() => makeCharacter(
  19630. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19631. {
  19632. front: {
  19633. height: math.unit(5 + 10 / 12, "feet"),
  19634. weight: math.unit(125, "lb"),
  19635. name: "Front",
  19636. image: {
  19637. source: "./media/characters/dharsi/front.svg",
  19638. extra: 716 / 630,
  19639. bottom: 0.035
  19640. }
  19641. },
  19642. },
  19643. [
  19644. {
  19645. name: "Nano",
  19646. height: math.unit(100, "nm")
  19647. },
  19648. {
  19649. name: "Micro",
  19650. height: math.unit(2, "inches")
  19651. },
  19652. {
  19653. name: "Normal",
  19654. height: math.unit(5 + 10 / 12, "feet"),
  19655. default: true
  19656. },
  19657. {
  19658. name: "Macro",
  19659. height: math.unit(1000, "feet")
  19660. },
  19661. {
  19662. name: "Megamacro",
  19663. height: math.unit(10, "miles")
  19664. },
  19665. {
  19666. name: "Gigamacro",
  19667. height: math.unit(3000, "miles")
  19668. },
  19669. {
  19670. name: "Teramacro",
  19671. height: math.unit(500000, "miles")
  19672. },
  19673. {
  19674. name: "Teramacro+",
  19675. height: math.unit(30, "galaxies")
  19676. },
  19677. ]
  19678. ))
  19679. characterMakers.push(() => makeCharacter(
  19680. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19681. {
  19682. front: {
  19683. height: math.unit(6, "feet"),
  19684. weight: math.unit(150, "lb"),
  19685. name: "Front",
  19686. image: {
  19687. source: "./media/characters/deathy/front.svg",
  19688. extra: 1552 / 1463,
  19689. bottom: 0.025
  19690. }
  19691. },
  19692. side: {
  19693. height: math.unit(6, "feet"),
  19694. weight: math.unit(150, "lb"),
  19695. name: "Side",
  19696. image: {
  19697. source: "./media/characters/deathy/side.svg",
  19698. extra: 1604 / 1455,
  19699. bottom: 0.025
  19700. }
  19701. },
  19702. back: {
  19703. height: math.unit(6, "feet"),
  19704. weight: math.unit(150, "lb"),
  19705. name: "Back",
  19706. image: {
  19707. source: "./media/characters/deathy/back.svg",
  19708. extra: 1580 / 1463,
  19709. bottom: 0.005
  19710. }
  19711. },
  19712. },
  19713. [
  19714. {
  19715. name: "Micro",
  19716. height: math.unit(5, "millimeters")
  19717. },
  19718. {
  19719. name: "Normal",
  19720. height: math.unit(6 + 5 / 12, "feet"),
  19721. default: true
  19722. },
  19723. ]
  19724. ))
  19725. characterMakers.push(() => makeCharacter(
  19726. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19727. {
  19728. front: {
  19729. height: math.unit(16, "feet"),
  19730. weight: math.unit(4000, "lb"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/juniper/front.svg",
  19734. bottom: 0.04
  19735. }
  19736. },
  19737. },
  19738. [
  19739. {
  19740. name: "Normal",
  19741. height: math.unit(16, "feet"),
  19742. default: true
  19743. },
  19744. ]
  19745. ))
  19746. characterMakers.push(() => makeCharacter(
  19747. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19748. {
  19749. front: {
  19750. height: math.unit(6, "feet"),
  19751. weight: math.unit(150, "lb"),
  19752. name: "Front",
  19753. image: {
  19754. source: "./media/characters/hipster/front.svg",
  19755. extra: 1312 / 1209,
  19756. bottom: 0.025
  19757. }
  19758. },
  19759. back: {
  19760. height: math.unit(6, "feet"),
  19761. weight: math.unit(150, "lb"),
  19762. name: "Back",
  19763. image: {
  19764. source: "./media/characters/hipster/back.svg",
  19765. extra: 1281 / 1196,
  19766. bottom: 0.01
  19767. }
  19768. },
  19769. },
  19770. [
  19771. {
  19772. name: "Micro",
  19773. height: math.unit(1, "mm")
  19774. },
  19775. {
  19776. name: "Normal",
  19777. height: math.unit(4, "inches"),
  19778. default: true
  19779. },
  19780. {
  19781. name: "Macro",
  19782. height: math.unit(500, "feet")
  19783. },
  19784. {
  19785. name: "Megamacro",
  19786. height: math.unit(1000, "miles")
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19792. {
  19793. front: {
  19794. height: math.unit(6, "feet"),
  19795. weight: math.unit(150, "lb"),
  19796. name: "Front",
  19797. image: {
  19798. source: "./media/characters/tendirmuldr/front.svg",
  19799. extra: 1878 / 1772,
  19800. bottom: 0.015
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Megamacro",
  19807. height: math.unit(1500, "miles"),
  19808. default: true
  19809. },
  19810. ]
  19811. ))
  19812. characterMakers.push(() => makeCharacter(
  19813. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19814. {
  19815. front: {
  19816. height: math.unit(14, "feet"),
  19817. weight: math.unit(12000, "lb"),
  19818. name: "Front",
  19819. image: {
  19820. source: "./media/characters/mort/front.svg",
  19821. extra: 365 / 318,
  19822. bottom: 0.01
  19823. }
  19824. },
  19825. side: {
  19826. height: math.unit(14, "feet"),
  19827. weight: math.unit(12000, "lb"),
  19828. name: "Side",
  19829. image: {
  19830. source: "./media/characters/mort/side.svg",
  19831. extra: 365 / 318,
  19832. bottom: 0.052
  19833. },
  19834. default: true
  19835. },
  19836. back: {
  19837. height: math.unit(14, "feet"),
  19838. weight: math.unit(12000, "lb"),
  19839. name: "Back",
  19840. image: {
  19841. source: "./media/characters/mort/back.svg",
  19842. extra: 371 / 332,
  19843. bottom: 0.18
  19844. }
  19845. },
  19846. },
  19847. [
  19848. {
  19849. name: "Normal",
  19850. height: math.unit(14, "feet"),
  19851. default: true
  19852. },
  19853. ]
  19854. ))
  19855. characterMakers.push(() => makeCharacter(
  19856. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19857. {
  19858. front: {
  19859. height: math.unit(8, "feet"),
  19860. weight: math.unit(1, "ton"),
  19861. name: "Front",
  19862. image: {
  19863. source: "./media/characters/lycoa/front.svg",
  19864. extra: 1875 / 1789,
  19865. bottom: 0.022
  19866. }
  19867. },
  19868. back: {
  19869. height: math.unit(8, "feet"),
  19870. weight: math.unit(1, "ton"),
  19871. name: "Back",
  19872. image: {
  19873. source: "./media/characters/lycoa/back.svg",
  19874. extra: 1835 / 1781,
  19875. bottom: 0.03
  19876. }
  19877. },
  19878. head: {
  19879. height: math.unit(2.1, "feet"),
  19880. name: "Head",
  19881. image: {
  19882. source: "./media/characters/lycoa/head.svg"
  19883. }
  19884. },
  19885. tailmaw: {
  19886. height: math.unit(1.9, "feet"),
  19887. name: "Tailmaw",
  19888. image: {
  19889. source: "./media/characters/lycoa/tailmaw.svg"
  19890. }
  19891. },
  19892. tentacles: {
  19893. height: math.unit(2.1, "feet"),
  19894. name: "Tentacles",
  19895. image: {
  19896. source: "./media/characters/lycoa/tentacles.svg"
  19897. }
  19898. },
  19899. dick: {
  19900. height: math.unit(1.73, "feet"),
  19901. name: "Dick",
  19902. image: {
  19903. source: "./media/characters/lycoa/dick.svg"
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(8, "feet"),
  19911. default: true
  19912. },
  19913. {
  19914. name: "Macro",
  19915. height: math.unit(30, "feet")
  19916. },
  19917. ]
  19918. ))
  19919. characterMakers.push(() => makeCharacter(
  19920. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19921. {
  19922. front: {
  19923. height: math.unit(4 + 2 / 12, "feet"),
  19924. weight: math.unit(70, "lb"),
  19925. name: "Front",
  19926. image: {
  19927. source: "./media/characters/naldara/front.svg",
  19928. extra: 841 / 720,
  19929. bottom: 0.04
  19930. }
  19931. },
  19932. naga: {
  19933. height: math.unit(23, "feet"),
  19934. weight: math.unit(15000, "kg"),
  19935. name: "Naga",
  19936. image: {
  19937. source: "./media/characters/naldara/naga.svg",
  19938. extra: 3290 / 2959,
  19939. bottom: 124 / 3432
  19940. }
  19941. },
  19942. },
  19943. [
  19944. {
  19945. name: "Normal",
  19946. height: math.unit(4 + 2 / 12, "feet"),
  19947. default: true
  19948. },
  19949. ]
  19950. ))
  19951. characterMakers.push(() => makeCharacter(
  19952. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19953. {
  19954. front: {
  19955. height: math.unit(13 + 7 / 12, "feet"),
  19956. weight: math.unit(1500, "lb"),
  19957. name: "Front",
  19958. image: {
  19959. source: "./media/characters/briar/front.svg",
  19960. extra: 626 / 596,
  19961. bottom: 0.08
  19962. }
  19963. },
  19964. },
  19965. [
  19966. {
  19967. name: "Normal",
  19968. height: math.unit(13 + 7 / 12, "feet"),
  19969. default: true
  19970. },
  19971. ]
  19972. ))
  19973. characterMakers.push(() => makeCharacter(
  19974. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19975. {
  19976. side: {
  19977. height: math.unit(10, "feet"),
  19978. weight: math.unit(500, "lb"),
  19979. name: "Side",
  19980. image: {
  19981. source: "./media/characters/vanguard/side.svg",
  19982. extra: 502 / 425,
  19983. bottom: 0.087
  19984. }
  19985. },
  19986. },
  19987. [
  19988. {
  19989. name: "Normal",
  19990. height: math.unit(10, "feet"),
  19991. default: true
  19992. },
  19993. ]
  19994. ))
  19995. characterMakers.push(() => makeCharacter(
  19996. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19997. {
  19998. front: {
  19999. height: math.unit(7.5, "feet"),
  20000. weight: math.unit(2, "lb"),
  20001. name: "Front",
  20002. image: {
  20003. source: "./media/characters/artemis/front.svg",
  20004. extra: 1192 / 1075,
  20005. bottom: 0.07
  20006. }
  20007. },
  20008. frontNsfw: {
  20009. height: math.unit(7.5, "feet"),
  20010. weight: math.unit(2, "lb"),
  20011. name: "Front (NSFW)",
  20012. image: {
  20013. source: "./media/characters/artemis/front-nsfw.svg",
  20014. extra: 1192 / 1075,
  20015. bottom: 0.07
  20016. }
  20017. },
  20018. frontNsfwer: {
  20019. height: math.unit(7.5, "feet"),
  20020. weight: math.unit(2, "lb"),
  20021. name: "Front (NSFW-er)",
  20022. image: {
  20023. source: "./media/characters/artemis/front-nsfwer.svg",
  20024. extra: 1192 / 1075,
  20025. bottom: 0.07
  20026. }
  20027. },
  20028. side: {
  20029. height: math.unit(7.5, "feet"),
  20030. weight: math.unit(2, "lb"),
  20031. name: "Side",
  20032. image: {
  20033. source: "./media/characters/artemis/side.svg",
  20034. extra: 1192 / 1075,
  20035. bottom: 0.07
  20036. }
  20037. },
  20038. sideNsfw: {
  20039. height: math.unit(7.5, "feet"),
  20040. weight: math.unit(2, "lb"),
  20041. name: "Side (NSFW)",
  20042. image: {
  20043. source: "./media/characters/artemis/side-nsfw.svg",
  20044. extra: 1192 / 1075,
  20045. bottom: 0.07
  20046. }
  20047. },
  20048. sideNsfwer: {
  20049. height: math.unit(7.5, "feet"),
  20050. weight: math.unit(2, "lb"),
  20051. name: "Side (NSFW-er)",
  20052. image: {
  20053. source: "./media/characters/artemis/side-nsfwer.svg",
  20054. extra: 1192 / 1075,
  20055. bottom: 0.07
  20056. }
  20057. },
  20058. maw: {
  20059. height: math.unit(1.1, "feet"),
  20060. name: "Maw",
  20061. image: {
  20062. source: "./media/characters/artemis/maw.svg"
  20063. }
  20064. },
  20065. stomach: {
  20066. height: math.unit(0.95, "feet"),
  20067. name: "Stomach",
  20068. image: {
  20069. source: "./media/characters/artemis/stomach.svg"
  20070. }
  20071. },
  20072. dickCanine: {
  20073. height: math.unit(1, "feet"),
  20074. name: "Dick (Canine)",
  20075. image: {
  20076. source: "./media/characters/artemis/dick-canine.svg"
  20077. }
  20078. },
  20079. dickEquine: {
  20080. height: math.unit(0.85, "feet"),
  20081. name: "Dick (Equine)",
  20082. image: {
  20083. source: "./media/characters/artemis/dick-equine.svg"
  20084. }
  20085. },
  20086. dickExotic: {
  20087. height: math.unit(0.85, "feet"),
  20088. name: "Dick (Exotic)",
  20089. image: {
  20090. source: "./media/characters/artemis/dick-exotic.svg"
  20091. }
  20092. },
  20093. },
  20094. [
  20095. {
  20096. name: "Normal",
  20097. height: math.unit(7.5, "feet"),
  20098. default: true
  20099. },
  20100. {
  20101. name: "Enlarged",
  20102. height: math.unit(12, "feet")
  20103. },
  20104. ]
  20105. ))
  20106. characterMakers.push(() => makeCharacter(
  20107. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20108. {
  20109. front: {
  20110. height: math.unit(5 + 3 / 12, "feet"),
  20111. weight: math.unit(160, "lb"),
  20112. name: "Front",
  20113. image: {
  20114. source: "./media/characters/kira/front.svg",
  20115. extra: 906 / 786,
  20116. bottom: 0.01
  20117. }
  20118. },
  20119. back: {
  20120. height: math.unit(5 + 3 / 12, "feet"),
  20121. weight: math.unit(160, "lb"),
  20122. name: "Back",
  20123. image: {
  20124. source: "./media/characters/kira/back.svg",
  20125. extra: 882 / 757,
  20126. bottom: 0.005
  20127. }
  20128. },
  20129. frontDressed: {
  20130. height: math.unit(5 + 3 / 12, "feet"),
  20131. weight: math.unit(160, "lb"),
  20132. name: "Front (Dressed)",
  20133. image: {
  20134. source: "./media/characters/kira/front-dressed.svg",
  20135. extra: 906 / 786,
  20136. bottom: 0.01
  20137. }
  20138. },
  20139. beans: {
  20140. height: math.unit(0.92, "feet"),
  20141. name: "Beans",
  20142. image: {
  20143. source: "./media/characters/kira/beans.svg"
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Normal",
  20150. height: math.unit(5 + 3 / 12, "feet"),
  20151. default: true
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20157. {
  20158. front: {
  20159. height: math.unit(5 + 4 / 12, "feet"),
  20160. weight: math.unit(145, "lb"),
  20161. name: "Front",
  20162. image: {
  20163. source: "./media/characters/scramble/front.svg",
  20164. extra: 763 / 727,
  20165. bottom: 0.05
  20166. }
  20167. },
  20168. back: {
  20169. height: math.unit(5 + 4 / 12, "feet"),
  20170. weight: math.unit(145, "lb"),
  20171. name: "Back",
  20172. image: {
  20173. source: "./media/characters/scramble/back.svg",
  20174. extra: 826 / 737,
  20175. bottom: 0.002
  20176. }
  20177. },
  20178. },
  20179. [
  20180. {
  20181. name: "Normal",
  20182. height: math.unit(5 + 4 / 12, "feet"),
  20183. default: true
  20184. },
  20185. ]
  20186. ))
  20187. characterMakers.push(() => makeCharacter(
  20188. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20189. {
  20190. side: {
  20191. height: math.unit(6 + 2 / 12, "feet"),
  20192. weight: math.unit(190, "lb"),
  20193. name: "Side",
  20194. image: {
  20195. source: "./media/characters/biscuit/side.svg",
  20196. extra: 858 / 791,
  20197. bottom: 0.044
  20198. }
  20199. },
  20200. },
  20201. [
  20202. {
  20203. name: "Normal",
  20204. height: math.unit(6 + 2 / 12, "feet"),
  20205. default: true
  20206. },
  20207. ]
  20208. ))
  20209. characterMakers.push(() => makeCharacter(
  20210. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20211. {
  20212. front: {
  20213. height: math.unit(5 + 2 / 12, "feet"),
  20214. weight: math.unit(120, "lb"),
  20215. name: "Front",
  20216. image: {
  20217. source: "./media/characters/poffin/front.svg",
  20218. extra: 786 / 680,
  20219. bottom: 0.005
  20220. }
  20221. },
  20222. },
  20223. [
  20224. {
  20225. name: "Normal",
  20226. height: math.unit(5 + 2 / 12, "feet"),
  20227. default: true
  20228. },
  20229. ]
  20230. ))
  20231. characterMakers.push(() => makeCharacter(
  20232. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20233. {
  20234. front: {
  20235. height: math.unit(6 + 3 / 12, "feet"),
  20236. weight: math.unit(519, "lb"),
  20237. name: "Front",
  20238. image: {
  20239. source: "./media/characters/dhari/front.svg",
  20240. extra: 1048 / 946,
  20241. bottom: 0.015
  20242. }
  20243. },
  20244. back: {
  20245. height: math.unit(6 + 3 / 12, "feet"),
  20246. weight: math.unit(519, "lb"),
  20247. name: "Back",
  20248. image: {
  20249. source: "./media/characters/dhari/back.svg",
  20250. extra: 1048 / 931,
  20251. bottom: 0.005
  20252. }
  20253. },
  20254. frontDressed: {
  20255. height: math.unit(6 + 3 / 12, "feet"),
  20256. weight: math.unit(519, "lb"),
  20257. name: "Front (Dressed)",
  20258. image: {
  20259. source: "./media/characters/dhari/front-dressed.svg",
  20260. extra: 1713 / 1546,
  20261. bottom: 0.02
  20262. }
  20263. },
  20264. backDressed: {
  20265. height: math.unit(6 + 3 / 12, "feet"),
  20266. weight: math.unit(519, "lb"),
  20267. name: "Back (Dressed)",
  20268. image: {
  20269. source: "./media/characters/dhari/back-dressed.svg",
  20270. extra: 1699 / 1537,
  20271. bottom: 0.01
  20272. }
  20273. },
  20274. maw: {
  20275. height: math.unit(0.95, "feet"),
  20276. name: "Maw",
  20277. image: {
  20278. source: "./media/characters/dhari/maw.svg"
  20279. }
  20280. },
  20281. wereFront: {
  20282. height: math.unit(12 + 8 / 12, "feet"),
  20283. weight: math.unit(4000, "lb"),
  20284. name: "Front (Were)",
  20285. image: {
  20286. source: "./media/characters/dhari/were-front.svg",
  20287. extra: 1065 / 969,
  20288. bottom: 0.015
  20289. }
  20290. },
  20291. wereBack: {
  20292. height: math.unit(12 + 8 / 12, "feet"),
  20293. weight: math.unit(4000, "lb"),
  20294. name: "Back (Were)",
  20295. image: {
  20296. source: "./media/characters/dhari/were-back.svg",
  20297. extra: 1065 / 969,
  20298. bottom: 0.012
  20299. }
  20300. },
  20301. wereMaw: {
  20302. height: math.unit(0.625, "meters"),
  20303. name: "Maw (Were)",
  20304. image: {
  20305. source: "./media/characters/dhari/were-maw.svg"
  20306. }
  20307. },
  20308. },
  20309. [
  20310. {
  20311. name: "Normal",
  20312. height: math.unit(6 + 3 / 12, "feet"),
  20313. default: true
  20314. },
  20315. ]
  20316. ))
  20317. characterMakers.push(() => makeCharacter(
  20318. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20319. {
  20320. anthro: {
  20321. height: math.unit(5 + 7 / 12, "feet"),
  20322. weight: math.unit(175, "lb"),
  20323. name: "Anthro",
  20324. image: {
  20325. source: "./media/characters/rena-dyne/anthro.svg",
  20326. extra: 1849 / 1785,
  20327. bottom: 0.005
  20328. }
  20329. },
  20330. taur: {
  20331. height: math.unit(15 + 6 / 12, "feet"),
  20332. weight: math.unit(8000, "lb"),
  20333. name: "Taur",
  20334. image: {
  20335. source: "./media/characters/rena-dyne/taur.svg",
  20336. extra: 2315 / 2234,
  20337. bottom: 0.033
  20338. }
  20339. },
  20340. },
  20341. [
  20342. {
  20343. name: "Normal",
  20344. height: math.unit(5 + 7 / 12, "feet"),
  20345. default: true
  20346. },
  20347. ]
  20348. ))
  20349. characterMakers.push(() => makeCharacter(
  20350. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20351. {
  20352. front: {
  20353. height: math.unit(8, "feet"),
  20354. weight: math.unit(600, "lb"),
  20355. name: "Front",
  20356. image: {
  20357. source: "./media/characters/weremeep/front.svg",
  20358. extra: 967 / 862,
  20359. bottom: 0.01
  20360. }
  20361. },
  20362. },
  20363. [
  20364. {
  20365. name: "Normal",
  20366. height: math.unit(8, "feet"),
  20367. default: true
  20368. },
  20369. {
  20370. name: "Lorg",
  20371. height: math.unit(12, "feet")
  20372. },
  20373. {
  20374. name: "Oh Lawd She Comin'",
  20375. height: math.unit(20, "feet")
  20376. },
  20377. ]
  20378. ))
  20379. characterMakers.push(() => makeCharacter(
  20380. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20381. {
  20382. front: {
  20383. height: math.unit(4, "feet"),
  20384. weight: math.unit(90, "lb"),
  20385. name: "Front",
  20386. image: {
  20387. source: "./media/characters/reza/front.svg",
  20388. extra: 1183 / 1111,
  20389. bottom: 0.017
  20390. }
  20391. },
  20392. back: {
  20393. height: math.unit(4, "feet"),
  20394. weight: math.unit(90, "lb"),
  20395. name: "Back",
  20396. image: {
  20397. source: "./media/characters/reza/back.svg",
  20398. extra: 1183 / 1111,
  20399. bottom: 0.01
  20400. }
  20401. },
  20402. drake: {
  20403. height: math.unit(30, "feet"),
  20404. weight: math.unit(246960, "lb"),
  20405. name: "Drake",
  20406. image: {
  20407. source: "./media/characters/reza/drake.svg",
  20408. extra: 2350 / 2024,
  20409. bottom: 60.7 / 2403
  20410. }
  20411. },
  20412. },
  20413. [
  20414. {
  20415. name: "Normal",
  20416. height: math.unit(4, "feet"),
  20417. default: true
  20418. },
  20419. ]
  20420. ))
  20421. characterMakers.push(() => makeCharacter(
  20422. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20423. {
  20424. side: {
  20425. height: math.unit(15, "feet"),
  20426. weight: math.unit(14, "tons"),
  20427. name: "Side",
  20428. image: {
  20429. source: "./media/characters/athea/side.svg",
  20430. extra: 960 / 540,
  20431. bottom: 0.003
  20432. }
  20433. },
  20434. sitting: {
  20435. height: math.unit(6 * 2.85, "feet"),
  20436. weight: math.unit(14, "tons"),
  20437. name: "Sitting",
  20438. image: {
  20439. source: "./media/characters/athea/sitting.svg",
  20440. extra: 621 / 581,
  20441. bottom: 0.075
  20442. }
  20443. },
  20444. maw: {
  20445. height: math.unit(7.59498031496063, "feet"),
  20446. name: "Maw",
  20447. image: {
  20448. source: "./media/characters/athea/maw.svg"
  20449. }
  20450. },
  20451. },
  20452. [
  20453. {
  20454. name: "Lap Cat",
  20455. height: math.unit(2.5, "feet")
  20456. },
  20457. {
  20458. name: "Minimacro",
  20459. height: math.unit(15, "feet"),
  20460. default: true
  20461. },
  20462. {
  20463. name: "Macro",
  20464. height: math.unit(120, "feet")
  20465. },
  20466. {
  20467. name: "Macro+",
  20468. height: math.unit(640, "feet")
  20469. },
  20470. {
  20471. name: "Colossus",
  20472. height: math.unit(2.2, "miles")
  20473. },
  20474. ]
  20475. ))
  20476. characterMakers.push(() => makeCharacter(
  20477. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20478. {
  20479. front: {
  20480. height: math.unit(8 + 8 / 12, "feet"),
  20481. weight: math.unit(130, "kg"),
  20482. name: "Front",
  20483. image: {
  20484. source: "./media/characters/seroko/front.svg",
  20485. extra: 1385 / 1280,
  20486. bottom: 0.025
  20487. }
  20488. },
  20489. back: {
  20490. height: math.unit(8 + 8 / 12, "feet"),
  20491. weight: math.unit(130, "kg"),
  20492. name: "Back",
  20493. image: {
  20494. source: "./media/characters/seroko/back.svg",
  20495. extra: 1369 / 1238,
  20496. bottom: 0.018
  20497. }
  20498. },
  20499. frontDressed: {
  20500. height: math.unit(8 + 8 / 12, "feet"),
  20501. weight: math.unit(130, "kg"),
  20502. name: "Front (Dressed)",
  20503. image: {
  20504. source: "./media/characters/seroko/front-dressed.svg",
  20505. extra: 1366 / 1275,
  20506. bottom: 0.03
  20507. }
  20508. },
  20509. },
  20510. [
  20511. {
  20512. name: "Normal",
  20513. height: math.unit(8 + 8 / 12, "feet"),
  20514. default: true
  20515. },
  20516. ]
  20517. ))
  20518. characterMakers.push(() => makeCharacter(
  20519. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20520. {
  20521. front: {
  20522. height: math.unit(5.5, "feet"),
  20523. weight: math.unit(160, "lb"),
  20524. name: "Front",
  20525. image: {
  20526. source: "./media/characters/quatzi/front.svg",
  20527. extra: 2346 / 2242,
  20528. bottom: 0.015
  20529. }
  20530. },
  20531. },
  20532. [
  20533. {
  20534. name: "Normal",
  20535. height: math.unit(5.5, "feet"),
  20536. default: true
  20537. },
  20538. {
  20539. name: "Big",
  20540. height: math.unit(7.7, "feet")
  20541. },
  20542. ]
  20543. ))
  20544. characterMakers.push(() => makeCharacter(
  20545. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20546. {
  20547. front: {
  20548. height: math.unit(5 + 11 / 12, "feet"),
  20549. weight: math.unit(180, "lb"),
  20550. name: "Front",
  20551. image: {
  20552. source: "./media/characters/sen/front.svg",
  20553. extra: 1321 / 1254,
  20554. bottom: 0.015
  20555. }
  20556. },
  20557. side: {
  20558. height: math.unit(5 + 11 / 12, "feet"),
  20559. weight: math.unit(180, "lb"),
  20560. name: "Side",
  20561. image: {
  20562. source: "./media/characters/sen/side.svg",
  20563. extra: 1321 / 1254,
  20564. bottom: 0.007
  20565. }
  20566. },
  20567. back: {
  20568. height: math.unit(5 + 11 / 12, "feet"),
  20569. weight: math.unit(180, "lb"),
  20570. name: "Back",
  20571. image: {
  20572. source: "./media/characters/sen/back.svg",
  20573. extra: 1321 / 1254
  20574. }
  20575. },
  20576. },
  20577. [
  20578. {
  20579. name: "Normal",
  20580. height: math.unit(5 + 11 / 12, "feet"),
  20581. default: true
  20582. },
  20583. ]
  20584. ))
  20585. characterMakers.push(() => makeCharacter(
  20586. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20587. {
  20588. front: {
  20589. height: math.unit(166.6, "cm"),
  20590. weight: math.unit(66.6, "kg"),
  20591. name: "Front",
  20592. image: {
  20593. source: "./media/characters/fruity/front.svg",
  20594. extra: 1510 / 1386,
  20595. bottom: 0.04
  20596. }
  20597. },
  20598. back: {
  20599. height: math.unit(166.6, "cm"),
  20600. weight: math.unit(66.6, "lb"),
  20601. name: "Back",
  20602. image: {
  20603. source: "./media/characters/fruity/back.svg",
  20604. extra: 1563 / 1435,
  20605. bottom: 0.005
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Normal",
  20612. height: math.unit(166.6, "cm"),
  20613. default: true
  20614. },
  20615. {
  20616. name: "Demonic",
  20617. height: math.unit(166.6, "feet")
  20618. },
  20619. ]
  20620. ))
  20621. characterMakers.push(() => makeCharacter(
  20622. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20623. {
  20624. side: {
  20625. height: math.unit(10, "feet"),
  20626. weight: math.unit(500, "lb"),
  20627. name: "Side",
  20628. image: {
  20629. source: "./media/characters/zost/side.svg",
  20630. extra: 966 / 880,
  20631. bottom: 0.075
  20632. }
  20633. },
  20634. mawFront: {
  20635. height: math.unit(1.08, "meters"),
  20636. name: "Maw (Front)",
  20637. image: {
  20638. source: "./media/characters/zost/maw-front.svg"
  20639. }
  20640. },
  20641. mawSide: {
  20642. height: math.unit(2.66, "feet"),
  20643. name: "Maw (Side)",
  20644. image: {
  20645. source: "./media/characters/zost/maw-side.svg"
  20646. }
  20647. },
  20648. },
  20649. [
  20650. {
  20651. name: "Normal",
  20652. height: math.unit(10, "feet"),
  20653. default: true
  20654. },
  20655. ]
  20656. ))
  20657. characterMakers.push(() => makeCharacter(
  20658. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20659. {
  20660. front: {
  20661. height: math.unit(5 + 4 / 12, "feet"),
  20662. weight: math.unit(120, "lb"),
  20663. name: "Front",
  20664. image: {
  20665. source: "./media/characters/luci/front.svg",
  20666. extra: 1985 / 1884,
  20667. bottom: 0.04
  20668. }
  20669. },
  20670. back: {
  20671. height: math.unit(5 + 4 / 12, "feet"),
  20672. weight: math.unit(120, "lb"),
  20673. name: "Back",
  20674. image: {
  20675. source: "./media/characters/luci/back.svg",
  20676. extra: 1892 / 1791,
  20677. bottom: 0.002
  20678. }
  20679. },
  20680. },
  20681. [
  20682. {
  20683. name: "Normal",
  20684. height: math.unit(5 + 4 / 12, "feet"),
  20685. default: true
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20691. {
  20692. front: {
  20693. height: math.unit(1500, "feet"),
  20694. weight: math.unit(3.8e6, "tons"),
  20695. name: "Front",
  20696. image: {
  20697. source: "./media/characters/2th/front.svg",
  20698. extra: 3489 / 3350,
  20699. bottom: 0.1
  20700. }
  20701. },
  20702. foot: {
  20703. height: math.unit(461, "feet"),
  20704. name: "Foot",
  20705. image: {
  20706. source: "./media/characters/2th/foot.svg"
  20707. }
  20708. },
  20709. },
  20710. [
  20711. {
  20712. name: "\"Micro\"",
  20713. height: math.unit(15 + 7 / 12, "feet")
  20714. },
  20715. {
  20716. name: "Normal",
  20717. height: math.unit(1500, "feet"),
  20718. default: true
  20719. },
  20720. {
  20721. name: "Macro",
  20722. height: math.unit(5000, "feet")
  20723. },
  20724. {
  20725. name: "Megamacro",
  20726. height: math.unit(15, "miles")
  20727. },
  20728. {
  20729. name: "Gigamacro",
  20730. height: math.unit(4000, "miles")
  20731. },
  20732. {
  20733. name: "Galactic",
  20734. height: math.unit(50, "AU")
  20735. },
  20736. ]
  20737. ))
  20738. characterMakers.push(() => makeCharacter(
  20739. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20740. {
  20741. front: {
  20742. height: math.unit(5 + 6 / 12, "feet"),
  20743. weight: math.unit(220, "lb"),
  20744. name: "Front",
  20745. image: {
  20746. source: "./media/characters/amethyst/front.svg",
  20747. extra: 2078 / 2040,
  20748. bottom: 0.045
  20749. }
  20750. },
  20751. back: {
  20752. height: math.unit(5 + 6 / 12, "feet"),
  20753. weight: math.unit(220, "lb"),
  20754. name: "Back",
  20755. image: {
  20756. source: "./media/characters/amethyst/back.svg",
  20757. extra: 2021 / 1989,
  20758. bottom: 0.02
  20759. }
  20760. },
  20761. },
  20762. [
  20763. {
  20764. name: "Normal",
  20765. height: math.unit(5 + 6 / 12, "feet"),
  20766. default: true
  20767. },
  20768. ]
  20769. ))
  20770. characterMakers.push(() => makeCharacter(
  20771. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20772. {
  20773. front: {
  20774. height: math.unit(4 + 11 / 12, "feet"),
  20775. weight: math.unit(120, "lb"),
  20776. name: "Front",
  20777. image: {
  20778. source: "./media/characters/yumi-akiyama/front.svg",
  20779. extra: 1327 / 1235,
  20780. bottom: 0.02
  20781. }
  20782. },
  20783. back: {
  20784. height: math.unit(4 + 11 / 12, "feet"),
  20785. weight: math.unit(120, "lb"),
  20786. name: "Back",
  20787. image: {
  20788. source: "./media/characters/yumi-akiyama/back.svg",
  20789. extra: 1287 / 1245,
  20790. bottom: 0.002
  20791. }
  20792. },
  20793. },
  20794. [
  20795. {
  20796. name: "Galactic",
  20797. height: math.unit(50, "galaxies"),
  20798. default: true
  20799. },
  20800. {
  20801. name: "Universal",
  20802. height: math.unit(100, "universes")
  20803. },
  20804. ]
  20805. ))
  20806. characterMakers.push(() => makeCharacter(
  20807. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20808. {
  20809. front: {
  20810. height: math.unit(8, "feet"),
  20811. weight: math.unit(500, "lb"),
  20812. name: "Front",
  20813. image: {
  20814. source: "./media/characters/rifter-yrmori/front.svg",
  20815. extra: 1180 / 1125,
  20816. bottom: 0.02
  20817. }
  20818. },
  20819. back: {
  20820. height: math.unit(8, "feet"),
  20821. weight: math.unit(500, "lb"),
  20822. name: "Back",
  20823. image: {
  20824. source: "./media/characters/rifter-yrmori/back.svg",
  20825. extra: 1190 / 1145,
  20826. bottom: 0.001
  20827. }
  20828. },
  20829. wings: {
  20830. height: math.unit(7.75, "feet"),
  20831. weight: math.unit(500, "lb"),
  20832. name: "Wings",
  20833. image: {
  20834. source: "./media/characters/rifter-yrmori/wings.svg",
  20835. extra: 1357 / 1285
  20836. }
  20837. },
  20838. maw: {
  20839. height: math.unit(0.8, "feet"),
  20840. name: "Maw",
  20841. image: {
  20842. source: "./media/characters/rifter-yrmori/maw.svg"
  20843. }
  20844. },
  20845. mawfront: {
  20846. height: math.unit(1.45, "feet"),
  20847. name: "Maw (Front)",
  20848. image: {
  20849. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20850. }
  20851. },
  20852. },
  20853. [
  20854. {
  20855. name: "Normal",
  20856. height: math.unit(8, "feet"),
  20857. default: true
  20858. },
  20859. {
  20860. name: "Macro",
  20861. height: math.unit(42, "meters")
  20862. },
  20863. ]
  20864. ))
  20865. characterMakers.push(() => makeCharacter(
  20866. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20867. {
  20868. were: {
  20869. height: math.unit(25 + 6 / 12, "feet"),
  20870. weight: math.unit(10000, "lb"),
  20871. name: "Were",
  20872. image: {
  20873. source: "./media/characters/tahajin/were.svg",
  20874. extra: 801 / 770,
  20875. bottom: 0.042
  20876. }
  20877. },
  20878. aquatic: {
  20879. height: math.unit(6 + 4 / 12, "feet"),
  20880. weight: math.unit(160, "lb"),
  20881. name: "Aquatic",
  20882. image: {
  20883. source: "./media/characters/tahajin/aquatic.svg",
  20884. extra: 572 / 542,
  20885. bottom: 0.04
  20886. }
  20887. },
  20888. chow: {
  20889. height: math.unit(8 + 11 / 12, "feet"),
  20890. weight: math.unit(450, "lb"),
  20891. name: "Chow",
  20892. image: {
  20893. source: "./media/characters/tahajin/chow.svg",
  20894. extra: 660 / 640,
  20895. bottom: 0.015
  20896. }
  20897. },
  20898. demiNaga: {
  20899. height: math.unit(6 + 8 / 12, "feet"),
  20900. weight: math.unit(300, "lb"),
  20901. name: "Demi Naga",
  20902. image: {
  20903. source: "./media/characters/tahajin/demi-naga.svg",
  20904. extra: 643 / 615,
  20905. bottom: 0.1
  20906. }
  20907. },
  20908. data: {
  20909. height: math.unit(5, "inches"),
  20910. weight: math.unit(0.1, "lb"),
  20911. name: "Data",
  20912. image: {
  20913. source: "./media/characters/tahajin/data.svg"
  20914. }
  20915. },
  20916. fluu: {
  20917. height: math.unit(5 + 7 / 12, "feet"),
  20918. weight: math.unit(140, "lb"),
  20919. name: "Fluu",
  20920. image: {
  20921. source: "./media/characters/tahajin/fluu.svg",
  20922. extra: 628 / 592,
  20923. bottom: 0.02
  20924. }
  20925. },
  20926. starWarrior: {
  20927. height: math.unit(4 + 5 / 12, "feet"),
  20928. weight: math.unit(50, "lb"),
  20929. name: "Star Warrior",
  20930. image: {
  20931. source: "./media/characters/tahajin/star-warrior.svg"
  20932. }
  20933. },
  20934. },
  20935. [
  20936. {
  20937. name: "Normal",
  20938. height: math.unit(25 + 6 / 12, "feet"),
  20939. default: true
  20940. },
  20941. ]
  20942. ))
  20943. characterMakers.push(() => makeCharacter(
  20944. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20945. {
  20946. front: {
  20947. height: math.unit(8, "feet"),
  20948. weight: math.unit(350, "lb"),
  20949. name: "Front",
  20950. image: {
  20951. source: "./media/characters/gabira/front.svg",
  20952. extra: 608 / 580,
  20953. bottom: 0.03
  20954. }
  20955. },
  20956. back: {
  20957. height: math.unit(8, "feet"),
  20958. weight: math.unit(350, "lb"),
  20959. name: "Back",
  20960. image: {
  20961. source: "./media/characters/gabira/back.svg",
  20962. extra: 608 / 580,
  20963. bottom: 0.03
  20964. }
  20965. },
  20966. },
  20967. [
  20968. {
  20969. name: "Normal",
  20970. height: math.unit(8, "feet"),
  20971. default: true
  20972. },
  20973. ]
  20974. ))
  20975. characterMakers.push(() => makeCharacter(
  20976. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20977. {
  20978. front: {
  20979. height: math.unit(5 + 3 / 12, "feet"),
  20980. weight: math.unit(137, "lb"),
  20981. name: "Front",
  20982. image: {
  20983. source: "./media/characters/sasha-katraine/front.svg",
  20984. bottom: 0.045
  20985. }
  20986. },
  20987. },
  20988. [
  20989. {
  20990. name: "Micro",
  20991. height: math.unit(5, "inches")
  20992. },
  20993. {
  20994. name: "Normal",
  20995. height: math.unit(5 + 3 / 12, "feet"),
  20996. default: true
  20997. },
  20998. ]
  20999. ))
  21000. characterMakers.push(() => makeCharacter(
  21001. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21002. {
  21003. side: {
  21004. height: math.unit(4, "inches"),
  21005. weight: math.unit(200, "grams"),
  21006. name: "Side",
  21007. image: {
  21008. source: "./media/characters/der/side.svg",
  21009. extra: 719 / 400,
  21010. bottom: 30.6 / 749.9187
  21011. }
  21012. },
  21013. },
  21014. [
  21015. {
  21016. name: "Micro",
  21017. height: math.unit(4, "inches"),
  21018. default: true
  21019. },
  21020. ]
  21021. ))
  21022. characterMakers.push(() => makeCharacter(
  21023. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21024. {
  21025. side: {
  21026. height: math.unit(30, "meters"),
  21027. weight: math.unit(700, "tonnes"),
  21028. name: "Side",
  21029. image: {
  21030. source: "./media/characters/fixerdragon/side.svg",
  21031. extra: (1293.0514 - 116.03) / 1106.86,
  21032. bottom: 116.03 / 1293.0514
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Planck",
  21039. height: math.unit(1.6e-35, "meters")
  21040. },
  21041. {
  21042. name: "Micro",
  21043. height: math.unit(0.4, "meters")
  21044. },
  21045. {
  21046. name: "Normal",
  21047. height: math.unit(30, "meters"),
  21048. default: true
  21049. },
  21050. {
  21051. name: "Megamacro",
  21052. height: math.unit(1.2, "megameters")
  21053. },
  21054. {
  21055. name: "Teramacro",
  21056. height: math.unit(130, "terameters")
  21057. },
  21058. {
  21059. name: "Yottamacro",
  21060. height: math.unit(6200, "yottameters")
  21061. },
  21062. ]
  21063. ));
  21064. characterMakers.push(() => makeCharacter(
  21065. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21066. {
  21067. front: {
  21068. height: math.unit(8, "feet"),
  21069. weight: math.unit(250, "lb"),
  21070. name: "Front",
  21071. image: {
  21072. source: "./media/characters/kite/front.svg",
  21073. extra: 2796 / 2659,
  21074. bottom: 0.002
  21075. }
  21076. },
  21077. },
  21078. [
  21079. {
  21080. name: "Normal",
  21081. height: math.unit(8, "feet"),
  21082. default: true
  21083. },
  21084. {
  21085. name: "Macro",
  21086. height: math.unit(360, "feet")
  21087. },
  21088. {
  21089. name: "Megamacro",
  21090. height: math.unit(1500, "feet")
  21091. },
  21092. ]
  21093. ))
  21094. characterMakers.push(() => makeCharacter(
  21095. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21096. {
  21097. front: {
  21098. height: math.unit(5 + 10 / 12, "feet"),
  21099. weight: math.unit(150, "lb"),
  21100. name: "Front",
  21101. image: {
  21102. source: "./media/characters/poojawa-vynar/front.svg",
  21103. extra: (1506.1547 - 55) / 1356.6,
  21104. bottom: 55 / 1506.1547
  21105. }
  21106. },
  21107. frontTailless: {
  21108. height: math.unit(5 + 10 / 12, "feet"),
  21109. weight: math.unit(150, "lb"),
  21110. name: "Front (Tailless)",
  21111. image: {
  21112. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21113. extra: (1506.1547 - 55) / 1356.6,
  21114. bottom: 55 / 1506.1547
  21115. }
  21116. },
  21117. },
  21118. [
  21119. {
  21120. name: "Normal",
  21121. height: math.unit(5 + 10 / 12, "feet"),
  21122. default: true
  21123. },
  21124. ]
  21125. ))
  21126. characterMakers.push(() => makeCharacter(
  21127. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21128. {
  21129. front: {
  21130. height: math.unit(293, "meters"),
  21131. weight: math.unit(70400, "tons"),
  21132. name: "Front",
  21133. image: {
  21134. source: "./media/characters/violette/front.svg",
  21135. extra: 1227 / 1180,
  21136. bottom: 0.005
  21137. }
  21138. },
  21139. back: {
  21140. height: math.unit(293, "meters"),
  21141. weight: math.unit(70400, "tons"),
  21142. name: "Back",
  21143. image: {
  21144. source: "./media/characters/violette/back.svg",
  21145. extra: 1227 / 1180,
  21146. bottom: 0.005
  21147. }
  21148. },
  21149. },
  21150. [
  21151. {
  21152. name: "Macro",
  21153. height: math.unit(293, "meters"),
  21154. default: true
  21155. },
  21156. ]
  21157. ))
  21158. characterMakers.push(() => makeCharacter(
  21159. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21160. {
  21161. front: {
  21162. height: math.unit(1050, "feet"),
  21163. weight: math.unit(200000, "tons"),
  21164. name: "Front",
  21165. image: {
  21166. source: "./media/characters/alessandra/front.svg",
  21167. extra: 960 / 912,
  21168. bottom: 0.06
  21169. }
  21170. },
  21171. },
  21172. [
  21173. {
  21174. name: "Macro",
  21175. height: math.unit(1050, "feet")
  21176. },
  21177. {
  21178. name: "Macro+",
  21179. height: math.unit(900, "meters"),
  21180. default: true
  21181. },
  21182. ]
  21183. ))
  21184. characterMakers.push(() => makeCharacter(
  21185. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21186. {
  21187. front: {
  21188. height: math.unit(5, "feet"),
  21189. weight: math.unit(187, "lb"),
  21190. name: "Front",
  21191. image: {
  21192. source: "./media/characters/person/front.svg",
  21193. extra: 3087 / 2945,
  21194. bottom: 91 / 3181
  21195. }
  21196. },
  21197. },
  21198. [
  21199. {
  21200. name: "Micro",
  21201. height: math.unit(3, "inches")
  21202. },
  21203. {
  21204. name: "Normal",
  21205. height: math.unit(5, "feet"),
  21206. default: true
  21207. },
  21208. {
  21209. name: "Macro",
  21210. height: math.unit(90, "feet")
  21211. },
  21212. {
  21213. name: "Max Size",
  21214. height: math.unit(280, "feet")
  21215. },
  21216. ]
  21217. ))
  21218. characterMakers.push(() => makeCharacter(
  21219. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21220. {
  21221. front: {
  21222. height: math.unit(4.5, "meters"),
  21223. weight: math.unit(3200, "lb"),
  21224. name: "Front",
  21225. image: {
  21226. source: "./media/characters/ty/front.svg",
  21227. extra: 1038 / 960,
  21228. bottom: 31.156 / 1068
  21229. }
  21230. },
  21231. back: {
  21232. height: math.unit(4.5, "meters"),
  21233. weight: math.unit(3200, "lb"),
  21234. name: "Back",
  21235. image: {
  21236. source: "./media/characters/ty/back.svg",
  21237. extra: 1044 / 966,
  21238. bottom: 7.48 / 1049
  21239. }
  21240. },
  21241. },
  21242. [
  21243. {
  21244. name: "Normal",
  21245. height: math.unit(4.5, "meters"),
  21246. default: true
  21247. },
  21248. ]
  21249. ))
  21250. characterMakers.push(() => makeCharacter(
  21251. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21252. {
  21253. front: {
  21254. height: math.unit(5 + 4 / 12, "feet"),
  21255. weight: math.unit(115, "lb"),
  21256. name: "Front",
  21257. image: {
  21258. source: "./media/characters/rocky/front.svg",
  21259. extra: 1012 / 975,
  21260. bottom: 54 / 1066
  21261. }
  21262. },
  21263. },
  21264. [
  21265. {
  21266. name: "Normal",
  21267. height: math.unit(5 + 4 / 12, "feet"),
  21268. default: true
  21269. },
  21270. ]
  21271. ))
  21272. characterMakers.push(() => makeCharacter(
  21273. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21274. {
  21275. upright: {
  21276. height: math.unit(6, "meters"),
  21277. weight: math.unit(4000, "kg"),
  21278. name: "Upright",
  21279. image: {
  21280. source: "./media/characters/ruin/upright.svg",
  21281. extra: 668 / 661,
  21282. bottom: 42 / 799.8396
  21283. }
  21284. },
  21285. },
  21286. [
  21287. {
  21288. name: "Normal",
  21289. height: math.unit(6, "meters"),
  21290. default: true
  21291. },
  21292. ]
  21293. ))
  21294. characterMakers.push(() => makeCharacter(
  21295. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21296. {
  21297. front: {
  21298. height: math.unit(5, "feet"),
  21299. weight: math.unit(106, "lb"),
  21300. name: "Front",
  21301. image: {
  21302. source: "./media/characters/robin/front.svg",
  21303. extra: 862 / 799,
  21304. bottom: 42.4 / 914.8856
  21305. }
  21306. },
  21307. },
  21308. [
  21309. {
  21310. name: "Normal",
  21311. height: math.unit(5, "feet"),
  21312. default: true
  21313. },
  21314. ]
  21315. ))
  21316. characterMakers.push(() => makeCharacter(
  21317. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21318. {
  21319. side: {
  21320. height: math.unit(3, "feet"),
  21321. weight: math.unit(225, "lb"),
  21322. name: "Side",
  21323. image: {
  21324. source: "./media/characters/saian/side.svg",
  21325. extra: 566 / 356,
  21326. bottom: 79.7 / 643
  21327. }
  21328. },
  21329. maw: {
  21330. height: math.unit(2.85, "feet"),
  21331. name: "Maw",
  21332. image: {
  21333. source: "./media/characters/saian/maw.svg"
  21334. }
  21335. },
  21336. },
  21337. [
  21338. {
  21339. name: "Normal",
  21340. height: math.unit(3, "feet"),
  21341. default: true
  21342. },
  21343. ]
  21344. ))
  21345. characterMakers.push(() => makeCharacter(
  21346. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21347. {
  21348. side: {
  21349. height: math.unit(8, "feet"),
  21350. weight: math.unit(300, "lb"),
  21351. name: "Side",
  21352. image: {
  21353. source: "./media/characters/equus-silvermane/side.svg",
  21354. extra: 2176 / 2050,
  21355. bottom: 65.7 / 2245
  21356. }
  21357. },
  21358. front: {
  21359. height: math.unit(8, "feet"),
  21360. weight: math.unit(300, "lb"),
  21361. name: "Front",
  21362. image: {
  21363. source: "./media/characters/equus-silvermane/front.svg",
  21364. extra: 4633 / 4400,
  21365. bottom: 71.3 / 4706.915
  21366. }
  21367. },
  21368. sideStepping: {
  21369. height: math.unit(8, "feet"),
  21370. weight: math.unit(300, "lb"),
  21371. name: "Side (Stepping)",
  21372. image: {
  21373. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21374. extra: 1968 / 1860,
  21375. bottom: 16.4 / 1989
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(8, "feet")
  21383. },
  21384. {
  21385. name: "Minimacro",
  21386. height: math.unit(75, "feet"),
  21387. default: true
  21388. },
  21389. {
  21390. name: "Macro",
  21391. height: math.unit(150, "feet")
  21392. },
  21393. {
  21394. name: "Macro+",
  21395. height: math.unit(1000, "feet")
  21396. },
  21397. {
  21398. name: "Megamacro",
  21399. height: math.unit(1, "mile")
  21400. },
  21401. ]
  21402. ))
  21403. characterMakers.push(() => makeCharacter(
  21404. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21405. {
  21406. side: {
  21407. height: math.unit(20, "feet"),
  21408. weight: math.unit(30000, "kg"),
  21409. name: "Side",
  21410. image: {
  21411. source: "./media/characters/windar/side.svg",
  21412. extra: 1491 / 1248,
  21413. bottom: 82.56 / 1568
  21414. }
  21415. },
  21416. },
  21417. [
  21418. {
  21419. name: "Normal",
  21420. height: math.unit(20, "feet"),
  21421. default: true
  21422. },
  21423. ]
  21424. ))
  21425. characterMakers.push(() => makeCharacter(
  21426. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21427. {
  21428. side: {
  21429. height: math.unit(15.66, "feet"),
  21430. weight: math.unit(150, "lb"),
  21431. name: "Side",
  21432. image: {
  21433. source: "./media/characters/melody/side.svg",
  21434. extra: 1097 / 944,
  21435. bottom: 11.8 / 1109
  21436. }
  21437. },
  21438. sideOutfit: {
  21439. height: math.unit(15.66, "feet"),
  21440. weight: math.unit(150, "lb"),
  21441. name: "Side (Outfit)",
  21442. image: {
  21443. source: "./media/characters/melody/side-outfit.svg",
  21444. extra: 1097 / 944,
  21445. bottom: 11.8 / 1109
  21446. }
  21447. },
  21448. },
  21449. [
  21450. {
  21451. name: "Normal",
  21452. height: math.unit(15.66, "feet"),
  21453. default: true
  21454. },
  21455. ]
  21456. ))
  21457. characterMakers.push(() => makeCharacter(
  21458. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21459. {
  21460. front: {
  21461. height: math.unit(8, "feet"),
  21462. weight: math.unit(325, "lb"),
  21463. name: "Front",
  21464. image: {
  21465. source: "./media/characters/windera/front.svg",
  21466. extra: 3180 / 2845,
  21467. bottom: 178 / 3365
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Normal",
  21474. height: math.unit(8, "feet"),
  21475. default: true
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21481. {
  21482. front: {
  21483. height: math.unit(28.75, "feet"),
  21484. weight: math.unit(2000, "kg"),
  21485. name: "Front",
  21486. image: {
  21487. source: "./media/characters/sonear/front.svg",
  21488. extra: 1041.1 / 964.9,
  21489. bottom: 53.7 / 1096.6
  21490. }
  21491. },
  21492. },
  21493. [
  21494. {
  21495. name: "Normal",
  21496. height: math.unit(28.75, "feet"),
  21497. default: true
  21498. },
  21499. ]
  21500. ))
  21501. characterMakers.push(() => makeCharacter(
  21502. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21503. {
  21504. side: {
  21505. height: math.unit(25.5, "feet"),
  21506. weight: math.unit(23000, "kg"),
  21507. name: "Side",
  21508. image: {
  21509. source: "./media/characters/kanara/side.svg"
  21510. }
  21511. },
  21512. },
  21513. [
  21514. {
  21515. name: "Normal",
  21516. height: math.unit(25.5, "feet"),
  21517. default: true
  21518. },
  21519. ]
  21520. ))
  21521. characterMakers.push(() => makeCharacter(
  21522. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21523. {
  21524. side: {
  21525. height: math.unit(10, "feet"),
  21526. weight: math.unit(1000, "kg"),
  21527. name: "Side",
  21528. image: {
  21529. source: "./media/characters/ereus/side.svg",
  21530. extra: 1157 / 959,
  21531. bottom: 153 / 1312.5
  21532. }
  21533. },
  21534. },
  21535. [
  21536. {
  21537. name: "Normal",
  21538. height: math.unit(10, "feet"),
  21539. default: true
  21540. },
  21541. ]
  21542. ))
  21543. characterMakers.push(() => makeCharacter(
  21544. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21545. {
  21546. side: {
  21547. height: math.unit(4.5, "feet"),
  21548. weight: math.unit(500, "lb"),
  21549. name: "Side",
  21550. image: {
  21551. source: "./media/characters/e-ter/side.svg",
  21552. extra: 1550 / 1248,
  21553. bottom: 146 / 1694
  21554. }
  21555. },
  21556. },
  21557. [
  21558. {
  21559. name: "Normal",
  21560. height: math.unit(4.5, "feet"),
  21561. default: true
  21562. },
  21563. ]
  21564. ))
  21565. characterMakers.push(() => makeCharacter(
  21566. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21567. {
  21568. side: {
  21569. height: math.unit(9.7, "feet"),
  21570. weight: math.unit(4000, "kg"),
  21571. name: "Side",
  21572. image: {
  21573. source: "./media/characters/yamie/side.svg"
  21574. }
  21575. },
  21576. },
  21577. [
  21578. {
  21579. name: "Normal",
  21580. height: math.unit(9.7, "feet"),
  21581. default: true
  21582. },
  21583. ]
  21584. ))
  21585. characterMakers.push(() => makeCharacter(
  21586. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21587. {
  21588. front: {
  21589. height: math.unit(50, "feet"),
  21590. weight: math.unit(50000, "kg"),
  21591. name: "Front",
  21592. image: {
  21593. source: "./media/characters/anders/front.svg",
  21594. extra: 570 / 539,
  21595. bottom: 14.7 / 586.7
  21596. }
  21597. },
  21598. },
  21599. [
  21600. {
  21601. name: "Large",
  21602. height: math.unit(50, "feet")
  21603. },
  21604. {
  21605. name: "Macro",
  21606. height: math.unit(2000, "feet"),
  21607. default: true
  21608. },
  21609. {
  21610. name: "Megamacro",
  21611. height: math.unit(12, "miles")
  21612. },
  21613. ]
  21614. ))
  21615. characterMakers.push(() => makeCharacter(
  21616. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21617. {
  21618. front: {
  21619. height: math.unit(7 + 2 / 12, "feet"),
  21620. weight: math.unit(300, "lb"),
  21621. name: "Front",
  21622. image: {
  21623. source: "./media/characters/reban/front.svg",
  21624. extra: 516 / 487,
  21625. bottom: 42.82 / 558.356
  21626. }
  21627. },
  21628. dick: {
  21629. height: math.unit(7 / 5, "feet"),
  21630. name: "Dick",
  21631. image: {
  21632. source: "./media/characters/reban/dick.svg"
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Natural Height",
  21639. height: math.unit(7 + 2 / 12, "feet")
  21640. },
  21641. {
  21642. name: "Macro",
  21643. height: math.unit(500, "feet"),
  21644. default: true
  21645. },
  21646. {
  21647. name: "Canon Height",
  21648. height: math.unit(50, "AU")
  21649. },
  21650. ]
  21651. ))
  21652. characterMakers.push(() => makeCharacter(
  21653. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21654. {
  21655. front: {
  21656. height: math.unit(6, "feet"),
  21657. weight: math.unit(150, "lb"),
  21658. name: "Front",
  21659. image: {
  21660. source: "./media/characters/terrance-keayes/front.svg",
  21661. extra: 1.005,
  21662. bottom: 151 / 1615
  21663. }
  21664. },
  21665. side: {
  21666. height: math.unit(6, "feet"),
  21667. weight: math.unit(150, "lb"),
  21668. name: "Side",
  21669. image: {
  21670. source: "./media/characters/terrance-keayes/side.svg",
  21671. extra: 1.005,
  21672. bottom: 129.4 / 1544
  21673. }
  21674. },
  21675. back: {
  21676. height: math.unit(6, "feet"),
  21677. weight: math.unit(150, "lb"),
  21678. name: "Back",
  21679. image: {
  21680. source: "./media/characters/terrance-keayes/back.svg",
  21681. extra: 1.005,
  21682. bottom: 58.4 / 1557.3
  21683. }
  21684. },
  21685. dick: {
  21686. height: math.unit(6 * 0.208, "feet"),
  21687. name: "Dick",
  21688. image: {
  21689. source: "./media/characters/terrance-keayes/dick.svg"
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Canon Height",
  21696. height: math.unit(35, "miles"),
  21697. default: true
  21698. },
  21699. ]
  21700. ))
  21701. characterMakers.push(() => makeCharacter(
  21702. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21703. {
  21704. front: {
  21705. height: math.unit(6, "feet"),
  21706. weight: math.unit(150, "lb"),
  21707. name: "Front",
  21708. image: {
  21709. source: "./media/characters/ofelia/front.svg",
  21710. extra: 546 / 541,
  21711. bottom: 39 / 583
  21712. }
  21713. },
  21714. back: {
  21715. height: math.unit(6, "feet"),
  21716. weight: math.unit(150, "lb"),
  21717. name: "Back",
  21718. image: {
  21719. source: "./media/characters/ofelia/back.svg",
  21720. extra: 564 / 559.5,
  21721. bottom: 8.69 / 573.02
  21722. }
  21723. },
  21724. maw: {
  21725. height: math.unit(1, "feet"),
  21726. name: "Maw",
  21727. image: {
  21728. source: "./media/characters/ofelia/maw.svg"
  21729. }
  21730. },
  21731. foot: {
  21732. height: math.unit(1.949, "feet"),
  21733. name: "Foot",
  21734. image: {
  21735. source: "./media/characters/ofelia/foot.svg"
  21736. }
  21737. },
  21738. },
  21739. [
  21740. {
  21741. name: "Canon Height",
  21742. height: math.unit(2000, "miles"),
  21743. default: true
  21744. },
  21745. ]
  21746. ))
  21747. characterMakers.push(() => makeCharacter(
  21748. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21749. {
  21750. front: {
  21751. height: math.unit(6, "feet"),
  21752. weight: math.unit(150, "lb"),
  21753. name: "Front",
  21754. image: {
  21755. source: "./media/characters/samuel/front.svg",
  21756. extra: 265 / 258,
  21757. bottom: 2 / 266.1566
  21758. }
  21759. },
  21760. },
  21761. [
  21762. {
  21763. name: "Macro",
  21764. height: math.unit(100, "feet"),
  21765. default: true
  21766. },
  21767. {
  21768. name: "Full Size",
  21769. height: math.unit(1000, "miles")
  21770. },
  21771. ]
  21772. ))
  21773. characterMakers.push(() => makeCharacter(
  21774. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21775. {
  21776. front: {
  21777. height: math.unit(6, "feet"),
  21778. weight: math.unit(300, "lb"),
  21779. name: "Front",
  21780. image: {
  21781. source: "./media/characters/beishir-kiel/front.svg",
  21782. extra: 569 / 547,
  21783. bottom: 41.9 / 609
  21784. }
  21785. },
  21786. maw: {
  21787. height: math.unit(6 * 0.202, "feet"),
  21788. name: "Maw",
  21789. image: {
  21790. source: "./media/characters/beishir-kiel/maw.svg"
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Macro",
  21797. height: math.unit(300, "feet"),
  21798. default: true
  21799. },
  21800. ]
  21801. ))
  21802. characterMakers.push(() => makeCharacter(
  21803. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21804. {
  21805. front: {
  21806. height: math.unit(5 + 8 / 12, "feet"),
  21807. weight: math.unit(120, "lb"),
  21808. name: "Front",
  21809. image: {
  21810. source: "./media/characters/logan-grey/front.svg",
  21811. extra: 2539 / 2393,
  21812. bottom: 97.6 / 2636.37
  21813. }
  21814. },
  21815. frontAlt: {
  21816. height: math.unit(5 + 8 / 12, "feet"),
  21817. weight: math.unit(120, "lb"),
  21818. name: "Front (Alt)",
  21819. image: {
  21820. source: "./media/characters/logan-grey/front-alt.svg",
  21821. extra: 958 / 893,
  21822. bottom: 15 / 970.768
  21823. }
  21824. },
  21825. back: {
  21826. height: math.unit(5 + 8 / 12, "feet"),
  21827. weight: math.unit(120, "lb"),
  21828. name: "Back",
  21829. image: {
  21830. source: "./media/characters/logan-grey/back.svg",
  21831. extra: 958 / 893,
  21832. bottom: 2.1881 / 970.9788
  21833. }
  21834. },
  21835. dick: {
  21836. height: math.unit(1.437, "feet"),
  21837. name: "Dick",
  21838. image: {
  21839. source: "./media/characters/logan-grey/dick.svg"
  21840. }
  21841. },
  21842. },
  21843. [
  21844. {
  21845. name: "Normal",
  21846. height: math.unit(5 + 8 / 12, "feet")
  21847. },
  21848. {
  21849. name: "The 500 Foot Femboy",
  21850. height: math.unit(500, "feet"),
  21851. default: true
  21852. },
  21853. {
  21854. name: "Megmacro",
  21855. height: math.unit(20, "miles")
  21856. },
  21857. ]
  21858. ))
  21859. characterMakers.push(() => makeCharacter(
  21860. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21861. {
  21862. front: {
  21863. height: math.unit(8 + 2 / 12, "feet"),
  21864. weight: math.unit(275, "lb"),
  21865. name: "Front",
  21866. image: {
  21867. source: "./media/characters/draganta/front.svg",
  21868. extra: 1177 / 1135,
  21869. bottom: 33.46 / 1212.1
  21870. }
  21871. },
  21872. },
  21873. [
  21874. {
  21875. name: "Normal",
  21876. height: math.unit(8 + 6 / 12, "feet"),
  21877. default: true
  21878. },
  21879. {
  21880. name: "Macro",
  21881. height: math.unit(150, "feet")
  21882. },
  21883. {
  21884. name: "Megamacro",
  21885. height: math.unit(1000, "miles")
  21886. },
  21887. ]
  21888. ))
  21889. characterMakers.push(() => makeCharacter(
  21890. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21891. {
  21892. front: {
  21893. height: math.unit(1.72, "m"),
  21894. weight: math.unit(80, "lb"),
  21895. name: "Front",
  21896. image: {
  21897. source: "./media/characters/voski/front.svg",
  21898. extra: 2076.22 / 2022.4,
  21899. bottom: 102.7 / 2177.3866
  21900. }
  21901. },
  21902. frontNsfw: {
  21903. height: math.unit(1.72, "m"),
  21904. weight: math.unit(80, "lb"),
  21905. name: "Front (NSFW)",
  21906. image: {
  21907. source: "./media/characters/voski/front-nsfw.svg",
  21908. extra: 2076.22 / 2022.4,
  21909. bottom: 102.7 / 2177.3866
  21910. }
  21911. },
  21912. back: {
  21913. height: math.unit(1.72, "m"),
  21914. weight: math.unit(80, "lb"),
  21915. name: "Back",
  21916. image: {
  21917. source: "./media/characters/voski/back.svg",
  21918. extra: 2104 / 2051,
  21919. bottom: 10.45 / 2113.63
  21920. }
  21921. },
  21922. },
  21923. [
  21924. {
  21925. name: "Normal",
  21926. height: math.unit(1.72, "m")
  21927. },
  21928. {
  21929. name: "Macro",
  21930. height: math.unit(55, "m"),
  21931. default: true
  21932. },
  21933. {
  21934. name: "Macro+",
  21935. height: math.unit(300, "m")
  21936. },
  21937. {
  21938. name: "Macro++",
  21939. height: math.unit(700, "m")
  21940. },
  21941. {
  21942. name: "Macro+++",
  21943. height: math.unit(4500, "m")
  21944. },
  21945. {
  21946. name: "Macro++++",
  21947. height: math.unit(45, "km")
  21948. },
  21949. {
  21950. name: "Macro+++++",
  21951. height: math.unit(1220, "km")
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(2.3, "m"),
  21960. weight: math.unit(304, "kg"),
  21961. name: "Front",
  21962. image: {
  21963. source: "./media/characters/icowom-lee/front.svg",
  21964. extra: 985 / 955,
  21965. bottom: 25.4 / 1012
  21966. }
  21967. },
  21968. fronttentacles: {
  21969. height: math.unit(2.3, "m"),
  21970. weight: math.unit(304, "kg"),
  21971. name: "Front-tentacles",
  21972. image: {
  21973. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21974. extra: 985 / 955,
  21975. bottom: 25.4 / 1012
  21976. }
  21977. },
  21978. back: {
  21979. height: math.unit(2.3, "m"),
  21980. weight: math.unit(304, "kg"),
  21981. name: "Back",
  21982. image: {
  21983. source: "./media/characters/icowom-lee/back.svg",
  21984. extra: 975 / 954,
  21985. bottom: 9.5 / 985
  21986. }
  21987. },
  21988. backtentacles: {
  21989. height: math.unit(2.3, "m"),
  21990. weight: math.unit(304, "kg"),
  21991. name: "Back-tentacles",
  21992. image: {
  21993. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21994. extra: 975 / 954,
  21995. bottom: 9.5 / 985
  21996. }
  21997. },
  21998. frontDressed: {
  21999. height: math.unit(2.3, "m"),
  22000. weight: math.unit(304, "kg"),
  22001. name: "Front (Dressed)",
  22002. image: {
  22003. source: "./media/characters/icowom-lee/front-dressed.svg",
  22004. extra: 3076 / 2933,
  22005. bottom: 51.4 / 3125.1889
  22006. }
  22007. },
  22008. rump: {
  22009. height: math.unit(0.776, "meters"),
  22010. name: "Rump",
  22011. image: {
  22012. source: "./media/characters/icowom-lee/rump.svg"
  22013. }
  22014. },
  22015. genitals: {
  22016. height: math.unit(0.78, "meters"),
  22017. name: "Genitals",
  22018. image: {
  22019. source: "./media/characters/icowom-lee/genitals.svg"
  22020. }
  22021. },
  22022. },
  22023. [
  22024. {
  22025. name: "Normal",
  22026. height: math.unit(2.3, "meters"),
  22027. default: true
  22028. },
  22029. {
  22030. name: "Macro",
  22031. height: math.unit(94, "meters"),
  22032. default: true
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22038. {
  22039. front: {
  22040. height: math.unit(22, "meters"),
  22041. weight: math.unit(21000, "kg"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/shock-diamond/front.svg",
  22045. extra: 2204 / 2053,
  22046. bottom: 65 / 2239.47
  22047. }
  22048. },
  22049. frontNude: {
  22050. height: math.unit(22, "meters"),
  22051. weight: math.unit(21000, "kg"),
  22052. name: "Front (Nude)",
  22053. image: {
  22054. source: "./media/characters/shock-diamond/front-nude.svg",
  22055. extra: 2514 / 2285,
  22056. bottom: 13 / 2527.56
  22057. }
  22058. },
  22059. },
  22060. [
  22061. {
  22062. name: "Normal",
  22063. height: math.unit(3, "meters")
  22064. },
  22065. {
  22066. name: "Macro",
  22067. height: math.unit(22, "meters"),
  22068. default: true
  22069. },
  22070. ]
  22071. ))
  22072. characterMakers.push(() => makeCharacter(
  22073. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22074. {
  22075. front: {
  22076. height: math.unit(5 + 4 / 12, "feet"),
  22077. weight: math.unit(120, "lb"),
  22078. name: "Front",
  22079. image: {
  22080. source: "./media/characters/rory/front.svg",
  22081. extra: 589 / 556,
  22082. bottom: 45.7 / 635.76
  22083. }
  22084. },
  22085. frontNude: {
  22086. height: math.unit(5 + 4 / 12, "feet"),
  22087. weight: math.unit(120, "lb"),
  22088. name: "Front (Nude)",
  22089. image: {
  22090. source: "./media/characters/rory/front-nude.svg",
  22091. extra: 589 / 556,
  22092. bottom: 45.7 / 635.76
  22093. }
  22094. },
  22095. side: {
  22096. height: math.unit(5 + 4 / 12, "feet"),
  22097. weight: math.unit(120, "lb"),
  22098. name: "Side",
  22099. image: {
  22100. source: "./media/characters/rory/side.svg",
  22101. extra: 597 / 564,
  22102. bottom: 55 / 653
  22103. }
  22104. },
  22105. back: {
  22106. height: math.unit(5 + 4 / 12, "feet"),
  22107. weight: math.unit(120, "lb"),
  22108. name: "Back",
  22109. image: {
  22110. source: "./media/characters/rory/back.svg",
  22111. extra: 620 / 585,
  22112. bottom: 8.86 / 630.43
  22113. }
  22114. },
  22115. dick: {
  22116. height: math.unit(0.86, "feet"),
  22117. name: "Dick",
  22118. image: {
  22119. source: "./media/characters/rory/dick.svg"
  22120. }
  22121. },
  22122. },
  22123. [
  22124. {
  22125. name: "Normal",
  22126. height: math.unit(5 + 4 / 12, "feet"),
  22127. default: true
  22128. },
  22129. {
  22130. name: "Macro",
  22131. height: math.unit(100, "feet")
  22132. },
  22133. {
  22134. name: "Macro+",
  22135. height: math.unit(140, "feet")
  22136. },
  22137. {
  22138. name: "Macro++",
  22139. height: math.unit(300, "feet")
  22140. },
  22141. ]
  22142. ))
  22143. characterMakers.push(() => makeCharacter(
  22144. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22145. {
  22146. front: {
  22147. height: math.unit(5 + 9 / 12, "feet"),
  22148. weight: math.unit(190, "lb"),
  22149. name: "Front",
  22150. image: {
  22151. source: "./media/characters/sprisk/front.svg",
  22152. extra: 1225 / 1180,
  22153. bottom: 42.7 / 1266.4
  22154. }
  22155. },
  22156. frontNsfw: {
  22157. height: math.unit(5 + 9 / 12, "feet"),
  22158. weight: math.unit(190, "lb"),
  22159. name: "Front (NSFW)",
  22160. image: {
  22161. source: "./media/characters/sprisk/front-nsfw.svg",
  22162. extra: 1225 / 1180,
  22163. bottom: 42.7 / 1266.4
  22164. }
  22165. },
  22166. back: {
  22167. height: math.unit(5 + 9 / 12, "feet"),
  22168. weight: math.unit(190, "lb"),
  22169. name: "Back",
  22170. image: {
  22171. source: "./media/characters/sprisk/back.svg",
  22172. extra: 1247 / 1200,
  22173. bottom: 5.6 / 1253.04
  22174. }
  22175. },
  22176. },
  22177. [
  22178. {
  22179. name: "Tiny",
  22180. height: math.unit(2, "inches")
  22181. },
  22182. {
  22183. name: "Normal",
  22184. height: math.unit(5 + 9 / 12, "feet"),
  22185. default: true
  22186. },
  22187. {
  22188. name: "Mini Macro",
  22189. height: math.unit(18, "feet")
  22190. },
  22191. {
  22192. name: "Macro",
  22193. height: math.unit(100, "feet")
  22194. },
  22195. {
  22196. name: "MACRO",
  22197. height: math.unit(50, "miles")
  22198. },
  22199. {
  22200. name: "M A C R O",
  22201. height: math.unit(300, "miles")
  22202. },
  22203. ]
  22204. ))
  22205. characterMakers.push(() => makeCharacter(
  22206. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22207. {
  22208. side: {
  22209. height: math.unit(15.6, "meters"),
  22210. weight: math.unit(700000, "kg"),
  22211. name: "Side",
  22212. image: {
  22213. source: "./media/characters/bunsen/side.svg",
  22214. extra: 1644 / 358
  22215. }
  22216. },
  22217. foot: {
  22218. height: math.unit(1.611 * 1644 / 358, "meter"),
  22219. name: "Foot",
  22220. image: {
  22221. source: "./media/characters/bunsen/foot.svg"
  22222. }
  22223. },
  22224. },
  22225. [
  22226. {
  22227. name: "Small",
  22228. height: math.unit(10, "feet")
  22229. },
  22230. {
  22231. name: "Normal",
  22232. height: math.unit(15.6, "meters"),
  22233. default: true
  22234. },
  22235. ]
  22236. ))
  22237. characterMakers.push(() => makeCharacter(
  22238. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22239. {
  22240. front: {
  22241. height: math.unit(4 + 11 / 12, "feet"),
  22242. weight: math.unit(140, "lb"),
  22243. name: "Front",
  22244. image: {
  22245. source: "./media/characters/sesh/front.svg",
  22246. extra: 3420 / 3231,
  22247. bottom: 72 / 3949.5
  22248. }
  22249. },
  22250. },
  22251. [
  22252. {
  22253. name: "Normal",
  22254. height: math.unit(4 + 11 / 12, "feet")
  22255. },
  22256. {
  22257. name: "Grown",
  22258. height: math.unit(15, "feet"),
  22259. default: true
  22260. },
  22261. {
  22262. name: "Macro",
  22263. height: math.unit(1500, "feet")
  22264. },
  22265. {
  22266. name: "Megamacro",
  22267. height: math.unit(30, "miles")
  22268. },
  22269. {
  22270. name: "Continental",
  22271. height: math.unit(3000, "miles")
  22272. },
  22273. {
  22274. name: "Gravity Mass",
  22275. height: math.unit(300000, "miles")
  22276. },
  22277. {
  22278. name: "Planet Buster",
  22279. height: math.unit(30000000, "miles")
  22280. },
  22281. {
  22282. name: "Big",
  22283. height: math.unit(3000000000, "miles")
  22284. },
  22285. ]
  22286. ))
  22287. characterMakers.push(() => makeCharacter(
  22288. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22289. {
  22290. front: {
  22291. height: math.unit(9, "feet"),
  22292. weight: math.unit(350, "lb"),
  22293. name: "Front",
  22294. image: {
  22295. source: "./media/characters/pepper/front.svg",
  22296. extra: 1448 / 1312,
  22297. bottom: 9.4 / 1457.88
  22298. }
  22299. },
  22300. back: {
  22301. height: math.unit(9, "feet"),
  22302. weight: math.unit(350, "lb"),
  22303. name: "Back",
  22304. image: {
  22305. source: "./media/characters/pepper/back.svg",
  22306. extra: 1423 / 1300,
  22307. bottom: 4.6 / 1429
  22308. }
  22309. },
  22310. maw: {
  22311. height: math.unit(0.932, "feet"),
  22312. name: "Maw",
  22313. image: {
  22314. source: "./media/characters/pepper/maw.svg"
  22315. }
  22316. },
  22317. },
  22318. [
  22319. {
  22320. name: "Normal",
  22321. height: math.unit(9, "feet"),
  22322. default: true
  22323. },
  22324. ]
  22325. ))
  22326. characterMakers.push(() => makeCharacter(
  22327. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22328. {
  22329. front: {
  22330. height: math.unit(6, "feet"),
  22331. weight: math.unit(150, "lb"),
  22332. name: "Front",
  22333. image: {
  22334. source: "./media/characters/maelstrom/front.svg",
  22335. extra: 2100 / 1883,
  22336. bottom: 94 / 2196.7
  22337. }
  22338. },
  22339. },
  22340. [
  22341. {
  22342. name: "Less Kaiju",
  22343. height: math.unit(200, "feet")
  22344. },
  22345. {
  22346. name: "Kaiju",
  22347. height: math.unit(400, "feet"),
  22348. default: true
  22349. },
  22350. {
  22351. name: "Kaiju-er",
  22352. height: math.unit(600, "feet")
  22353. },
  22354. ]
  22355. ))
  22356. characterMakers.push(() => makeCharacter(
  22357. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22358. {
  22359. front: {
  22360. height: math.unit(6 + 5 / 12, "feet"),
  22361. weight: math.unit(180, "lb"),
  22362. name: "Front",
  22363. image: {
  22364. source: "./media/characters/lexir/front.svg",
  22365. extra: 180 / 172,
  22366. bottom: 12 / 192
  22367. }
  22368. },
  22369. back: {
  22370. height: math.unit(6 + 5 / 12, "feet"),
  22371. weight: math.unit(180, "lb"),
  22372. name: "Back",
  22373. image: {
  22374. source: "./media/characters/lexir/back.svg",
  22375. extra: 183.84 / 175.5,
  22376. bottom: 3.1 / 187
  22377. }
  22378. },
  22379. },
  22380. [
  22381. {
  22382. name: "Very Smal",
  22383. height: math.unit(1, "nm")
  22384. },
  22385. {
  22386. name: "Normal",
  22387. height: math.unit(6 + 5 / 12, "feet"),
  22388. default: true
  22389. },
  22390. {
  22391. name: "Macro",
  22392. height: math.unit(1, "mile")
  22393. },
  22394. {
  22395. name: "Megamacro",
  22396. height: math.unit(50, "miles")
  22397. },
  22398. ]
  22399. ))
  22400. characterMakers.push(() => makeCharacter(
  22401. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22402. {
  22403. front: {
  22404. height: math.unit(1.5, "meters"),
  22405. weight: math.unit(100, "lb"),
  22406. name: "Front",
  22407. image: {
  22408. source: "./media/characters/maksio/front.svg",
  22409. extra: 1549 / 1531,
  22410. bottom: 123.7 / 1674.5429
  22411. }
  22412. },
  22413. back: {
  22414. height: math.unit(1.5, "meters"),
  22415. weight: math.unit(100, "lb"),
  22416. name: "Back",
  22417. image: {
  22418. source: "./media/characters/maksio/back.svg",
  22419. extra: 1541 / 1509,
  22420. bottom: 97 / 1639
  22421. }
  22422. },
  22423. hand: {
  22424. height: math.unit(0.621, "feet"),
  22425. name: "Hand",
  22426. image: {
  22427. source: "./media/characters/maksio/hand.svg"
  22428. }
  22429. },
  22430. foot: {
  22431. height: math.unit(1.611, "feet"),
  22432. name: "Foot",
  22433. image: {
  22434. source: "./media/characters/maksio/foot.svg"
  22435. }
  22436. },
  22437. },
  22438. [
  22439. {
  22440. name: "Shrunken",
  22441. height: math.unit(10, "cm")
  22442. },
  22443. {
  22444. name: "Normal",
  22445. height: math.unit(150, "cm"),
  22446. default: true
  22447. },
  22448. ]
  22449. ))
  22450. characterMakers.push(() => makeCharacter(
  22451. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22452. {
  22453. front: {
  22454. height: math.unit(100, "feet"),
  22455. name: "Front",
  22456. image: {
  22457. source: "./media/characters/erza-bear/front.svg",
  22458. extra: 2449 / 2390,
  22459. bottom: 46 / 2494
  22460. }
  22461. },
  22462. back: {
  22463. height: math.unit(100, "feet"),
  22464. name: "Back",
  22465. image: {
  22466. source: "./media/characters/erza-bear/back.svg",
  22467. extra: 2489 / 2430,
  22468. bottom: 85.4 / 2480
  22469. }
  22470. },
  22471. tail: {
  22472. height: math.unit(42, "feet"),
  22473. name: "Tail",
  22474. image: {
  22475. source: "./media/characters/erza-bear/tail.svg"
  22476. }
  22477. },
  22478. tongue: {
  22479. height: math.unit(8, "feet"),
  22480. name: "Tongue",
  22481. image: {
  22482. source: "./media/characters/erza-bear/tongue.svg"
  22483. }
  22484. },
  22485. dick: {
  22486. height: math.unit(10.5, "feet"),
  22487. name: "Dick",
  22488. image: {
  22489. source: "./media/characters/erza-bear/dick.svg"
  22490. }
  22491. },
  22492. dickVertical: {
  22493. height: math.unit(16.9, "feet"),
  22494. name: "Dick (Vertical)",
  22495. image: {
  22496. source: "./media/characters/erza-bear/dick-vertical.svg"
  22497. }
  22498. },
  22499. },
  22500. [
  22501. {
  22502. name: "Macro",
  22503. height: math.unit(100, "feet"),
  22504. default: true
  22505. },
  22506. ]
  22507. ))
  22508. characterMakers.push(() => makeCharacter(
  22509. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22510. {
  22511. front: {
  22512. height: math.unit(172, "cm"),
  22513. weight: math.unit(73, "kg"),
  22514. name: "Front",
  22515. image: {
  22516. source: "./media/characters/violet-flor/front.svg",
  22517. extra: 1530 / 1442,
  22518. bottom: 61.9 / 1588.8
  22519. }
  22520. },
  22521. back: {
  22522. height: math.unit(180, "cm"),
  22523. weight: math.unit(73, "kg"),
  22524. name: "Back",
  22525. image: {
  22526. source: "./media/characters/violet-flor/back.svg",
  22527. extra: 1692 / 1630,
  22528. bottom: 20 / 1712
  22529. }
  22530. },
  22531. },
  22532. [
  22533. {
  22534. name: "Normal",
  22535. height: math.unit(172, "cm"),
  22536. default: true
  22537. },
  22538. ]
  22539. ))
  22540. characterMakers.push(() => makeCharacter(
  22541. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22542. {
  22543. front: {
  22544. height: math.unit(6, "feet"),
  22545. weight: math.unit(220, "lb"),
  22546. name: "Front",
  22547. image: {
  22548. source: "./media/characters/lynn-rhea/front.svg",
  22549. extra: 310 / 273
  22550. }
  22551. },
  22552. back: {
  22553. height: math.unit(6, "feet"),
  22554. weight: math.unit(220, "lb"),
  22555. name: "Back",
  22556. image: {
  22557. source: "./media/characters/lynn-rhea/back.svg",
  22558. extra: 310 / 273
  22559. }
  22560. },
  22561. dicks: {
  22562. height: math.unit(0.9, "feet"),
  22563. name: "Dicks",
  22564. image: {
  22565. source: "./media/characters/lynn-rhea/dicks.svg"
  22566. }
  22567. },
  22568. slit: {
  22569. height: math.unit(0.4, "feet"),
  22570. name: "Slit",
  22571. image: {
  22572. source: "./media/characters/lynn-rhea/slit.svg"
  22573. }
  22574. },
  22575. },
  22576. [
  22577. {
  22578. name: "Micro",
  22579. height: math.unit(1, "inch")
  22580. },
  22581. {
  22582. name: "Macro",
  22583. height: math.unit(60, "feet"),
  22584. default: true
  22585. },
  22586. {
  22587. name: "Megamacro",
  22588. height: math.unit(2, "miles")
  22589. },
  22590. {
  22591. name: "Gigamacro",
  22592. height: math.unit(3, "earths")
  22593. },
  22594. {
  22595. name: "Galactic",
  22596. height: math.unit(0.8, "galaxies")
  22597. },
  22598. ]
  22599. ))
  22600. characterMakers.push(() => makeCharacter(
  22601. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22602. {
  22603. front: {
  22604. height: math.unit(1600, "feet"),
  22605. weight: math.unit(85758785169, "kg"),
  22606. name: "Front",
  22607. image: {
  22608. source: "./media/characters/valathos/front.svg",
  22609. extra: 1451 / 1339
  22610. }
  22611. },
  22612. },
  22613. [
  22614. {
  22615. name: "Macro",
  22616. height: math.unit(1600, "feet"),
  22617. default: true
  22618. },
  22619. ]
  22620. ))
  22621. characterMakers.push(() => makeCharacter(
  22622. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22623. {
  22624. front: {
  22625. height: math.unit(7 + 5 / 12, "feet"),
  22626. weight: math.unit(300, "lb"),
  22627. name: "Front",
  22628. image: {
  22629. source: "./media/characters/azula/front.svg",
  22630. extra: 3208 / 2880,
  22631. bottom: 80.2 / 3277
  22632. }
  22633. },
  22634. back: {
  22635. height: math.unit(7 + 5 / 12, "feet"),
  22636. weight: math.unit(300, "lb"),
  22637. name: "Back",
  22638. image: {
  22639. source: "./media/characters/azula/back.svg",
  22640. extra: 3169 / 2822,
  22641. bottom: 150.6 / 3321
  22642. }
  22643. },
  22644. },
  22645. [
  22646. {
  22647. name: "Normal",
  22648. height: math.unit(7 + 5 / 12, "feet"),
  22649. default: true
  22650. },
  22651. {
  22652. name: "Big",
  22653. height: math.unit(20, "feet")
  22654. },
  22655. ]
  22656. ))
  22657. characterMakers.push(() => makeCharacter(
  22658. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22659. {
  22660. front: {
  22661. height: math.unit(5 + 1 / 12, "feet"),
  22662. weight: math.unit(110, "lb"),
  22663. name: "Front",
  22664. image: {
  22665. source: "./media/characters/rupert/front.svg",
  22666. extra: 1549 / 1495,
  22667. bottom: 54.2 / 1604.4
  22668. }
  22669. },
  22670. },
  22671. [
  22672. {
  22673. name: "Normal",
  22674. height: math.unit(5 + 1 / 12, "feet"),
  22675. default: true
  22676. },
  22677. ]
  22678. ))
  22679. characterMakers.push(() => makeCharacter(
  22680. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22681. {
  22682. front: {
  22683. height: math.unit(8 + 4 / 12, "feet"),
  22684. weight: math.unit(350, "lb"),
  22685. name: "Front",
  22686. image: {
  22687. source: "./media/characters/sheera-castellar/front.svg",
  22688. extra: 1957 / 1894,
  22689. bottom: 26.97 / 1975.017
  22690. }
  22691. },
  22692. side: {
  22693. height: math.unit(8 + 4 / 12, "feet"),
  22694. weight: math.unit(350, "lb"),
  22695. name: "Side",
  22696. image: {
  22697. source: "./media/characters/sheera-castellar/side.svg",
  22698. extra: 1957 / 1894
  22699. }
  22700. },
  22701. back: {
  22702. height: math.unit(8 + 4 / 12, "feet"),
  22703. weight: math.unit(350, "lb"),
  22704. name: "Back",
  22705. image: {
  22706. source: "./media/characters/sheera-castellar/back.svg",
  22707. extra: 1957 / 1894
  22708. }
  22709. },
  22710. angled: {
  22711. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22712. weight: math.unit(350, "lb"),
  22713. name: "Angled",
  22714. image: {
  22715. source: "./media/characters/sheera-castellar/angled.svg",
  22716. extra: 1807 / 1707,
  22717. bottom: 68 / 1875
  22718. }
  22719. },
  22720. genitals: {
  22721. height: math.unit(2.2, "feet"),
  22722. name: "Genitals",
  22723. image: {
  22724. source: "./media/characters/sheera-castellar/genitals.svg"
  22725. }
  22726. },
  22727. taur: {
  22728. height: math.unit(10 + 6/12, "feet"),
  22729. name: "Taur",
  22730. image: {
  22731. source: "./media/characters/sheera-castellar/taur.svg",
  22732. extra: 2017/1909,
  22733. bottom: 185/2202
  22734. }
  22735. },
  22736. },
  22737. [
  22738. {
  22739. name: "Normal",
  22740. height: math.unit(8 + 4 / 12, "feet")
  22741. },
  22742. {
  22743. name: "Macro",
  22744. height: math.unit(150, "feet"),
  22745. default: true
  22746. },
  22747. {
  22748. name: "Macro+",
  22749. height: math.unit(800, "feet")
  22750. },
  22751. ]
  22752. ))
  22753. characterMakers.push(() => makeCharacter(
  22754. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22755. {
  22756. front: {
  22757. height: math.unit(6, "feet"),
  22758. weight: math.unit(150, "lb"),
  22759. name: "Front",
  22760. image: {
  22761. source: "./media/characters/jaipur/front.svg",
  22762. extra: 3860 / 3731,
  22763. bottom: 287 / 4140
  22764. }
  22765. },
  22766. back: {
  22767. height: math.unit(6, "feet"),
  22768. weight: math.unit(150, "lb"),
  22769. name: "Back",
  22770. image: {
  22771. source: "./media/characters/jaipur/back.svg",
  22772. extra: 4060 / 3930,
  22773. bottom: 151 / 4200
  22774. }
  22775. },
  22776. },
  22777. [
  22778. {
  22779. name: "Normal",
  22780. height: math.unit(1.85, "meters"),
  22781. default: true
  22782. },
  22783. {
  22784. name: "Macro",
  22785. height: math.unit(150, "meters")
  22786. },
  22787. {
  22788. name: "Macro+",
  22789. height: math.unit(0.5, "miles")
  22790. },
  22791. {
  22792. name: "Macro++",
  22793. height: math.unit(2.5, "miles")
  22794. },
  22795. {
  22796. name: "Macro+++",
  22797. height: math.unit(12, "miles")
  22798. },
  22799. {
  22800. name: "Macro++++",
  22801. height: math.unit(120, "miles")
  22802. },
  22803. {
  22804. name: "Macro+++++",
  22805. height: math.unit(1200, "miles")
  22806. },
  22807. ]
  22808. ))
  22809. characterMakers.push(() => makeCharacter(
  22810. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22811. {
  22812. front: {
  22813. height: math.unit(6, "feet"),
  22814. weight: math.unit(150, "lb"),
  22815. name: "Front",
  22816. image: {
  22817. source: "./media/characters/sheila-wolf/front.svg",
  22818. extra: 1931 / 1808,
  22819. bottom: 29.5 / 1960
  22820. }
  22821. },
  22822. dick: {
  22823. height: math.unit(1.464, "feet"),
  22824. name: "Dick",
  22825. image: {
  22826. source: "./media/characters/sheila-wolf/dick.svg"
  22827. }
  22828. },
  22829. muzzle: {
  22830. height: math.unit(0.513, "feet"),
  22831. name: "Muzzle",
  22832. image: {
  22833. source: "./media/characters/sheila-wolf/muzzle.svg"
  22834. }
  22835. },
  22836. },
  22837. [
  22838. {
  22839. name: "Macro",
  22840. height: math.unit(70, "feet"),
  22841. default: true
  22842. },
  22843. ]
  22844. ))
  22845. characterMakers.push(() => makeCharacter(
  22846. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22847. {
  22848. front: {
  22849. height: math.unit(32, "meters"),
  22850. weight: math.unit(300000, "kg"),
  22851. name: "Front",
  22852. image: {
  22853. source: "./media/characters/almor/front.svg",
  22854. extra: 1408 / 1322,
  22855. bottom: 94.6 / 1506.5
  22856. }
  22857. },
  22858. },
  22859. [
  22860. {
  22861. name: "Macro",
  22862. height: math.unit(32, "meters"),
  22863. default: true
  22864. },
  22865. ]
  22866. ))
  22867. characterMakers.push(() => makeCharacter(
  22868. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22869. {
  22870. front: {
  22871. height: math.unit(7, "feet"),
  22872. weight: math.unit(200, "lb"),
  22873. name: "Front",
  22874. image: {
  22875. source: "./media/characters/silver/front.svg",
  22876. extra: 472.1 / 450.5,
  22877. bottom: 26.5 / 499.424
  22878. }
  22879. },
  22880. },
  22881. [
  22882. {
  22883. name: "Normal",
  22884. height: math.unit(7, "feet"),
  22885. default: true
  22886. },
  22887. {
  22888. name: "Macro",
  22889. height: math.unit(800, "feet")
  22890. },
  22891. {
  22892. name: "Megamacro",
  22893. height: math.unit(250, "miles")
  22894. },
  22895. ]
  22896. ))
  22897. characterMakers.push(() => makeCharacter(
  22898. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22899. {
  22900. front: {
  22901. height: math.unit(6, "feet"),
  22902. weight: math.unit(150, "lb"),
  22903. name: "Front",
  22904. image: {
  22905. source: "./media/characters/pliskin/front.svg",
  22906. extra: 1469 / 1359,
  22907. bottom: 70 / 1540
  22908. }
  22909. },
  22910. },
  22911. [
  22912. {
  22913. name: "Micro",
  22914. height: math.unit(3, "inches")
  22915. },
  22916. {
  22917. name: "Normal",
  22918. height: math.unit(5 + 11 / 12, "feet"),
  22919. default: true
  22920. },
  22921. {
  22922. name: "Macro",
  22923. height: math.unit(120, "feet")
  22924. },
  22925. ]
  22926. ))
  22927. characterMakers.push(() => makeCharacter(
  22928. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22929. {
  22930. front: {
  22931. height: math.unit(6, "feet"),
  22932. weight: math.unit(150, "lb"),
  22933. name: "Front",
  22934. image: {
  22935. source: "./media/characters/sammy/front.svg",
  22936. extra: 1193 / 1089,
  22937. bottom: 30.5 / 1226
  22938. }
  22939. },
  22940. },
  22941. [
  22942. {
  22943. name: "Macro",
  22944. height: math.unit(1700, "feet"),
  22945. default: true
  22946. },
  22947. {
  22948. name: "Examacro",
  22949. height: math.unit(2.5e9, "lightyears")
  22950. },
  22951. ]
  22952. ))
  22953. characterMakers.push(() => makeCharacter(
  22954. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22955. {
  22956. front: {
  22957. height: math.unit(21, "meters"),
  22958. weight: math.unit(12, "tonnes"),
  22959. name: "Front",
  22960. image: {
  22961. source: "./media/characters/kuru/front.svg",
  22962. extra: 4301 / 3785,
  22963. bottom: 371.3 / 4691
  22964. }
  22965. },
  22966. },
  22967. [
  22968. {
  22969. name: "Macro",
  22970. height: math.unit(21, "meters"),
  22971. default: true
  22972. },
  22973. ]
  22974. ))
  22975. characterMakers.push(() => makeCharacter(
  22976. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22977. {
  22978. front: {
  22979. height: math.unit(23, "meters"),
  22980. weight: math.unit(12.2, "tonnes"),
  22981. name: "Front",
  22982. image: {
  22983. source: "./media/characters/rakka/front.svg",
  22984. extra: 4670 / 4169,
  22985. bottom: 301 / 4968.7
  22986. }
  22987. },
  22988. },
  22989. [
  22990. {
  22991. name: "Macro",
  22992. height: math.unit(23, "meters"),
  22993. default: true
  22994. },
  22995. ]
  22996. ))
  22997. characterMakers.push(() => makeCharacter(
  22998. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22999. {
  23000. front: {
  23001. height: math.unit(6, "feet"),
  23002. weight: math.unit(150, "lb"),
  23003. name: "Front",
  23004. image: {
  23005. source: "./media/characters/rhys-feline/front.svg",
  23006. extra: 2488 / 2308,
  23007. bottom: 35.67 / 2519.19
  23008. }
  23009. },
  23010. },
  23011. [
  23012. {
  23013. name: "Really Small",
  23014. height: math.unit(1, "nm")
  23015. },
  23016. {
  23017. name: "Micro",
  23018. height: math.unit(4, "inches")
  23019. },
  23020. {
  23021. name: "Normal",
  23022. height: math.unit(4 + 10 / 12, "feet"),
  23023. default: true
  23024. },
  23025. {
  23026. name: "Macro",
  23027. height: math.unit(100, "feet")
  23028. },
  23029. {
  23030. name: "Megamacto",
  23031. height: math.unit(50, "miles")
  23032. },
  23033. ]
  23034. ))
  23035. characterMakers.push(() => makeCharacter(
  23036. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23037. {
  23038. side: {
  23039. height: math.unit(30, "feet"),
  23040. weight: math.unit(35000, "kg"),
  23041. name: "Side",
  23042. image: {
  23043. source: "./media/characters/alydar/side.svg",
  23044. extra: 234 / 222,
  23045. bottom: 6.5 / 241
  23046. }
  23047. },
  23048. front: {
  23049. height: math.unit(30, "feet"),
  23050. weight: math.unit(35000, "kg"),
  23051. name: "Front",
  23052. image: {
  23053. source: "./media/characters/alydar/front.svg",
  23054. extra: 223.37 / 210.2,
  23055. bottom: 22.3 / 246.76
  23056. }
  23057. },
  23058. top: {
  23059. height: math.unit(64.54, "feet"),
  23060. weight: math.unit(35000, "kg"),
  23061. name: "Top",
  23062. image: {
  23063. source: "./media/characters/alydar/top.svg"
  23064. }
  23065. },
  23066. anthro: {
  23067. height: math.unit(30, "feet"),
  23068. weight: math.unit(9000, "kg"),
  23069. name: "Anthro",
  23070. image: {
  23071. source: "./media/characters/alydar/anthro.svg",
  23072. extra: 432 / 421,
  23073. bottom: 7.18 / 440
  23074. }
  23075. },
  23076. maw: {
  23077. height: math.unit(11.693, "feet"),
  23078. name: "Maw",
  23079. image: {
  23080. source: "./media/characters/alydar/maw.svg"
  23081. }
  23082. },
  23083. head: {
  23084. height: math.unit(11.693, "feet"),
  23085. name: "Head",
  23086. image: {
  23087. source: "./media/characters/alydar/head.svg"
  23088. }
  23089. },
  23090. headAlt: {
  23091. height: math.unit(12.861, "feet"),
  23092. name: "Head (Alt)",
  23093. image: {
  23094. source: "./media/characters/alydar/head-alt.svg"
  23095. }
  23096. },
  23097. wing: {
  23098. height: math.unit(20.712, "feet"),
  23099. name: "Wing",
  23100. image: {
  23101. source: "./media/characters/alydar/wing.svg"
  23102. }
  23103. },
  23104. wingFeather: {
  23105. height: math.unit(9.662, "feet"),
  23106. name: "Wing Feather",
  23107. image: {
  23108. source: "./media/characters/alydar/wing-feather.svg"
  23109. }
  23110. },
  23111. countourFeather: {
  23112. height: math.unit(4.154, "feet"),
  23113. name: "Contour Feather",
  23114. image: {
  23115. source: "./media/characters/alydar/contour-feather.svg"
  23116. }
  23117. },
  23118. },
  23119. [
  23120. {
  23121. name: "Diplomatic",
  23122. height: math.unit(13, "feet"),
  23123. default: true
  23124. },
  23125. {
  23126. name: "Small",
  23127. height: math.unit(30, "feet")
  23128. },
  23129. {
  23130. name: "Normal",
  23131. height: math.unit(95, "feet"),
  23132. default: true
  23133. },
  23134. {
  23135. name: "Large",
  23136. height: math.unit(285, "feet")
  23137. },
  23138. {
  23139. name: "Incomprehensible",
  23140. height: math.unit(450, "megameters")
  23141. },
  23142. ]
  23143. ))
  23144. characterMakers.push(() => makeCharacter(
  23145. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23146. {
  23147. side: {
  23148. height: math.unit(11, "feet"),
  23149. weight: math.unit(1750, "kg"),
  23150. name: "Side",
  23151. image: {
  23152. source: "./media/characters/selicia/side.svg",
  23153. extra: 440 / 396,
  23154. bottom: 24.8 / 465.979
  23155. }
  23156. },
  23157. maw: {
  23158. height: math.unit(4.665, "feet"),
  23159. name: "Maw",
  23160. image: {
  23161. source: "./media/characters/selicia/maw.svg"
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Normal",
  23168. height: math.unit(11, "feet"),
  23169. default: true
  23170. },
  23171. ]
  23172. ))
  23173. characterMakers.push(() => makeCharacter(
  23174. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23175. {
  23176. side: {
  23177. height: math.unit(2 + 6 / 12, "feet"),
  23178. weight: math.unit(30, "lb"),
  23179. name: "Side",
  23180. image: {
  23181. source: "./media/characters/layla/side.svg",
  23182. extra: 244 / 188,
  23183. bottom: 18.2 / 262.1
  23184. }
  23185. },
  23186. back: {
  23187. height: math.unit(2 + 6 / 12, "feet"),
  23188. weight: math.unit(30, "lb"),
  23189. name: "Back",
  23190. image: {
  23191. source: "./media/characters/layla/back.svg",
  23192. extra: 308 / 241.5,
  23193. bottom: 8.9 / 316.8
  23194. }
  23195. },
  23196. cumming: {
  23197. height: math.unit(2 + 6 / 12, "feet"),
  23198. weight: math.unit(30, "lb"),
  23199. name: "Cumming",
  23200. image: {
  23201. source: "./media/characters/layla/cumming.svg",
  23202. extra: 342 / 279,
  23203. bottom: 595 / 938
  23204. }
  23205. },
  23206. dickFlaccid: {
  23207. height: math.unit(2.595, "feet"),
  23208. name: "Flaccid Genitals",
  23209. image: {
  23210. source: "./media/characters/layla/dick-flaccid.svg"
  23211. }
  23212. },
  23213. dickErect: {
  23214. height: math.unit(2.359, "feet"),
  23215. name: "Erect Genitals",
  23216. image: {
  23217. source: "./media/characters/layla/dick-erect.svg"
  23218. }
  23219. },
  23220. dragon: {
  23221. height: math.unit(40, "feet"),
  23222. name: "Dragon",
  23223. image: {
  23224. source: "./media/characters/layla/dragon.svg",
  23225. extra: 610/535,
  23226. bottom: 367/977
  23227. }
  23228. },
  23229. taur: {
  23230. height: math.unit(30, "feet"),
  23231. name: "Taur",
  23232. image: {
  23233. source: "./media/characters/layla/taur.svg",
  23234. extra: 1268/1199,
  23235. bottom: 112/1380
  23236. }
  23237. },
  23238. },
  23239. [
  23240. {
  23241. name: "Micro",
  23242. height: math.unit(1, "inch")
  23243. },
  23244. {
  23245. name: "Small",
  23246. height: math.unit(1, "foot")
  23247. },
  23248. {
  23249. name: "Normal",
  23250. height: math.unit(2 + 6 / 12, "feet"),
  23251. default: true
  23252. },
  23253. {
  23254. name: "Macro",
  23255. height: math.unit(200, "feet")
  23256. },
  23257. {
  23258. name: "Megamacro",
  23259. height: math.unit(1000, "miles")
  23260. },
  23261. {
  23262. name: "Planetary",
  23263. height: math.unit(8000, "miles")
  23264. },
  23265. {
  23266. name: "True Layla",
  23267. height: math.unit(200000 * 7, "multiverses")
  23268. },
  23269. ]
  23270. ))
  23271. characterMakers.push(() => makeCharacter(
  23272. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23273. {
  23274. back: {
  23275. height: math.unit(10.5, "feet"),
  23276. weight: math.unit(800, "lb"),
  23277. name: "Back",
  23278. image: {
  23279. source: "./media/characters/knox/back.svg",
  23280. extra: 1486 / 1089,
  23281. bottom: 107 / 1601.4
  23282. }
  23283. },
  23284. side: {
  23285. height: math.unit(10.5, "feet"),
  23286. weight: math.unit(800, "lb"),
  23287. name: "Side",
  23288. image: {
  23289. source: "./media/characters/knox/side.svg",
  23290. extra: 244 / 218,
  23291. bottom: 14 / 260
  23292. }
  23293. },
  23294. },
  23295. [
  23296. {
  23297. name: "Compact",
  23298. height: math.unit(10.5, "feet"),
  23299. default: true
  23300. },
  23301. {
  23302. name: "Dynamax",
  23303. height: math.unit(210, "feet")
  23304. },
  23305. {
  23306. name: "Full Macro",
  23307. height: math.unit(850, "feet")
  23308. },
  23309. ]
  23310. ))
  23311. characterMakers.push(() => makeCharacter(
  23312. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23313. {
  23314. front: {
  23315. height: math.unit(6, "feet"),
  23316. weight: math.unit(152, "lb"),
  23317. name: "Front",
  23318. image: {
  23319. source: "./media/characters/shin-pikachu/front.svg",
  23320. extra: 1574 / 1480,
  23321. bottom: 53.3 / 1626
  23322. }
  23323. },
  23324. hand: {
  23325. height: math.unit(1.055, "feet"),
  23326. name: "Hand",
  23327. image: {
  23328. source: "./media/characters/shin-pikachu/hand.svg"
  23329. }
  23330. },
  23331. foot: {
  23332. height: math.unit(1.1, "feet"),
  23333. name: "Foot",
  23334. image: {
  23335. source: "./media/characters/shin-pikachu/foot.svg"
  23336. }
  23337. },
  23338. collar: {
  23339. height: math.unit(0.386, "feet"),
  23340. name: "Collar",
  23341. image: {
  23342. source: "./media/characters/shin-pikachu/collar.svg"
  23343. }
  23344. },
  23345. },
  23346. [
  23347. {
  23348. name: "Smallest",
  23349. height: math.unit(0.5, "inches")
  23350. },
  23351. {
  23352. name: "Micro",
  23353. height: math.unit(6, "inches")
  23354. },
  23355. {
  23356. name: "Normal",
  23357. height: math.unit(6, "feet"),
  23358. default: true
  23359. },
  23360. {
  23361. name: "Macro",
  23362. height: math.unit(150, "feet")
  23363. },
  23364. ]
  23365. ))
  23366. characterMakers.push(() => makeCharacter(
  23367. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23368. {
  23369. front: {
  23370. height: math.unit(28, "feet"),
  23371. weight: math.unit(10500, "lb"),
  23372. name: "Front",
  23373. image: {
  23374. source: "./media/characters/kayda/front.svg",
  23375. extra: 1536 / 1428,
  23376. bottom: 68.7 / 1603
  23377. }
  23378. },
  23379. back: {
  23380. height: math.unit(28, "feet"),
  23381. weight: math.unit(10500, "lb"),
  23382. name: "Back",
  23383. image: {
  23384. source: "./media/characters/kayda/back.svg",
  23385. extra: 1557 / 1464,
  23386. bottom: 39.5 / 1597.49
  23387. }
  23388. },
  23389. dick: {
  23390. height: math.unit(3.858, "feet"),
  23391. name: "Dick",
  23392. image: {
  23393. source: "./media/characters/kayda/dick.svg"
  23394. }
  23395. },
  23396. },
  23397. [
  23398. {
  23399. name: "Macro",
  23400. height: math.unit(28, "feet"),
  23401. default: true
  23402. },
  23403. ]
  23404. ))
  23405. characterMakers.push(() => makeCharacter(
  23406. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23407. {
  23408. front: {
  23409. height: math.unit(10 + 11 / 12, "feet"),
  23410. weight: math.unit(1400, "lb"),
  23411. name: "Front",
  23412. image: {
  23413. source: "./media/characters/brian/front.svg",
  23414. extra: 737 / 692,
  23415. bottom: 55.4 / 785
  23416. }
  23417. },
  23418. },
  23419. [
  23420. {
  23421. name: "Normal",
  23422. height: math.unit(10 + 11 / 12, "feet"),
  23423. default: true
  23424. },
  23425. ]
  23426. ))
  23427. characterMakers.push(() => makeCharacter(
  23428. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23429. {
  23430. front: {
  23431. height: math.unit(5 + 8 / 12, "feet"),
  23432. weight: math.unit(140, "lb"),
  23433. name: "Front",
  23434. image: {
  23435. source: "./media/characters/khemri/front.svg",
  23436. extra: 4780 / 4059,
  23437. bottom: 80.1 / 4859.25
  23438. }
  23439. },
  23440. },
  23441. [
  23442. {
  23443. name: "Micro",
  23444. height: math.unit(6, "inches")
  23445. },
  23446. {
  23447. name: "Normal",
  23448. height: math.unit(5 + 8 / 12, "feet"),
  23449. default: true
  23450. },
  23451. ]
  23452. ))
  23453. characterMakers.push(() => makeCharacter(
  23454. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23455. {
  23456. front: {
  23457. height: math.unit(13, "feet"),
  23458. weight: math.unit(1700, "lb"),
  23459. name: "Front",
  23460. image: {
  23461. source: "./media/characters/felix-braveheart/front.svg",
  23462. extra: 1222 / 1157,
  23463. bottom: 53.2 / 1280
  23464. }
  23465. },
  23466. back: {
  23467. height: math.unit(13, "feet"),
  23468. weight: math.unit(1700, "lb"),
  23469. name: "Back",
  23470. image: {
  23471. source: "./media/characters/felix-braveheart/back.svg",
  23472. extra: 1277 / 1203,
  23473. bottom: 50.2 / 1327
  23474. }
  23475. },
  23476. feral: {
  23477. height: math.unit(6, "feet"),
  23478. weight: math.unit(400, "lb"),
  23479. name: "Feral",
  23480. image: {
  23481. source: "./media/characters/felix-braveheart/feral.svg",
  23482. extra: 682 / 625,
  23483. bottom: 6.9 / 688
  23484. }
  23485. },
  23486. },
  23487. [
  23488. {
  23489. name: "Normal",
  23490. height: math.unit(13, "feet"),
  23491. default: true
  23492. },
  23493. ]
  23494. ))
  23495. characterMakers.push(() => makeCharacter(
  23496. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23497. {
  23498. side: {
  23499. height: math.unit(5 + 11 / 12, "feet"),
  23500. weight: math.unit(1400, "lb"),
  23501. name: "Side",
  23502. image: {
  23503. source: "./media/characters/shadow-blade/side.svg",
  23504. extra: 1726 / 1267,
  23505. bottom: 58.4 / 1785
  23506. }
  23507. },
  23508. },
  23509. [
  23510. {
  23511. name: "Normal",
  23512. height: math.unit(5 + 11 / 12, "feet"),
  23513. default: true
  23514. },
  23515. ]
  23516. ))
  23517. characterMakers.push(() => makeCharacter(
  23518. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23519. {
  23520. front: {
  23521. height: math.unit(1 + 6 / 12, "feet"),
  23522. weight: math.unit(25, "lb"),
  23523. name: "Front",
  23524. image: {
  23525. source: "./media/characters/karla-halldor/front.svg",
  23526. extra: 1459 / 1383,
  23527. bottom: 12 / 1472
  23528. }
  23529. },
  23530. },
  23531. [
  23532. {
  23533. name: "Normal",
  23534. height: math.unit(1 + 6 / 12, "feet"),
  23535. default: true
  23536. },
  23537. ]
  23538. ))
  23539. characterMakers.push(() => makeCharacter(
  23540. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23541. {
  23542. front: {
  23543. height: math.unit(6 + 2 / 12, "feet"),
  23544. weight: math.unit(160, "lb"),
  23545. name: "Front",
  23546. image: {
  23547. source: "./media/characters/ariam/front.svg",
  23548. extra: 714 / 617,
  23549. bottom: 23.4 / 737,
  23550. }
  23551. },
  23552. squatting: {
  23553. height: math.unit(4.1, "feet"),
  23554. weight: math.unit(160, "lb"),
  23555. name: "Squatting",
  23556. image: {
  23557. source: "./media/characters/ariam/squatting.svg",
  23558. extra: 2617 / 2112,
  23559. bottom: 61.2 / 2681,
  23560. }
  23561. },
  23562. },
  23563. [
  23564. {
  23565. name: "Normal",
  23566. height: math.unit(6 + 2 / 12, "feet"),
  23567. default: true
  23568. },
  23569. {
  23570. name: "Normal+",
  23571. height: math.unit(4, "meters")
  23572. },
  23573. {
  23574. name: "Macro",
  23575. height: math.unit(50, "meters")
  23576. },
  23577. {
  23578. name: "Macro+",
  23579. height: math.unit(100, "meters")
  23580. },
  23581. {
  23582. name: "Megamacro",
  23583. height: math.unit(20, "km")
  23584. },
  23585. ]
  23586. ))
  23587. characterMakers.push(() => makeCharacter(
  23588. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23589. {
  23590. front: {
  23591. height: math.unit(1.67, "meters"),
  23592. weight: math.unit(140, "lb"),
  23593. name: "Front",
  23594. image: {
  23595. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23596. extra: 438 / 410,
  23597. bottom: 0.75 / 439
  23598. }
  23599. },
  23600. },
  23601. [
  23602. {
  23603. name: "Shrunken",
  23604. height: math.unit(7.6, "cm")
  23605. },
  23606. {
  23607. name: "Human Scale",
  23608. height: math.unit(1.67, "meters")
  23609. },
  23610. {
  23611. name: "Wolxi Scale",
  23612. height: math.unit(36.7, "meters"),
  23613. default: true
  23614. },
  23615. ]
  23616. ))
  23617. characterMakers.push(() => makeCharacter(
  23618. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23619. {
  23620. front: {
  23621. height: math.unit(1.73, "meters"),
  23622. weight: math.unit(240, "lb"),
  23623. name: "Front",
  23624. image: {
  23625. source: "./media/characters/izue-two-mothers/front.svg",
  23626. extra: 469 / 437,
  23627. bottom: 1.24 / 470.6
  23628. }
  23629. },
  23630. },
  23631. [
  23632. {
  23633. name: "Shrunken",
  23634. height: math.unit(7.86, "cm")
  23635. },
  23636. {
  23637. name: "Human Scale",
  23638. height: math.unit(1.73, "meters")
  23639. },
  23640. {
  23641. name: "Wolxi Scale",
  23642. height: math.unit(38, "meters"),
  23643. default: true
  23644. },
  23645. ]
  23646. ))
  23647. characterMakers.push(() => makeCharacter(
  23648. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23649. {
  23650. front: {
  23651. height: math.unit(1.55, "meters"),
  23652. weight: math.unit(120, "lb"),
  23653. name: "Front",
  23654. image: {
  23655. source: "./media/characters/teeku-love-shack/front.svg",
  23656. extra: 387 / 362,
  23657. bottom: 1.51 / 388
  23658. }
  23659. },
  23660. },
  23661. [
  23662. {
  23663. name: "Shrunken",
  23664. height: math.unit(7, "cm")
  23665. },
  23666. {
  23667. name: "Human Scale",
  23668. height: math.unit(1.55, "meters")
  23669. },
  23670. {
  23671. name: "Wolxi Scale",
  23672. height: math.unit(34.1, "meters"),
  23673. default: true
  23674. },
  23675. ]
  23676. ))
  23677. characterMakers.push(() => makeCharacter(
  23678. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23679. {
  23680. front: {
  23681. height: math.unit(1.83, "meters"),
  23682. weight: math.unit(135, "lb"),
  23683. name: "Front",
  23684. image: {
  23685. source: "./media/characters/dejma-the-red/front.svg",
  23686. extra: 480 / 458,
  23687. bottom: 1.8 / 482
  23688. }
  23689. },
  23690. },
  23691. [
  23692. {
  23693. name: "Shrunken",
  23694. height: math.unit(8.3, "cm")
  23695. },
  23696. {
  23697. name: "Human Scale",
  23698. height: math.unit(1.83, "meters")
  23699. },
  23700. {
  23701. name: "Wolxi Scale",
  23702. height: math.unit(40, "meters"),
  23703. default: true
  23704. },
  23705. ]
  23706. ))
  23707. characterMakers.push(() => makeCharacter(
  23708. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23709. {
  23710. front: {
  23711. height: math.unit(1.78, "meters"),
  23712. weight: math.unit(65, "kg"),
  23713. name: "Front",
  23714. image: {
  23715. source: "./media/characters/aki/front.svg",
  23716. extra: 452 / 415
  23717. }
  23718. },
  23719. frontNsfw: {
  23720. height: math.unit(1.78, "meters"),
  23721. weight: math.unit(65, "kg"),
  23722. name: "Front (NSFW)",
  23723. image: {
  23724. source: "./media/characters/aki/front-nsfw.svg",
  23725. extra: 452 / 415
  23726. }
  23727. },
  23728. back: {
  23729. height: math.unit(1.78, "meters"),
  23730. weight: math.unit(65, "kg"),
  23731. name: "Back",
  23732. image: {
  23733. source: "./media/characters/aki/back.svg",
  23734. extra: 452 / 415
  23735. }
  23736. },
  23737. rump: {
  23738. height: math.unit(2.05, "feet"),
  23739. name: "Rump",
  23740. image: {
  23741. source: "./media/characters/aki/rump.svg"
  23742. }
  23743. },
  23744. dick: {
  23745. height: math.unit(0.95, "feet"),
  23746. name: "Dick",
  23747. image: {
  23748. source: "./media/characters/aki/dick.svg"
  23749. }
  23750. },
  23751. },
  23752. [
  23753. {
  23754. name: "Micro",
  23755. height: math.unit(15, "cm")
  23756. },
  23757. {
  23758. name: "Normal",
  23759. height: math.unit(178, "cm"),
  23760. default: true
  23761. },
  23762. {
  23763. name: "Macro",
  23764. height: math.unit(214, "m")
  23765. },
  23766. {
  23767. name: "Macro+",
  23768. height: math.unit(534, "m")
  23769. },
  23770. ]
  23771. ))
  23772. characterMakers.push(() => makeCharacter(
  23773. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23774. {
  23775. front: {
  23776. height: math.unit(5 + 5 / 12, "feet"),
  23777. weight: math.unit(120, "lb"),
  23778. name: "Front",
  23779. image: {
  23780. source: "./media/characters/ari/front.svg",
  23781. extra: 714.5 / 682,
  23782. bottom: 8 / 722.5
  23783. }
  23784. },
  23785. },
  23786. [
  23787. {
  23788. name: "Normal",
  23789. height: math.unit(5 + 5 / 12, "feet")
  23790. },
  23791. {
  23792. name: "Macro",
  23793. height: math.unit(100, "feet"),
  23794. default: true
  23795. },
  23796. {
  23797. name: "Megamacro",
  23798. height: math.unit(100, "miles")
  23799. },
  23800. {
  23801. name: "Gigamacro",
  23802. height: math.unit(80000, "miles")
  23803. },
  23804. ]
  23805. ))
  23806. characterMakers.push(() => makeCharacter(
  23807. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23808. {
  23809. side: {
  23810. height: math.unit(9, "feet"),
  23811. weight: math.unit(400, "kg"),
  23812. name: "Side",
  23813. image: {
  23814. source: "./media/characters/bolt/side.svg",
  23815. extra: 1126 / 896,
  23816. bottom: 60 / 1187.3,
  23817. }
  23818. },
  23819. },
  23820. [
  23821. {
  23822. name: "Micro",
  23823. height: math.unit(5, "inches")
  23824. },
  23825. {
  23826. name: "Normal",
  23827. height: math.unit(9, "feet"),
  23828. default: true
  23829. },
  23830. {
  23831. name: "Macro",
  23832. height: math.unit(700, "feet")
  23833. },
  23834. {
  23835. name: "Max Size",
  23836. height: math.unit(1.52e22, "yottameters")
  23837. },
  23838. ]
  23839. ))
  23840. characterMakers.push(() => makeCharacter(
  23841. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23842. {
  23843. front: {
  23844. height: math.unit(4.53, "meters"),
  23845. weight: math.unit(3, "tons"),
  23846. name: "Front",
  23847. image: {
  23848. source: "./media/characters/draekon-sylviar/front.svg",
  23849. extra: 1228 / 1068,
  23850. bottom: 41 / 1270
  23851. }
  23852. },
  23853. tail: {
  23854. height: math.unit(1.772, "meter"),
  23855. name: "Tail",
  23856. image: {
  23857. source: "./media/characters/draekon-sylviar/tail.svg"
  23858. }
  23859. },
  23860. head: {
  23861. height: math.unit(1.331, "meter"),
  23862. name: "Head",
  23863. image: {
  23864. source: "./media/characters/draekon-sylviar/head.svg"
  23865. }
  23866. },
  23867. hand: {
  23868. height: math.unit(0.564, "meter"),
  23869. name: "Hand",
  23870. image: {
  23871. source: "./media/characters/draekon-sylviar/hand.svg"
  23872. }
  23873. },
  23874. foot: {
  23875. height: math.unit(0.621, "meter"),
  23876. name: "Foot",
  23877. image: {
  23878. source: "./media/characters/draekon-sylviar/foot.svg",
  23879. bottom: 32 / 324
  23880. }
  23881. },
  23882. dick: {
  23883. height: math.unit(61, "cm"),
  23884. name: "Dick",
  23885. image: {
  23886. source: "./media/characters/draekon-sylviar/dick.svg"
  23887. }
  23888. },
  23889. dickseparated: {
  23890. height: math.unit(61, "cm"),
  23891. name: "Dick-separated",
  23892. image: {
  23893. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23894. }
  23895. },
  23896. },
  23897. [
  23898. {
  23899. name: "Small",
  23900. height: math.unit(4.53 / 2, "meters"),
  23901. default: true
  23902. },
  23903. {
  23904. name: "Normal",
  23905. height: math.unit(4.53, "meters"),
  23906. default: true
  23907. },
  23908. {
  23909. name: "Large",
  23910. height: math.unit(4.53 * 2, "meters"),
  23911. },
  23912. ]
  23913. ))
  23914. characterMakers.push(() => makeCharacter(
  23915. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23916. {
  23917. front: {
  23918. height: math.unit(6 + 2 / 12, "feet"),
  23919. weight: math.unit(180, "lb"),
  23920. name: "Front",
  23921. image: {
  23922. source: "./media/characters/brawler/front.svg",
  23923. extra: 3301 / 3027,
  23924. bottom: 138 / 3439
  23925. }
  23926. },
  23927. },
  23928. [
  23929. {
  23930. name: "Normal",
  23931. height: math.unit(6 + 2 / 12, "feet"),
  23932. default: true
  23933. },
  23934. ]
  23935. ))
  23936. characterMakers.push(() => makeCharacter(
  23937. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23938. {
  23939. front: {
  23940. height: math.unit(11, "feet"),
  23941. weight: math.unit(1000, "lb"),
  23942. name: "Front",
  23943. image: {
  23944. source: "./media/characters/alex/front.svg",
  23945. bottom: 44.5 / 620
  23946. }
  23947. },
  23948. },
  23949. [
  23950. {
  23951. name: "Micro",
  23952. height: math.unit(5, "inches")
  23953. },
  23954. {
  23955. name: "Normal",
  23956. height: math.unit(11, "feet"),
  23957. default: true
  23958. },
  23959. {
  23960. name: "Macro",
  23961. height: math.unit(9.5e9, "feet")
  23962. },
  23963. {
  23964. name: "Max Size",
  23965. height: math.unit(1.4e283, "yottameters")
  23966. },
  23967. ]
  23968. ))
  23969. characterMakers.push(() => makeCharacter(
  23970. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23971. {
  23972. female: {
  23973. height: math.unit(29.9, "m"),
  23974. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23975. name: "Female",
  23976. image: {
  23977. source: "./media/characters/zenari/female.svg",
  23978. extra: 3281.6 / 3217,
  23979. bottom: 72.2 / 3353
  23980. }
  23981. },
  23982. male: {
  23983. height: math.unit(27.7, "m"),
  23984. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23985. name: "Male",
  23986. image: {
  23987. source: "./media/characters/zenari/male.svg",
  23988. extra: 3008 / 2991,
  23989. bottom: 54.6 / 3069
  23990. }
  23991. },
  23992. },
  23993. [
  23994. {
  23995. name: "Macro",
  23996. height: math.unit(29.7, "meters"),
  23997. default: true
  23998. },
  23999. ]
  24000. ))
  24001. characterMakers.push(() => makeCharacter(
  24002. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24003. {
  24004. female: {
  24005. height: math.unit(23.8, "m"),
  24006. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24007. name: "Female",
  24008. image: {
  24009. source: "./media/characters/mactarian/female.svg",
  24010. extra: 2662 / 2569,
  24011. bottom: 73 / 2736
  24012. }
  24013. },
  24014. male: {
  24015. height: math.unit(23.8, "m"),
  24016. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24017. name: "Male",
  24018. image: {
  24019. source: "./media/characters/mactarian/male.svg",
  24020. extra: 2673 / 2600,
  24021. bottom: 76 / 2750
  24022. }
  24023. },
  24024. },
  24025. [
  24026. {
  24027. name: "Macro",
  24028. height: math.unit(23.8, "meters"),
  24029. default: true
  24030. },
  24031. ]
  24032. ))
  24033. characterMakers.push(() => makeCharacter(
  24034. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24035. {
  24036. female: {
  24037. height: math.unit(19.3, "m"),
  24038. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24039. name: "Female",
  24040. image: {
  24041. source: "./media/characters/umok/female.svg",
  24042. extra: 2186 / 2078,
  24043. bottom: 87 / 2277
  24044. }
  24045. },
  24046. male: {
  24047. height: math.unit(19.5, "m"),
  24048. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24049. name: "Male",
  24050. image: {
  24051. source: "./media/characters/umok/male.svg",
  24052. extra: 2233 / 2140,
  24053. bottom: 24.4 / 2258
  24054. }
  24055. },
  24056. },
  24057. [
  24058. {
  24059. name: "Macro",
  24060. height: math.unit(19.3, "meters"),
  24061. default: true
  24062. },
  24063. ]
  24064. ))
  24065. characterMakers.push(() => makeCharacter(
  24066. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24067. {
  24068. female: {
  24069. height: math.unit(26.15, "m"),
  24070. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24071. name: "Female",
  24072. image: {
  24073. source: "./media/characters/joraxian/female.svg",
  24074. extra: 2912 / 2824,
  24075. bottom: 36 / 2956
  24076. }
  24077. },
  24078. male: {
  24079. height: math.unit(25.4, "m"),
  24080. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24081. name: "Male",
  24082. image: {
  24083. source: "./media/characters/joraxian/male.svg",
  24084. extra: 2877 / 2721,
  24085. bottom: 82 / 2967
  24086. }
  24087. },
  24088. },
  24089. [
  24090. {
  24091. name: "Macro",
  24092. height: math.unit(26.15, "meters"),
  24093. default: true
  24094. },
  24095. ]
  24096. ))
  24097. characterMakers.push(() => makeCharacter(
  24098. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24099. {
  24100. female: {
  24101. height: math.unit(21.6, "m"),
  24102. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24103. name: "Female",
  24104. image: {
  24105. source: "./media/characters/sthara/female.svg",
  24106. extra: 2516 / 2347,
  24107. bottom: 21.5 / 2537
  24108. }
  24109. },
  24110. male: {
  24111. height: math.unit(24, "m"),
  24112. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24113. name: "Male",
  24114. image: {
  24115. source: "./media/characters/sthara/male.svg",
  24116. extra: 2732 / 2607,
  24117. bottom: 23 / 2732
  24118. }
  24119. },
  24120. },
  24121. [
  24122. {
  24123. name: "Macro",
  24124. height: math.unit(21.6, "meters"),
  24125. default: true
  24126. },
  24127. ]
  24128. ))
  24129. characterMakers.push(() => makeCharacter(
  24130. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24131. {
  24132. front: {
  24133. height: math.unit(6 + 4 / 12, "feet"),
  24134. weight: math.unit(175, "lb"),
  24135. name: "Front",
  24136. image: {
  24137. source: "./media/characters/luka-bryzant/front.svg",
  24138. extra: 311 / 289,
  24139. bottom: 4 / 315
  24140. }
  24141. },
  24142. back: {
  24143. height: math.unit(6 + 4 / 12, "feet"),
  24144. weight: math.unit(175, "lb"),
  24145. name: "Back",
  24146. image: {
  24147. source: "./media/characters/luka-bryzant/back.svg",
  24148. extra: 311 / 289,
  24149. bottom: 3.8 / 313.7
  24150. }
  24151. },
  24152. },
  24153. [
  24154. {
  24155. name: "Micro",
  24156. height: math.unit(10, "inches")
  24157. },
  24158. {
  24159. name: "Normal",
  24160. height: math.unit(6 + 4 / 12, "feet"),
  24161. default: true
  24162. },
  24163. {
  24164. name: "Large",
  24165. height: math.unit(12, "feet")
  24166. },
  24167. ]
  24168. ))
  24169. characterMakers.push(() => makeCharacter(
  24170. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24171. {
  24172. front: {
  24173. height: math.unit(5 + 7 / 12, "feet"),
  24174. weight: math.unit(185, "lb"),
  24175. name: "Front",
  24176. image: {
  24177. source: "./media/characters/aman-aquila/front.svg",
  24178. extra: 1013 / 976,
  24179. bottom: 45.6 / 1057
  24180. }
  24181. },
  24182. side: {
  24183. height: math.unit(5 + 7 / 12, "feet"),
  24184. weight: math.unit(185, "lb"),
  24185. name: "Side",
  24186. image: {
  24187. source: "./media/characters/aman-aquila/side.svg",
  24188. extra: 1054 / 1011,
  24189. bottom: 15 / 1070
  24190. }
  24191. },
  24192. back: {
  24193. height: math.unit(5 + 7 / 12, "feet"),
  24194. weight: math.unit(185, "lb"),
  24195. name: "Back",
  24196. image: {
  24197. source: "./media/characters/aman-aquila/back.svg",
  24198. extra: 1026 / 970,
  24199. bottom: 12 / 1039
  24200. }
  24201. },
  24202. head: {
  24203. height: math.unit(1.211, "feet"),
  24204. name: "Head",
  24205. image: {
  24206. source: "./media/characters/aman-aquila/head.svg",
  24207. }
  24208. },
  24209. },
  24210. [
  24211. {
  24212. name: "Minimicro",
  24213. height: math.unit(0.057, "inches")
  24214. },
  24215. {
  24216. name: "Micro",
  24217. height: math.unit(7, "inches")
  24218. },
  24219. {
  24220. name: "Mini",
  24221. height: math.unit(3 + 7 / 12, "feet")
  24222. },
  24223. {
  24224. name: "Normal",
  24225. height: math.unit(5 + 7 / 12, "feet"),
  24226. default: true
  24227. },
  24228. {
  24229. name: "Macro",
  24230. height: math.unit(157 + 7 / 12, "feet")
  24231. },
  24232. {
  24233. name: "Megamacro",
  24234. height: math.unit(1557 + 7 / 12, "feet")
  24235. },
  24236. {
  24237. name: "Gigamacro",
  24238. height: math.unit(15557 + 7 / 12, "feet")
  24239. },
  24240. ]
  24241. ))
  24242. characterMakers.push(() => makeCharacter(
  24243. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24244. {
  24245. front: {
  24246. height: math.unit(3 + 2 / 12, "inches"),
  24247. weight: math.unit(0.3, "ounces"),
  24248. name: "Front",
  24249. image: {
  24250. source: "./media/characters/hiphae/front.svg",
  24251. extra: 1931 / 1683,
  24252. bottom: 24 / 1955
  24253. }
  24254. },
  24255. },
  24256. [
  24257. {
  24258. name: "Normal",
  24259. height: math.unit(3 + 1 / 2, "inches"),
  24260. default: true
  24261. },
  24262. ]
  24263. ))
  24264. characterMakers.push(() => makeCharacter(
  24265. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24266. {
  24267. front: {
  24268. height: math.unit(5 + 10 / 12, "feet"),
  24269. weight: math.unit(165, "lb"),
  24270. name: "Front",
  24271. image: {
  24272. source: "./media/characters/nicky/front.svg",
  24273. extra: 3144 / 2886,
  24274. bottom: 45.6 / 3192
  24275. }
  24276. },
  24277. back: {
  24278. height: math.unit(5 + 10 / 12, "feet"),
  24279. weight: math.unit(165, "lb"),
  24280. name: "Back",
  24281. image: {
  24282. source: "./media/characters/nicky/back.svg",
  24283. extra: 3055 / 2804,
  24284. bottom: 28.4 / 3087
  24285. }
  24286. },
  24287. frontclothed: {
  24288. height: math.unit(5 + 10 / 12, "feet"),
  24289. weight: math.unit(165, "lb"),
  24290. name: "Front-clothed",
  24291. image: {
  24292. source: "./media/characters/nicky/front-clothed.svg",
  24293. extra: 3184.9 / 2926.9,
  24294. bottom: 86.5 / 3239.9
  24295. }
  24296. },
  24297. foot: {
  24298. height: math.unit(1.16, "feet"),
  24299. name: "Foot",
  24300. image: {
  24301. source: "./media/characters/nicky/foot.svg"
  24302. }
  24303. },
  24304. feet: {
  24305. height: math.unit(1.34, "feet"),
  24306. name: "Feet",
  24307. image: {
  24308. source: "./media/characters/nicky/feet.svg"
  24309. }
  24310. },
  24311. maw: {
  24312. height: math.unit(0.9, "feet"),
  24313. name: "Maw",
  24314. image: {
  24315. source: "./media/characters/nicky/maw.svg"
  24316. }
  24317. },
  24318. },
  24319. [
  24320. {
  24321. name: "Normal",
  24322. height: math.unit(5 + 10 / 12, "feet"),
  24323. default: true
  24324. },
  24325. {
  24326. name: "Macro",
  24327. height: math.unit(60, "feet")
  24328. },
  24329. {
  24330. name: "Megamacro",
  24331. height: math.unit(1, "mile")
  24332. },
  24333. ]
  24334. ))
  24335. characterMakers.push(() => makeCharacter(
  24336. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24337. {
  24338. side: {
  24339. height: math.unit(10, "feet"),
  24340. weight: math.unit(600, "lb"),
  24341. name: "Side",
  24342. image: {
  24343. source: "./media/characters/blair/side.svg",
  24344. bottom: 16.6 / 475,
  24345. extra: 458 / 431
  24346. }
  24347. },
  24348. },
  24349. [
  24350. {
  24351. name: "Micro",
  24352. height: math.unit(8, "inches")
  24353. },
  24354. {
  24355. name: "Normal",
  24356. height: math.unit(10, "feet"),
  24357. default: true
  24358. },
  24359. {
  24360. name: "Macro",
  24361. height: math.unit(180, "feet")
  24362. },
  24363. ]
  24364. ))
  24365. characterMakers.push(() => makeCharacter(
  24366. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24367. {
  24368. front: {
  24369. height: math.unit(5 + 4 / 12, "feet"),
  24370. weight: math.unit(125, "lb"),
  24371. name: "Front",
  24372. image: {
  24373. source: "./media/characters/fisher/front.svg",
  24374. extra: 444 / 390,
  24375. bottom: 2 / 444.8
  24376. }
  24377. },
  24378. },
  24379. [
  24380. {
  24381. name: "Micro",
  24382. height: math.unit(4, "inches")
  24383. },
  24384. {
  24385. name: "Normal",
  24386. height: math.unit(5 + 4 / 12, "feet"),
  24387. default: true
  24388. },
  24389. {
  24390. name: "Macro",
  24391. height: math.unit(100, "feet")
  24392. },
  24393. ]
  24394. ))
  24395. characterMakers.push(() => makeCharacter(
  24396. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24397. {
  24398. front: {
  24399. height: math.unit(6.71, "feet"),
  24400. weight: math.unit(200, "lb"),
  24401. capacity: math.unit(1000000, "people"),
  24402. name: "Front",
  24403. image: {
  24404. source: "./media/characters/gliss/front.svg",
  24405. extra: 2347 / 2231,
  24406. bottom: 113 / 2462
  24407. }
  24408. },
  24409. hammerspaceSize: {
  24410. height: math.unit(6.71 * 717, "feet"),
  24411. weight: math.unit(200, "lb"),
  24412. capacity: math.unit(1000000, "people"),
  24413. name: "Hammerspace Size",
  24414. image: {
  24415. source: "./media/characters/gliss/front.svg",
  24416. extra: 2347 / 2231,
  24417. bottom: 113 / 2462
  24418. }
  24419. },
  24420. },
  24421. [
  24422. {
  24423. name: "Normal",
  24424. height: math.unit(6.71, "feet"),
  24425. default: true
  24426. },
  24427. ]
  24428. ))
  24429. characterMakers.push(() => makeCharacter(
  24430. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24431. {
  24432. side: {
  24433. height: math.unit(1.44, "m"),
  24434. weight: math.unit(80, "kg"),
  24435. name: "Side",
  24436. image: {
  24437. source: "./media/characters/dune-anderson/side.svg",
  24438. bottom: 49 / 1426
  24439. }
  24440. },
  24441. },
  24442. [
  24443. {
  24444. name: "Wolf-sized",
  24445. height: math.unit(1.44, "meters")
  24446. },
  24447. {
  24448. name: "Normal",
  24449. height: math.unit(5.05, "meters"),
  24450. default: true
  24451. },
  24452. {
  24453. name: "Big",
  24454. height: math.unit(14.4, "meters")
  24455. },
  24456. {
  24457. name: "Huge",
  24458. height: math.unit(144, "meters")
  24459. },
  24460. ]
  24461. ))
  24462. characterMakers.push(() => makeCharacter(
  24463. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24464. {
  24465. front: {
  24466. height: math.unit(7, "feet"),
  24467. weight: math.unit(425, "lb"),
  24468. name: "Front",
  24469. image: {
  24470. source: "./media/characters/hind/front.svg",
  24471. extra: 2091 / 1860,
  24472. bottom: 129 / 2220
  24473. }
  24474. },
  24475. back: {
  24476. height: math.unit(7, "feet"),
  24477. weight: math.unit(425, "lb"),
  24478. name: "Back",
  24479. image: {
  24480. source: "./media/characters/hind/back.svg",
  24481. extra: 2091 / 1860,
  24482. bottom: 24.6 / 2309
  24483. }
  24484. },
  24485. tail: {
  24486. height: math.unit(2.8, "feet"),
  24487. name: "Tail",
  24488. image: {
  24489. source: "./media/characters/hind/tail.svg"
  24490. }
  24491. },
  24492. head: {
  24493. height: math.unit(2.55, "feet"),
  24494. name: "Head",
  24495. image: {
  24496. source: "./media/characters/hind/head.svg"
  24497. }
  24498. },
  24499. },
  24500. [
  24501. {
  24502. name: "XS",
  24503. height: math.unit(0.7, "feet")
  24504. },
  24505. {
  24506. name: "Normal",
  24507. height: math.unit(7, "feet"),
  24508. default: true
  24509. },
  24510. {
  24511. name: "XL",
  24512. height: math.unit(70, "feet")
  24513. },
  24514. ]
  24515. ))
  24516. characterMakers.push(() => makeCharacter(
  24517. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24518. {
  24519. front: {
  24520. height: math.unit(6, "feet"),
  24521. weight: math.unit(150, "lb"),
  24522. name: "Front",
  24523. image: {
  24524. source: "./media/characters/dylan-skaven/front.svg",
  24525. extra: 2318 / 2063,
  24526. bottom: 93.4 / 2410
  24527. }
  24528. },
  24529. },
  24530. [
  24531. {
  24532. name: "Nano",
  24533. height: math.unit(1, "mm")
  24534. },
  24535. {
  24536. name: "Micro",
  24537. height: math.unit(1, "cm")
  24538. },
  24539. {
  24540. name: "Normal",
  24541. height: math.unit(2.1, "meters"),
  24542. default: true
  24543. },
  24544. ]
  24545. ))
  24546. characterMakers.push(() => makeCharacter(
  24547. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24548. {
  24549. front: {
  24550. height: math.unit(7 + 5 / 12, "feet"),
  24551. weight: math.unit(357, "lb"),
  24552. name: "Front",
  24553. image: {
  24554. source: "./media/characters/solex-draconov/front.svg",
  24555. extra: 1993 / 1865,
  24556. bottom: 117 / 2111
  24557. }
  24558. },
  24559. },
  24560. [
  24561. {
  24562. name: "Natural Height",
  24563. height: math.unit(7 + 5 / 12, "feet"),
  24564. default: true
  24565. },
  24566. {
  24567. name: "Macro",
  24568. height: math.unit(350, "feet")
  24569. },
  24570. {
  24571. name: "Macro+",
  24572. height: math.unit(1000, "feet")
  24573. },
  24574. {
  24575. name: "Megamacro",
  24576. height: math.unit(20, "km")
  24577. },
  24578. {
  24579. name: "Megamacro+",
  24580. height: math.unit(1000, "km")
  24581. },
  24582. {
  24583. name: "Gigamacro",
  24584. height: math.unit(2.5, "Gm")
  24585. },
  24586. {
  24587. name: "Teramacro",
  24588. height: math.unit(15, "Tm")
  24589. },
  24590. {
  24591. name: "Galactic",
  24592. height: math.unit(30, "Zm")
  24593. },
  24594. {
  24595. name: "Universal",
  24596. height: math.unit(21000, "Ym")
  24597. },
  24598. {
  24599. name: "Omniversal",
  24600. height: math.unit(9.861e50, "Ym")
  24601. },
  24602. {
  24603. name: "Existential",
  24604. height: math.unit(1e300, "meters")
  24605. },
  24606. ]
  24607. ))
  24608. characterMakers.push(() => makeCharacter(
  24609. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24610. {
  24611. side: {
  24612. height: math.unit(25, "feet"),
  24613. weight: math.unit(90000, "lb"),
  24614. name: "Side",
  24615. image: {
  24616. source: "./media/characters/mandarax/side.svg",
  24617. extra: 614 / 332,
  24618. bottom: 55 / 630
  24619. }
  24620. },
  24621. head: {
  24622. height: math.unit(11.4, "feet"),
  24623. name: "Head",
  24624. image: {
  24625. source: "./media/characters/mandarax/head.svg"
  24626. }
  24627. },
  24628. belly: {
  24629. height: math.unit(33, "feet"),
  24630. name: "Belly",
  24631. capacity: math.unit(500, "people"),
  24632. image: {
  24633. source: "./media/characters/mandarax/belly.svg"
  24634. }
  24635. },
  24636. dick: {
  24637. height: math.unit(8.46, "feet"),
  24638. name: "Dick",
  24639. image: {
  24640. source: "./media/characters/mandarax/dick.svg"
  24641. }
  24642. },
  24643. top: {
  24644. height: math.unit(28, "meters"),
  24645. name: "Top",
  24646. image: {
  24647. source: "./media/characters/mandarax/top.svg"
  24648. }
  24649. },
  24650. },
  24651. [
  24652. {
  24653. name: "Normal",
  24654. height: math.unit(25, "feet"),
  24655. default: true
  24656. },
  24657. ]
  24658. ))
  24659. characterMakers.push(() => makeCharacter(
  24660. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24661. {
  24662. front: {
  24663. height: math.unit(5, "feet"),
  24664. weight: math.unit(90, "lb"),
  24665. name: "Front",
  24666. image: {
  24667. source: "./media/characters/pixil/front.svg",
  24668. extra: 2000 / 1618,
  24669. bottom: 12.3 / 2011
  24670. }
  24671. },
  24672. },
  24673. [
  24674. {
  24675. name: "Normal",
  24676. height: math.unit(5, "feet"),
  24677. default: true
  24678. },
  24679. {
  24680. name: "Megamacro",
  24681. height: math.unit(10, "miles"),
  24682. },
  24683. ]
  24684. ))
  24685. characterMakers.push(() => makeCharacter(
  24686. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24687. {
  24688. front: {
  24689. height: math.unit(7 + 2 / 12, "feet"),
  24690. weight: math.unit(200, "lb"),
  24691. name: "Front",
  24692. image: {
  24693. source: "./media/characters/angel/front.svg",
  24694. extra: 1830 / 1737,
  24695. bottom: 22.6 / 1854,
  24696. }
  24697. },
  24698. },
  24699. [
  24700. {
  24701. name: "Normal",
  24702. height: math.unit(7 + 2 / 12, "feet"),
  24703. default: true
  24704. },
  24705. {
  24706. name: "Macro",
  24707. height: math.unit(1000, "feet")
  24708. },
  24709. {
  24710. name: "Megamacro",
  24711. height: math.unit(2, "miles")
  24712. },
  24713. {
  24714. name: "Gigamacro",
  24715. height: math.unit(20, "earths")
  24716. },
  24717. ]
  24718. ))
  24719. characterMakers.push(() => makeCharacter(
  24720. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24721. {
  24722. front: {
  24723. height: math.unit(5, "feet"),
  24724. weight: math.unit(180, "lb"),
  24725. name: "Front",
  24726. image: {
  24727. source: "./media/characters/mekana/front.svg",
  24728. extra: 1671 / 1605,
  24729. bottom: 3.5 / 1691
  24730. }
  24731. },
  24732. side: {
  24733. height: math.unit(5, "feet"),
  24734. weight: math.unit(180, "lb"),
  24735. name: "Side",
  24736. image: {
  24737. source: "./media/characters/mekana/side.svg",
  24738. extra: 1671 / 1605,
  24739. bottom: 3.5 / 1691
  24740. }
  24741. },
  24742. back: {
  24743. height: math.unit(5, "feet"),
  24744. weight: math.unit(180, "lb"),
  24745. name: "Back",
  24746. image: {
  24747. source: "./media/characters/mekana/back.svg",
  24748. extra: 1671 / 1605,
  24749. bottom: 3.5 / 1691
  24750. }
  24751. },
  24752. },
  24753. [
  24754. {
  24755. name: "Normal",
  24756. height: math.unit(5, "feet"),
  24757. default: true
  24758. },
  24759. ]
  24760. ))
  24761. characterMakers.push(() => makeCharacter(
  24762. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24763. {
  24764. front: {
  24765. height: math.unit(4 + 6 / 12, "feet"),
  24766. weight: math.unit(80, "lb"),
  24767. name: "Front",
  24768. image: {
  24769. source: "./media/characters/pixie/front.svg",
  24770. extra: 1924 / 1825,
  24771. bottom: 22.4 / 1946
  24772. }
  24773. },
  24774. },
  24775. [
  24776. {
  24777. name: "Normal",
  24778. height: math.unit(4 + 6 / 12, "feet"),
  24779. default: true
  24780. },
  24781. {
  24782. name: "Macro",
  24783. height: math.unit(40, "feet")
  24784. },
  24785. ]
  24786. ))
  24787. characterMakers.push(() => makeCharacter(
  24788. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24789. {
  24790. front: {
  24791. height: math.unit(2.1, "meters"),
  24792. weight: math.unit(200, "lb"),
  24793. name: "Front",
  24794. image: {
  24795. source: "./media/characters/the-lascivious/front.svg",
  24796. extra: 1 / 0.893,
  24797. bottom: 3.5 / 573.7
  24798. }
  24799. },
  24800. },
  24801. [
  24802. {
  24803. name: "Human Scale",
  24804. height: math.unit(2.1, "meters")
  24805. },
  24806. {
  24807. name: "Wolxi Scale",
  24808. height: math.unit(46.2, "m"),
  24809. default: true
  24810. },
  24811. {
  24812. name: "Boinker of Buildings",
  24813. height: math.unit(10, "km")
  24814. },
  24815. {
  24816. name: "Shagger of Skyscrapers",
  24817. height: math.unit(40, "km")
  24818. },
  24819. {
  24820. name: "Banger of Boroughs",
  24821. height: math.unit(4000, "km")
  24822. },
  24823. {
  24824. name: "Screwer of States",
  24825. height: math.unit(100000, "km")
  24826. },
  24827. {
  24828. name: "Pounder of Planets",
  24829. height: math.unit(2000000, "km")
  24830. },
  24831. ]
  24832. ))
  24833. characterMakers.push(() => makeCharacter(
  24834. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24835. {
  24836. front: {
  24837. height: math.unit(6, "feet"),
  24838. weight: math.unit(150, "lb"),
  24839. name: "Front",
  24840. image: {
  24841. source: "./media/characters/aj/front.svg",
  24842. extra: 2039 / 1562,
  24843. bottom: 40 / 2079
  24844. }
  24845. },
  24846. },
  24847. [
  24848. {
  24849. name: "Normal",
  24850. height: math.unit(11 + 6 / 12, "feet"),
  24851. default: true
  24852. },
  24853. {
  24854. name: "Megamacro",
  24855. height: math.unit(60, "megameters")
  24856. },
  24857. ]
  24858. ))
  24859. characterMakers.push(() => makeCharacter(
  24860. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24861. {
  24862. side: {
  24863. height: math.unit(31 + 8 / 12, "feet"),
  24864. weight: math.unit(75000, "kg"),
  24865. name: "Side",
  24866. image: {
  24867. source: "./media/characters/koros/side.svg",
  24868. extra: 1442 / 1297,
  24869. bottom: 122.7 / 1562
  24870. }
  24871. },
  24872. dicksKingsCrown: {
  24873. height: math.unit(6, "feet"),
  24874. name: "Dicks (King's Crown)",
  24875. image: {
  24876. source: "./media/characters/koros/dicks-kings-crown.svg"
  24877. }
  24878. },
  24879. dicksTailSet: {
  24880. height: math.unit(3, "feet"),
  24881. name: "Dicks (Tail Set)",
  24882. image: {
  24883. source: "./media/characters/koros/dicks-tail-set.svg"
  24884. }
  24885. },
  24886. dickCumming: {
  24887. height: math.unit(7.98, "feet"),
  24888. name: "Dick (Cumming)",
  24889. image: {
  24890. source: "./media/characters/koros/dick-cumming.svg"
  24891. }
  24892. },
  24893. dicksBack: {
  24894. height: math.unit(5.9, "feet"),
  24895. name: "Dicks (Back)",
  24896. image: {
  24897. source: "./media/characters/koros/dicks-back.svg"
  24898. }
  24899. },
  24900. dicksFront: {
  24901. height: math.unit(3.72, "feet"),
  24902. name: "Dicks (Front)",
  24903. image: {
  24904. source: "./media/characters/koros/dicks-front.svg"
  24905. }
  24906. },
  24907. dicksPeeking: {
  24908. height: math.unit(3.0, "feet"),
  24909. name: "Dicks (Peeking)",
  24910. image: {
  24911. source: "./media/characters/koros/dicks-peeking.svg"
  24912. }
  24913. },
  24914. eye: {
  24915. height: math.unit(1.7, "feet"),
  24916. name: "Eye",
  24917. image: {
  24918. source: "./media/characters/koros/eye.svg"
  24919. }
  24920. },
  24921. headFront: {
  24922. height: math.unit(11.69, "feet"),
  24923. name: "Head (Front)",
  24924. image: {
  24925. source: "./media/characters/koros/head-front.svg"
  24926. }
  24927. },
  24928. headSide: {
  24929. height: math.unit(14, "feet"),
  24930. name: "Head (Side)",
  24931. image: {
  24932. source: "./media/characters/koros/head-side.svg"
  24933. }
  24934. },
  24935. leg: {
  24936. height: math.unit(17, "feet"),
  24937. name: "Leg",
  24938. image: {
  24939. source: "./media/characters/koros/leg.svg"
  24940. }
  24941. },
  24942. mawSide: {
  24943. height: math.unit(12.8, "feet"),
  24944. name: "Maw (Side)",
  24945. image: {
  24946. source: "./media/characters/koros/maw-side.svg"
  24947. }
  24948. },
  24949. mawSpitting: {
  24950. height: math.unit(17, "feet"),
  24951. name: "Maw (Spitting)",
  24952. image: {
  24953. source: "./media/characters/koros/maw-spitting.svg"
  24954. }
  24955. },
  24956. slit: {
  24957. height: math.unit(2.8, "feet"),
  24958. name: "Slit",
  24959. image: {
  24960. source: "./media/characters/koros/slit.svg"
  24961. }
  24962. },
  24963. stomach: {
  24964. height: math.unit(6.8, "feet"),
  24965. capacity: math.unit(20, "people"),
  24966. name: "Stomach",
  24967. image: {
  24968. source: "./media/characters/koros/stomach.svg"
  24969. }
  24970. },
  24971. wingspanBottom: {
  24972. height: math.unit(114, "feet"),
  24973. name: "Wingspan (Bottom)",
  24974. image: {
  24975. source: "./media/characters/koros/wingspan-bottom.svg"
  24976. }
  24977. },
  24978. wingspanTop: {
  24979. height: math.unit(104, "feet"),
  24980. name: "Wingspan (Top)",
  24981. image: {
  24982. source: "./media/characters/koros/wingspan-top.svg"
  24983. }
  24984. },
  24985. },
  24986. [
  24987. {
  24988. name: "Normal",
  24989. height: math.unit(31 + 8 / 12, "feet"),
  24990. default: true
  24991. },
  24992. ]
  24993. ))
  24994. characterMakers.push(() => makeCharacter(
  24995. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24996. {
  24997. front: {
  24998. height: math.unit(18 + 5 / 12, "feet"),
  24999. weight: math.unit(3750, "kg"),
  25000. name: "Front",
  25001. image: {
  25002. source: "./media/characters/vexx/front.svg",
  25003. extra: 426 / 396,
  25004. bottom: 31.5 / 458
  25005. }
  25006. },
  25007. maw: {
  25008. height: math.unit(6, "feet"),
  25009. name: "Maw",
  25010. image: {
  25011. source: "./media/characters/vexx/maw.svg"
  25012. }
  25013. },
  25014. },
  25015. [
  25016. {
  25017. name: "Normal",
  25018. height: math.unit(18 + 5 / 12, "feet"),
  25019. default: true
  25020. },
  25021. ]
  25022. ))
  25023. characterMakers.push(() => makeCharacter(
  25024. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25025. {
  25026. front: {
  25027. height: math.unit(17 + 6 / 12, "feet"),
  25028. weight: math.unit(150, "lb"),
  25029. name: "Front",
  25030. image: {
  25031. source: "./media/characters/baadra/front.svg",
  25032. extra: 3137 / 2890,
  25033. bottom: 168.4 / 3305
  25034. }
  25035. },
  25036. back: {
  25037. height: math.unit(17 + 6 / 12, "feet"),
  25038. weight: math.unit(150, "lb"),
  25039. name: "Back",
  25040. image: {
  25041. source: "./media/characters/baadra/back.svg",
  25042. extra: 3142 / 2890,
  25043. bottom: 220 / 3371
  25044. }
  25045. },
  25046. head: {
  25047. height: math.unit(5.45, "feet"),
  25048. name: "Head",
  25049. image: {
  25050. source: "./media/characters/baadra/head.svg"
  25051. }
  25052. },
  25053. headAngry: {
  25054. height: math.unit(4.95, "feet"),
  25055. name: "Head (Angry)",
  25056. image: {
  25057. source: "./media/characters/baadra/head-angry.svg"
  25058. }
  25059. },
  25060. headOpen: {
  25061. height: math.unit(6, "feet"),
  25062. name: "Head (Open)",
  25063. image: {
  25064. source: "./media/characters/baadra/head-open.svg"
  25065. }
  25066. },
  25067. },
  25068. [
  25069. {
  25070. name: "Normal",
  25071. height: math.unit(17 + 6 / 12, "feet"),
  25072. default: true
  25073. },
  25074. ]
  25075. ))
  25076. characterMakers.push(() => makeCharacter(
  25077. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25078. {
  25079. front: {
  25080. height: math.unit(7 + 3 / 12, "feet"),
  25081. weight: math.unit(180, "lb"),
  25082. name: "Front",
  25083. image: {
  25084. source: "./media/characters/juri/front.svg",
  25085. extra: 1401 / 1237,
  25086. bottom: 18.5 / 1418
  25087. }
  25088. },
  25089. side: {
  25090. height: math.unit(7 + 3 / 12, "feet"),
  25091. weight: math.unit(180, "lb"),
  25092. name: "Side",
  25093. image: {
  25094. source: "./media/characters/juri/side.svg",
  25095. extra: 1424 / 1242,
  25096. bottom: 18.5 / 1447
  25097. }
  25098. },
  25099. sitting: {
  25100. height: math.unit(6, "feet"),
  25101. weight: math.unit(180, "lb"),
  25102. name: "Sitting",
  25103. image: {
  25104. source: "./media/characters/juri/sitting.svg",
  25105. extra: 1270 / 1143,
  25106. bottom: 100 / 1343
  25107. }
  25108. },
  25109. back: {
  25110. height: math.unit(7 + 3 / 12, "feet"),
  25111. weight: math.unit(180, "lb"),
  25112. name: "Back",
  25113. image: {
  25114. source: "./media/characters/juri/back.svg",
  25115. extra: 1377 / 1240,
  25116. bottom: 23.7 / 1405
  25117. }
  25118. },
  25119. maw: {
  25120. height: math.unit(2.8, "feet"),
  25121. name: "Maw",
  25122. image: {
  25123. source: "./media/characters/juri/maw.svg"
  25124. }
  25125. },
  25126. stomach: {
  25127. height: math.unit(0.89, "feet"),
  25128. capacity: math.unit(4, "liters"),
  25129. name: "Stomach",
  25130. image: {
  25131. source: "./media/characters/juri/stomach.svg"
  25132. }
  25133. },
  25134. },
  25135. [
  25136. {
  25137. name: "Normal",
  25138. height: math.unit(7 + 3 / 12, "feet"),
  25139. default: true
  25140. },
  25141. ]
  25142. ))
  25143. characterMakers.push(() => makeCharacter(
  25144. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25145. {
  25146. fox: {
  25147. height: math.unit(5 + 6 / 12, "feet"),
  25148. weight: math.unit(140, "lb"),
  25149. name: "Fox",
  25150. image: {
  25151. source: "./media/characters/maxene-sita/fox.svg",
  25152. extra: 146 / 138,
  25153. bottom: 2.1 / 148.19
  25154. }
  25155. },
  25156. foxLaying: {
  25157. height: math.unit(1.70, "feet"),
  25158. weight: math.unit(140, "lb"),
  25159. name: "Fox (Laying)",
  25160. image: {
  25161. source: "./media/characters/maxene-sita/fox-laying.svg",
  25162. extra: 910 / 572,
  25163. bottom: 71 / 981
  25164. }
  25165. },
  25166. kitsune: {
  25167. height: math.unit(10, "feet"),
  25168. weight: math.unit(800, "lb"),
  25169. name: "Kitsune",
  25170. image: {
  25171. source: "./media/characters/maxene-sita/kitsune.svg",
  25172. extra: 185 / 176,
  25173. bottom: 4.7 / 189.9
  25174. }
  25175. },
  25176. hellhound: {
  25177. height: math.unit(10, "feet"),
  25178. weight: math.unit(700, "lb"),
  25179. name: "Hellhound",
  25180. image: {
  25181. source: "./media/characters/maxene-sita/hellhound.svg",
  25182. extra: 1600 / 1545,
  25183. bottom: 81 / 1681
  25184. }
  25185. },
  25186. },
  25187. [
  25188. {
  25189. name: "Normal",
  25190. height: math.unit(5 + 6 / 12, "feet"),
  25191. default: true
  25192. },
  25193. ]
  25194. ))
  25195. characterMakers.push(() => makeCharacter(
  25196. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25197. {
  25198. front: {
  25199. height: math.unit(3 + 4 / 12, "feet"),
  25200. weight: math.unit(70, "lb"),
  25201. name: "Front",
  25202. image: {
  25203. source: "./media/characters/maia/front.svg",
  25204. extra: 227 / 219.5,
  25205. bottom: 40 / 267
  25206. }
  25207. },
  25208. back: {
  25209. height: math.unit(3 + 4 / 12, "feet"),
  25210. weight: math.unit(70, "lb"),
  25211. name: "Back",
  25212. image: {
  25213. source: "./media/characters/maia/back.svg",
  25214. extra: 237 / 225
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Normal",
  25221. height: math.unit(3 + 4 / 12, "feet"),
  25222. default: true
  25223. },
  25224. ]
  25225. ))
  25226. characterMakers.push(() => makeCharacter(
  25227. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25228. {
  25229. front: {
  25230. height: math.unit(5 + 10 / 12, "feet"),
  25231. weight: math.unit(197, "lb"),
  25232. name: "Front",
  25233. image: {
  25234. source: "./media/characters/jabaro/front.svg",
  25235. extra: 225 / 216,
  25236. bottom: 5.06 / 230
  25237. }
  25238. },
  25239. back: {
  25240. height: math.unit(5 + 10 / 12, "feet"),
  25241. weight: math.unit(197, "lb"),
  25242. name: "Back",
  25243. image: {
  25244. source: "./media/characters/jabaro/back.svg",
  25245. extra: 225 / 219,
  25246. bottom: 1.9 / 227
  25247. }
  25248. },
  25249. },
  25250. [
  25251. {
  25252. name: "Normal",
  25253. height: math.unit(5 + 10 / 12, "feet"),
  25254. default: true
  25255. },
  25256. ]
  25257. ))
  25258. characterMakers.push(() => makeCharacter(
  25259. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25260. {
  25261. front: {
  25262. height: math.unit(5 + 8 / 12, "feet"),
  25263. weight: math.unit(139, "lb"),
  25264. name: "Front",
  25265. image: {
  25266. source: "./media/characters/risa/front.svg",
  25267. extra: 270 / 260,
  25268. bottom: 11.2 / 282
  25269. }
  25270. },
  25271. back: {
  25272. height: math.unit(5 + 8 / 12, "feet"),
  25273. weight: math.unit(139, "lb"),
  25274. name: "Back",
  25275. image: {
  25276. source: "./media/characters/risa/back.svg",
  25277. extra: 264 / 255,
  25278. bottom: 4 / 268
  25279. }
  25280. },
  25281. },
  25282. [
  25283. {
  25284. name: "Normal",
  25285. height: math.unit(5 + 8 / 12, "feet"),
  25286. default: true
  25287. },
  25288. ]
  25289. ))
  25290. characterMakers.push(() => makeCharacter(
  25291. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25292. {
  25293. front: {
  25294. height: math.unit(2 + 11 / 12, "feet"),
  25295. weight: math.unit(30, "lb"),
  25296. name: "Front",
  25297. image: {
  25298. source: "./media/characters/weatley/front.svg",
  25299. bottom: 10.7 / 414,
  25300. extra: 403.5 / 362
  25301. }
  25302. },
  25303. back: {
  25304. height: math.unit(2 + 11 / 12, "feet"),
  25305. weight: math.unit(30, "lb"),
  25306. name: "Back",
  25307. image: {
  25308. source: "./media/characters/weatley/back.svg",
  25309. bottom: 10.7 / 414,
  25310. extra: 403.5 / 362
  25311. }
  25312. },
  25313. },
  25314. [
  25315. {
  25316. name: "Normal",
  25317. height: math.unit(2 + 11 / 12, "feet"),
  25318. default: true
  25319. },
  25320. ]
  25321. ))
  25322. characterMakers.push(() => makeCharacter(
  25323. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25324. {
  25325. front: {
  25326. height: math.unit(5 + 2 / 12, "feet"),
  25327. weight: math.unit(50, "kg"),
  25328. name: "Front",
  25329. image: {
  25330. source: "./media/characters/mercury-crescent/front.svg",
  25331. extra: 1088 / 1033,
  25332. bottom: 18.9 / 1109
  25333. }
  25334. },
  25335. },
  25336. [
  25337. {
  25338. name: "Normal",
  25339. height: math.unit(5 + 2 / 12, "feet"),
  25340. default: true
  25341. },
  25342. ]
  25343. ))
  25344. characterMakers.push(() => makeCharacter(
  25345. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25346. {
  25347. front: {
  25348. height: math.unit(2, "feet"),
  25349. weight: math.unit(15, "kg"),
  25350. name: "Front",
  25351. image: {
  25352. source: "./media/characters/diamond-jones/front.svg",
  25353. bottom: 16 / 568
  25354. }
  25355. },
  25356. },
  25357. [
  25358. {
  25359. name: "Normal",
  25360. height: math.unit(2, "feet"),
  25361. default: true
  25362. },
  25363. ]
  25364. ))
  25365. characterMakers.push(() => makeCharacter(
  25366. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25367. {
  25368. front: {
  25369. height: math.unit(3, "feet"),
  25370. weight: math.unit(30, "kg"),
  25371. name: "Front",
  25372. image: {
  25373. source: "./media/characters/sweet-bit/front.svg",
  25374. extra: 675 / 567,
  25375. bottom: 27.7 / 703
  25376. }
  25377. },
  25378. },
  25379. [
  25380. {
  25381. name: "Normal",
  25382. height: math.unit(3, "feet"),
  25383. default: true
  25384. },
  25385. ]
  25386. ))
  25387. characterMakers.push(() => makeCharacter(
  25388. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25389. {
  25390. side: {
  25391. height: math.unit(9.178, "feet"),
  25392. weight: math.unit(500, "lb"),
  25393. name: "Side",
  25394. image: {
  25395. source: "./media/characters/umbrazen/side.svg",
  25396. extra: 1730 / 1473,
  25397. bottom: 34.6 / 1765
  25398. }
  25399. },
  25400. },
  25401. [
  25402. {
  25403. name: "Normal",
  25404. height: math.unit(9.178, "feet"),
  25405. default: true
  25406. },
  25407. ]
  25408. ))
  25409. characterMakers.push(() => makeCharacter(
  25410. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25411. {
  25412. front: {
  25413. height: math.unit(10, "feet"),
  25414. weight: math.unit(750, "lb"),
  25415. name: "Front",
  25416. image: {
  25417. source: "./media/characters/arlist/front.svg",
  25418. extra: 961 / 778,
  25419. bottom: 6.2 / 986
  25420. }
  25421. },
  25422. },
  25423. [
  25424. {
  25425. name: "Normal",
  25426. height: math.unit(10, "feet"),
  25427. default: true
  25428. },
  25429. ]
  25430. ))
  25431. characterMakers.push(() => makeCharacter(
  25432. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25433. {
  25434. front: {
  25435. height: math.unit(5 + 1 / 12, "feet"),
  25436. weight: math.unit(110, "lb"),
  25437. name: "Front",
  25438. image: {
  25439. source: "./media/characters/aradel/front.svg",
  25440. extra: 324 / 303,
  25441. bottom: 3.6 / 329.4
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Normal",
  25448. height: math.unit(5 + 1 / 12, "feet"),
  25449. default: true
  25450. },
  25451. ]
  25452. ))
  25453. characterMakers.push(() => makeCharacter(
  25454. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25455. {
  25456. front: {
  25457. height: math.unit(3 + 8 / 12, "feet"),
  25458. weight: math.unit(50, "lb"),
  25459. name: "Front",
  25460. image: {
  25461. source: "./media/characters/serryn/front.svg",
  25462. extra: 1792 / 1656,
  25463. bottom: 43.5 / 1840
  25464. }
  25465. },
  25466. },
  25467. [
  25468. {
  25469. name: "Normal",
  25470. height: math.unit(3 + 8 / 12, "feet"),
  25471. default: true
  25472. },
  25473. ]
  25474. ))
  25475. characterMakers.push(() => makeCharacter(
  25476. { name: "Xavier Thyme" },
  25477. {
  25478. front: {
  25479. height: math.unit(7 + 10 / 12, "feet"),
  25480. weight: math.unit(255, "lb"),
  25481. name: "Front",
  25482. image: {
  25483. source: "./media/characters/xavier-thyme/front.svg",
  25484. extra: 3733 / 3642,
  25485. bottom: 131 / 3869
  25486. }
  25487. },
  25488. frontRaven: {
  25489. height: math.unit(7 + 10 / 12, "feet"),
  25490. weight: math.unit(255, "lb"),
  25491. name: "Front (Raven)",
  25492. image: {
  25493. source: "./media/characters/xavier-thyme/front-raven.svg",
  25494. extra: 4385 / 3642,
  25495. bottom: 131 / 4517
  25496. }
  25497. },
  25498. },
  25499. [
  25500. {
  25501. name: "Normal",
  25502. height: math.unit(7 + 10 / 12, "feet"),
  25503. default: true
  25504. },
  25505. ]
  25506. ))
  25507. characterMakers.push(() => makeCharacter(
  25508. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25509. {
  25510. front: {
  25511. height: math.unit(1.6, "m"),
  25512. weight: math.unit(50, "kg"),
  25513. name: "Front",
  25514. image: {
  25515. source: "./media/characters/kiki/front.svg",
  25516. extra: 4682 / 3610,
  25517. bottom: 115 / 4777
  25518. }
  25519. },
  25520. },
  25521. [
  25522. {
  25523. name: "Normal",
  25524. height: math.unit(1.6, "meters"),
  25525. default: true
  25526. },
  25527. ]
  25528. ))
  25529. characterMakers.push(() => makeCharacter(
  25530. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25531. {
  25532. front: {
  25533. height: math.unit(50, "m"),
  25534. weight: math.unit(500, "tonnes"),
  25535. name: "Front",
  25536. image: {
  25537. source: "./media/characters/ryoko/front.svg",
  25538. extra: 4632 / 3926,
  25539. bottom: 193 / 4823
  25540. }
  25541. },
  25542. },
  25543. [
  25544. {
  25545. name: "Normal",
  25546. height: math.unit(50, "meters"),
  25547. default: true
  25548. },
  25549. ]
  25550. ))
  25551. characterMakers.push(() => makeCharacter(
  25552. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25553. {
  25554. front: {
  25555. height: math.unit(30, "m"),
  25556. weight: math.unit(22, "tonnes"),
  25557. name: "Front",
  25558. image: {
  25559. source: "./media/characters/elio/front.svg",
  25560. extra: 4582 / 3720,
  25561. bottom: 236 / 4828
  25562. }
  25563. },
  25564. },
  25565. [
  25566. {
  25567. name: "Normal",
  25568. height: math.unit(30, "meters"),
  25569. default: true
  25570. },
  25571. ]
  25572. ))
  25573. characterMakers.push(() => makeCharacter(
  25574. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25575. {
  25576. front: {
  25577. height: math.unit(6 + 3 / 12, "feet"),
  25578. weight: math.unit(120, "lb"),
  25579. name: "Front",
  25580. image: {
  25581. source: "./media/characters/azura/front.svg",
  25582. extra: 1149 / 1135,
  25583. bottom: 45 / 1194
  25584. }
  25585. },
  25586. frontClothed: {
  25587. height: math.unit(6 + 3 / 12, "feet"),
  25588. weight: math.unit(120, "lb"),
  25589. name: "Front (Clothed)",
  25590. image: {
  25591. source: "./media/characters/azura/front-clothed.svg",
  25592. extra: 1149 / 1135,
  25593. bottom: 45 / 1194
  25594. }
  25595. },
  25596. },
  25597. [
  25598. {
  25599. name: "Normal",
  25600. height: math.unit(6 + 3 / 12, "feet"),
  25601. default: true
  25602. },
  25603. {
  25604. name: "Macro",
  25605. height: math.unit(20 + 6 / 12, "feet")
  25606. },
  25607. {
  25608. name: "Megamacro",
  25609. height: math.unit(12, "miles")
  25610. },
  25611. {
  25612. name: "Gigamacro",
  25613. height: math.unit(10000, "miles")
  25614. },
  25615. {
  25616. name: "Teramacro",
  25617. height: math.unit(900000, "miles")
  25618. },
  25619. ]
  25620. ))
  25621. characterMakers.push(() => makeCharacter(
  25622. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25623. {
  25624. front: {
  25625. height: math.unit(12, "feet"),
  25626. weight: math.unit(1, "ton"),
  25627. capacity: math.unit(660000, "gallons"),
  25628. name: "Front",
  25629. image: {
  25630. source: "./media/characters/zeus/front.svg",
  25631. extra: 5005 / 4717,
  25632. bottom: 363 / 5388
  25633. }
  25634. },
  25635. },
  25636. [
  25637. {
  25638. name: "Normal",
  25639. height: math.unit(12, "feet")
  25640. },
  25641. {
  25642. name: "Preferred Size",
  25643. height: math.unit(0.5, "miles"),
  25644. default: true
  25645. },
  25646. {
  25647. name: "Giga Horse",
  25648. height: math.unit(300, "miles")
  25649. },
  25650. {
  25651. name: "Riding Planets",
  25652. height: math.unit(30, "megameters")
  25653. },
  25654. {
  25655. name: "Cosmic Giant",
  25656. height: math.unit(3, "zettameters")
  25657. },
  25658. {
  25659. name: "Breeding God",
  25660. height: math.unit(9.92e22, "yottameters")
  25661. },
  25662. ]
  25663. ))
  25664. characterMakers.push(() => makeCharacter(
  25665. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25666. {
  25667. side: {
  25668. height: math.unit(9, "feet"),
  25669. weight: math.unit(1500, "kg"),
  25670. name: "Side",
  25671. image: {
  25672. source: "./media/characters/fang/side.svg",
  25673. extra: 924 / 866,
  25674. bottom: 47.5 / 972.3
  25675. }
  25676. },
  25677. },
  25678. [
  25679. {
  25680. name: "Normal",
  25681. height: math.unit(9, "feet"),
  25682. default: true
  25683. },
  25684. {
  25685. name: "Macro",
  25686. height: math.unit(75 + 6 / 12, "feet")
  25687. },
  25688. {
  25689. name: "Teramacro",
  25690. height: math.unit(50000, "miles")
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25696. {
  25697. front: {
  25698. height: math.unit(10, "feet"),
  25699. weight: math.unit(2, "tons"),
  25700. name: "Front",
  25701. image: {
  25702. source: "./media/characters/rekhit/front.svg",
  25703. extra: 2796 / 2590,
  25704. bottom: 225 / 3022
  25705. }
  25706. },
  25707. },
  25708. [
  25709. {
  25710. name: "Normal",
  25711. height: math.unit(10, "feet"),
  25712. default: true
  25713. },
  25714. {
  25715. name: "Macro",
  25716. height: math.unit(500, "feet")
  25717. },
  25718. ]
  25719. ))
  25720. characterMakers.push(() => makeCharacter(
  25721. { name: "Dahlia Verrick" },
  25722. {
  25723. front: {
  25724. height: math.unit(7 + 6.451 / 12, "feet"),
  25725. weight: math.unit(310, "lb"),
  25726. name: "Front",
  25727. image: {
  25728. source: "./media/characters/dahlia-verrick/front.svg",
  25729. extra: 1488 / 1365,
  25730. bottom: 6.2 / 1495
  25731. }
  25732. },
  25733. back: {
  25734. height: math.unit(7 + 6.451 / 12, "feet"),
  25735. weight: math.unit(310, "lb"),
  25736. name: "Back",
  25737. image: {
  25738. source: "./media/characters/dahlia-verrick/back.svg",
  25739. extra: 1472 / 1351,
  25740. bottom: 5.28 / 1477
  25741. }
  25742. },
  25743. frontBusiness: {
  25744. height: math.unit(7 + 6.451 / 12, "feet"),
  25745. weight: math.unit(200, "lb"),
  25746. name: "Front (Business)",
  25747. image: {
  25748. source: "./media/characters/dahlia-verrick/front-business.svg",
  25749. extra: 1478 / 1381,
  25750. bottom: 5.5 / 1484
  25751. }
  25752. },
  25753. frontCasual: {
  25754. height: math.unit(7 + 6.451 / 12, "feet"),
  25755. weight: math.unit(200, "lb"),
  25756. name: "Front (Casual)",
  25757. image: {
  25758. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25759. extra: 1478 / 1381,
  25760. bottom: 5.5 / 1484
  25761. }
  25762. },
  25763. },
  25764. [
  25765. {
  25766. name: "Travel-Sized",
  25767. height: math.unit(7.45, "inches")
  25768. },
  25769. {
  25770. name: "Normal",
  25771. height: math.unit(7 + 6.451 / 12, "feet"),
  25772. default: true
  25773. },
  25774. {
  25775. name: "Hitting the Town",
  25776. height: math.unit(37 + 8 / 12, "feet")
  25777. },
  25778. {
  25779. name: "Stomp in the Suburbs",
  25780. height: math.unit(964 + 9.728 / 12, "feet")
  25781. },
  25782. {
  25783. name: "Sit on the City",
  25784. height: math.unit(61747 + 10.592 / 12, "feet")
  25785. },
  25786. {
  25787. name: "Glomp the Globe",
  25788. height: math.unit(252919327 + 4.832 / 12, "feet")
  25789. },
  25790. ]
  25791. ))
  25792. characterMakers.push(() => makeCharacter(
  25793. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25794. {
  25795. front: {
  25796. height: math.unit(6 + 4 / 12, "feet"),
  25797. weight: math.unit(320, "lb"),
  25798. name: "Front",
  25799. image: {
  25800. source: "./media/characters/balina-mahigan/front.svg",
  25801. extra: 447 / 428,
  25802. bottom: 18 / 466
  25803. }
  25804. },
  25805. back: {
  25806. height: math.unit(6 + 4 / 12, "feet"),
  25807. weight: math.unit(320, "lb"),
  25808. name: "Back",
  25809. image: {
  25810. source: "./media/characters/balina-mahigan/back.svg",
  25811. extra: 445 / 428,
  25812. bottom: 4.07 / 448
  25813. }
  25814. },
  25815. arm: {
  25816. height: math.unit(1.88, "feet"),
  25817. name: "Arm",
  25818. image: {
  25819. source: "./media/characters/balina-mahigan/arm.svg"
  25820. }
  25821. },
  25822. backPort: {
  25823. height: math.unit(0.685, "feet"),
  25824. name: "Back Port",
  25825. image: {
  25826. source: "./media/characters/balina-mahigan/back-port.svg"
  25827. }
  25828. },
  25829. hoofpaw: {
  25830. height: math.unit(1.41, "feet"),
  25831. name: "Hoofpaw",
  25832. image: {
  25833. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25834. }
  25835. },
  25836. leftHandBack: {
  25837. height: math.unit(0.938, "feet"),
  25838. name: "Left Hand (Back)",
  25839. image: {
  25840. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25841. }
  25842. },
  25843. leftHandFront: {
  25844. height: math.unit(0.938, "feet"),
  25845. name: "Left Hand (Front)",
  25846. image: {
  25847. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25848. }
  25849. },
  25850. rightHandBack: {
  25851. height: math.unit(0.95, "feet"),
  25852. name: "Right Hand (Back)",
  25853. image: {
  25854. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25855. }
  25856. },
  25857. rightHandFront: {
  25858. height: math.unit(0.95, "feet"),
  25859. name: "Right Hand (Front)",
  25860. image: {
  25861. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25862. }
  25863. },
  25864. },
  25865. [
  25866. {
  25867. name: "Normal",
  25868. height: math.unit(6 + 4 / 12, "feet"),
  25869. default: true
  25870. },
  25871. ]
  25872. ))
  25873. characterMakers.push(() => makeCharacter(
  25874. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25875. {
  25876. front: {
  25877. height: math.unit(6, "feet"),
  25878. weight: math.unit(320, "lb"),
  25879. name: "Front",
  25880. image: {
  25881. source: "./media/characters/balina-mejeri/front.svg",
  25882. extra: 517 / 488,
  25883. bottom: 44.2 / 561
  25884. }
  25885. },
  25886. },
  25887. [
  25888. {
  25889. name: "Normal",
  25890. height: math.unit(6 + 4 / 12, "feet")
  25891. },
  25892. {
  25893. name: "Business",
  25894. height: math.unit(155, "feet"),
  25895. default: true
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25901. {
  25902. kneeling: {
  25903. height: math.unit(6 + 4 / 12, "feet"),
  25904. weight: math.unit(300 * 20, "lb"),
  25905. name: "Kneeling",
  25906. image: {
  25907. source: "./media/characters/balbarian/kneeling.svg",
  25908. extra: 922 / 862,
  25909. bottom: 42.4 / 965
  25910. }
  25911. },
  25912. },
  25913. [
  25914. {
  25915. name: "Normal",
  25916. height: math.unit(6 + 4 / 12, "feet")
  25917. },
  25918. {
  25919. name: "Treasured",
  25920. height: math.unit(18 + 9 / 12, "feet"),
  25921. default: true
  25922. },
  25923. {
  25924. name: "Macro",
  25925. height: math.unit(900, "feet")
  25926. },
  25927. ]
  25928. ))
  25929. characterMakers.push(() => makeCharacter(
  25930. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25931. {
  25932. front: {
  25933. height: math.unit(6 + 4 / 12, "feet"),
  25934. weight: math.unit(325, "lb"),
  25935. name: "Front",
  25936. image: {
  25937. source: "./media/characters/balina-amarini/front.svg",
  25938. extra: 415 / 403,
  25939. bottom: 19 / 433.4
  25940. }
  25941. },
  25942. back: {
  25943. height: math.unit(6 + 4 / 12, "feet"),
  25944. weight: math.unit(325, "lb"),
  25945. name: "Back",
  25946. image: {
  25947. source: "./media/characters/balina-amarini/back.svg",
  25948. extra: 415 / 403,
  25949. bottom: 13.5 / 432
  25950. }
  25951. },
  25952. overdrive: {
  25953. height: math.unit(6 + 4 / 12, "feet"),
  25954. weight: math.unit(400, "lb"),
  25955. name: "Overdrive",
  25956. image: {
  25957. source: "./media/characters/balina-amarini/overdrive.svg",
  25958. extra: 269 / 259,
  25959. bottom: 12 / 282
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "Boom",
  25966. height: math.unit(9 + 10 / 12, "feet"),
  25967. default: true
  25968. },
  25969. {
  25970. name: "Macro",
  25971. height: math.unit(280, "feet")
  25972. },
  25973. ]
  25974. ))
  25975. characterMakers.push(() => makeCharacter(
  25976. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25977. {
  25978. goddess: {
  25979. height: math.unit(600, "feet"),
  25980. weight: math.unit(2000000, "tons"),
  25981. name: "Goddess",
  25982. image: {
  25983. source: "./media/characters/lady-kubwa/goddess.svg",
  25984. extra: 1240.5 / 1223,
  25985. bottom: 22 / 1263
  25986. }
  25987. },
  25988. goddesser: {
  25989. height: math.unit(900, "feet"),
  25990. weight: math.unit(20000000, "lb"),
  25991. name: "Goddess-er",
  25992. image: {
  25993. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25994. extra: 899 / 888,
  25995. bottom: 12.6 / 912
  25996. }
  25997. },
  25998. },
  25999. [
  26000. {
  26001. name: "Macro",
  26002. height: math.unit(600, "feet"),
  26003. default: true
  26004. },
  26005. {
  26006. name: "Megamacro",
  26007. height: math.unit(250, "miles")
  26008. },
  26009. ]
  26010. ))
  26011. characterMakers.push(() => makeCharacter(
  26012. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26013. {
  26014. front: {
  26015. height: math.unit(7 + 7 / 12, "feet"),
  26016. weight: math.unit(250, "lb"),
  26017. name: "Front",
  26018. image: {
  26019. source: "./media/characters/tala-grovehorn/front.svg",
  26020. extra: 2636 / 2525,
  26021. bottom: 147 / 2781
  26022. }
  26023. },
  26024. back: {
  26025. height: math.unit(7 + 7 / 12, "feet"),
  26026. weight: math.unit(250, "lb"),
  26027. name: "Back",
  26028. image: {
  26029. source: "./media/characters/tala-grovehorn/back.svg",
  26030. extra: 2635 / 2539,
  26031. bottom: 100 / 2732.8
  26032. }
  26033. },
  26034. mouth: {
  26035. height: math.unit(1.15, "feet"),
  26036. name: "Mouth",
  26037. image: {
  26038. source: "./media/characters/tala-grovehorn/mouth.svg"
  26039. }
  26040. },
  26041. dick: {
  26042. height: math.unit(2.36, "feet"),
  26043. name: "Dick",
  26044. image: {
  26045. source: "./media/characters/tala-grovehorn/dick.svg"
  26046. }
  26047. },
  26048. slit: {
  26049. height: math.unit(0.61, "feet"),
  26050. name: "Slit",
  26051. image: {
  26052. source: "./media/characters/tala-grovehorn/slit.svg"
  26053. }
  26054. },
  26055. },
  26056. [
  26057. ]
  26058. ))
  26059. characterMakers.push(() => makeCharacter(
  26060. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26061. {
  26062. front: {
  26063. height: math.unit(7 + 7 / 12, "feet"),
  26064. weight: math.unit(225, "lb"),
  26065. name: "Front",
  26066. image: {
  26067. source: "./media/characters/epona/front.svg",
  26068. extra: 2445 / 2290,
  26069. bottom: 251 / 2696
  26070. }
  26071. },
  26072. back: {
  26073. height: math.unit(7 + 7 / 12, "feet"),
  26074. weight: math.unit(225, "lb"),
  26075. name: "Back",
  26076. image: {
  26077. source: "./media/characters/epona/back.svg",
  26078. extra: 2546 / 2408,
  26079. bottom: 44 / 2589
  26080. }
  26081. },
  26082. genitals: {
  26083. height: math.unit(1.5, "feet"),
  26084. name: "Genitals",
  26085. image: {
  26086. source: "./media/characters/epona/genitals.svg"
  26087. }
  26088. },
  26089. },
  26090. [
  26091. {
  26092. name: "Normal",
  26093. height: math.unit(7 + 7 / 12, "feet"),
  26094. default: true
  26095. },
  26096. ]
  26097. ))
  26098. characterMakers.push(() => makeCharacter(
  26099. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26100. {
  26101. front: {
  26102. height: math.unit(7, "feet"),
  26103. weight: math.unit(518, "lb"),
  26104. name: "Front",
  26105. image: {
  26106. source: "./media/characters/avia-bloodbourn/front.svg",
  26107. extra: 1466 / 1350,
  26108. bottom: 65 / 1527
  26109. }
  26110. },
  26111. },
  26112. [
  26113. ]
  26114. ))
  26115. characterMakers.push(() => makeCharacter(
  26116. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26117. {
  26118. front: {
  26119. height: math.unit(9.35, "feet"),
  26120. weight: math.unit(600, "lb"),
  26121. name: "Front",
  26122. image: {
  26123. source: "./media/characters/amera/front.svg",
  26124. extra: 891 / 818,
  26125. bottom: 30 / 922.7
  26126. }
  26127. },
  26128. back: {
  26129. height: math.unit(9.35, "feet"),
  26130. weight: math.unit(600, "lb"),
  26131. name: "Back",
  26132. image: {
  26133. source: "./media/characters/amera/back.svg",
  26134. extra: 876 / 824,
  26135. bottom: 6.8 / 884
  26136. }
  26137. },
  26138. dick: {
  26139. height: math.unit(2.14, "feet"),
  26140. name: "Dick",
  26141. image: {
  26142. source: "./media/characters/amera/dick.svg"
  26143. }
  26144. },
  26145. },
  26146. [
  26147. {
  26148. name: "Normal",
  26149. height: math.unit(9.35, "feet"),
  26150. default: true
  26151. },
  26152. ]
  26153. ))
  26154. characterMakers.push(() => makeCharacter(
  26155. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26156. {
  26157. kneeling: {
  26158. height: math.unit(3 + 4 / 12, "feet"),
  26159. weight: math.unit(90, "lb"),
  26160. name: "Kneeling",
  26161. image: {
  26162. source: "./media/characters/rosewen/kneeling.svg",
  26163. extra: 1835 / 1571,
  26164. bottom: 27.7 / 1862
  26165. }
  26166. },
  26167. },
  26168. [
  26169. {
  26170. name: "Normal",
  26171. height: math.unit(3 + 4 / 12, "feet"),
  26172. default: true
  26173. },
  26174. ]
  26175. ))
  26176. characterMakers.push(() => makeCharacter(
  26177. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26178. {
  26179. front: {
  26180. height: math.unit(5 + 10 / 12, "feet"),
  26181. weight: math.unit(200, "lb"),
  26182. name: "Front",
  26183. image: {
  26184. source: "./media/characters/sabah/front.svg",
  26185. extra: 849 / 763,
  26186. bottom: 33.9 / 881
  26187. }
  26188. },
  26189. },
  26190. [
  26191. {
  26192. name: "Normal",
  26193. height: math.unit(5 + 10 / 12, "feet"),
  26194. default: true
  26195. },
  26196. ]
  26197. ))
  26198. characterMakers.push(() => makeCharacter(
  26199. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26200. {
  26201. front: {
  26202. height: math.unit(3 + 5 / 12, "feet"),
  26203. weight: math.unit(40, "kg"),
  26204. name: "Front",
  26205. image: {
  26206. source: "./media/characters/purple-flame/front.svg",
  26207. extra: 1577 / 1412,
  26208. bottom: 97 / 1694
  26209. }
  26210. },
  26211. frontDressed: {
  26212. height: math.unit(3 + 5 / 12, "feet"),
  26213. weight: math.unit(40, "kg"),
  26214. name: "Front (Dressed)",
  26215. image: {
  26216. source: "./media/characters/purple-flame/front-dressed.svg",
  26217. extra: 1577 / 1412,
  26218. bottom: 97 / 1694
  26219. }
  26220. },
  26221. headphones: {
  26222. height: math.unit(0.85, "feet"),
  26223. name: "Headphones",
  26224. image: {
  26225. source: "./media/characters/purple-flame/headphones.svg"
  26226. }
  26227. },
  26228. },
  26229. [
  26230. {
  26231. name: "Really Small",
  26232. height: math.unit(5, "cm")
  26233. },
  26234. {
  26235. name: "Micro",
  26236. height: math.unit(1 + 5 / 12, "feet")
  26237. },
  26238. {
  26239. name: "Normal",
  26240. height: math.unit(3 + 5 / 12, "feet"),
  26241. default: true
  26242. },
  26243. {
  26244. name: "Minimacro",
  26245. height: math.unit(125, "feet")
  26246. },
  26247. {
  26248. name: "Macro",
  26249. height: math.unit(0.5, "miles")
  26250. },
  26251. {
  26252. name: "Megamacro",
  26253. height: math.unit(50, "miles")
  26254. },
  26255. {
  26256. name: "Gigantic",
  26257. height: math.unit(750, "miles")
  26258. },
  26259. {
  26260. name: "Planetary",
  26261. height: math.unit(15000, "miles")
  26262. },
  26263. ]
  26264. ))
  26265. characterMakers.push(() => makeCharacter(
  26266. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26267. {
  26268. front: {
  26269. height: math.unit(14, "feet"),
  26270. weight: math.unit(959, "lb"),
  26271. name: "Front",
  26272. image: {
  26273. source: "./media/characters/arsenal/front.svg",
  26274. extra: 2357 / 2157,
  26275. bottom: 93 / 2458
  26276. }
  26277. },
  26278. },
  26279. [
  26280. {
  26281. name: "Normal",
  26282. height: math.unit(14, "feet"),
  26283. default: true
  26284. },
  26285. ]
  26286. ))
  26287. characterMakers.push(() => makeCharacter(
  26288. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26289. {
  26290. front: {
  26291. height: math.unit(6, "feet"),
  26292. weight: math.unit(150, "lb"),
  26293. name: "Front",
  26294. image: {
  26295. source: "./media/characters/adira/front.svg",
  26296. extra: 1078 / 1029,
  26297. bottom: 87 / 1166
  26298. }
  26299. },
  26300. },
  26301. [
  26302. {
  26303. name: "Micro",
  26304. height: math.unit(4, "inches"),
  26305. default: true
  26306. },
  26307. {
  26308. name: "Macro",
  26309. height: math.unit(50, "feet")
  26310. },
  26311. ]
  26312. ))
  26313. characterMakers.push(() => makeCharacter(
  26314. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26315. {
  26316. front: {
  26317. height: math.unit(16, "feet"),
  26318. weight: math.unit(1000, "lb"),
  26319. name: "Front",
  26320. image: {
  26321. source: "./media/characters/grim/front.svg",
  26322. extra: 622 / 614,
  26323. bottom: 18.1 / 642
  26324. }
  26325. },
  26326. back: {
  26327. height: math.unit(16, "feet"),
  26328. weight: math.unit(1000, "lb"),
  26329. name: "Back",
  26330. image: {
  26331. source: "./media/characters/grim/back.svg",
  26332. extra: 610.6 / 602,
  26333. bottom: 40.8 / 652
  26334. }
  26335. },
  26336. hunched: {
  26337. height: math.unit(9.75, "feet"),
  26338. weight: math.unit(1000, "lb"),
  26339. name: "Hunched",
  26340. image: {
  26341. source: "./media/characters/grim/hunched.svg",
  26342. extra: 304 / 297,
  26343. bottom: 35.4 / 394
  26344. }
  26345. },
  26346. },
  26347. [
  26348. {
  26349. name: "Normal",
  26350. height: math.unit(16, "feet"),
  26351. default: true
  26352. },
  26353. ]
  26354. ))
  26355. characterMakers.push(() => makeCharacter(
  26356. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26357. {
  26358. front: {
  26359. height: math.unit(2.3, "meters"),
  26360. weight: math.unit(300, "lb"),
  26361. name: "Front",
  26362. image: {
  26363. source: "./media/characters/sinja/front-sfw.svg",
  26364. extra: 1393 / 1294,
  26365. bottom: 70 / 1463
  26366. }
  26367. },
  26368. frontNsfw: {
  26369. height: math.unit(2.3, "meters"),
  26370. weight: math.unit(300, "lb"),
  26371. name: "Front (NSFW)",
  26372. image: {
  26373. source: "./media/characters/sinja/front-nsfw.svg",
  26374. extra: 1393 / 1294,
  26375. bottom: 70 / 1463
  26376. }
  26377. },
  26378. back: {
  26379. height: math.unit(2.3, "meters"),
  26380. weight: math.unit(300, "lb"),
  26381. name: "Back",
  26382. image: {
  26383. source: "./media/characters/sinja/back.svg",
  26384. extra: 1393 / 1294,
  26385. bottom: 70 / 1463
  26386. }
  26387. },
  26388. head: {
  26389. height: math.unit(1.771, "feet"),
  26390. name: "Head",
  26391. image: {
  26392. source: "./media/characters/sinja/head.svg"
  26393. }
  26394. },
  26395. slit: {
  26396. height: math.unit(0.8, "feet"),
  26397. name: "Slit",
  26398. image: {
  26399. source: "./media/characters/sinja/slit.svg"
  26400. }
  26401. },
  26402. },
  26403. [
  26404. {
  26405. name: "Normal",
  26406. height: math.unit(2.3, "meters")
  26407. },
  26408. {
  26409. name: "Macro",
  26410. height: math.unit(91, "meters"),
  26411. default: true
  26412. },
  26413. {
  26414. name: "Megamacro",
  26415. height: math.unit(91440, "meters")
  26416. },
  26417. {
  26418. name: "Gigamacro",
  26419. height: math.unit(60960000, "meters")
  26420. },
  26421. {
  26422. name: "Teramacro",
  26423. height: math.unit(9144000000, "meters")
  26424. },
  26425. ]
  26426. ))
  26427. characterMakers.push(() => makeCharacter(
  26428. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26429. {
  26430. front: {
  26431. height: math.unit(1.7, "meters"),
  26432. weight: math.unit(130, "lb"),
  26433. name: "Front",
  26434. image: {
  26435. source: "./media/characters/kyu/front.svg",
  26436. extra: 415 / 395,
  26437. bottom: 5 / 420
  26438. }
  26439. },
  26440. head: {
  26441. height: math.unit(1.75, "feet"),
  26442. name: "Head",
  26443. image: {
  26444. source: "./media/characters/kyu/head.svg"
  26445. }
  26446. },
  26447. foot: {
  26448. height: math.unit(0.81, "feet"),
  26449. name: "Foot",
  26450. image: {
  26451. source: "./media/characters/kyu/foot.svg"
  26452. }
  26453. },
  26454. },
  26455. [
  26456. {
  26457. name: "Normal",
  26458. height: math.unit(1.7, "meters")
  26459. },
  26460. {
  26461. name: "Macro",
  26462. height: math.unit(131, "feet"),
  26463. default: true
  26464. },
  26465. {
  26466. name: "Megamacro",
  26467. height: math.unit(91440, "meters")
  26468. },
  26469. {
  26470. name: "Gigamacro",
  26471. height: math.unit(60960000, "meters")
  26472. },
  26473. {
  26474. name: "Teramacro",
  26475. height: math.unit(9144000000, "meters")
  26476. },
  26477. ]
  26478. ))
  26479. characterMakers.push(() => makeCharacter(
  26480. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26481. {
  26482. front: {
  26483. height: math.unit(7 + 1 / 12, "feet"),
  26484. weight: math.unit(250, "lb"),
  26485. name: "Front",
  26486. image: {
  26487. source: "./media/characters/joey/front.svg",
  26488. extra: 1791 / 1537,
  26489. bottom: 28 / 1816
  26490. }
  26491. },
  26492. },
  26493. [
  26494. {
  26495. name: "Micro",
  26496. height: math.unit(3, "inches")
  26497. },
  26498. {
  26499. name: "Normal",
  26500. height: math.unit(7 + 1 / 12, "feet"),
  26501. default: true
  26502. },
  26503. ]
  26504. ))
  26505. characterMakers.push(() => makeCharacter(
  26506. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26507. {
  26508. front: {
  26509. height: math.unit(165, "cm"),
  26510. weight: math.unit(140, "lb"),
  26511. name: "Front",
  26512. image: {
  26513. source: "./media/characters/sam-evans/front.svg",
  26514. extra: 3417 / 3230,
  26515. bottom: 41.3 / 3417
  26516. }
  26517. },
  26518. frontSixTails: {
  26519. height: math.unit(165, "cm"),
  26520. weight: math.unit(140, "lb"),
  26521. name: "Front-six-tails",
  26522. image: {
  26523. source: "./media/characters/sam-evans/front-six-tails.svg",
  26524. extra: 3417 / 3230,
  26525. bottom: 41.3 / 3417
  26526. }
  26527. },
  26528. back: {
  26529. height: math.unit(165, "cm"),
  26530. weight: math.unit(140, "lb"),
  26531. name: "Back",
  26532. image: {
  26533. source: "./media/characters/sam-evans/back.svg",
  26534. extra: 3227 / 3032,
  26535. bottom: 6.8 / 3234
  26536. }
  26537. },
  26538. face: {
  26539. height: math.unit(0.68, "feet"),
  26540. name: "Face",
  26541. image: {
  26542. source: "./media/characters/sam-evans/face.svg"
  26543. }
  26544. },
  26545. },
  26546. [
  26547. {
  26548. name: "Normal",
  26549. height: math.unit(165, "cm"),
  26550. default: true
  26551. },
  26552. {
  26553. name: "Macro",
  26554. height: math.unit(100, "meters")
  26555. },
  26556. {
  26557. name: "Macro+",
  26558. height: math.unit(800, "meters")
  26559. },
  26560. {
  26561. name: "Macro++",
  26562. height: math.unit(3, "km")
  26563. },
  26564. {
  26565. name: "Macro+++",
  26566. height: math.unit(30, "km")
  26567. },
  26568. ]
  26569. ))
  26570. characterMakers.push(() => makeCharacter(
  26571. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26572. {
  26573. front: {
  26574. height: math.unit(10, "feet"),
  26575. weight: math.unit(750, "lb"),
  26576. name: "Front",
  26577. image: {
  26578. source: "./media/characters/juliet-a/front.svg",
  26579. extra: 1766 / 1720,
  26580. bottom: 43 / 1809
  26581. }
  26582. },
  26583. back: {
  26584. height: math.unit(10, "feet"),
  26585. weight: math.unit(750, "lb"),
  26586. name: "Back",
  26587. image: {
  26588. source: "./media/characters/juliet-a/back.svg",
  26589. extra: 1781 / 1734,
  26590. bottom: 35 / 1810,
  26591. }
  26592. },
  26593. },
  26594. [
  26595. {
  26596. name: "Normal",
  26597. height: math.unit(10, "feet"),
  26598. default: true
  26599. },
  26600. {
  26601. name: "Dragon Form",
  26602. height: math.unit(250, "feet")
  26603. },
  26604. {
  26605. name: "Macro",
  26606. height: math.unit(1000, "feet")
  26607. },
  26608. {
  26609. name: "Megamacro",
  26610. height: math.unit(10000, "feet")
  26611. }
  26612. ]
  26613. ))
  26614. characterMakers.push(() => makeCharacter(
  26615. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26616. {
  26617. regular: {
  26618. height: math.unit(7 + 3 / 12, "feet"),
  26619. weight: math.unit(260, "lb"),
  26620. name: "Regular",
  26621. image: {
  26622. source: "./media/characters/wild/regular.svg",
  26623. extra: 97.45 / 92,
  26624. bottom: 6.8 / 104.3
  26625. }
  26626. },
  26627. biggums: {
  26628. height: math.unit(8 + 6 / 12, "feet"),
  26629. weight: math.unit(425, "lb"),
  26630. name: "Biggums",
  26631. image: {
  26632. source: "./media/characters/wild/biggums.svg",
  26633. extra: 97.45 / 92,
  26634. bottom: 7.5 / 132.34
  26635. }
  26636. },
  26637. mawRegular: {
  26638. height: math.unit(1.24, "feet"),
  26639. name: "Maw (Regular)",
  26640. image: {
  26641. source: "./media/characters/wild/maw.svg"
  26642. }
  26643. },
  26644. mawBiggums: {
  26645. height: math.unit(1.47, "feet"),
  26646. name: "Maw (Biggums)",
  26647. image: {
  26648. source: "./media/characters/wild/maw.svg"
  26649. }
  26650. },
  26651. },
  26652. [
  26653. {
  26654. name: "Normal",
  26655. height: math.unit(7 + 3 / 12, "feet"),
  26656. default: true
  26657. },
  26658. ]
  26659. ))
  26660. characterMakers.push(() => makeCharacter(
  26661. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26662. {
  26663. front: {
  26664. height: math.unit(2.5, "meters"),
  26665. weight: math.unit(200, "kg"),
  26666. name: "Front",
  26667. image: {
  26668. source: "./media/characters/vidar/front.svg",
  26669. extra: 2994 / 2795,
  26670. bottom: 56 / 3061
  26671. }
  26672. },
  26673. back: {
  26674. height: math.unit(2.5, "meters"),
  26675. weight: math.unit(200, "kg"),
  26676. name: "Back",
  26677. image: {
  26678. source: "./media/characters/vidar/back.svg",
  26679. extra: 3131 / 2928,
  26680. bottom: 13.5 / 3141.5
  26681. }
  26682. },
  26683. feral: {
  26684. height: math.unit(2.5, "meters"),
  26685. weight: math.unit(2000, "kg"),
  26686. name: "Feral",
  26687. image: {
  26688. source: "./media/characters/vidar/feral.svg",
  26689. extra: 2790 / 1765,
  26690. bottom: 6 / 2796
  26691. }
  26692. },
  26693. },
  26694. [
  26695. {
  26696. name: "Normal",
  26697. height: math.unit(2.5, "meters"),
  26698. default: true
  26699. },
  26700. {
  26701. name: "Macro",
  26702. height: math.unit(100, "meters")
  26703. },
  26704. ]
  26705. ))
  26706. characterMakers.push(() => makeCharacter(
  26707. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26708. {
  26709. front: {
  26710. height: math.unit(5 + 9 / 12, "feet"),
  26711. weight: math.unit(120, "lb"),
  26712. name: "Front",
  26713. image: {
  26714. source: "./media/characters/ash/front.svg",
  26715. extra: 2189 / 1961,
  26716. bottom: 5.2 / 2194
  26717. }
  26718. },
  26719. },
  26720. [
  26721. {
  26722. name: "Normal",
  26723. height: math.unit(5 + 9 / 12, "feet"),
  26724. default: true
  26725. },
  26726. ]
  26727. ))
  26728. characterMakers.push(() => makeCharacter(
  26729. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26730. {
  26731. front: {
  26732. height: math.unit(9, "feet"),
  26733. weight: math.unit(10000, "lb"),
  26734. name: "Front",
  26735. image: {
  26736. source: "./media/characters/gygabite/front.svg",
  26737. bottom: 31.7 / 537.8,
  26738. extra: 505 / 370
  26739. }
  26740. },
  26741. },
  26742. [
  26743. {
  26744. name: "Normal",
  26745. height: math.unit(9, "feet"),
  26746. default: true
  26747. },
  26748. ]
  26749. ))
  26750. characterMakers.push(() => makeCharacter(
  26751. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26752. {
  26753. front: {
  26754. height: math.unit(12, "feet"),
  26755. weight: math.unit(35000, "lb"),
  26756. name: "Front",
  26757. image: {
  26758. source: "./media/characters/p0tat0/front.svg",
  26759. extra: 1065 / 921,
  26760. bottom: 55.7 / 1121.25
  26761. }
  26762. },
  26763. },
  26764. [
  26765. {
  26766. name: "Normal",
  26767. height: math.unit(12, "feet"),
  26768. default: true
  26769. },
  26770. ]
  26771. ))
  26772. characterMakers.push(() => makeCharacter(
  26773. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26774. {
  26775. side: {
  26776. height: math.unit(6.5, "feet"),
  26777. weight: math.unit(800, "lb"),
  26778. name: "Side",
  26779. image: {
  26780. source: "./media/characters/dusk/side.svg",
  26781. extra: 615 / 373,
  26782. bottom: 53 / 664
  26783. }
  26784. },
  26785. sitting: {
  26786. height: math.unit(7, "feet"),
  26787. weight: math.unit(800, "lb"),
  26788. name: "Sitting",
  26789. image: {
  26790. source: "./media/characters/dusk/sitting.svg",
  26791. extra: 753 / 425,
  26792. bottom: 33 / 774
  26793. }
  26794. },
  26795. head: {
  26796. height: math.unit(6.1, "feet"),
  26797. name: "Head",
  26798. image: {
  26799. source: "./media/characters/dusk/head.svg"
  26800. }
  26801. },
  26802. },
  26803. [
  26804. {
  26805. name: "Normal",
  26806. height: math.unit(7, "feet"),
  26807. default: true
  26808. },
  26809. ]
  26810. ))
  26811. characterMakers.push(() => makeCharacter(
  26812. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26813. {
  26814. front: {
  26815. height: math.unit(15, "feet"),
  26816. weight: math.unit(7000, "lb"),
  26817. name: "Front",
  26818. image: {
  26819. source: "./media/characters/jay-direwolf/front.svg",
  26820. extra: 1810 / 1732,
  26821. bottom: 66 / 1892
  26822. }
  26823. },
  26824. },
  26825. [
  26826. {
  26827. name: "Normal",
  26828. height: math.unit(15, "feet"),
  26829. default: true
  26830. },
  26831. ]
  26832. ))
  26833. characterMakers.push(() => makeCharacter(
  26834. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26835. {
  26836. front: {
  26837. height: math.unit(4 + 9 / 12, "feet"),
  26838. weight: math.unit(130, "lb"),
  26839. name: "Front",
  26840. image: {
  26841. source: "./media/characters/anchovie/front.svg",
  26842. extra: 382 / 350,
  26843. bottom: 25 / 409
  26844. }
  26845. },
  26846. back: {
  26847. height: math.unit(4 + 9 / 12, "feet"),
  26848. weight: math.unit(130, "lb"),
  26849. name: "Back",
  26850. image: {
  26851. source: "./media/characters/anchovie/back.svg",
  26852. extra: 385 / 352,
  26853. bottom: 16.6 / 402
  26854. }
  26855. },
  26856. frontDressed: {
  26857. height: math.unit(4 + 9 / 12, "feet"),
  26858. weight: math.unit(130, "lb"),
  26859. name: "Front (Dressed)",
  26860. image: {
  26861. source: "./media/characters/anchovie/front-dressed.svg",
  26862. extra: 382 / 350,
  26863. bottom: 25 / 409
  26864. }
  26865. },
  26866. backDressed: {
  26867. height: math.unit(4 + 9 / 12, "feet"),
  26868. weight: math.unit(130, "lb"),
  26869. name: "Back (Dressed)",
  26870. image: {
  26871. source: "./media/characters/anchovie/back-dressed.svg",
  26872. extra: 385 / 352,
  26873. bottom: 16.6 / 402
  26874. }
  26875. },
  26876. },
  26877. [
  26878. {
  26879. name: "Micro",
  26880. height: math.unit(6.4, "inches")
  26881. },
  26882. {
  26883. name: "Normal",
  26884. height: math.unit(4 + 9 / 12, "feet"),
  26885. default: true
  26886. },
  26887. ]
  26888. ))
  26889. characterMakers.push(() => makeCharacter(
  26890. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26891. {
  26892. front: {
  26893. height: math.unit(2, "meters"),
  26894. weight: math.unit(180, "lb"),
  26895. name: "Front",
  26896. image: {
  26897. source: "./media/characters/acidrenamon/front.svg",
  26898. extra: 987 / 890,
  26899. bottom: 22.8 / 1009
  26900. }
  26901. },
  26902. back: {
  26903. height: math.unit(2, "meters"),
  26904. weight: math.unit(180, "lb"),
  26905. name: "Back",
  26906. image: {
  26907. source: "./media/characters/acidrenamon/back.svg",
  26908. extra: 983 / 891,
  26909. bottom: 8.4 / 992
  26910. }
  26911. },
  26912. head: {
  26913. height: math.unit(1.92, "feet"),
  26914. name: "Head",
  26915. image: {
  26916. source: "./media/characters/acidrenamon/head.svg"
  26917. }
  26918. },
  26919. rump: {
  26920. height: math.unit(1.72, "feet"),
  26921. name: "Rump",
  26922. image: {
  26923. source: "./media/characters/acidrenamon/rump.svg"
  26924. }
  26925. },
  26926. tail: {
  26927. height: math.unit(4.2, "feet"),
  26928. name: "Tail",
  26929. image: {
  26930. source: "./media/characters/acidrenamon/tail.svg"
  26931. }
  26932. },
  26933. },
  26934. [
  26935. {
  26936. name: "Normal",
  26937. height: math.unit(2, "meters"),
  26938. default: true
  26939. },
  26940. {
  26941. name: "Minimacro",
  26942. height: math.unit(7, "meters")
  26943. },
  26944. {
  26945. name: "Macro",
  26946. height: math.unit(200, "meters")
  26947. },
  26948. {
  26949. name: "Gigamacro",
  26950. height: math.unit(0.2, "earths")
  26951. },
  26952. ]
  26953. ))
  26954. characterMakers.push(() => makeCharacter(
  26955. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26956. {
  26957. front: {
  26958. height: math.unit(6, "feet"),
  26959. weight: math.unit(150, "lb"),
  26960. name: "Front",
  26961. image: {
  26962. source: "./media/characters/kenzie-lee/front.svg",
  26963. extra: 1525 / 1465,
  26964. bottom: 45 / 1570
  26965. }
  26966. },
  26967. side: {
  26968. height: math.unit(6, "feet"),
  26969. weight: math.unit(150, "lb"),
  26970. name: "Side",
  26971. image: {
  26972. source: "./media/characters/kenzie-lee/side.svg",
  26973. extra: 5505 / 5383,
  26974. bottom: 60 / 5573
  26975. }
  26976. },
  26977. paw: {
  26978. height: math.unit(0.57, "feet"),
  26979. name: "Paw",
  26980. image: {
  26981. source: "./media/characters/kenzie-lee/paw.svg"
  26982. }
  26983. },
  26984. },
  26985. [
  26986. {
  26987. name: "Normal",
  26988. height: math.unit(152, "feet"),
  26989. default: true
  26990. },
  26991. {
  26992. name: "Megamacro",
  26993. height: math.unit(7, "miles")
  26994. },
  26995. {
  26996. name: "Gigamacro",
  26997. height: math.unit(8000, "miles")
  26998. },
  26999. ]
  27000. ))
  27001. characterMakers.push(() => makeCharacter(
  27002. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27003. {
  27004. side: {
  27005. height: math.unit(6, "feet"),
  27006. weight: math.unit(150, "lb"),
  27007. name: "Side",
  27008. image: {
  27009. source: "./media/characters/withers/side.svg",
  27010. extra: 1830 / 1728,
  27011. bottom: 96 / 1927
  27012. }
  27013. },
  27014. front: {
  27015. height: math.unit(6, "feet"),
  27016. weight: math.unit(150, "lb"),
  27017. name: "Front",
  27018. image: {
  27019. source: "./media/characters/withers/front.svg",
  27020. extra: 1514 / 1438,
  27021. bottom: 118 / 1632
  27022. }
  27023. },
  27024. },
  27025. [
  27026. {
  27027. name: "Macro",
  27028. height: math.unit(168, "feet"),
  27029. default: true
  27030. },
  27031. {
  27032. name: "Megamacro",
  27033. height: math.unit(15, "miles")
  27034. }
  27035. ]
  27036. ))
  27037. characterMakers.push(() => makeCharacter(
  27038. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27039. {
  27040. front: {
  27041. height: math.unit(6 + 7 / 12, "feet"),
  27042. weight: math.unit(250, "lb"),
  27043. name: "Front",
  27044. image: {
  27045. source: "./media/characters/nemoskii/front.svg",
  27046. extra: 2270 / 1734,
  27047. bottom: 86 / 2354
  27048. }
  27049. },
  27050. back: {
  27051. height: math.unit(6 + 7 / 12, "feet"),
  27052. weight: math.unit(250, "lb"),
  27053. name: "Back",
  27054. image: {
  27055. source: "./media/characters/nemoskii/back.svg",
  27056. extra: 1845 / 1788,
  27057. bottom: 10.5 / 1852
  27058. }
  27059. },
  27060. head: {
  27061. height: math.unit(1.31, "feet"),
  27062. name: "Head",
  27063. image: {
  27064. source: "./media/characters/nemoskii/head.svg"
  27065. }
  27066. },
  27067. },
  27068. [
  27069. {
  27070. name: "Micro",
  27071. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27072. },
  27073. {
  27074. name: "Normal",
  27075. height: math.unit(6 + 7 / 12, "feet"),
  27076. default: true
  27077. },
  27078. {
  27079. name: "Macro",
  27080. height: math.unit((6 + 7 / 12) * 150, "feet")
  27081. },
  27082. {
  27083. name: "Macro+",
  27084. height: math.unit((6 + 7 / 12) * 500, "feet")
  27085. },
  27086. {
  27087. name: "Megamacro",
  27088. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27094. {
  27095. front: {
  27096. height: math.unit(1, "mile"),
  27097. weight: math.unit(265261.9, "lb"),
  27098. name: "Front",
  27099. image: {
  27100. source: "./media/characters/shui/front.svg",
  27101. extra: 1633 / 1564,
  27102. bottom: 91.5 / 1726
  27103. }
  27104. },
  27105. },
  27106. [
  27107. {
  27108. name: "Macro",
  27109. height: math.unit(1, "mile"),
  27110. default: true
  27111. },
  27112. ]
  27113. ))
  27114. characterMakers.push(() => makeCharacter(
  27115. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27116. {
  27117. front: {
  27118. height: math.unit(12 + 6 / 12, "feet"),
  27119. weight: math.unit(1342, "lb"),
  27120. name: "Front",
  27121. image: {
  27122. source: "./media/characters/arokh-takakura/front.svg",
  27123. extra: 1089 / 1043,
  27124. bottom: 77.4 / 1176.7
  27125. }
  27126. },
  27127. back: {
  27128. height: math.unit(12 + 6 / 12, "feet"),
  27129. weight: math.unit(1342, "lb"),
  27130. name: "Back",
  27131. image: {
  27132. source: "./media/characters/arokh-takakura/back.svg",
  27133. extra: 1046 / 1019,
  27134. bottom: 102 / 1150
  27135. }
  27136. },
  27137. },
  27138. [
  27139. {
  27140. name: "Big",
  27141. height: math.unit(12 + 6 / 12, "feet"),
  27142. default: true
  27143. },
  27144. ]
  27145. ))
  27146. characterMakers.push(() => makeCharacter(
  27147. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27148. {
  27149. front: {
  27150. height: math.unit(5 + 6 / 12, "feet"),
  27151. weight: math.unit(150, "lb"),
  27152. name: "Front",
  27153. image: {
  27154. source: "./media/characters/theo/front.svg",
  27155. extra: 1184 / 1131,
  27156. bottom: 7.4 / 1191
  27157. }
  27158. },
  27159. },
  27160. [
  27161. {
  27162. name: "Micro",
  27163. height: math.unit(5, "inches")
  27164. },
  27165. {
  27166. name: "Normal",
  27167. height: math.unit(5 + 6 / 12, "feet"),
  27168. default: true
  27169. },
  27170. ]
  27171. ))
  27172. characterMakers.push(() => makeCharacter(
  27173. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27174. {
  27175. front: {
  27176. height: math.unit(5 + 9 / 12, "feet"),
  27177. weight: math.unit(130, "lb"),
  27178. name: "Front",
  27179. image: {
  27180. source: "./media/characters/cecelia-swift/front.svg",
  27181. extra: 502 / 484,
  27182. bottom: 23 / 523
  27183. }
  27184. },
  27185. back: {
  27186. height: math.unit(5 + 9 / 12, "feet"),
  27187. weight: math.unit(130, "lb"),
  27188. name: "Back",
  27189. image: {
  27190. source: "./media/characters/cecelia-swift/back.svg",
  27191. extra: 499 / 485,
  27192. bottom: 12 / 511
  27193. }
  27194. },
  27195. head: {
  27196. height: math.unit(0.90, "feet"),
  27197. name: "Head",
  27198. image: {
  27199. source: "./media/characters/cecelia-swift/head.svg"
  27200. }
  27201. },
  27202. rump: {
  27203. height: math.unit(1.75, "feet"),
  27204. name: "Rump",
  27205. image: {
  27206. source: "./media/characters/cecelia-swift/rump.svg"
  27207. }
  27208. },
  27209. },
  27210. [
  27211. {
  27212. name: "Normal",
  27213. height: math.unit(5 + 9 / 12, "feet"),
  27214. default: true
  27215. },
  27216. {
  27217. name: "Big",
  27218. height: math.unit(50, "feet")
  27219. },
  27220. {
  27221. name: "Macro",
  27222. height: math.unit(100, "feet")
  27223. },
  27224. {
  27225. name: "Macro+",
  27226. height: math.unit(500, "feet")
  27227. },
  27228. {
  27229. name: "Macro++",
  27230. height: math.unit(1000, "feet")
  27231. },
  27232. ]
  27233. ))
  27234. characterMakers.push(() => makeCharacter(
  27235. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27236. {
  27237. front: {
  27238. height: math.unit(6, "feet"),
  27239. weight: math.unit(150, "lb"),
  27240. name: "Front",
  27241. image: {
  27242. source: "./media/characters/kaunan/front.svg",
  27243. extra: 2890 / 2523,
  27244. bottom: 49 / 2939
  27245. }
  27246. },
  27247. },
  27248. [
  27249. {
  27250. name: "Macro",
  27251. height: math.unit(150, "feet"),
  27252. default: true
  27253. },
  27254. ]
  27255. ))
  27256. characterMakers.push(() => makeCharacter(
  27257. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27258. {
  27259. front: {
  27260. height: math.unit(175, "cm"),
  27261. weight: math.unit(60, "kg"),
  27262. name: "Front",
  27263. image: {
  27264. source: "./media/characters/fei/front.svg",
  27265. extra: 2581 / 2400,
  27266. bottom: 82.2 / 2663
  27267. }
  27268. },
  27269. },
  27270. [
  27271. {
  27272. name: "Mortal",
  27273. height: math.unit(175, "cm")
  27274. },
  27275. {
  27276. name: "Normal",
  27277. height: math.unit(3500, "m"),
  27278. default: true
  27279. },
  27280. {
  27281. name: "Stroll",
  27282. height: math.unit(17.5, "km")
  27283. },
  27284. {
  27285. name: "Showoff",
  27286. height: math.unit(175, "km")
  27287. },
  27288. ]
  27289. ))
  27290. characterMakers.push(() => makeCharacter(
  27291. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27292. {
  27293. front: {
  27294. height: math.unit(7, "feet"),
  27295. weight: math.unit(1000, "kg"),
  27296. name: "Front",
  27297. image: {
  27298. source: "./media/characters/edrax/front.svg",
  27299. extra: 2838 / 2550,
  27300. bottom: 130 / 2968
  27301. }
  27302. },
  27303. },
  27304. [
  27305. {
  27306. name: "Small",
  27307. height: math.unit(7, "feet")
  27308. },
  27309. {
  27310. name: "Normal",
  27311. height: math.unit(1500, "meters")
  27312. },
  27313. {
  27314. name: "Mega",
  27315. height: math.unit(12000000, "km"),
  27316. default: true
  27317. },
  27318. {
  27319. name: "Megamacro",
  27320. height: math.unit(10600000, "lightyears")
  27321. },
  27322. {
  27323. name: "Hypermacro",
  27324. height: math.unit(256, "yottameters")
  27325. },
  27326. ]
  27327. ))
  27328. characterMakers.push(() => makeCharacter(
  27329. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27330. {
  27331. front: {
  27332. height: math.unit(10, "feet"),
  27333. weight: math.unit(750, "lb"),
  27334. name: "Front",
  27335. image: {
  27336. source: "./media/characters/clove/front.svg",
  27337. extra: 2031 / 1860,
  27338. bottom: 47.8 / 2080
  27339. }
  27340. },
  27341. back: {
  27342. height: math.unit(10, "feet"),
  27343. weight: math.unit(750, "lb"),
  27344. name: "Back",
  27345. image: {
  27346. source: "./media/characters/clove/back.svg",
  27347. extra: 2025 / 1859,
  27348. bottom: 46 / 2071
  27349. }
  27350. },
  27351. },
  27352. [
  27353. {
  27354. name: "Normal",
  27355. height: math.unit(10, "feet"),
  27356. default: true
  27357. },
  27358. ]
  27359. ))
  27360. characterMakers.push(() => makeCharacter(
  27361. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27362. {
  27363. front: {
  27364. height: math.unit(4, "feet"),
  27365. weight: math.unit(50, "lb"),
  27366. name: "Front",
  27367. image: {
  27368. source: "./media/characters/alex-rabbit/front.svg",
  27369. extra: 507 / 458,
  27370. bottom: 18.5 / 527
  27371. }
  27372. },
  27373. back: {
  27374. height: math.unit(4, "feet"),
  27375. weight: math.unit(50, "lb"),
  27376. name: "Back",
  27377. image: {
  27378. source: "./media/characters/alex-rabbit/back.svg",
  27379. extra: 502 / 460,
  27380. bottom: 18.9 / 521
  27381. }
  27382. },
  27383. },
  27384. [
  27385. {
  27386. name: "Normal",
  27387. height: math.unit(4, "feet"),
  27388. default: true
  27389. },
  27390. ]
  27391. ))
  27392. characterMakers.push(() => makeCharacter(
  27393. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27394. {
  27395. front: {
  27396. height: math.unit(1 + 3 / 12, "feet"),
  27397. weight: math.unit(80, "lb"),
  27398. name: "Front",
  27399. image: {
  27400. source: "./media/characters/zander-rose/front.svg",
  27401. extra: 916 / 797,
  27402. bottom: 17 / 933
  27403. }
  27404. },
  27405. back: {
  27406. height: math.unit(1 + 3 / 12, "feet"),
  27407. weight: math.unit(80, "lb"),
  27408. name: "Back",
  27409. image: {
  27410. source: "./media/characters/zander-rose/back.svg",
  27411. extra: 903 / 779,
  27412. bottom: 31 / 934
  27413. }
  27414. },
  27415. },
  27416. [
  27417. {
  27418. name: "Normal",
  27419. height: math.unit(1 + 3 / 12, "feet"),
  27420. default: true
  27421. },
  27422. ]
  27423. ))
  27424. characterMakers.push(() => makeCharacter(
  27425. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27426. {
  27427. anthro: {
  27428. height: math.unit(6, "feet"),
  27429. weight: math.unit(150, "lb"),
  27430. name: "Anthro",
  27431. image: {
  27432. source: "./media/characters/razz/anthro.svg",
  27433. extra: 1437 / 1343,
  27434. bottom: 48 / 1485
  27435. }
  27436. },
  27437. feral: {
  27438. height: math.unit(6, "feet"),
  27439. weight: math.unit(150, "lb"),
  27440. name: "Feral",
  27441. image: {
  27442. source: "./media/characters/razz/feral.svg",
  27443. extra: 2569 / 1385,
  27444. bottom: 95 / 2664
  27445. }
  27446. },
  27447. },
  27448. [
  27449. {
  27450. name: "Normal",
  27451. height: math.unit(6, "feet"),
  27452. default: true
  27453. },
  27454. ]
  27455. ))
  27456. characterMakers.push(() => makeCharacter(
  27457. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27458. {
  27459. front: {
  27460. height: math.unit(9 + 4 / 12, "feet"),
  27461. weight: math.unit(500, "lb"),
  27462. name: "Front",
  27463. image: {
  27464. source: "./media/characters/morrigan/front.svg",
  27465. extra: 2707 / 2579,
  27466. bottom: 156 / 2863
  27467. }
  27468. },
  27469. },
  27470. [
  27471. {
  27472. name: "Normal",
  27473. height: math.unit(9 + 4 / 12, "feet"),
  27474. default: true
  27475. },
  27476. ]
  27477. ))
  27478. characterMakers.push(() => makeCharacter(
  27479. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27480. {
  27481. front: {
  27482. height: math.unit(5, "stories"),
  27483. weight: math.unit(4000, "lb"),
  27484. name: "Front",
  27485. image: {
  27486. source: "./media/characters/jenene/front.svg",
  27487. extra: 1780 / 1710,
  27488. bottom: 57 / 1837
  27489. }
  27490. },
  27491. },
  27492. [
  27493. {
  27494. name: "Normal",
  27495. height: math.unit(5, "stories"),
  27496. default: true
  27497. },
  27498. ]
  27499. ))
  27500. characterMakers.push(() => makeCharacter(
  27501. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27502. {
  27503. front: {
  27504. height: math.unit(6, "feet"),
  27505. weight: math.unit(150, "lb"),
  27506. name: "Front",
  27507. image: {
  27508. source: "./media/characters/vix-archaser/front.svg",
  27509. extra: 2767 / 2562,
  27510. bottom: 36 / 2803
  27511. }
  27512. },
  27513. },
  27514. [
  27515. {
  27516. name: "Micro",
  27517. height: math.unit(1, "foot")
  27518. },
  27519. {
  27520. name: "Normal",
  27521. height: math.unit(6 + 5 / 12, "feet")
  27522. },
  27523. {
  27524. name: "Minimacro",
  27525. height: math.unit(500, "feet")
  27526. },
  27527. {
  27528. name: "Macro",
  27529. height: math.unit(4, "miles")
  27530. },
  27531. {
  27532. name: "Megamacro",
  27533. height: math.unit(250, "miles"),
  27534. default: true
  27535. },
  27536. {
  27537. name: "Gigamacro",
  27538. height: math.unit(1, "universe")
  27539. },
  27540. {
  27541. name: "Endgame",
  27542. height: math.unit(100, "multiverses")
  27543. }
  27544. ]
  27545. ))
  27546. characterMakers.push(() => makeCharacter(
  27547. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27548. {
  27549. taurSfw: {
  27550. height: math.unit(10, "meters"),
  27551. weight: math.unit(17500, "kg"),
  27552. name: "Taur",
  27553. image: {
  27554. source: "./media/characters/faey/taur-sfw.svg",
  27555. extra: 1200 / 968,
  27556. bottom: 41 / 1241
  27557. }
  27558. },
  27559. chestmaw: {
  27560. height: math.unit(2.01, "meters"),
  27561. name: "Chestmaw",
  27562. image: {
  27563. source: "./media/characters/faey/chestmaw.svg"
  27564. }
  27565. },
  27566. foot: {
  27567. height: math.unit(2.43, "meters"),
  27568. name: "Foot",
  27569. image: {
  27570. source: "./media/characters/faey/foot.svg"
  27571. }
  27572. },
  27573. jaws: {
  27574. height: math.unit(1.66, "meters"),
  27575. name: "Jaws",
  27576. image: {
  27577. source: "./media/characters/faey/jaws.svg"
  27578. }
  27579. },
  27580. tongues: {
  27581. height: math.unit(2.01, "meters"),
  27582. name: "Tongues",
  27583. image: {
  27584. source: "./media/characters/faey/tongues.svg"
  27585. }
  27586. },
  27587. },
  27588. [
  27589. {
  27590. name: "Small",
  27591. height: math.unit(10, "meters"),
  27592. default: true
  27593. },
  27594. {
  27595. name: "Big",
  27596. height: math.unit(500000, "km")
  27597. },
  27598. ]
  27599. ))
  27600. characterMakers.push(() => makeCharacter(
  27601. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27602. {
  27603. front: {
  27604. height: math.unit(7, "feet"),
  27605. weight: math.unit(275, "lb"),
  27606. name: "Front",
  27607. image: {
  27608. source: "./media/characters/roku/front.svg",
  27609. extra: 903 / 878,
  27610. bottom: 37 / 940
  27611. }
  27612. },
  27613. },
  27614. [
  27615. {
  27616. name: "Normal",
  27617. height: math.unit(7, "feet"),
  27618. default: true
  27619. },
  27620. {
  27621. name: "Macro",
  27622. height: math.unit(500, "feet")
  27623. },
  27624. {
  27625. name: "Megamacro",
  27626. height: math.unit(200, "miles")
  27627. },
  27628. ]
  27629. ))
  27630. characterMakers.push(() => makeCharacter(
  27631. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27632. {
  27633. front: {
  27634. height: math.unit(6 + 2 / 12, "feet"),
  27635. weight: math.unit(150, "lb"),
  27636. name: "Front",
  27637. image: {
  27638. source: "./media/characters/lira/front.svg",
  27639. extra: 1727 / 1605,
  27640. bottom: 26 / 1753
  27641. }
  27642. },
  27643. back: {
  27644. height: math.unit(6 + 2 / 12, "feet"),
  27645. weight: math.unit(150, "lb"),
  27646. name: "Back",
  27647. image: {
  27648. source: "./media/characters/lira/back.svg",
  27649. extra: 1713/1621,
  27650. bottom: 20/1733
  27651. }
  27652. },
  27653. hand: {
  27654. height: math.unit(0.75, "feet"),
  27655. name: "Hand",
  27656. image: {
  27657. source: "./media/characters/lira/hand.svg"
  27658. }
  27659. },
  27660. maw: {
  27661. height: math.unit(0.65, "feet"),
  27662. name: "Maw",
  27663. image: {
  27664. source: "./media/characters/lira/maw.svg"
  27665. }
  27666. },
  27667. pawDigi: {
  27668. height: math.unit(1.6, "feet"),
  27669. name: "Paw Digi",
  27670. image: {
  27671. source: "./media/characters/lira/paw-digi.svg"
  27672. }
  27673. },
  27674. pawPlanti: {
  27675. height: math.unit(1.4, "feet"),
  27676. name: "Paw Planti",
  27677. image: {
  27678. source: "./media/characters/lira/paw-planti.svg"
  27679. }
  27680. },
  27681. },
  27682. [
  27683. {
  27684. name: "Normal",
  27685. height: math.unit(6 + 2 / 12, "feet"),
  27686. default: true
  27687. },
  27688. {
  27689. name: "Macro",
  27690. height: math.unit(100, "feet")
  27691. },
  27692. {
  27693. name: "Macro²",
  27694. height: math.unit(1600, "feet")
  27695. },
  27696. {
  27697. name: "Planetary",
  27698. height: math.unit(20, "earths")
  27699. },
  27700. ]
  27701. ))
  27702. characterMakers.push(() => makeCharacter(
  27703. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27704. {
  27705. front: {
  27706. height: math.unit(6, "feet"),
  27707. weight: math.unit(150, "lb"),
  27708. name: "Front",
  27709. image: {
  27710. source: "./media/characters/hadjet/front.svg",
  27711. extra: 1480 / 1346,
  27712. bottom: 26 / 1506
  27713. }
  27714. },
  27715. frontNsfw: {
  27716. height: math.unit(6, "feet"),
  27717. weight: math.unit(150, "lb"),
  27718. name: "Front (NSFW)",
  27719. image: {
  27720. source: "./media/characters/hadjet/front-nsfw.svg",
  27721. extra: 1440 / 1358,
  27722. bottom: 52 / 1492
  27723. }
  27724. },
  27725. },
  27726. [
  27727. {
  27728. name: "Macro",
  27729. height: math.unit(10, "stories"),
  27730. default: true
  27731. },
  27732. {
  27733. name: "Megamacro",
  27734. height: math.unit(1.5, "miles")
  27735. },
  27736. {
  27737. name: "Megamacro+",
  27738. height: math.unit(5, "miles")
  27739. },
  27740. ]
  27741. ))
  27742. characterMakers.push(() => makeCharacter(
  27743. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27744. {
  27745. side: {
  27746. height: math.unit(106, "feet"),
  27747. weight: math.unit(500, "tonnes"),
  27748. name: "Side",
  27749. image: {
  27750. source: "./media/characters/kodran/side.svg",
  27751. extra: 553 / 480,
  27752. bottom: 33 / 586
  27753. }
  27754. },
  27755. front: {
  27756. height: math.unit(132, "feet"),
  27757. weight: math.unit(500, "tonnes"),
  27758. name: "Front",
  27759. image: {
  27760. source: "./media/characters/kodran/front.svg",
  27761. extra: 667 / 643,
  27762. bottom: 42 / 709
  27763. }
  27764. },
  27765. flying: {
  27766. height: math.unit(350, "feet"),
  27767. weight: math.unit(500, "tonnes"),
  27768. name: "Flying",
  27769. image: {
  27770. source: "./media/characters/kodran/flying.svg"
  27771. }
  27772. },
  27773. foot: {
  27774. height: math.unit(33, "feet"),
  27775. name: "Foot",
  27776. image: {
  27777. source: "./media/characters/kodran/foot.svg"
  27778. }
  27779. },
  27780. footFront: {
  27781. height: math.unit(19, "feet"),
  27782. name: "Foot (Front)",
  27783. image: {
  27784. source: "./media/characters/kodran/foot-front.svg",
  27785. extra: 261 / 261,
  27786. bottom: 91 / 352
  27787. }
  27788. },
  27789. headFront: {
  27790. height: math.unit(53, "feet"),
  27791. name: "Head (Front)",
  27792. image: {
  27793. source: "./media/characters/kodran/head-front.svg"
  27794. }
  27795. },
  27796. headSide: {
  27797. height: math.unit(65, "feet"),
  27798. name: "Head (Side)",
  27799. image: {
  27800. source: "./media/characters/kodran/head-side.svg"
  27801. }
  27802. },
  27803. throat: {
  27804. height: math.unit(79, "feet"),
  27805. name: "Throat",
  27806. image: {
  27807. source: "./media/characters/kodran/throat.svg"
  27808. }
  27809. },
  27810. },
  27811. [
  27812. {
  27813. name: "Large",
  27814. height: math.unit(106, "feet"),
  27815. default: true
  27816. },
  27817. ]
  27818. ))
  27819. characterMakers.push(() => makeCharacter(
  27820. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27821. {
  27822. side: {
  27823. height: math.unit(11, "feet"),
  27824. weight: math.unit(150, "lb"),
  27825. name: "Side",
  27826. image: {
  27827. source: "./media/characters/pyxaron/side.svg",
  27828. extra: 305 / 195,
  27829. bottom: 17 / 322
  27830. }
  27831. },
  27832. },
  27833. [
  27834. {
  27835. name: "Normal",
  27836. height: math.unit(11, "feet"),
  27837. default: true
  27838. },
  27839. ]
  27840. ))
  27841. characterMakers.push(() => makeCharacter(
  27842. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27843. {
  27844. front: {
  27845. height: math.unit(6, "feet"),
  27846. weight: math.unit(150, "lb"),
  27847. name: "Front",
  27848. image: {
  27849. source: "./media/characters/meep/front.svg",
  27850. extra: 88 / 80,
  27851. bottom: 6 / 94
  27852. }
  27853. },
  27854. },
  27855. [
  27856. {
  27857. name: "Fun Sized",
  27858. height: math.unit(2, "inches"),
  27859. default: true
  27860. },
  27861. {
  27862. name: "Friend Sized",
  27863. height: math.unit(8, "inches")
  27864. },
  27865. ]
  27866. ))
  27867. characterMakers.push(() => makeCharacter(
  27868. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27869. {
  27870. front: {
  27871. height: math.unit(15, "feet"),
  27872. weight: math.unit(2500, "lb"),
  27873. name: "Front",
  27874. image: {
  27875. source: "./media/characters/holly-rabbit/front.svg",
  27876. extra: 1433 / 1233,
  27877. bottom: 125 / 1558
  27878. }
  27879. },
  27880. dick: {
  27881. height: math.unit(4.6, "feet"),
  27882. name: "Dick",
  27883. image: {
  27884. source: "./media/characters/holly-rabbit/dick.svg"
  27885. }
  27886. },
  27887. },
  27888. [
  27889. {
  27890. name: "Normal",
  27891. height: math.unit(15, "feet"),
  27892. default: true
  27893. },
  27894. {
  27895. name: "Macro",
  27896. height: math.unit(250, "feet")
  27897. },
  27898. {
  27899. name: "Macro+",
  27900. height: math.unit(2500, "feet")
  27901. },
  27902. ]
  27903. ))
  27904. characterMakers.push(() => makeCharacter(
  27905. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27906. {
  27907. front: {
  27908. height: math.unit(3.02, "meters"),
  27909. weight: math.unit(500, "kg"),
  27910. name: "Front",
  27911. image: {
  27912. source: "./media/characters/drena/front.svg",
  27913. extra: 282 / 243,
  27914. bottom: 8 / 290
  27915. }
  27916. },
  27917. side: {
  27918. height: math.unit(3.02, "meters"),
  27919. weight: math.unit(500, "kg"),
  27920. name: "Side",
  27921. image: {
  27922. source: "./media/characters/drena/side.svg",
  27923. extra: 280 / 245,
  27924. bottom: 10 / 290
  27925. }
  27926. },
  27927. back: {
  27928. height: math.unit(3.02, "meters"),
  27929. weight: math.unit(500, "kg"),
  27930. name: "Back",
  27931. image: {
  27932. source: "./media/characters/drena/back.svg",
  27933. extra: 278 / 243,
  27934. bottom: 2 / 280
  27935. }
  27936. },
  27937. foot: {
  27938. height: math.unit(0.75, "meters"),
  27939. name: "Foot",
  27940. image: {
  27941. source: "./media/characters/drena/foot.svg"
  27942. }
  27943. },
  27944. maw: {
  27945. height: math.unit(0.82, "meters"),
  27946. name: "Maw",
  27947. image: {
  27948. source: "./media/characters/drena/maw.svg"
  27949. }
  27950. },
  27951. rump: {
  27952. height: math.unit(0.93, "meters"),
  27953. name: "Rump",
  27954. image: {
  27955. source: "./media/characters/drena/rump.svg"
  27956. }
  27957. },
  27958. },
  27959. [
  27960. {
  27961. name: "Normal",
  27962. height: math.unit(3.02, "meters"),
  27963. default: true
  27964. },
  27965. ]
  27966. ))
  27967. characterMakers.push(() => makeCharacter(
  27968. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27969. {
  27970. front: {
  27971. height: math.unit(6 + 4 / 12, "feet"),
  27972. weight: math.unit(250, "lb"),
  27973. name: "Front",
  27974. image: {
  27975. source: "./media/characters/remmyzilla/front.svg",
  27976. extra: 4033 / 3588,
  27977. bottom: 123 / 4156
  27978. }
  27979. },
  27980. back: {
  27981. height: math.unit(6 + 4 / 12, "feet"),
  27982. weight: math.unit(250, "lb"),
  27983. name: "Back",
  27984. image: {
  27985. source: "./media/characters/remmyzilla/back.svg",
  27986. extra: 2687 / 2555,
  27987. bottom: 48 / 2735
  27988. }
  27989. },
  27990. frontFancy: {
  27991. height: math.unit(6 + 4 / 12, "feet"),
  27992. weight: math.unit(250, "lb"),
  27993. name: "Front (Fancy)",
  27994. image: {
  27995. source: "./media/characters/remmyzilla/front-fancy.svg",
  27996. extra: 4119 / 3419,
  27997. bottom: 237 / 4356
  27998. }
  27999. },
  28000. paw: {
  28001. height: math.unit(1.73, "feet"),
  28002. name: "Paw",
  28003. image: {
  28004. source: "./media/characters/remmyzilla/paw.svg"
  28005. }
  28006. },
  28007. maw: {
  28008. height: math.unit(1.73, "feet"),
  28009. name: "Maw",
  28010. image: {
  28011. source: "./media/characters/remmyzilla/maw.svg"
  28012. }
  28013. },
  28014. },
  28015. [
  28016. {
  28017. name: "Normal",
  28018. height: math.unit(6 + 4 / 12, "feet")
  28019. },
  28020. {
  28021. name: "Minimacro",
  28022. height: math.unit(12 + 8 / 12, "feet")
  28023. },
  28024. {
  28025. name: "Normal",
  28026. height: math.unit(640, "feet"),
  28027. default: true
  28028. },
  28029. {
  28030. name: "Megamacro",
  28031. height: math.unit(6400, "feet")
  28032. },
  28033. {
  28034. name: "Gigamacro",
  28035. height: math.unit(64000, "miles")
  28036. },
  28037. ]
  28038. ))
  28039. characterMakers.push(() => makeCharacter(
  28040. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28041. {
  28042. front: {
  28043. height: math.unit(2.5, "meters"),
  28044. weight: math.unit(300, "lb"),
  28045. name: "Front",
  28046. image: {
  28047. source: "./media/characters/lawrence/front.svg",
  28048. extra: 357 / 335,
  28049. bottom: 30 / 387
  28050. }
  28051. },
  28052. back: {
  28053. height: math.unit(2.5, "meters"),
  28054. weight: math.unit(300, "lb"),
  28055. name: "Back",
  28056. image: {
  28057. source: "./media/characters/lawrence/back.svg",
  28058. extra: 357 / 338,
  28059. bottom: 16 / 373
  28060. }
  28061. },
  28062. head: {
  28063. height: math.unit(0.9, "meter"),
  28064. name: "Head",
  28065. image: {
  28066. source: "./media/characters/lawrence/head.svg"
  28067. }
  28068. },
  28069. maw: {
  28070. height: math.unit(0.7, "meter"),
  28071. name: "Maw",
  28072. image: {
  28073. source: "./media/characters/lawrence/maw.svg"
  28074. }
  28075. },
  28076. footBottom: {
  28077. height: math.unit(0.5, "meter"),
  28078. name: "Foot (Bottom)",
  28079. image: {
  28080. source: "./media/characters/lawrence/foot-bottom.svg"
  28081. }
  28082. },
  28083. footTop: {
  28084. height: math.unit(0.5, "meter"),
  28085. name: "Foot (Top)",
  28086. image: {
  28087. source: "./media/characters/lawrence/foot-top.svg"
  28088. }
  28089. },
  28090. },
  28091. [
  28092. {
  28093. name: "Normal",
  28094. height: math.unit(2.5, "meters"),
  28095. default: true
  28096. },
  28097. {
  28098. name: "Macro",
  28099. height: math.unit(95, "meters")
  28100. },
  28101. {
  28102. name: "Megamacro",
  28103. height: math.unit(150, "km")
  28104. },
  28105. ]
  28106. ))
  28107. characterMakers.push(() => makeCharacter(
  28108. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28109. {
  28110. front: {
  28111. height: math.unit(4.2, "meters"),
  28112. name: "Front",
  28113. image: {
  28114. source: "./media/characters/sydney/front.svg",
  28115. extra: 1323 / 1277,
  28116. bottom: 111 / 1434
  28117. }
  28118. },
  28119. },
  28120. [
  28121. {
  28122. name: "Normal",
  28123. height: math.unit(4.2, "meters"),
  28124. default: true
  28125. },
  28126. ]
  28127. ))
  28128. characterMakers.push(() => makeCharacter(
  28129. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28130. {
  28131. back: {
  28132. height: math.unit(201, "feet"),
  28133. name: "Back",
  28134. image: {
  28135. source: "./media/characters/jessica/back.svg",
  28136. extra: 273 / 259,
  28137. bottom: 7 / 280
  28138. }
  28139. },
  28140. },
  28141. [
  28142. {
  28143. name: "Normal",
  28144. height: math.unit(201, "feet"),
  28145. default: true
  28146. },
  28147. {
  28148. name: "Megamacro",
  28149. height: math.unit(8, "miles")
  28150. },
  28151. ]
  28152. ))
  28153. characterMakers.push(() => makeCharacter(
  28154. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28155. {
  28156. side: {
  28157. height: math.unit(320, "cm"),
  28158. name: "Side",
  28159. image: {
  28160. source: "./media/characters/victoria/side.svg",
  28161. extra: 778 / 346,
  28162. bottom: 56 / 834
  28163. }
  28164. },
  28165. maw: {
  28166. height: math.unit(5.9, "feet"),
  28167. name: "Maw",
  28168. image: {
  28169. source: "./media/characters/victoria/maw.svg"
  28170. }
  28171. },
  28172. },
  28173. [
  28174. {
  28175. name: "Normal",
  28176. height: math.unit(320, "cm"),
  28177. default: true
  28178. },
  28179. ]
  28180. ))
  28181. characterMakers.push(() => makeCharacter(
  28182. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28183. {
  28184. front: {
  28185. height: math.unit(5 + 6 / 12, "feet"),
  28186. name: "Front",
  28187. image: {
  28188. source: "./media/characters/cat/front.svg",
  28189. extra: 1374 / 1257,
  28190. bottom: 59 / 1433
  28191. }
  28192. },
  28193. back: {
  28194. height: math.unit(5 + 6 / 12, "feet"),
  28195. name: "Back",
  28196. image: {
  28197. source: "./media/characters/cat/back.svg",
  28198. extra: 1337 / 1226,
  28199. bottom: 34 / 1371
  28200. }
  28201. },
  28202. taur: {
  28203. height: math.unit(7, "feet"),
  28204. name: "Taur",
  28205. image: {
  28206. source: "./media/characters/cat/taur.svg",
  28207. extra: 1345 / 1231,
  28208. bottom: 66 / 1411
  28209. }
  28210. },
  28211. lucario: {
  28212. height: math.unit(4, "feet"),
  28213. name: "Lucario",
  28214. image: {
  28215. source: "./media/characters/cat/lucario.svg",
  28216. extra: 1470 / 1318,
  28217. bottom: 65 / 1535
  28218. }
  28219. },
  28220. megaLucario: {
  28221. height: math.unit(4, "feet"),
  28222. name: "Mega Lucario",
  28223. image: {
  28224. source: "./media/characters/cat/mega-lucario.svg",
  28225. extra: 1515 / 1319,
  28226. bottom: 63 / 1578
  28227. }
  28228. },
  28229. nickit: {
  28230. height: math.unit(2, "feet"),
  28231. name: "Nickit",
  28232. image: {
  28233. source: "./media/characters/cat/nickit.svg",
  28234. extra: 1980 / 1585,
  28235. bottom: 102 / 2082
  28236. }
  28237. },
  28238. lopunnyFront: {
  28239. height: math.unit(5, "feet"),
  28240. name: "Lopunny (Front)",
  28241. image: {
  28242. source: "./media/characters/cat/lopunny-front.svg",
  28243. extra: 1782 / 1469,
  28244. bottom: 38 / 1820
  28245. }
  28246. },
  28247. lopunnyBack: {
  28248. height: math.unit(5, "feet"),
  28249. name: "Lopunny (Back)",
  28250. image: {
  28251. source: "./media/characters/cat/lopunny-back.svg",
  28252. extra: 1660 / 1490,
  28253. bottom: 25 / 1685
  28254. }
  28255. },
  28256. },
  28257. [
  28258. {
  28259. name: "Really small",
  28260. height: math.unit(1, "nm")
  28261. },
  28262. {
  28263. name: "Micro",
  28264. height: math.unit(5, "inches")
  28265. },
  28266. {
  28267. name: "Normal",
  28268. height: math.unit(5 + 6 / 12, "feet"),
  28269. default: true
  28270. },
  28271. {
  28272. name: "Macro",
  28273. height: math.unit(50, "feet")
  28274. },
  28275. {
  28276. name: "Macro+",
  28277. height: math.unit(150, "feet")
  28278. },
  28279. {
  28280. name: "Megamacro",
  28281. height: math.unit(100, "miles")
  28282. },
  28283. ]
  28284. ))
  28285. characterMakers.push(() => makeCharacter(
  28286. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28287. {
  28288. front: {
  28289. height: math.unit(63.4, "meters"),
  28290. weight: math.unit(3.28349e+6, "kilograms"),
  28291. name: "Front",
  28292. image: {
  28293. source: "./media/characters/kirina-violet/front.svg",
  28294. extra: 2812 / 2725,
  28295. bottom: 0 / 2812
  28296. }
  28297. },
  28298. back: {
  28299. height: math.unit(63.4, "meters"),
  28300. weight: math.unit(3.28349e+6, "kilograms"),
  28301. name: "Back",
  28302. image: {
  28303. source: "./media/characters/kirina-violet/back.svg",
  28304. extra: 2812 / 2725,
  28305. bottom: 0 / 2812
  28306. }
  28307. },
  28308. mouth: {
  28309. height: math.unit(4.35, "meters"),
  28310. name: "Mouth",
  28311. image: {
  28312. source: "./media/characters/kirina-violet/mouth.svg"
  28313. }
  28314. },
  28315. paw: {
  28316. height: math.unit(5.6, "meters"),
  28317. name: "Paw",
  28318. image: {
  28319. source: "./media/characters/kirina-violet/paw.svg"
  28320. }
  28321. },
  28322. tail: {
  28323. height: math.unit(18, "meters"),
  28324. name: "Tail",
  28325. image: {
  28326. source: "./media/characters/kirina-violet/tail.svg"
  28327. }
  28328. },
  28329. },
  28330. [
  28331. {
  28332. name: "Macro",
  28333. height: math.unit(63.4, "meters"),
  28334. default: true
  28335. },
  28336. ]
  28337. ))
  28338. characterMakers.push(() => makeCharacter(
  28339. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28340. {
  28341. front: {
  28342. height: math.unit(60, "feet"),
  28343. name: "Front",
  28344. image: {
  28345. source: "./media/characters/cat-gigachu/front.svg",
  28346. extra: 1024 / 780,
  28347. bottom: 23 / 1047
  28348. }
  28349. },
  28350. back: {
  28351. height: math.unit(60, "feet"),
  28352. name: "Back",
  28353. image: {
  28354. source: "./media/characters/cat-gigachu/back.svg",
  28355. extra: 1024 / 780,
  28356. bottom: 23 / 1047
  28357. }
  28358. },
  28359. },
  28360. [
  28361. {
  28362. name: "Dynamax",
  28363. height: math.unit(60, "feet"),
  28364. default: true
  28365. },
  28366. ]
  28367. ))
  28368. characterMakers.push(() => makeCharacter(
  28369. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28370. {
  28371. front: {
  28372. height: math.unit(6, "feet"),
  28373. weight: math.unit(150, "lb"),
  28374. name: "Front",
  28375. image: {
  28376. source: "./media/characters/sfaiyan/front.svg",
  28377. extra: 999 / 978,
  28378. bottom: 5 / 1004
  28379. }
  28380. },
  28381. },
  28382. [
  28383. {
  28384. name: "Normal",
  28385. height: math.unit(1.82, "meters")
  28386. },
  28387. {
  28388. name: "Giant",
  28389. height: math.unit(2.27, "km"),
  28390. default: true
  28391. },
  28392. ]
  28393. ))
  28394. characterMakers.push(() => makeCharacter(
  28395. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28396. {
  28397. front: {
  28398. height: math.unit(179, "cm"),
  28399. weight: math.unit(100, "kg"),
  28400. name: "Front",
  28401. image: {
  28402. source: "./media/characters/raunehkeli/front.svg",
  28403. extra: 1934 / 1926,
  28404. bottom: 0 / 1934
  28405. }
  28406. },
  28407. },
  28408. [
  28409. {
  28410. name: "Normal",
  28411. height: math.unit(179, "cm")
  28412. },
  28413. {
  28414. name: "Maximum",
  28415. height: math.unit(575, "meters"),
  28416. default: true
  28417. },
  28418. ]
  28419. ))
  28420. characterMakers.push(() => makeCharacter(
  28421. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28422. {
  28423. front: {
  28424. height: math.unit(6, "feet"),
  28425. weight: math.unit(150, "lb"),
  28426. name: "Front",
  28427. image: {
  28428. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28429. extra: 2625 / 2518,
  28430. bottom: 60 / 2685
  28431. }
  28432. },
  28433. },
  28434. [
  28435. {
  28436. name: "Normal",
  28437. height: math.unit(6 + 2 / 12, "feet")
  28438. },
  28439. {
  28440. name: "Macro",
  28441. height: math.unit(1180, "feet"),
  28442. default: true
  28443. },
  28444. ]
  28445. ))
  28446. characterMakers.push(() => makeCharacter(
  28447. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28448. {
  28449. front: {
  28450. height: math.unit(5 + 6 / 12, "feet"),
  28451. weight: math.unit(108, "lb"),
  28452. name: "Front",
  28453. image: {
  28454. source: "./media/characters/lilith-zott/front.svg",
  28455. extra: 2510 / 2238,
  28456. bottom: 100 / 2610
  28457. }
  28458. },
  28459. frontDressed: {
  28460. height: math.unit(5 + 6 / 12, "feet"),
  28461. weight: math.unit(108, "lb"),
  28462. name: "Front (Dressed)",
  28463. image: {
  28464. source: "./media/characters/lilith-zott/front-dressed.svg",
  28465. extra: 2510 / 2238,
  28466. bottom: 100 / 2610
  28467. }
  28468. },
  28469. },
  28470. [
  28471. {
  28472. name: "Normal",
  28473. height: math.unit(5 + 6 / 12, "feet")
  28474. },
  28475. {
  28476. name: "Macro",
  28477. height: math.unit(1030, "feet"),
  28478. default: true
  28479. },
  28480. ]
  28481. ))
  28482. characterMakers.push(() => makeCharacter(
  28483. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28484. {
  28485. front: {
  28486. height: math.unit(6, "feet"),
  28487. weight: math.unit(150, "lb"),
  28488. name: "Front",
  28489. image: {
  28490. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28491. extra: 2567 / 2435,
  28492. bottom: 39 / 2606
  28493. }
  28494. },
  28495. frontSuper: {
  28496. height: math.unit(6, "feet"),
  28497. name: "Front (Super)",
  28498. image: {
  28499. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28500. extra: 2567 / 2435,
  28501. bottom: 39 / 2606
  28502. }
  28503. },
  28504. },
  28505. [
  28506. {
  28507. name: "Normal",
  28508. height: math.unit(5 + 10 / 12, "feet")
  28509. },
  28510. {
  28511. name: "Macro",
  28512. height: math.unit(1100, "feet"),
  28513. default: true
  28514. },
  28515. ]
  28516. ))
  28517. characterMakers.push(() => makeCharacter(
  28518. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28519. {
  28520. front: {
  28521. height: math.unit(100, "miles"),
  28522. name: "Front",
  28523. image: {
  28524. source: "./media/characters/sona/front.svg",
  28525. extra: 2433 / 2201,
  28526. bottom: 53 / 2486
  28527. }
  28528. },
  28529. foot: {
  28530. height: math.unit(16.1, "miles"),
  28531. name: "Foot",
  28532. image: {
  28533. source: "./media/characters/sona/foot.svg"
  28534. }
  28535. },
  28536. },
  28537. [
  28538. {
  28539. name: "Macro",
  28540. height: math.unit(100, "miles"),
  28541. default: true
  28542. },
  28543. ]
  28544. ))
  28545. characterMakers.push(() => makeCharacter(
  28546. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28547. {
  28548. front: {
  28549. height: math.unit(6, "feet"),
  28550. weight: math.unit(150, "lb"),
  28551. name: "Front",
  28552. image: {
  28553. source: "./media/characters/bailey/front.svg",
  28554. extra: 1778 / 1724,
  28555. bottom: 30 / 1808
  28556. }
  28557. },
  28558. },
  28559. [
  28560. {
  28561. name: "Micro",
  28562. height: math.unit(4, "inches")
  28563. },
  28564. {
  28565. name: "Normal",
  28566. height: math.unit(5 + 5 / 12, "feet"),
  28567. default: true
  28568. },
  28569. {
  28570. name: "Macro",
  28571. height: math.unit(250, "feet")
  28572. },
  28573. {
  28574. name: "Megamacro",
  28575. height: math.unit(100, "miles")
  28576. },
  28577. ]
  28578. ))
  28579. characterMakers.push(() => makeCharacter(
  28580. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28581. {
  28582. front: {
  28583. height: math.unit(5 + 2 / 12, "feet"),
  28584. weight: math.unit(120, "lb"),
  28585. name: "Front",
  28586. image: {
  28587. source: "./media/characters/snaps/front.svg",
  28588. extra: 2370 / 2177,
  28589. bottom: 48 / 2418
  28590. }
  28591. },
  28592. back: {
  28593. height: math.unit(5 + 2 / 12, "feet"),
  28594. weight: math.unit(120, "lb"),
  28595. name: "Back",
  28596. image: {
  28597. source: "./media/characters/snaps/back.svg",
  28598. extra: 2408 / 2258,
  28599. bottom: 15 / 2423
  28600. }
  28601. },
  28602. },
  28603. [
  28604. {
  28605. name: "Micro",
  28606. height: math.unit(9, "inches")
  28607. },
  28608. {
  28609. name: "Normal",
  28610. height: math.unit(5 + 2 / 12, "feet"),
  28611. default: true
  28612. },
  28613. {
  28614. name: "Mini Macro",
  28615. height: math.unit(10, "feet")
  28616. },
  28617. ]
  28618. ))
  28619. characterMakers.push(() => makeCharacter(
  28620. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28621. {
  28622. front: {
  28623. height: math.unit(1.8, "meters"),
  28624. weight: math.unit(85, "kg"),
  28625. name: "Front",
  28626. image: {
  28627. source: "./media/characters/azteck/front.svg",
  28628. extra: 2815 / 2625,
  28629. bottom: 89 / 2904
  28630. }
  28631. },
  28632. back: {
  28633. height: math.unit(1.8, "meters"),
  28634. weight: math.unit(85, "kg"),
  28635. name: "Back",
  28636. image: {
  28637. source: "./media/characters/azteck/back.svg",
  28638. extra: 2856 / 2648,
  28639. bottom: 85 / 2941
  28640. }
  28641. },
  28642. frontDressed: {
  28643. height: math.unit(1.8, "meters"),
  28644. weight: math.unit(85, "kg"),
  28645. name: "Front (Dressed)",
  28646. image: {
  28647. source: "./media/characters/azteck/front-dressed.svg",
  28648. extra: 2147 / 2003,
  28649. bottom: 68 / 2215
  28650. }
  28651. },
  28652. head: {
  28653. height: math.unit(0.47, "meters"),
  28654. weight: math.unit(85, "kg"),
  28655. name: "Head",
  28656. image: {
  28657. source: "./media/characters/azteck/head.svg"
  28658. }
  28659. },
  28660. },
  28661. [
  28662. {
  28663. name: "Bite sized",
  28664. height: math.unit(16, "cm")
  28665. },
  28666. {
  28667. name: "Normal",
  28668. height: math.unit(1.8, "meters"),
  28669. default: true
  28670. },
  28671. ]
  28672. ))
  28673. characterMakers.push(() => makeCharacter(
  28674. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28675. {
  28676. front: {
  28677. height: math.unit(6, "feet"),
  28678. weight: math.unit(150, "lb"),
  28679. name: "Front",
  28680. image: {
  28681. source: "./media/characters/pidge/front.svg",
  28682. extra: 620 / 588,
  28683. bottom: 9 / 629
  28684. }
  28685. },
  28686. back: {
  28687. height: math.unit(6, "feet"),
  28688. weight: math.unit(150, "lb"),
  28689. name: "Back",
  28690. image: {
  28691. source: "./media/characters/pidge/back.svg",
  28692. extra: 620 / 588,
  28693. bottom: 9 / 629
  28694. }
  28695. },
  28696. },
  28697. [
  28698. {
  28699. name: "Macro",
  28700. height: math.unit(1, "mile"),
  28701. default: true
  28702. },
  28703. ]
  28704. ))
  28705. characterMakers.push(() => makeCharacter(
  28706. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28707. {
  28708. front: {
  28709. height: math.unit(6, "feet"),
  28710. weight: math.unit(150, "lb"),
  28711. name: "Front",
  28712. image: {
  28713. source: "./media/characters/en/front.svg",
  28714. extra: 1697 / 1563,
  28715. bottom: 103 / 1800
  28716. }
  28717. },
  28718. back: {
  28719. height: math.unit(6, "feet"),
  28720. weight: math.unit(150, "lb"),
  28721. name: "Back",
  28722. image: {
  28723. source: "./media/characters/en/back.svg",
  28724. extra: 1700 / 1570,
  28725. bottom: 51 / 1751
  28726. }
  28727. },
  28728. frontDressed: {
  28729. height: math.unit(6, "feet"),
  28730. weight: math.unit(150, "lb"),
  28731. name: "Front (Dressed)",
  28732. image: {
  28733. source: "./media/characters/en/front-dressed.svg",
  28734. extra: 1697 / 1563,
  28735. bottom: 103 / 1800
  28736. }
  28737. },
  28738. backDressed: {
  28739. height: math.unit(6, "feet"),
  28740. weight: math.unit(150, "lb"),
  28741. name: "Back (Dressed)",
  28742. image: {
  28743. source: "./media/characters/en/back-dressed.svg",
  28744. extra: 1700 / 1570,
  28745. bottom: 51 / 1751
  28746. }
  28747. },
  28748. },
  28749. [
  28750. {
  28751. name: "Macro",
  28752. height: math.unit(210, "feet"),
  28753. default: true
  28754. },
  28755. ]
  28756. ))
  28757. characterMakers.push(() => makeCharacter(
  28758. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28759. {
  28760. front: {
  28761. height: math.unit(6, "feet"),
  28762. weight: math.unit(150, "lb"),
  28763. name: "Front",
  28764. image: {
  28765. source: "./media/characters/haze-orris/front.svg",
  28766. extra: 3975 / 3525,
  28767. bottom: 137 / 4112
  28768. }
  28769. },
  28770. },
  28771. [
  28772. {
  28773. name: "Micro",
  28774. height: math.unit(150, "mm"),
  28775. default: true
  28776. },
  28777. ]
  28778. ))
  28779. characterMakers.push(() => makeCharacter(
  28780. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28781. {
  28782. front: {
  28783. height: math.unit(6, "feet"),
  28784. weight: math.unit(150, "lb"),
  28785. name: "Front",
  28786. image: {
  28787. source: "./media/characters/casselene-yaro/front.svg",
  28788. extra: 4721 / 4541,
  28789. bottom: 82 / 4803
  28790. }
  28791. },
  28792. back: {
  28793. height: math.unit(6, "feet"),
  28794. weight: math.unit(150, "lb"),
  28795. name: "Back",
  28796. image: {
  28797. source: "./media/characters/casselene-yaro/back.svg",
  28798. extra: 4569 / 4377,
  28799. bottom: 69 / 4638
  28800. }
  28801. },
  28802. frontDressed: {
  28803. height: math.unit(6, "feet"),
  28804. weight: math.unit(150, "lb"),
  28805. name: "Front-dressed",
  28806. image: {
  28807. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28808. extra: 4721 / 4541,
  28809. bottom: 82 / 4803
  28810. }
  28811. },
  28812. },
  28813. [
  28814. {
  28815. name: "Macro",
  28816. height: math.unit(190, "feet"),
  28817. default: true
  28818. },
  28819. ]
  28820. ))
  28821. characterMakers.push(() => makeCharacter(
  28822. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28823. {
  28824. front: {
  28825. height: math.unit(6, "feet"),
  28826. weight: math.unit(150, "lb"),
  28827. name: "Front",
  28828. image: {
  28829. source: "./media/characters/myra-rue-delore/front.svg",
  28830. extra: 1340 / 1308,
  28831. bottom: 67 / 1407
  28832. }
  28833. },
  28834. back: {
  28835. height: math.unit(6, "feet"),
  28836. weight: math.unit(150, "lb"),
  28837. name: "Back",
  28838. image: {
  28839. source: "./media/characters/myra-rue-delore/back.svg",
  28840. extra: 1341 / 1310,
  28841. bottom: 40 / 1381
  28842. }
  28843. },
  28844. frontDressed: {
  28845. height: math.unit(6, "feet"),
  28846. weight: math.unit(150, "lb"),
  28847. name: "Front (Dressed)",
  28848. image: {
  28849. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28850. extra: 1340 / 1308,
  28851. bottom: 67 / 1407
  28852. }
  28853. },
  28854. },
  28855. [
  28856. {
  28857. name: "Macro",
  28858. height: math.unit(150, "feet"),
  28859. default: true
  28860. },
  28861. ]
  28862. ))
  28863. characterMakers.push(() => makeCharacter(
  28864. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28865. {
  28866. front: {
  28867. height: math.unit(10, "feet"),
  28868. weight: math.unit(15015, "lb"),
  28869. name: "Front",
  28870. image: {
  28871. source: "./media/characters/fem!plat/front.svg",
  28872. extra: 2799 / 2604,
  28873. bottom: 149 / 2948
  28874. }
  28875. },
  28876. },
  28877. [
  28878. {
  28879. name: "Normal",
  28880. height: math.unit(10, "feet"),
  28881. default: true
  28882. },
  28883. {
  28884. name: "Macro",
  28885. height: math.unit(100, "feet")
  28886. },
  28887. {
  28888. name: "Megamacro",
  28889. height: math.unit(1000, "feet")
  28890. },
  28891. ]
  28892. ))
  28893. characterMakers.push(() => makeCharacter(
  28894. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28895. {
  28896. front: {
  28897. height: math.unit(15 + 5 / 12, "feet"),
  28898. weight: math.unit(4600, "lb"),
  28899. name: "Front",
  28900. image: {
  28901. source: "./media/characters/neapolitan-ananassa/front.svg",
  28902. extra: 2903 / 2736,
  28903. bottom: 0 / 2903
  28904. }
  28905. },
  28906. side: {
  28907. height: math.unit(15 + 5 / 12, "feet"),
  28908. weight: math.unit(4600, "lb"),
  28909. name: "Side",
  28910. image: {
  28911. source: "./media/characters/neapolitan-ananassa/side.svg",
  28912. extra: 2925 / 2719,
  28913. bottom: 0 / 2925
  28914. }
  28915. },
  28916. back: {
  28917. height: math.unit(15 + 5 / 12, "feet"),
  28918. weight: math.unit(4600, "lb"),
  28919. name: "Back",
  28920. image: {
  28921. source: "./media/characters/neapolitan-ananassa/back.svg",
  28922. extra: 2903 / 2736,
  28923. bottom: 0 / 2903
  28924. }
  28925. },
  28926. },
  28927. [
  28928. {
  28929. name: "Normal",
  28930. height: math.unit(15 + 5 / 12, "feet"),
  28931. default: true
  28932. },
  28933. {
  28934. name: "Post-Millenium",
  28935. height: math.unit(35 + 5 / 12, "feet")
  28936. },
  28937. {
  28938. name: "Post-Era",
  28939. height: math.unit(450 + 5 / 12, "feet")
  28940. },
  28941. ]
  28942. ))
  28943. characterMakers.push(() => makeCharacter(
  28944. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28945. {
  28946. front: {
  28947. height: math.unit(300, "meters"),
  28948. weight: math.unit(125000, "tonnes"),
  28949. name: "Front",
  28950. image: {
  28951. source: "./media/characters/pazuzu/front.svg",
  28952. extra: 877 / 794,
  28953. bottom: 47 / 924
  28954. }
  28955. },
  28956. },
  28957. [
  28958. {
  28959. name: "Macro",
  28960. height: math.unit(300, "meters"),
  28961. default: true
  28962. },
  28963. ]
  28964. ))
  28965. characterMakers.push(() => makeCharacter(
  28966. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28967. {
  28968. side: {
  28969. height: math.unit(10 + 7 / 12, "feet"),
  28970. weight: math.unit(2.5, "tons"),
  28971. name: "Side",
  28972. image: {
  28973. source: "./media/characters/aasha/side.svg",
  28974. extra: 1345 / 1245,
  28975. bottom: 111 / 1456
  28976. }
  28977. },
  28978. back: {
  28979. height: math.unit(10 + 7 / 12, "feet"),
  28980. weight: math.unit(2.5, "tons"),
  28981. name: "Back",
  28982. image: {
  28983. source: "./media/characters/aasha/back.svg",
  28984. extra: 1133 / 1057,
  28985. bottom: 257 / 1390
  28986. }
  28987. },
  28988. },
  28989. [
  28990. {
  28991. name: "Normal",
  28992. height: math.unit(10 + 7 / 12, "feet"),
  28993. default: true
  28994. },
  28995. ]
  28996. ))
  28997. characterMakers.push(() => makeCharacter(
  28998. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28999. {
  29000. front: {
  29001. height: math.unit(6 + 3 / 12, "feet"),
  29002. name: "Front",
  29003. image: {
  29004. source: "./media/characters/nevan/front.svg",
  29005. extra: 704 / 704,
  29006. bottom: 28 / 732
  29007. }
  29008. },
  29009. back: {
  29010. height: math.unit(6 + 3 / 12, "feet"),
  29011. name: "Back",
  29012. image: {
  29013. source: "./media/characters/nevan/back.svg",
  29014. extra: 714 / 714,
  29015. bottom: 21 / 735
  29016. }
  29017. },
  29018. frontFlaccid: {
  29019. height: math.unit(6 + 3 / 12, "feet"),
  29020. name: "Front (Flaccid)",
  29021. image: {
  29022. source: "./media/characters/nevan/front-flaccid.svg",
  29023. extra: 704 / 704,
  29024. bottom: 28 / 732
  29025. }
  29026. },
  29027. frontErect: {
  29028. height: math.unit(6 + 3 / 12, "feet"),
  29029. name: "Front (Erect)",
  29030. image: {
  29031. source: "./media/characters/nevan/front-erect.svg",
  29032. extra: 704 / 704,
  29033. bottom: 28 / 732
  29034. }
  29035. },
  29036. backFlaccid: {
  29037. height: math.unit(6 + 3 / 12, "feet"),
  29038. name: "Back (Flaccid)",
  29039. image: {
  29040. source: "./media/characters/nevan/back-flaccid.svg",
  29041. extra: 714 / 714,
  29042. bottom: 21 / 735
  29043. }
  29044. },
  29045. },
  29046. [
  29047. {
  29048. name: "Normal",
  29049. height: math.unit(6 + 3 / 12, "feet"),
  29050. default: true
  29051. },
  29052. ]
  29053. ))
  29054. characterMakers.push(() => makeCharacter(
  29055. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29056. {
  29057. front: {
  29058. height: math.unit(4, "feet"),
  29059. name: "Front",
  29060. image: {
  29061. source: "./media/characters/arhan/front.svg",
  29062. extra: 3368 / 3133,
  29063. bottom: 0 / 3368
  29064. }
  29065. },
  29066. side: {
  29067. height: math.unit(4, "feet"),
  29068. name: "Side",
  29069. image: {
  29070. source: "./media/characters/arhan/side.svg",
  29071. extra: 3347 / 3105,
  29072. bottom: 0 / 3347
  29073. }
  29074. },
  29075. tongue: {
  29076. height: math.unit(1.42, "feet"),
  29077. name: "Tongue",
  29078. image: {
  29079. source: "./media/characters/arhan/tongue.svg"
  29080. }
  29081. },
  29082. head: {
  29083. height: math.unit(0.85, "feet"),
  29084. name: "Head",
  29085. image: {
  29086. source: "./media/characters/arhan/head.svg"
  29087. }
  29088. },
  29089. },
  29090. [
  29091. {
  29092. name: "Normal",
  29093. height: math.unit(4, "feet"),
  29094. default: true
  29095. },
  29096. ]
  29097. ))
  29098. characterMakers.push(() => makeCharacter(
  29099. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29100. {
  29101. front: {
  29102. height: math.unit(5 + 7.5 / 12, "feet"),
  29103. weight: math.unit(120, "lb"),
  29104. name: "Front",
  29105. image: {
  29106. source: "./media/characters/digi-duncan/front.svg",
  29107. extra: 330 / 326,
  29108. bottom: 16 / 346
  29109. }
  29110. },
  29111. side: {
  29112. height: math.unit(5 + 7.5 / 12, "feet"),
  29113. weight: math.unit(120, "lb"),
  29114. name: "Side",
  29115. image: {
  29116. source: "./media/characters/digi-duncan/side.svg",
  29117. extra: 341 / 337,
  29118. bottom: 1 / 342
  29119. }
  29120. },
  29121. back: {
  29122. height: math.unit(5 + 7.5 / 12, "feet"),
  29123. weight: math.unit(120, "lb"),
  29124. name: "Back",
  29125. image: {
  29126. source: "./media/characters/digi-duncan/back.svg",
  29127. extra: 330 / 326,
  29128. bottom: 12 / 342
  29129. }
  29130. },
  29131. },
  29132. [
  29133. {
  29134. name: "Speck",
  29135. height: math.unit(0.25, "mm")
  29136. },
  29137. {
  29138. name: "Micro",
  29139. height: math.unit(5, "mm")
  29140. },
  29141. {
  29142. name: "Tiny",
  29143. height: math.unit(0.5, "inches"),
  29144. default: true
  29145. },
  29146. {
  29147. name: "Human",
  29148. height: math.unit(5 + 7.5 / 12, "feet")
  29149. },
  29150. {
  29151. name: "Minigiant",
  29152. height: math.unit(8 + 5.25, "feet")
  29153. },
  29154. {
  29155. name: "Giant",
  29156. height: math.unit(2000, "feet")
  29157. },
  29158. {
  29159. name: "Mega",
  29160. height: math.unit(371.1, "miles")
  29161. },
  29162. ]
  29163. ))
  29164. characterMakers.push(() => makeCharacter(
  29165. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29166. {
  29167. front: {
  29168. height: math.unit(2, "meters"),
  29169. weight: math.unit(350, "kg"),
  29170. name: "Front",
  29171. image: {
  29172. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29173. extra: 898 / 838,
  29174. bottom: 9 / 907
  29175. }
  29176. },
  29177. },
  29178. [
  29179. {
  29180. name: "Micro",
  29181. height: math.unit(8, "meters")
  29182. },
  29183. {
  29184. name: "Normal",
  29185. height: math.unit(50, "meters"),
  29186. default: true
  29187. },
  29188. {
  29189. name: "Macro",
  29190. height: math.unit(500, "meters")
  29191. },
  29192. ]
  29193. ))
  29194. characterMakers.push(() => makeCharacter(
  29195. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29196. {
  29197. front: {
  29198. height: math.unit(6 + 6 / 12, "feet"),
  29199. name: "Front",
  29200. image: {
  29201. source: "./media/characters/khardesh/front.svg",
  29202. extra: 888 / 797,
  29203. bottom: 25 / 913
  29204. }
  29205. },
  29206. },
  29207. [
  29208. {
  29209. name: "Normal",
  29210. height: math.unit(6 + 6 / 12, "feet"),
  29211. default: true
  29212. },
  29213. {
  29214. name: "Normal+",
  29215. height: math.unit(4, "meters")
  29216. },
  29217. {
  29218. name: "Macro",
  29219. height: math.unit(50, "meters")
  29220. },
  29221. {
  29222. name: "Macro+",
  29223. height: math.unit(100, "meters")
  29224. },
  29225. {
  29226. name: "Megamacro",
  29227. height: math.unit(20, "km")
  29228. },
  29229. ]
  29230. ))
  29231. characterMakers.push(() => makeCharacter(
  29232. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29233. {
  29234. front: {
  29235. height: math.unit(6, "feet"),
  29236. weight: math.unit(150, "lb"),
  29237. name: "Front",
  29238. image: {
  29239. source: "./media/characters/kosho/front.svg",
  29240. extra: 1847 / 1847,
  29241. bottom: 86 / 1933
  29242. }
  29243. },
  29244. },
  29245. [
  29246. {
  29247. name: "Second-stage micro",
  29248. height: math.unit(0.5, "inches")
  29249. },
  29250. {
  29251. name: "First-stage micro",
  29252. height: math.unit(6, "inches")
  29253. },
  29254. {
  29255. name: "Normal",
  29256. height: math.unit(6, "feet"),
  29257. default: true
  29258. },
  29259. {
  29260. name: "First-stage macro",
  29261. height: math.unit(72, "feet")
  29262. },
  29263. {
  29264. name: "Second-stage macro",
  29265. height: math.unit(864, "feet")
  29266. },
  29267. ]
  29268. ))
  29269. characterMakers.push(() => makeCharacter(
  29270. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29271. {
  29272. normal: {
  29273. height: math.unit(4 + 6 / 12, "feet"),
  29274. name: "Normal",
  29275. image: {
  29276. source: "./media/characters/hydra/normal.svg",
  29277. extra: 2833 / 2634,
  29278. bottom: 68 / 2901
  29279. }
  29280. },
  29281. smol: {
  29282. height: math.unit(0.705, "inches"),
  29283. name: "Smol",
  29284. image: {
  29285. source: "./media/characters/hydra/smol.svg",
  29286. extra: 2715 / 2540,
  29287. bottom: 0 / 2715
  29288. }
  29289. },
  29290. },
  29291. [
  29292. {
  29293. name: "Normal",
  29294. height: math.unit(4 + 6 / 12, "feet"),
  29295. default: true
  29296. }
  29297. ]
  29298. ))
  29299. characterMakers.push(() => makeCharacter(
  29300. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29301. {
  29302. front: {
  29303. height: math.unit(0.6, "cm"),
  29304. name: "Front",
  29305. image: {
  29306. source: "./media/characters/daz/front.svg",
  29307. extra: 1682 / 1164,
  29308. bottom: 42 / 1724
  29309. }
  29310. },
  29311. },
  29312. [
  29313. {
  29314. name: "Normal",
  29315. height: math.unit(0.6, "cm"),
  29316. default: true
  29317. },
  29318. ]
  29319. ))
  29320. characterMakers.push(() => makeCharacter(
  29321. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29322. {
  29323. front: {
  29324. height: math.unit(6, "feet"),
  29325. weight: math.unit(235, "lb"),
  29326. name: "Front",
  29327. image: {
  29328. source: "./media/characters/theo-pangolin/front.svg",
  29329. extra: 1996 / 1969,
  29330. bottom: 115 / 2111
  29331. }
  29332. },
  29333. back: {
  29334. height: math.unit(6, "feet"),
  29335. weight: math.unit(235, "lb"),
  29336. name: "Back",
  29337. image: {
  29338. source: "./media/characters/theo-pangolin/back.svg",
  29339. extra: 1979 / 1979,
  29340. bottom: 40 / 2019
  29341. }
  29342. },
  29343. feral: {
  29344. height: math.unit(2, "feet"),
  29345. weight: math.unit(30, "lb"),
  29346. name: "Feral",
  29347. image: {
  29348. source: "./media/characters/theo-pangolin/feral.svg",
  29349. extra: 803 / 791,
  29350. bottom: 181 / 984
  29351. }
  29352. },
  29353. footFive: {
  29354. height: math.unit(1.43, "feet"),
  29355. name: "Foot (Five Toes)",
  29356. image: {
  29357. source: "./media/characters/theo-pangolin/foot-five.svg"
  29358. }
  29359. },
  29360. footFour: {
  29361. height: math.unit(1.43, "feet"),
  29362. name: "Foot (Four Toes)",
  29363. image: {
  29364. source: "./media/characters/theo-pangolin/foot-four.svg"
  29365. }
  29366. },
  29367. handFour: {
  29368. height: math.unit(0.81, "feet"),
  29369. name: "Hand (Four Fingers)",
  29370. image: {
  29371. source: "./media/characters/theo-pangolin/hand-four.svg"
  29372. }
  29373. },
  29374. handThree: {
  29375. height: math.unit(0.81, "feet"),
  29376. name: "Hand (Three Fingers)",
  29377. image: {
  29378. source: "./media/characters/theo-pangolin/hand-three.svg"
  29379. }
  29380. },
  29381. headFront: {
  29382. height: math.unit(1.37, "feet"),
  29383. name: "Head (Front)",
  29384. image: {
  29385. source: "./media/characters/theo-pangolin/head-front.svg"
  29386. }
  29387. },
  29388. headSide: {
  29389. height: math.unit(1.43, "feet"),
  29390. name: "Head (Side)",
  29391. image: {
  29392. source: "./media/characters/theo-pangolin/head-side.svg"
  29393. }
  29394. },
  29395. tongue: {
  29396. height: math.unit(2.29, "feet"),
  29397. name: "Tongue",
  29398. image: {
  29399. source: "./media/characters/theo-pangolin/tongue.svg"
  29400. }
  29401. },
  29402. },
  29403. [
  29404. {
  29405. name: "Normal",
  29406. height: math.unit(6, "feet")
  29407. },
  29408. {
  29409. name: "Macro",
  29410. height: math.unit(400, "feet"),
  29411. default: true
  29412. },
  29413. ]
  29414. ))
  29415. characterMakers.push(() => makeCharacter(
  29416. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29417. {
  29418. front: {
  29419. height: math.unit(6, "inches"),
  29420. weight: math.unit(0.036, "kg"),
  29421. name: "Front",
  29422. image: {
  29423. source: "./media/characters/renée/front.svg",
  29424. extra: 900 / 886,
  29425. bottom: 8 / 908
  29426. }
  29427. },
  29428. },
  29429. [
  29430. {
  29431. name: "Nano",
  29432. height: math.unit(1, "nm")
  29433. },
  29434. {
  29435. name: "Micro",
  29436. height: math.unit(1, "mm")
  29437. },
  29438. {
  29439. name: "Normal",
  29440. height: math.unit(6, "inches")
  29441. },
  29442. {
  29443. name: "Macro",
  29444. height: math.unit(2000, "feet"),
  29445. default: true
  29446. },
  29447. {
  29448. name: "Megamacro",
  29449. height: math.unit(2, "km")
  29450. },
  29451. {
  29452. name: "Gigamacro",
  29453. height: math.unit(2000, "km")
  29454. },
  29455. {
  29456. name: "Teramacro",
  29457. height: math.unit(250000, "km")
  29458. },
  29459. ]
  29460. ))
  29461. characterMakers.push(() => makeCharacter(
  29462. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29463. {
  29464. front: {
  29465. height: math.unit(4, "meters"),
  29466. weight: math.unit(150, "kg"),
  29467. name: "Front",
  29468. image: {
  29469. source: "./media/characters/caledvwlch/front.svg",
  29470. extra: 1760 / 1551,
  29471. bottom: 28 / 1788
  29472. }
  29473. },
  29474. side: {
  29475. height: math.unit(4, "meters"),
  29476. weight: math.unit(150, "kg"),
  29477. name: "Side",
  29478. image: {
  29479. source: "./media/characters/caledvwlch/side.svg",
  29480. extra: 1605 / 1536,
  29481. bottom: 31 / 1636
  29482. }
  29483. },
  29484. back: {
  29485. height: math.unit(4, "meters"),
  29486. weight: math.unit(150, "kg"),
  29487. name: "Back",
  29488. image: {
  29489. source: "./media/characters/caledvwlch/back.svg",
  29490. extra: 1635 / 1565,
  29491. bottom: 27 / 1662
  29492. }
  29493. },
  29494. },
  29495. [
  29496. {
  29497. name: "\"Incognito\"",
  29498. height: math.unit(4, "meters")
  29499. },
  29500. {
  29501. name: "Small rampage",
  29502. height: math.unit(600, "meters")
  29503. },
  29504. {
  29505. name: "Mega",
  29506. height: math.unit(30, "km")
  29507. },
  29508. {
  29509. name: "Home-size",
  29510. height: math.unit(50, "km"),
  29511. default: true
  29512. },
  29513. {
  29514. name: "Giga",
  29515. height: math.unit(300, "km")
  29516. },
  29517. {
  29518. name: "Lounging",
  29519. height: math.unit(11000, "km")
  29520. },
  29521. {
  29522. name: "Planet snacking",
  29523. height: math.unit(2000000, "km")
  29524. },
  29525. ]
  29526. ))
  29527. characterMakers.push(() => makeCharacter(
  29528. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29529. {
  29530. front: {
  29531. height: math.unit(6, "feet"),
  29532. weight: math.unit(215, "lb"),
  29533. name: "Front",
  29534. image: {
  29535. source: "./media/characters/sapphire-svell/front.svg",
  29536. extra: 495 / 455,
  29537. bottom: 20 / 515
  29538. }
  29539. },
  29540. back: {
  29541. height: math.unit(6, "feet"),
  29542. weight: math.unit(216, "lb"),
  29543. name: "Back",
  29544. image: {
  29545. source: "./media/characters/sapphire-svell/back.svg",
  29546. extra: 497 / 477,
  29547. bottom: 7 / 504
  29548. }
  29549. },
  29550. maw: {
  29551. height: math.unit(1.57, "feet"),
  29552. name: "Maw",
  29553. image: {
  29554. source: "./media/characters/sapphire-svell/maw.svg"
  29555. }
  29556. },
  29557. foot: {
  29558. height: math.unit(1.07, "feet"),
  29559. name: "Foot",
  29560. image: {
  29561. source: "./media/characters/sapphire-svell/foot.svg"
  29562. }
  29563. },
  29564. toering: {
  29565. height: math.unit(1.7, "inch"),
  29566. name: "Toering",
  29567. image: {
  29568. source: "./media/characters/sapphire-svell/toering.svg"
  29569. }
  29570. },
  29571. },
  29572. [
  29573. {
  29574. name: "Normal",
  29575. height: math.unit(300, "feet"),
  29576. default: true
  29577. },
  29578. {
  29579. name: "Augmented",
  29580. height: math.unit(1250, "feet")
  29581. },
  29582. {
  29583. name: "Unleashed",
  29584. height: math.unit(3000, "feet")
  29585. },
  29586. ]
  29587. ))
  29588. characterMakers.push(() => makeCharacter(
  29589. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29590. {
  29591. side: {
  29592. height: math.unit(2 + 3 / 12, "feet"),
  29593. weight: math.unit(110, "lb"),
  29594. name: "Side",
  29595. image: {
  29596. source: "./media/characters/glitch-flux/side.svg",
  29597. extra: 997 / 805,
  29598. bottom: 20 / 1017
  29599. }
  29600. },
  29601. },
  29602. [
  29603. {
  29604. name: "Normal",
  29605. height: math.unit(2 + 3 / 12, "feet"),
  29606. default: true
  29607. },
  29608. ]
  29609. ))
  29610. characterMakers.push(() => makeCharacter(
  29611. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29612. {
  29613. front: {
  29614. height: math.unit(4, "meters"),
  29615. name: "Front",
  29616. image: {
  29617. source: "./media/characters/mid/front.svg",
  29618. extra: 507 / 476,
  29619. bottom: 17 / 524
  29620. }
  29621. },
  29622. back: {
  29623. height: math.unit(4, "meters"),
  29624. name: "Back",
  29625. image: {
  29626. source: "./media/characters/mid/back.svg",
  29627. extra: 519 / 487,
  29628. bottom: 7 / 526
  29629. }
  29630. },
  29631. stuck: {
  29632. height: math.unit(2.2, "meters"),
  29633. name: "Stuck",
  29634. image: {
  29635. source: "./media/characters/mid/stuck.svg",
  29636. extra: 1951 / 1869,
  29637. bottom: 88 / 2039
  29638. }
  29639. }
  29640. },
  29641. [
  29642. {
  29643. name: "Normal",
  29644. height: math.unit(4, "meters"),
  29645. default: true
  29646. },
  29647. {
  29648. name: "Big",
  29649. height: math.unit(10, "meters")
  29650. },
  29651. {
  29652. name: "Macro",
  29653. height: math.unit(800, "meters")
  29654. },
  29655. {
  29656. name: "Megamacro",
  29657. height: math.unit(100, "km")
  29658. },
  29659. {
  29660. name: "Overgrown",
  29661. height: math.unit(1, "parsec")
  29662. },
  29663. ]
  29664. ))
  29665. characterMakers.push(() => makeCharacter(
  29666. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29667. {
  29668. front: {
  29669. height: math.unit(2.5, "meters"),
  29670. weight: math.unit(225, "kg"),
  29671. name: "Front",
  29672. image: {
  29673. source: "./media/characters/iris/front.svg",
  29674. extra: 3348 / 3251,
  29675. bottom: 205 / 3553
  29676. }
  29677. },
  29678. maw: {
  29679. height: math.unit(0.56, "meter"),
  29680. name: "Maw",
  29681. image: {
  29682. source: "./media/characters/iris/maw.svg"
  29683. }
  29684. },
  29685. },
  29686. [
  29687. {
  29688. name: "Mewter cat",
  29689. height: math.unit(1.2, "meters")
  29690. },
  29691. {
  29692. name: "Minimacro",
  29693. height: math.unit(2.5, "meters"),
  29694. default: true
  29695. },
  29696. {
  29697. name: "Macro",
  29698. height: math.unit(180, "meters")
  29699. },
  29700. {
  29701. name: "Megamacro",
  29702. height: math.unit(2746, "meters")
  29703. },
  29704. ]
  29705. ))
  29706. characterMakers.push(() => makeCharacter(
  29707. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29708. {
  29709. front: {
  29710. height: math.unit(6, "feet"),
  29711. weight: math.unit(135, "lb"),
  29712. name: "Front",
  29713. image: {
  29714. source: "./media/characters/axel/front.svg",
  29715. extra: 908 / 908,
  29716. bottom: 58 / 966
  29717. }
  29718. },
  29719. side: {
  29720. height: math.unit(6, "feet"),
  29721. weight: math.unit(135, "lb"),
  29722. name: "Side",
  29723. image: {
  29724. source: "./media/characters/axel/side.svg",
  29725. extra: 958 / 958,
  29726. bottom: 11 / 969
  29727. }
  29728. },
  29729. back: {
  29730. height: math.unit(6, "feet"),
  29731. weight: math.unit(135, "lb"),
  29732. name: "Back",
  29733. image: {
  29734. source: "./media/characters/axel/back.svg",
  29735. extra: 887 / 887,
  29736. bottom: 34 / 921
  29737. }
  29738. },
  29739. head: {
  29740. height: math.unit(1.07, "feet"),
  29741. name: "Head",
  29742. image: {
  29743. source: "./media/characters/axel/head.svg"
  29744. }
  29745. },
  29746. beak: {
  29747. height: math.unit(1.4, "feet"),
  29748. name: "Beak",
  29749. image: {
  29750. source: "./media/characters/axel/beak.svg"
  29751. }
  29752. },
  29753. beakSide: {
  29754. height: math.unit(1.4, "feet"),
  29755. name: "Beak Side",
  29756. image: {
  29757. source: "./media/characters/axel/beak-side.svg"
  29758. }
  29759. },
  29760. sheath: {
  29761. height: math.unit(0.5, "feet"),
  29762. name: "Sheath",
  29763. image: {
  29764. source: "./media/characters/axel/sheath.svg"
  29765. }
  29766. },
  29767. dick: {
  29768. height: math.unit(0.98, "feet"),
  29769. name: "Dick",
  29770. image: {
  29771. source: "./media/characters/axel/dick.svg"
  29772. }
  29773. },
  29774. },
  29775. [
  29776. {
  29777. name: "Macro",
  29778. height: math.unit(68, "meters"),
  29779. default: true
  29780. },
  29781. ]
  29782. ))
  29783. characterMakers.push(() => makeCharacter(
  29784. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29785. {
  29786. front: {
  29787. height: math.unit(3.5, "meters"),
  29788. weight: math.unit(1200, "kg"),
  29789. name: "Front",
  29790. image: {
  29791. source: "./media/characters/joanna/front.svg",
  29792. extra: 1596 / 1488,
  29793. bottom: 29 / 1625
  29794. }
  29795. },
  29796. back: {
  29797. height: math.unit(3.5, "meters"),
  29798. weight: math.unit(1200, "kg"),
  29799. name: "Back",
  29800. image: {
  29801. source: "./media/characters/joanna/back.svg",
  29802. extra: 1594 / 1495,
  29803. bottom: 26 / 1620
  29804. }
  29805. },
  29806. frontShorts: {
  29807. height: math.unit(3.5, "meters"),
  29808. weight: math.unit(1200, "kg"),
  29809. name: "Front (Shorts)",
  29810. image: {
  29811. source: "./media/characters/joanna/front-shorts.svg",
  29812. extra: 1596 / 1488,
  29813. bottom: 29 / 1625
  29814. }
  29815. },
  29816. frontBiker: {
  29817. height: math.unit(3.5, "meters"),
  29818. weight: math.unit(1200, "kg"),
  29819. name: "Front (Biker)",
  29820. image: {
  29821. source: "./media/characters/joanna/front-biker.svg",
  29822. extra: 1596 / 1488,
  29823. bottom: 29 / 1625
  29824. }
  29825. },
  29826. backBiker: {
  29827. height: math.unit(3.5, "meters"),
  29828. weight: math.unit(1200, "kg"),
  29829. name: "Back (Biker)",
  29830. image: {
  29831. source: "./media/characters/joanna/back-biker.svg",
  29832. extra: 1594 / 1495,
  29833. bottom: 88 / 1682
  29834. }
  29835. },
  29836. bikeLeft: {
  29837. height: math.unit(2.4, "meters"),
  29838. weight: math.unit(1600, "kg"),
  29839. name: "Bike (Left)",
  29840. image: {
  29841. source: "./media/characters/joanna/bike-left.svg",
  29842. extra: 720 / 720,
  29843. bottom: 8 / 728
  29844. }
  29845. },
  29846. bikeRight: {
  29847. height: math.unit(2.4, "meters"),
  29848. weight: math.unit(1600, "kg"),
  29849. name: "Bike (Right)",
  29850. image: {
  29851. source: "./media/characters/joanna/bike-right.svg",
  29852. extra: 720 / 720,
  29853. bottom: 8 / 728
  29854. }
  29855. },
  29856. },
  29857. [
  29858. {
  29859. name: "Incognito",
  29860. height: math.unit(3.5, "meters")
  29861. },
  29862. {
  29863. name: "Casual Big",
  29864. height: math.unit(200, "meters")
  29865. },
  29866. {
  29867. name: "Macro",
  29868. height: math.unit(600, "meters")
  29869. },
  29870. {
  29871. name: "Original",
  29872. height: math.unit(20, "km"),
  29873. default: true
  29874. },
  29875. {
  29876. name: "Giga",
  29877. height: math.unit(400, "km")
  29878. },
  29879. {
  29880. name: "Lounging",
  29881. height: math.unit(1500, "km")
  29882. },
  29883. {
  29884. name: "Planetary",
  29885. height: math.unit(200000, "km")
  29886. },
  29887. ]
  29888. ))
  29889. characterMakers.push(() => makeCharacter(
  29890. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29891. {
  29892. front: {
  29893. height: math.unit(6, "feet"),
  29894. weight: math.unit(150, "lb"),
  29895. name: "Front",
  29896. image: {
  29897. source: "./media/characters/hugo-sigil/front.svg",
  29898. extra: 522 / 500,
  29899. bottom: 2 / 524
  29900. }
  29901. },
  29902. back: {
  29903. height: math.unit(6, "feet"),
  29904. weight: math.unit(150, "lb"),
  29905. name: "Back",
  29906. image: {
  29907. source: "./media/characters/hugo-sigil/back.svg",
  29908. extra: 519 / 495,
  29909. bottom: 5 / 524
  29910. }
  29911. },
  29912. maw: {
  29913. height: math.unit(1.4, "feet"),
  29914. weight: math.unit(150, "lb"),
  29915. name: "Maw",
  29916. image: {
  29917. source: "./media/characters/hugo-sigil/maw.svg"
  29918. }
  29919. },
  29920. feet: {
  29921. height: math.unit(1.56, "feet"),
  29922. weight: math.unit(150, "lb"),
  29923. name: "Feet",
  29924. image: {
  29925. source: "./media/characters/hugo-sigil/feet.svg",
  29926. extra: 177 / 177,
  29927. bottom: 12 / 189
  29928. }
  29929. },
  29930. },
  29931. [
  29932. {
  29933. name: "Normal",
  29934. height: math.unit(6, "feet")
  29935. },
  29936. {
  29937. name: "Macro",
  29938. height: math.unit(200, "feet"),
  29939. default: true
  29940. },
  29941. ]
  29942. ))
  29943. characterMakers.push(() => makeCharacter(
  29944. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29945. {
  29946. front: {
  29947. height: math.unit(6, "feet"),
  29948. weight: math.unit(150, "lb"),
  29949. name: "Front",
  29950. image: {
  29951. source: "./media/characters/peri/front.svg",
  29952. extra: 2354 / 2233,
  29953. bottom: 49 / 2403
  29954. }
  29955. },
  29956. },
  29957. [
  29958. {
  29959. name: "Really Small",
  29960. height: math.unit(1, "nm")
  29961. },
  29962. {
  29963. name: "Micro",
  29964. height: math.unit(4, "inches")
  29965. },
  29966. {
  29967. name: "Normal",
  29968. height: math.unit(7, "inches"),
  29969. default: true
  29970. },
  29971. {
  29972. name: "Macro",
  29973. height: math.unit(400, "feet")
  29974. },
  29975. {
  29976. name: "Megamacro",
  29977. height: math.unit(100, "miles")
  29978. },
  29979. ]
  29980. ))
  29981. characterMakers.push(() => makeCharacter(
  29982. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29983. {
  29984. frontSlim: {
  29985. height: math.unit(7, "feet"),
  29986. name: "Front (Slim)",
  29987. image: {
  29988. source: "./media/characters/issilora/front-slim.svg",
  29989. extra: 529 / 449,
  29990. bottom: 53 / 582
  29991. }
  29992. },
  29993. sideSlim: {
  29994. height: math.unit(7, "feet"),
  29995. name: "Side (Slim)",
  29996. image: {
  29997. source: "./media/characters/issilora/side-slim.svg",
  29998. extra: 570 / 480,
  29999. bottom: 30 / 600
  30000. }
  30001. },
  30002. backSlim: {
  30003. height: math.unit(7, "feet"),
  30004. name: "Back (Slim)",
  30005. image: {
  30006. source: "./media/characters/issilora/back-slim.svg",
  30007. extra: 537 / 455,
  30008. bottom: 46 / 583
  30009. }
  30010. },
  30011. frontBuff: {
  30012. height: math.unit(7, "feet"),
  30013. name: "Front (Buff)",
  30014. image: {
  30015. source: "./media/characters/issilora/front-buff.svg",
  30016. extra: 2310 / 2035,
  30017. bottom: 335 / 2645
  30018. }
  30019. },
  30020. head: {
  30021. height: math.unit(1.94, "feet"),
  30022. name: "Head",
  30023. image: {
  30024. source: "./media/characters/issilora/head.svg"
  30025. }
  30026. },
  30027. },
  30028. [
  30029. {
  30030. name: "Minimum",
  30031. height: math.unit(7, "feet")
  30032. },
  30033. {
  30034. name: "Comfortable",
  30035. height: math.unit(17, "feet")
  30036. },
  30037. {
  30038. name: "Fun Size",
  30039. height: math.unit(47, "feet")
  30040. },
  30041. {
  30042. name: "Natural Macro",
  30043. height: math.unit(137, "feet"),
  30044. default: true
  30045. },
  30046. {
  30047. name: "Maximum Kaiju",
  30048. height: math.unit(397, "feet")
  30049. },
  30050. ]
  30051. ))
  30052. characterMakers.push(() => makeCharacter(
  30053. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30054. {
  30055. front: {
  30056. height: math.unit(50 + 9/12, "feet"),
  30057. weight: math.unit(32.8, "tons"),
  30058. name: "Front",
  30059. image: {
  30060. source: "./media/characters/irb'iiritaahn/front.svg",
  30061. extra: 1878/1826,
  30062. bottom: 326/2204
  30063. }
  30064. },
  30065. back: {
  30066. height: math.unit(50 + 9/12, "feet"),
  30067. weight: math.unit(32.8, "tons"),
  30068. name: "Back",
  30069. image: {
  30070. source: "./media/characters/irb'iiritaahn/back.svg",
  30071. extra: 2052/2018,
  30072. bottom: 152/2204
  30073. }
  30074. },
  30075. head: {
  30076. height: math.unit(12.86, "feet"),
  30077. name: "Head",
  30078. image: {
  30079. source: "./media/characters/irb'iiritaahn/head.svg"
  30080. }
  30081. },
  30082. maw: {
  30083. height: math.unit(9.66, "feet"),
  30084. name: "Maw",
  30085. image: {
  30086. source: "./media/characters/irb'iiritaahn/maw.svg"
  30087. }
  30088. },
  30089. frontDick: {
  30090. height: math.unit(8.78461, "feet"),
  30091. name: "Front Dick",
  30092. image: {
  30093. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30094. }
  30095. },
  30096. rearDick: {
  30097. height: math.unit(8.78461, "feet"),
  30098. name: "Rear Dick",
  30099. image: {
  30100. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30101. }
  30102. },
  30103. rearDickUnfolded: {
  30104. height: math.unit(8.78, "feet"),
  30105. name: "Rear Dick (Unfolded)",
  30106. image: {
  30107. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30108. }
  30109. },
  30110. wings: {
  30111. height: math.unit(43, "feet"),
  30112. name: "Wings",
  30113. image: {
  30114. source: "./media/characters/irb'iiritaahn/wings.svg"
  30115. }
  30116. },
  30117. },
  30118. [
  30119. {
  30120. name: "Macro",
  30121. height: math.unit(50 + 9/12, "feet"),
  30122. default: true
  30123. },
  30124. ]
  30125. ))
  30126. characterMakers.push(() => makeCharacter(
  30127. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30128. {
  30129. front: {
  30130. height: math.unit(205, "cm"),
  30131. weight: math.unit(102, "kg"),
  30132. name: "Front",
  30133. image: {
  30134. source: "./media/characters/irbisgreif/front.svg",
  30135. extra: 785/706,
  30136. bottom: 13/798
  30137. }
  30138. },
  30139. back: {
  30140. height: math.unit(205, "cm"),
  30141. weight: math.unit(102, "kg"),
  30142. name: "Back",
  30143. image: {
  30144. source: "./media/characters/irbisgreif/back.svg",
  30145. extra: 713/701,
  30146. bottom: 26/739
  30147. }
  30148. },
  30149. frontDressed: {
  30150. height: math.unit(216, "cm"),
  30151. weight: math.unit(102, "kg"),
  30152. name: "Front-dressed",
  30153. image: {
  30154. source: "./media/characters/irbisgreif/front-dressed.svg",
  30155. extra: 902/776,
  30156. bottom: 14/916
  30157. }
  30158. },
  30159. sideDressed: {
  30160. height: math.unit(195, "cm"),
  30161. weight: math.unit(102, "kg"),
  30162. name: "Side-dressed",
  30163. image: {
  30164. source: "./media/characters/irbisgreif/side-dressed.svg",
  30165. extra: 788/688,
  30166. bottom: 21/809
  30167. }
  30168. },
  30169. backDressed: {
  30170. height: math.unit(216, "cm"),
  30171. weight: math.unit(102, "kg"),
  30172. name: "Back-dressed",
  30173. image: {
  30174. source: "./media/characters/irbisgreif/back-dressed.svg",
  30175. extra: 901/783,
  30176. bottom: 10/911
  30177. }
  30178. },
  30179. dick: {
  30180. height: math.unit(0.49, "feet"),
  30181. name: "Dick",
  30182. image: {
  30183. source: "./media/characters/irbisgreif/dick.svg"
  30184. }
  30185. },
  30186. wingTop: {
  30187. height: math.unit(1.93 , "feet"),
  30188. name: "Wing-top",
  30189. image: {
  30190. source: "./media/characters/irbisgreif/wing-top.svg"
  30191. }
  30192. },
  30193. wingBottom: {
  30194. height: math.unit(1.93 , "feet"),
  30195. name: "Wing-bottom",
  30196. image: {
  30197. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30198. }
  30199. },
  30200. },
  30201. [
  30202. {
  30203. name: "Normal",
  30204. height: math.unit(216, "cm"),
  30205. default: true
  30206. },
  30207. ]
  30208. ))
  30209. characterMakers.push(() => makeCharacter(
  30210. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30211. {
  30212. front: {
  30213. height: math.unit(6, "feet"),
  30214. weight: math.unit(150, "lb"),
  30215. name: "Front",
  30216. image: {
  30217. source: "./media/characters/pride/front.svg",
  30218. extra: 1299/1230,
  30219. bottom: 18/1317
  30220. }
  30221. },
  30222. },
  30223. [
  30224. {
  30225. name: "Normal",
  30226. height: math.unit(7, "feet")
  30227. },
  30228. {
  30229. name: "Mini-macro",
  30230. height: math.unit(11, "feet")
  30231. },
  30232. {
  30233. name: "Macro",
  30234. height: math.unit(15, "meters"),
  30235. default: true
  30236. },
  30237. {
  30238. name: "Macro+",
  30239. height: math.unit(40, "meters")
  30240. },
  30241. ]
  30242. ))
  30243. characterMakers.push(() => makeCharacter(
  30244. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30245. {
  30246. front: {
  30247. height: math.unit(4 + 2 / 12, "feet"),
  30248. weight: math.unit(95, "lb"),
  30249. name: "Front",
  30250. image: {
  30251. source: "./media/characters/vaelophis-nyx/front.svg",
  30252. extra: 2532/2330,
  30253. bottom: 0/2532
  30254. }
  30255. },
  30256. back: {
  30257. height: math.unit(4 + 2 / 12, "feet"),
  30258. weight: math.unit(95, "lb"),
  30259. name: "Back",
  30260. image: {
  30261. source: "./media/characters/vaelophis-nyx/back.svg",
  30262. extra: 2484/2361,
  30263. bottom: 0/2484
  30264. }
  30265. },
  30266. feralSide: {
  30267. height: math.unit(2 + 1/12, "feet"),
  30268. weight: math.unit(20, "lb"),
  30269. name: "Feral (Side)",
  30270. image: {
  30271. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30272. extra: 1721/1581,
  30273. bottom: 70/1791
  30274. }
  30275. },
  30276. feralLazing: {
  30277. height: math.unit(1.08, "feet"),
  30278. weight: math.unit(20, "lb"),
  30279. name: "Feral (Lazing)",
  30280. image: {
  30281. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30282. extra: 822/822,
  30283. bottom: 248/1070
  30284. }
  30285. },
  30286. ear: {
  30287. height: math.unit(0.416, "feet"),
  30288. name: "Ear",
  30289. image: {
  30290. source: "./media/characters/vaelophis-nyx/ear.svg"
  30291. }
  30292. },
  30293. eye: {
  30294. height: math.unit(0.0748, "feet"),
  30295. name: "Eye",
  30296. image: {
  30297. source: "./media/characters/vaelophis-nyx/eye.svg"
  30298. }
  30299. },
  30300. mouth: {
  30301. height: math.unit(0.378, "feet"),
  30302. name: "Mouth",
  30303. image: {
  30304. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30305. }
  30306. },
  30307. spade: {
  30308. height: math.unit(0.55, "feet"),
  30309. name: "Spade",
  30310. image: {
  30311. source: "./media/characters/vaelophis-nyx/spade.svg"
  30312. }
  30313. },
  30314. },
  30315. [
  30316. {
  30317. name: "Normal",
  30318. height: math.unit(4 + 2/12, "feet"),
  30319. default: true
  30320. },
  30321. ]
  30322. ))
  30323. characterMakers.push(() => makeCharacter(
  30324. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30325. {
  30326. front: {
  30327. height: math.unit(7, "feet"),
  30328. weight: math.unit(231, "lb"),
  30329. name: "Front",
  30330. image: {
  30331. source: "./media/characters/flux/front.svg",
  30332. extra: 919/871,
  30333. bottom: 0/919
  30334. }
  30335. },
  30336. back: {
  30337. height: math.unit(7, "feet"),
  30338. weight: math.unit(231, "lb"),
  30339. name: "Back",
  30340. image: {
  30341. source: "./media/characters/flux/back.svg",
  30342. extra: 1040/992,
  30343. bottom: 0/1040
  30344. }
  30345. },
  30346. frontDressed: {
  30347. height: math.unit(7, "feet"),
  30348. weight: math.unit(231, "lb"),
  30349. name: "Front (Dressed)",
  30350. image: {
  30351. source: "./media/characters/flux/front-dressed.svg",
  30352. extra: 919/871,
  30353. bottom: 0/919
  30354. }
  30355. },
  30356. feralSide: {
  30357. height: math.unit(5, "feet"),
  30358. weight: math.unit(150, "lb"),
  30359. name: "Feral (Side)",
  30360. image: {
  30361. source: "./media/characters/flux/feral-side.svg",
  30362. extra: 598/528,
  30363. bottom: 28/626
  30364. }
  30365. },
  30366. head: {
  30367. height: math.unit(1.585, "feet"),
  30368. name: "Head",
  30369. image: {
  30370. source: "./media/characters/flux/head.svg"
  30371. }
  30372. },
  30373. headSide: {
  30374. height: math.unit(1.74, "feet"),
  30375. name: "Head (Side)",
  30376. image: {
  30377. source: "./media/characters/flux/head-side.svg"
  30378. }
  30379. },
  30380. headSideFire: {
  30381. height: math.unit(1.76, "feet"),
  30382. name: "Head (Side, Fire)",
  30383. image: {
  30384. source: "./media/characters/flux/head-side-fire.svg"
  30385. }
  30386. },
  30387. },
  30388. [
  30389. {
  30390. name: "Normal",
  30391. height: math.unit(7, "feet"),
  30392. default: true
  30393. },
  30394. ]
  30395. ))
  30396. characterMakers.push(() => makeCharacter(
  30397. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30398. {
  30399. front: {
  30400. height: math.unit(9, "feet"),
  30401. weight: math.unit(1012, "lb"),
  30402. name: "Front",
  30403. image: {
  30404. source: "./media/characters/ulfra-lupae/front.svg",
  30405. extra: 1083/1011,
  30406. bottom: 67/1150
  30407. }
  30408. },
  30409. },
  30410. [
  30411. {
  30412. name: "Micro",
  30413. height: math.unit(6, "inches")
  30414. },
  30415. {
  30416. name: "Socializing",
  30417. height: math.unit(6 + 5/12, "feet")
  30418. },
  30419. {
  30420. name: "Normal",
  30421. height: math.unit(9, "feet"),
  30422. default: true
  30423. },
  30424. {
  30425. name: "Macro",
  30426. height: math.unit(150, "feet")
  30427. },
  30428. ]
  30429. ))
  30430. characterMakers.push(() => makeCharacter(
  30431. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30432. {
  30433. front: {
  30434. height: math.unit(5 + 2/12, "feet"),
  30435. weight: math.unit(120, "lb"),
  30436. name: "Front",
  30437. image: {
  30438. source: "./media/characters/timber/front.svg",
  30439. extra: 2814/2705,
  30440. bottom: 181/2995
  30441. }
  30442. },
  30443. },
  30444. [
  30445. {
  30446. name: "Normal",
  30447. height: math.unit(5 + 2/12, "feet"),
  30448. default: true
  30449. },
  30450. ]
  30451. ))
  30452. characterMakers.push(() => makeCharacter(
  30453. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30454. {
  30455. front: {
  30456. height: math.unit(5 + 7/12, "feet"),
  30457. weight: math.unit(220, "lb"),
  30458. name: "Front",
  30459. image: {
  30460. source: "./media/characters/nicki/front.svg",
  30461. extra: 453/419,
  30462. bottom: 7/460
  30463. }
  30464. },
  30465. frontAlt: {
  30466. height: math.unit(5 + 7/12, "feet"),
  30467. weight: math.unit(220, "lb"),
  30468. name: "Front-alt",
  30469. image: {
  30470. source: "./media/characters/nicki/front-alt.svg",
  30471. extra: 435/411,
  30472. bottom: 12/447
  30473. }
  30474. },
  30475. back: {
  30476. height: math.unit(5 + 7/12, "feet"),
  30477. weight: math.unit(220, "lb"),
  30478. name: "Back",
  30479. image: {
  30480. source: "./media/characters/nicki/back.svg",
  30481. extra: 440/413,
  30482. bottom: 19/459
  30483. }
  30484. },
  30485. taur: {
  30486. height: math.unit(7 + 6/12, "feet"),
  30487. weight: math.unit(700, "lb"),
  30488. name: "Taur",
  30489. image: {
  30490. source: "./media/characters/nicki/taur.svg",
  30491. extra: 975/773,
  30492. bottom: 0/975
  30493. }
  30494. },
  30495. frontNsfw: {
  30496. height: math.unit(5 + 7/12, "feet"),
  30497. weight: math.unit(220, "lb"),
  30498. name: "Front (NSFW)",
  30499. image: {
  30500. source: "./media/characters/nicki/front-nsfw.svg",
  30501. extra: 453/419,
  30502. bottom: 7/460
  30503. }
  30504. },
  30505. frontNsfwAlt: {
  30506. height: math.unit(5 + 7/12, "feet"),
  30507. weight: math.unit(220, "lb"),
  30508. name: "Front (Alt, NSFW)",
  30509. image: {
  30510. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30511. extra: 435/411,
  30512. bottom: 12/447
  30513. }
  30514. },
  30515. backNsfw: {
  30516. height: math.unit(5 + 7/12, "feet"),
  30517. weight: math.unit(220, "lb"),
  30518. name: "Back (NSFW)",
  30519. image: {
  30520. source: "./media/characters/nicki/back-nsfw.svg",
  30521. extra: 440/413,
  30522. bottom: 19/459
  30523. }
  30524. },
  30525. head: {
  30526. height: math.unit(2.1, "feet"),
  30527. name: "Head",
  30528. image: {
  30529. source: "./media/characters/nicki/head.svg"
  30530. }
  30531. },
  30532. paw: {
  30533. height: math.unit(1.88, "feet"),
  30534. name: "Paw",
  30535. image: {
  30536. source: "./media/characters/nicki/paw.svg"
  30537. }
  30538. },
  30539. },
  30540. [
  30541. {
  30542. name: "Normal",
  30543. height: math.unit(5 + 7/12, "feet"),
  30544. default: true
  30545. },
  30546. ]
  30547. ))
  30548. characterMakers.push(() => makeCharacter(
  30549. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30550. {
  30551. front: {
  30552. height: math.unit(7 + 10/12, "feet"),
  30553. weight: math.unit(3.5, "tons"),
  30554. name: "Front",
  30555. image: {
  30556. source: "./media/characters/lee/front.svg",
  30557. extra: 1773/1615,
  30558. bottom: 86/1859
  30559. }
  30560. },
  30561. hand: {
  30562. height: math.unit(1.78, "feet"),
  30563. name: "Hand",
  30564. image: {
  30565. source: "./media/characters/lee/hand.svg"
  30566. }
  30567. },
  30568. maw: {
  30569. height: math.unit(1.18, "feet"),
  30570. name: "Maw",
  30571. image: {
  30572. source: "./media/characters/lee/maw.svg"
  30573. }
  30574. },
  30575. },
  30576. [
  30577. {
  30578. name: "Normal",
  30579. height: math.unit(7 + 10/12, "feet"),
  30580. default: true
  30581. },
  30582. ]
  30583. ))
  30584. characterMakers.push(() => makeCharacter(
  30585. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30586. {
  30587. front: {
  30588. height: math.unit(9, "feet"),
  30589. name: "Front",
  30590. image: {
  30591. source: "./media/characters/guti/front.svg",
  30592. extra: 4551/4355,
  30593. bottom: 123/4674
  30594. }
  30595. },
  30596. tongue: {
  30597. height: math.unit(1, "feet"),
  30598. name: "Tongue",
  30599. image: {
  30600. source: "./media/characters/guti/tongue.svg"
  30601. }
  30602. },
  30603. paw: {
  30604. height: math.unit(1.18, "feet"),
  30605. name: "Paw",
  30606. image: {
  30607. source: "./media/characters/guti/paw.svg"
  30608. }
  30609. },
  30610. },
  30611. [
  30612. {
  30613. name: "Normal",
  30614. height: math.unit(9, "feet"),
  30615. default: true
  30616. },
  30617. ]
  30618. ))
  30619. characterMakers.push(() => makeCharacter(
  30620. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30621. {
  30622. side: {
  30623. height: math.unit(5, "meters"),
  30624. name: "Side",
  30625. image: {
  30626. source: "./media/characters/vesper/side.svg",
  30627. extra: 1605/1518,
  30628. bottom: 0/1605
  30629. }
  30630. },
  30631. },
  30632. [
  30633. {
  30634. name: "Small",
  30635. height: math.unit(5, "meters")
  30636. },
  30637. {
  30638. name: "Sage",
  30639. height: math.unit(100, "meters"),
  30640. default: true
  30641. },
  30642. {
  30643. name: "Fun Size",
  30644. height: math.unit(600, "meters")
  30645. },
  30646. {
  30647. name: "Goddess",
  30648. height: math.unit(20000, "km")
  30649. },
  30650. {
  30651. name: "Maximum",
  30652. height: math.unit(5, "galaxies")
  30653. },
  30654. ]
  30655. ))
  30656. characterMakers.push(() => makeCharacter(
  30657. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30658. {
  30659. front: {
  30660. height: math.unit(6 + 3/12, "feet"),
  30661. weight: math.unit(190, "lb"),
  30662. name: "Front",
  30663. image: {
  30664. source: "./media/characters/gawain/front.svg",
  30665. extra: 2222/2139,
  30666. bottom: 90/2312
  30667. }
  30668. },
  30669. back: {
  30670. height: math.unit(6 + 3/12, "feet"),
  30671. weight: math.unit(190, "lb"),
  30672. name: "Back",
  30673. image: {
  30674. source: "./media/characters/gawain/back.svg",
  30675. extra: 2199/2111,
  30676. bottom: 73/2272
  30677. }
  30678. },
  30679. },
  30680. [
  30681. {
  30682. name: "Normal",
  30683. height: math.unit(6 + 3/12, "feet"),
  30684. default: true
  30685. },
  30686. ]
  30687. ))
  30688. characterMakers.push(() => makeCharacter(
  30689. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30690. {
  30691. side: {
  30692. height: math.unit(3.5, "meters"),
  30693. weight: math.unit(16000, "lb"),
  30694. name: "Side",
  30695. image: {
  30696. source: "./media/characters/dascalti/side.svg",
  30697. extra: 392/273,
  30698. bottom: 47/439
  30699. }
  30700. },
  30701. breath: {
  30702. height: math.unit(7.4, "feet"),
  30703. name: "Breath",
  30704. image: {
  30705. source: "./media/characters/dascalti/breath.svg"
  30706. }
  30707. },
  30708. fed: {
  30709. height: math.unit(3.6, "meters"),
  30710. weight: math.unit(16000, "lb"),
  30711. name: "Fed",
  30712. image: {
  30713. source: "./media/characters/dascalti/fed.svg",
  30714. extra: 1419/820,
  30715. bottom: 95/1514
  30716. }
  30717. },
  30718. },
  30719. [
  30720. {
  30721. name: "Normal",
  30722. height: math.unit(3.5, "meters"),
  30723. default: true
  30724. },
  30725. ]
  30726. ))
  30727. characterMakers.push(() => makeCharacter(
  30728. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30729. {
  30730. front: {
  30731. height: math.unit(3 + 5/12, "feet"),
  30732. name: "Front",
  30733. image: {
  30734. source: "./media/characters/mauve/front.svg",
  30735. extra: 1126/1033,
  30736. bottom: 65/1191
  30737. }
  30738. },
  30739. side: {
  30740. height: math.unit(3 + 5/12, "feet"),
  30741. name: "Side",
  30742. image: {
  30743. source: "./media/characters/mauve/side.svg",
  30744. extra: 1089/1001,
  30745. bottom: 29/1118
  30746. }
  30747. },
  30748. back: {
  30749. height: math.unit(3 + 5/12, "feet"),
  30750. name: "Back",
  30751. image: {
  30752. source: "./media/characters/mauve/back.svg",
  30753. extra: 1173/1053,
  30754. bottom: 109/1282
  30755. }
  30756. },
  30757. },
  30758. [
  30759. {
  30760. name: "Normal",
  30761. height: math.unit(3 + 5/12, "feet"),
  30762. default: true
  30763. },
  30764. ]
  30765. ))
  30766. characterMakers.push(() => makeCharacter(
  30767. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30768. {
  30769. front: {
  30770. height: math.unit(6 + 3/12, "feet"),
  30771. weight: math.unit(430, "lb"),
  30772. name: "Front",
  30773. image: {
  30774. source: "./media/characters/carlos/front.svg",
  30775. extra: 1964/1913,
  30776. bottom: 70/2034
  30777. }
  30778. },
  30779. },
  30780. [
  30781. {
  30782. name: "Normal",
  30783. height: math.unit(6 + 3/12, "feet"),
  30784. default: true
  30785. },
  30786. ]
  30787. ))
  30788. characterMakers.push(() => makeCharacter(
  30789. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30790. {
  30791. back: {
  30792. height: math.unit(5 + 10/12, "feet"),
  30793. weight: math.unit(200, "lb"),
  30794. name: "Back",
  30795. image: {
  30796. source: "./media/characters/jax/back.svg",
  30797. extra: 764/739,
  30798. bottom: 25/789
  30799. }
  30800. },
  30801. },
  30802. [
  30803. {
  30804. name: "Normal",
  30805. height: math.unit(5 + 10/12, "feet"),
  30806. default: true
  30807. },
  30808. ]
  30809. ))
  30810. characterMakers.push(() => makeCharacter(
  30811. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30812. {
  30813. front: {
  30814. height: math.unit(8, "feet"),
  30815. weight: math.unit(250, "lb"),
  30816. name: "Front",
  30817. image: {
  30818. source: "./media/characters/eikthynir/front.svg",
  30819. extra: 1332/1166,
  30820. bottom: 82/1414
  30821. }
  30822. },
  30823. back: {
  30824. height: math.unit(8, "feet"),
  30825. weight: math.unit(250, "lb"),
  30826. name: "Back",
  30827. image: {
  30828. source: "./media/characters/eikthynir/back.svg",
  30829. extra: 1342/1190,
  30830. bottom: 19/1361
  30831. }
  30832. },
  30833. dick: {
  30834. height: math.unit(2.35, "feet"),
  30835. name: "Dick",
  30836. image: {
  30837. source: "./media/characters/eikthynir/dick.svg"
  30838. }
  30839. },
  30840. },
  30841. [
  30842. {
  30843. name: "Normal",
  30844. height: math.unit(8, "feet"),
  30845. default: true
  30846. },
  30847. ]
  30848. ))
  30849. characterMakers.push(() => makeCharacter(
  30850. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30851. {
  30852. front: {
  30853. height: math.unit(99, "meters"),
  30854. weight: math.unit(13000, "tons"),
  30855. name: "Front",
  30856. image: {
  30857. source: "./media/characters/zlmos/front.svg",
  30858. extra: 2202/1992,
  30859. bottom: 315/2517
  30860. }
  30861. },
  30862. },
  30863. [
  30864. {
  30865. name: "Macro",
  30866. height: math.unit(99, "meters"),
  30867. default: true
  30868. },
  30869. ]
  30870. ))
  30871. characterMakers.push(() => makeCharacter(
  30872. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30873. {
  30874. front: {
  30875. height: math.unit(6 + 5/12, "feet"),
  30876. name: "Front",
  30877. image: {
  30878. source: "./media/characters/purri/front.svg",
  30879. extra: 1698/1610,
  30880. bottom: 32/1730
  30881. }
  30882. },
  30883. frontAlt: {
  30884. height: math.unit(6 + 5/12, "feet"),
  30885. name: "Front (Alt)",
  30886. image: {
  30887. source: "./media/characters/purri/front-alt.svg",
  30888. extra: 450/420,
  30889. bottom: 26/476
  30890. }
  30891. },
  30892. boots: {
  30893. height: math.unit(5.5, "feet"),
  30894. name: "Boots",
  30895. image: {
  30896. source: "./media/characters/purri/boots.svg",
  30897. extra: 905/853,
  30898. bottom: 18/923
  30899. }
  30900. },
  30901. lying: {
  30902. height: math.unit(2, "feet"),
  30903. name: "Lying",
  30904. image: {
  30905. source: "./media/characters/purri/lying.svg",
  30906. extra: 940/843,
  30907. bottom: 146/1086
  30908. }
  30909. },
  30910. devious: {
  30911. height: math.unit(1.77, "feet"),
  30912. name: "Devious",
  30913. image: {
  30914. source: "./media/characters/purri/devious.svg",
  30915. extra: 1440/1155,
  30916. bottom: 147/1587
  30917. }
  30918. },
  30919. bean: {
  30920. height: math.unit(1.94, "feet"),
  30921. name: "Bean",
  30922. image: {
  30923. source: "./media/characters/purri/bean.svg"
  30924. }
  30925. },
  30926. },
  30927. [
  30928. {
  30929. name: "Micro",
  30930. height: math.unit(1, "mm")
  30931. },
  30932. {
  30933. name: "Normal",
  30934. height: math.unit(6 + 5/12, "feet"),
  30935. default: true
  30936. },
  30937. {
  30938. name: "Macro :3c",
  30939. height: math.unit(2, "miles")
  30940. },
  30941. ]
  30942. ))
  30943. characterMakers.push(() => makeCharacter(
  30944. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30945. {
  30946. front: {
  30947. height: math.unit(6 + 2/12, "feet"),
  30948. weight: math.unit(250, "lb"),
  30949. name: "Front",
  30950. image: {
  30951. source: "./media/characters/moonlight/front.svg",
  30952. extra: 1044/908,
  30953. bottom: 56/1100
  30954. }
  30955. },
  30956. feral: {
  30957. height: math.unit(3 + 1/12, "feet"),
  30958. weight: math.unit(50, "kg"),
  30959. name: "Feral",
  30960. image: {
  30961. source: "./media/characters/moonlight/feral.svg",
  30962. extra: 3705/2791,
  30963. bottom: 145/3850
  30964. }
  30965. },
  30966. paw: {
  30967. height: math.unit(1, "feet"),
  30968. name: "Paw",
  30969. image: {
  30970. source: "./media/characters/moonlight/paw.svg"
  30971. }
  30972. },
  30973. paws: {
  30974. height: math.unit(0.98, "feet"),
  30975. name: "Paws",
  30976. image: {
  30977. source: "./media/characters/moonlight/paws.svg",
  30978. extra: 939/939,
  30979. bottom: 50/989
  30980. }
  30981. },
  30982. mouth: {
  30983. height: math.unit(0.48, "feet"),
  30984. name: "Mouth",
  30985. image: {
  30986. source: "./media/characters/moonlight/mouth.svg"
  30987. }
  30988. },
  30989. dick: {
  30990. height: math.unit(1.46, "feet"),
  30991. name: "Dick",
  30992. image: {
  30993. source: "./media/characters/moonlight/dick.svg"
  30994. }
  30995. },
  30996. },
  30997. [
  30998. {
  30999. name: "Normal",
  31000. height: math.unit(6 + 2/12, "feet"),
  31001. default: true
  31002. },
  31003. {
  31004. name: "Macro",
  31005. height: math.unit(300, "feet")
  31006. },
  31007. {
  31008. name: "Macro+",
  31009. height: math.unit(1, "mile")
  31010. },
  31011. {
  31012. name: "Mt. Moon",
  31013. height: math.unit(5, "miles")
  31014. },
  31015. {
  31016. name: "Megamacro",
  31017. height: math.unit(15, "miles")
  31018. },
  31019. ]
  31020. ))
  31021. characterMakers.push(() => makeCharacter(
  31022. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31023. {
  31024. back: {
  31025. height: math.unit(6, "feet"),
  31026. weight: math.unit(150, "lb"),
  31027. name: "Back",
  31028. image: {
  31029. source: "./media/characters/sylen/back.svg",
  31030. extra: 1335/1273,
  31031. bottom: 107/1442
  31032. }
  31033. },
  31034. },
  31035. [
  31036. {
  31037. name: "Normal",
  31038. height: math.unit(5 + 5/12, "feet")
  31039. },
  31040. {
  31041. name: "Megamacro",
  31042. height: math.unit(3, "miles"),
  31043. default: true
  31044. },
  31045. ]
  31046. ))
  31047. characterMakers.push(() => makeCharacter(
  31048. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31049. {
  31050. front: {
  31051. height: math.unit(6, "feet"),
  31052. weight: math.unit(190, "lb"),
  31053. name: "Front",
  31054. image: {
  31055. source: "./media/characters/huttser/front.svg",
  31056. extra: 1152/1058,
  31057. bottom: 23/1175
  31058. }
  31059. },
  31060. side: {
  31061. height: math.unit(6, "feet"),
  31062. weight: math.unit(190, "lb"),
  31063. name: "Side",
  31064. image: {
  31065. source: "./media/characters/huttser/side.svg",
  31066. extra: 1174/1065,
  31067. bottom: 18/1192
  31068. }
  31069. },
  31070. back: {
  31071. height: math.unit(6, "feet"),
  31072. weight: math.unit(190, "lb"),
  31073. name: "Back",
  31074. image: {
  31075. source: "./media/characters/huttser/back.svg",
  31076. extra: 1158/1056,
  31077. bottom: 12/1170
  31078. }
  31079. },
  31080. },
  31081. [
  31082. ]
  31083. ))
  31084. characterMakers.push(() => makeCharacter(
  31085. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31086. {
  31087. side: {
  31088. height: math.unit(12 + 9/12, "feet"),
  31089. weight: math.unit(15000, "lb"),
  31090. name: "Side",
  31091. image: {
  31092. source: "./media/characters/faan/side.svg",
  31093. extra: 2747/2697,
  31094. bottom: 0/2747
  31095. }
  31096. },
  31097. front: {
  31098. height: math.unit(12 + 9/12, "feet"),
  31099. weight: math.unit(15000, "lb"),
  31100. name: "Front",
  31101. image: {
  31102. source: "./media/characters/faan/front.svg",
  31103. extra: 607/571,
  31104. bottom: 24/631
  31105. }
  31106. },
  31107. head: {
  31108. height: math.unit(2.85, "feet"),
  31109. name: "Head",
  31110. image: {
  31111. source: "./media/characters/faan/head.svg"
  31112. }
  31113. },
  31114. headAlt: {
  31115. height: math.unit(3.13, "feet"),
  31116. name: "Head-alt",
  31117. image: {
  31118. source: "./media/characters/faan/head-alt.svg"
  31119. }
  31120. },
  31121. },
  31122. [
  31123. {
  31124. name: "Normal",
  31125. height: math.unit(12 + 9/12, "feet"),
  31126. default: true
  31127. },
  31128. ]
  31129. ))
  31130. characterMakers.push(() => makeCharacter(
  31131. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31132. {
  31133. front: {
  31134. height: math.unit(6, "feet"),
  31135. weight: math.unit(300, "lb"),
  31136. name: "Front",
  31137. image: {
  31138. source: "./media/characters/tanio/front.svg",
  31139. extra: 711/673,
  31140. bottom: 25/736
  31141. }
  31142. },
  31143. },
  31144. [
  31145. {
  31146. name: "Normal",
  31147. height: math.unit(6, "feet"),
  31148. default: true
  31149. },
  31150. ]
  31151. ))
  31152. characterMakers.push(() => makeCharacter(
  31153. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31154. {
  31155. front: {
  31156. height: math.unit(3, "inches"),
  31157. name: "Front",
  31158. image: {
  31159. source: "./media/characters/noboru/front.svg",
  31160. extra: 1039/932,
  31161. bottom: 18/1057
  31162. }
  31163. },
  31164. },
  31165. [
  31166. {
  31167. name: "Micro",
  31168. height: math.unit(3, "inches"),
  31169. default: true
  31170. },
  31171. ]
  31172. ))
  31173. characterMakers.push(() => makeCharacter(
  31174. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31175. {
  31176. front: {
  31177. height: math.unit(1.85, "meters"),
  31178. weight: math.unit(80, "kg"),
  31179. name: "Front",
  31180. image: {
  31181. source: "./media/characters/daniel-barrett/front.svg",
  31182. extra: 355/337,
  31183. bottom: 9/364
  31184. }
  31185. },
  31186. },
  31187. [
  31188. {
  31189. name: "Pico",
  31190. height: math.unit(0.0433, "mm")
  31191. },
  31192. {
  31193. name: "Nano",
  31194. height: math.unit(1.5, "mm")
  31195. },
  31196. {
  31197. name: "Micro",
  31198. height: math.unit(5.3, "cm"),
  31199. default: true
  31200. },
  31201. {
  31202. name: "Normal",
  31203. height: math.unit(1.85, "meters")
  31204. },
  31205. {
  31206. name: "Macro",
  31207. height: math.unit(64.7, "meters")
  31208. },
  31209. {
  31210. name: "Megamacro",
  31211. height: math.unit(2.26, "km")
  31212. },
  31213. {
  31214. name: "Gigamacro",
  31215. height: math.unit(79, "km")
  31216. },
  31217. {
  31218. name: "Teramacro",
  31219. height: math.unit(2765, "km")
  31220. },
  31221. {
  31222. name: "Petamacro",
  31223. height: math.unit(96678, "km")
  31224. },
  31225. ]
  31226. ))
  31227. characterMakers.push(() => makeCharacter(
  31228. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31229. {
  31230. front: {
  31231. height: math.unit(30, "meters"),
  31232. weight: math.unit(400, "tons"),
  31233. name: "Front",
  31234. image: {
  31235. source: "./media/characters/zeel/front.svg",
  31236. extra: 2599/2599,
  31237. bottom: 226/2825
  31238. }
  31239. },
  31240. },
  31241. [
  31242. {
  31243. name: "Macro",
  31244. height: math.unit(30, "meters"),
  31245. default: true
  31246. },
  31247. ]
  31248. ))
  31249. characterMakers.push(() => makeCharacter(
  31250. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31251. {
  31252. front: {
  31253. height: math.unit(6 + 7/12, "feet"),
  31254. weight: math.unit(210, "lb"),
  31255. name: "Front",
  31256. image: {
  31257. source: "./media/characters/tarn/front.svg",
  31258. extra: 3517/3220,
  31259. bottom: 91/3608
  31260. }
  31261. },
  31262. back: {
  31263. height: math.unit(6 + 7/12, "feet"),
  31264. weight: math.unit(210, "lb"),
  31265. name: "Back",
  31266. image: {
  31267. source: "./media/characters/tarn/back.svg",
  31268. extra: 3566/3241,
  31269. bottom: 34/3600
  31270. }
  31271. },
  31272. dick: {
  31273. height: math.unit(1.65, "feet"),
  31274. name: "Dick",
  31275. image: {
  31276. source: "./media/characters/tarn/dick.svg"
  31277. }
  31278. },
  31279. paw: {
  31280. height: math.unit(1.80, "feet"),
  31281. name: "Paw",
  31282. image: {
  31283. source: "./media/characters/tarn/paw.svg"
  31284. }
  31285. },
  31286. tongue: {
  31287. height: math.unit(0.97, "feet"),
  31288. name: "Tongue",
  31289. image: {
  31290. source: "./media/characters/tarn/tongue.svg"
  31291. }
  31292. },
  31293. },
  31294. [
  31295. {
  31296. name: "Micro",
  31297. height: math.unit(4, "inches")
  31298. },
  31299. {
  31300. name: "Normal",
  31301. height: math.unit(6 + 7/12, "feet"),
  31302. default: true
  31303. },
  31304. {
  31305. name: "Macro",
  31306. height: math.unit(300, "feet")
  31307. },
  31308. ]
  31309. ))
  31310. characterMakers.push(() => makeCharacter(
  31311. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31312. {
  31313. front: {
  31314. height: math.unit(5 + 7/12, "feet"),
  31315. weight: math.unit(80, "kg"),
  31316. name: "Front",
  31317. image: {
  31318. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31319. extra: 3023/2865,
  31320. bottom: 33/3056
  31321. }
  31322. },
  31323. back: {
  31324. height: math.unit(5 + 7/12, "feet"),
  31325. weight: math.unit(80, "kg"),
  31326. name: "Back",
  31327. image: {
  31328. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31329. extra: 3020/2886,
  31330. bottom: 30/3050
  31331. }
  31332. },
  31333. dick: {
  31334. height: math.unit(0.98, "feet"),
  31335. name: "Dick",
  31336. image: {
  31337. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31338. }
  31339. },
  31340. anatomy: {
  31341. height: math.unit(2.86, "feet"),
  31342. name: "Anatomy",
  31343. image: {
  31344. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31345. }
  31346. },
  31347. },
  31348. [
  31349. {
  31350. name: "Really Small",
  31351. height: math.unit(2, "inches")
  31352. },
  31353. {
  31354. name: "Micro",
  31355. height: math.unit(5.583, "inches")
  31356. },
  31357. {
  31358. name: "Normal",
  31359. height: math.unit(5 + 7/12, "feet"),
  31360. default: true
  31361. },
  31362. {
  31363. name: "Macro",
  31364. height: math.unit(67, "feet")
  31365. },
  31366. {
  31367. name: "Megamacro",
  31368. height: math.unit(134, "feet")
  31369. },
  31370. ]
  31371. ))
  31372. characterMakers.push(() => makeCharacter(
  31373. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31374. {
  31375. front: {
  31376. height: math.unit(9, "feet"),
  31377. weight: math.unit(120, "lb"),
  31378. name: "Front",
  31379. image: {
  31380. source: "./media/characters/sally/front.svg",
  31381. extra: 1506/1349,
  31382. bottom: 66/1572
  31383. }
  31384. },
  31385. },
  31386. [
  31387. {
  31388. name: "Normal",
  31389. height: math.unit(9, "feet"),
  31390. default: true
  31391. },
  31392. ]
  31393. ))
  31394. characterMakers.push(() => makeCharacter(
  31395. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31396. {
  31397. front: {
  31398. height: math.unit(8, "feet"),
  31399. weight: math.unit(900, "lb"),
  31400. name: "Front",
  31401. image: {
  31402. source: "./media/characters/owen/front.svg",
  31403. extra: 1761/1657,
  31404. bottom: 74/1835
  31405. }
  31406. },
  31407. side: {
  31408. height: math.unit(8, "feet"),
  31409. weight: math.unit(900, "lb"),
  31410. name: "Side",
  31411. image: {
  31412. source: "./media/characters/owen/side.svg",
  31413. extra: 1797/1734,
  31414. bottom: 30/1827
  31415. }
  31416. },
  31417. back: {
  31418. height: math.unit(8, "feet"),
  31419. weight: math.unit(900, "lb"),
  31420. name: "Back",
  31421. image: {
  31422. source: "./media/characters/owen/back.svg",
  31423. extra: 1796/1706,
  31424. bottom: 59/1855
  31425. }
  31426. },
  31427. maw: {
  31428. height: math.unit(1.76, "feet"),
  31429. name: "Maw",
  31430. image: {
  31431. source: "./media/characters/owen/maw.svg"
  31432. }
  31433. },
  31434. },
  31435. [
  31436. {
  31437. name: "Normal",
  31438. height: math.unit(8, "feet"),
  31439. default: true
  31440. },
  31441. ]
  31442. ))
  31443. characterMakers.push(() => makeCharacter(
  31444. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31445. {
  31446. front: {
  31447. height: math.unit(4, "feet"),
  31448. weight: math.unit(400, "lb"),
  31449. name: "Front",
  31450. image: {
  31451. source: "./media/characters/ryth/front.svg",
  31452. extra: 876/691,
  31453. bottom: 25/901
  31454. }
  31455. },
  31456. goia: {
  31457. height: math.unit(12, "feet"),
  31458. weight: math.unit(10800, "lb"),
  31459. name: "Goia",
  31460. image: {
  31461. source: "./media/characters/ryth/goia.svg",
  31462. extra: 3450/3198,
  31463. bottom: 61/3511
  31464. }
  31465. },
  31466. },
  31467. [
  31468. {
  31469. name: "Normal",
  31470. height: math.unit(4, "feet"),
  31471. default: true
  31472. },
  31473. ]
  31474. ))
  31475. characterMakers.push(() => makeCharacter(
  31476. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31477. {
  31478. front: {
  31479. height: math.unit(7, "feet"),
  31480. weight: math.unit(180, "lb"),
  31481. name: "Front",
  31482. image: {
  31483. source: "./media/characters/necrolance/front.svg",
  31484. extra: 1062/947,
  31485. bottom: 41/1103
  31486. }
  31487. },
  31488. back: {
  31489. height: math.unit(7, "feet"),
  31490. weight: math.unit(180, "lb"),
  31491. name: "Back",
  31492. image: {
  31493. source: "./media/characters/necrolance/back.svg",
  31494. extra: 1045/984,
  31495. bottom: 14/1059
  31496. }
  31497. },
  31498. wing: {
  31499. height: math.unit(2.67, "feet"),
  31500. name: "Wing",
  31501. image: {
  31502. source: "./media/characters/necrolance/wing.svg"
  31503. }
  31504. },
  31505. },
  31506. [
  31507. {
  31508. name: "Normal",
  31509. height: math.unit(7, "feet"),
  31510. default: true
  31511. },
  31512. ]
  31513. ))
  31514. characterMakers.push(() => makeCharacter(
  31515. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31516. {
  31517. front: {
  31518. height: math.unit(76, "meters"),
  31519. weight: math.unit(30000, "tons"),
  31520. name: "Front",
  31521. image: {
  31522. source: "./media/characters/tyler/front.svg",
  31523. extra: 1640/1640,
  31524. bottom: 114/1754
  31525. }
  31526. },
  31527. },
  31528. [
  31529. {
  31530. name: "Macro",
  31531. height: math.unit(76, "meters"),
  31532. default: true
  31533. },
  31534. ]
  31535. ))
  31536. characterMakers.push(() => makeCharacter(
  31537. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31538. {
  31539. front: {
  31540. height: math.unit(4 + 11/12, "feet"),
  31541. weight: math.unit(132, "lb"),
  31542. name: "Front",
  31543. image: {
  31544. source: "./media/characters/icey/front.svg",
  31545. extra: 2750/2550,
  31546. bottom: 33/2783
  31547. }
  31548. },
  31549. back: {
  31550. height: math.unit(4 + 11/12, "feet"),
  31551. weight: math.unit(132, "lb"),
  31552. name: "Back",
  31553. image: {
  31554. source: "./media/characters/icey/back.svg",
  31555. extra: 2624/2481,
  31556. bottom: 35/2659
  31557. }
  31558. },
  31559. },
  31560. [
  31561. {
  31562. name: "Normal",
  31563. height: math.unit(4 + 11/12, "feet"),
  31564. default: true
  31565. },
  31566. ]
  31567. ))
  31568. characterMakers.push(() => makeCharacter(
  31569. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31570. {
  31571. front: {
  31572. height: math.unit(100, "feet"),
  31573. weight: math.unit(0, "lb"),
  31574. name: "Front",
  31575. image: {
  31576. source: "./media/characters/smile/front.svg",
  31577. extra: 2983/2912,
  31578. bottom: 162/3145
  31579. }
  31580. },
  31581. back: {
  31582. height: math.unit(100, "feet"),
  31583. weight: math.unit(0, "lb"),
  31584. name: "Back",
  31585. image: {
  31586. source: "./media/characters/smile/back.svg",
  31587. extra: 3143/3031,
  31588. bottom: 91/3234
  31589. }
  31590. },
  31591. head: {
  31592. height: math.unit(26.3, "feet"),
  31593. weight: math.unit(0, "lb"),
  31594. name: "Head",
  31595. image: {
  31596. source: "./media/characters/smile/head.svg"
  31597. }
  31598. },
  31599. collar: {
  31600. height: math.unit(5.3, "feet"),
  31601. weight: math.unit(0, "lb"),
  31602. name: "Collar",
  31603. image: {
  31604. source: "./media/characters/smile/collar.svg"
  31605. }
  31606. },
  31607. },
  31608. [
  31609. {
  31610. name: "Macro",
  31611. height: math.unit(100, "feet"),
  31612. default: true
  31613. },
  31614. ]
  31615. ))
  31616. characterMakers.push(() => makeCharacter(
  31617. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31618. {
  31619. dragon: {
  31620. height: math.unit(26, "feet"),
  31621. weight: math.unit(36, "tons"),
  31622. name: "Dragon",
  31623. image: {
  31624. source: "./media/characters/arimphae/dragon.svg",
  31625. extra: 1574/983,
  31626. bottom: 357/1931
  31627. }
  31628. },
  31629. drake: {
  31630. height: math.unit(9, "feet"),
  31631. weight: math.unit(1.5, "tons"),
  31632. name: "Drake",
  31633. image: {
  31634. source: "./media/characters/arimphae/drake.svg",
  31635. extra: 1120/925,
  31636. bottom: 435/1555
  31637. }
  31638. },
  31639. },
  31640. [
  31641. {
  31642. name: "Small",
  31643. height: math.unit(26*5/9, "feet")
  31644. },
  31645. {
  31646. name: "Normal",
  31647. height: math.unit(26, "feet"),
  31648. default: true
  31649. },
  31650. ]
  31651. ))
  31652. characterMakers.push(() => makeCharacter(
  31653. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31654. {
  31655. front: {
  31656. height: math.unit(8 + 9/12, "feet"),
  31657. name: "Front",
  31658. image: {
  31659. source: "./media/characters/xander/front.svg",
  31660. extra: 848/673,
  31661. bottom: 62/910
  31662. }
  31663. },
  31664. },
  31665. [
  31666. {
  31667. name: "Normal",
  31668. height: math.unit(8 + 9/12, "feet"),
  31669. default: true
  31670. },
  31671. {
  31672. name: "Gaze Grabber",
  31673. height: math.unit(13 + 8/12, "feet")
  31674. },
  31675. {
  31676. name: "Jaw Dropper",
  31677. height: math.unit(27, "feet")
  31678. },
  31679. {
  31680. name: "Show Stopper",
  31681. height: math.unit(136, "feet")
  31682. },
  31683. {
  31684. name: "Superstar",
  31685. height: math.unit(1.9e6, "miles")
  31686. },
  31687. ]
  31688. ))
  31689. characterMakers.push(() => makeCharacter(
  31690. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31691. {
  31692. side: {
  31693. height: math.unit(2100, "feet"),
  31694. name: "Side",
  31695. image: {
  31696. source: "./media/characters/osiris/side.svg",
  31697. extra: 1105/939,
  31698. bottom: 167/1272
  31699. }
  31700. },
  31701. },
  31702. [
  31703. {
  31704. name: "Macro",
  31705. height: math.unit(2100, "feet"),
  31706. default: true
  31707. },
  31708. ]
  31709. ))
  31710. characterMakers.push(() => makeCharacter(
  31711. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31712. {
  31713. front: {
  31714. height: math.unit(6 + 8/12, "feet"),
  31715. weight: math.unit(225, "lb"),
  31716. name: "Front",
  31717. image: {
  31718. source: "./media/characters/rhys-londe/front.svg",
  31719. extra: 2258/2141,
  31720. bottom: 188/2446
  31721. }
  31722. },
  31723. back: {
  31724. height: math.unit(6 + 8/12, "feet"),
  31725. weight: math.unit(225, "lb"),
  31726. name: "Back",
  31727. image: {
  31728. source: "./media/characters/rhys-londe/back.svg",
  31729. extra: 2237/2137,
  31730. bottom: 63/2300
  31731. }
  31732. },
  31733. frontNsfw: {
  31734. height: math.unit(6 + 8/12, "feet"),
  31735. weight: math.unit(225, "lb"),
  31736. name: "Front (NSFW)",
  31737. image: {
  31738. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31739. extra: 2258/2141,
  31740. bottom: 188/2446
  31741. }
  31742. },
  31743. backNsfw: {
  31744. height: math.unit(6 + 8/12, "feet"),
  31745. weight: math.unit(225, "lb"),
  31746. name: "Back (NSFW)",
  31747. image: {
  31748. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31749. extra: 2237/2137,
  31750. bottom: 63/2300
  31751. }
  31752. },
  31753. dick: {
  31754. height: math.unit(30, "inches"),
  31755. name: "Dick",
  31756. image: {
  31757. source: "./media/characters/rhys-londe/dick.svg"
  31758. }
  31759. },
  31760. maw: {
  31761. height: math.unit(1.6, "feet"),
  31762. name: "Maw",
  31763. image: {
  31764. source: "./media/characters/rhys-londe/maw.svg"
  31765. }
  31766. },
  31767. },
  31768. [
  31769. {
  31770. name: "Normal",
  31771. height: math.unit(6 + 8/12, "feet"),
  31772. default: true
  31773. },
  31774. ]
  31775. ))
  31776. characterMakers.push(() => makeCharacter(
  31777. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31778. {
  31779. front: {
  31780. height: math.unit(3 + 10/12, "feet"),
  31781. weight: math.unit(90, "lb"),
  31782. name: "Front",
  31783. image: {
  31784. source: "./media/characters/taivas-ensim/front.svg",
  31785. extra: 1327/1216,
  31786. bottom: 96/1423
  31787. }
  31788. },
  31789. back: {
  31790. height: math.unit(3 + 10/12, "feet"),
  31791. weight: math.unit(90, "lb"),
  31792. name: "Back",
  31793. image: {
  31794. source: "./media/characters/taivas-ensim/back.svg",
  31795. extra: 1355/1247,
  31796. bottom: 11/1366
  31797. }
  31798. },
  31799. frontNsfw: {
  31800. height: math.unit(3 + 10/12, "feet"),
  31801. weight: math.unit(90, "lb"),
  31802. name: "Front (NSFW)",
  31803. image: {
  31804. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31805. extra: 1327/1216,
  31806. bottom: 96/1423
  31807. }
  31808. },
  31809. backNsfw: {
  31810. height: math.unit(3 + 10/12, "feet"),
  31811. weight: math.unit(90, "lb"),
  31812. name: "Back (NSFW)",
  31813. image: {
  31814. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31815. extra: 1355/1247,
  31816. bottom: 11/1366
  31817. }
  31818. },
  31819. },
  31820. [
  31821. {
  31822. name: "Normal",
  31823. height: math.unit(3 + 10/12, "feet"),
  31824. default: true
  31825. },
  31826. ]
  31827. ))
  31828. characterMakers.push(() => makeCharacter(
  31829. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31830. {
  31831. front: {
  31832. height: math.unit(9 + 6/12, "feet"),
  31833. weight: math.unit(940, "lb"),
  31834. name: "Front",
  31835. image: {
  31836. source: "./media/characters/byliss/front.svg",
  31837. extra: 1327/1290,
  31838. bottom: 82/1409
  31839. }
  31840. },
  31841. back: {
  31842. height: math.unit(9 + 6/12, "feet"),
  31843. weight: math.unit(940, "lb"),
  31844. name: "Back",
  31845. image: {
  31846. source: "./media/characters/byliss/back.svg",
  31847. extra: 1376/1349,
  31848. bottom: 9/1385
  31849. }
  31850. },
  31851. frontNsfw: {
  31852. height: math.unit(9 + 6/12, "feet"),
  31853. weight: math.unit(940, "lb"),
  31854. name: "Front (NSFW)",
  31855. image: {
  31856. source: "./media/characters/byliss/front-nsfw.svg",
  31857. extra: 1327/1290,
  31858. bottom: 82/1409
  31859. }
  31860. },
  31861. backNsfw: {
  31862. height: math.unit(9 + 6/12, "feet"),
  31863. weight: math.unit(940, "lb"),
  31864. name: "Back (NSFW)",
  31865. image: {
  31866. source: "./media/characters/byliss/back-nsfw.svg",
  31867. extra: 1376/1349,
  31868. bottom: 9/1385
  31869. }
  31870. },
  31871. },
  31872. [
  31873. {
  31874. name: "Normal",
  31875. height: math.unit(9 + 6/12, "feet"),
  31876. default: true
  31877. },
  31878. ]
  31879. ))
  31880. characterMakers.push(() => makeCharacter(
  31881. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31882. {
  31883. front: {
  31884. height: math.unit(5 + 2/12, "feet"),
  31885. weight: math.unit(200, "lb"),
  31886. name: "Front",
  31887. image: {
  31888. source: "./media/characters/noraly/front.svg",
  31889. extra: 4985/4773,
  31890. bottom: 150/5135
  31891. }
  31892. },
  31893. full: {
  31894. height: math.unit(5 + 2/12, "feet"),
  31895. weight: math.unit(164, "lb"),
  31896. name: "Full",
  31897. image: {
  31898. source: "./media/characters/noraly/full.svg",
  31899. extra: 1114/1059,
  31900. bottom: 35/1149
  31901. }
  31902. },
  31903. fuller: {
  31904. height: math.unit(5 + 2/12, "feet"),
  31905. weight: math.unit(230, "lb"),
  31906. name: "Fuller",
  31907. image: {
  31908. source: "./media/characters/noraly/fuller.svg",
  31909. extra: 1114/1059,
  31910. bottom: 35/1149
  31911. }
  31912. },
  31913. fullest: {
  31914. height: math.unit(5 + 2/12, "feet"),
  31915. weight: math.unit(300, "lb"),
  31916. name: "Fullest",
  31917. image: {
  31918. source: "./media/characters/noraly/fullest.svg",
  31919. extra: 1114/1059,
  31920. bottom: 35/1149
  31921. }
  31922. },
  31923. },
  31924. [
  31925. {
  31926. name: "Normal",
  31927. height: math.unit(5 + 2/12, "feet"),
  31928. default: true
  31929. },
  31930. ]
  31931. ))
  31932. characterMakers.push(() => makeCharacter(
  31933. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31934. {
  31935. front: {
  31936. height: math.unit(5 + 2/12, "feet"),
  31937. weight: math.unit(210, "lb"),
  31938. name: "Front",
  31939. image: {
  31940. source: "./media/characters/pera/front.svg",
  31941. extra: 1560/1531,
  31942. bottom: 165/1725
  31943. }
  31944. },
  31945. back: {
  31946. height: math.unit(5 + 2/12, "feet"),
  31947. weight: math.unit(210, "lb"),
  31948. name: "Back",
  31949. image: {
  31950. source: "./media/characters/pera/back.svg",
  31951. extra: 1523/1493,
  31952. bottom: 152/1675
  31953. }
  31954. },
  31955. dick: {
  31956. height: math.unit(2.4, "feet"),
  31957. name: "Dick",
  31958. image: {
  31959. source: "./media/characters/pera/dick.svg"
  31960. }
  31961. },
  31962. },
  31963. [
  31964. {
  31965. name: "Normal",
  31966. height: math.unit(5 + 2/12, "feet"),
  31967. default: true
  31968. },
  31969. ]
  31970. ))
  31971. characterMakers.push(() => makeCharacter(
  31972. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31973. {
  31974. front: {
  31975. height: math.unit(12, "feet"),
  31976. weight: math.unit(3200, "lb"),
  31977. name: "Front",
  31978. image: {
  31979. source: "./media/characters/julian/front.svg",
  31980. extra: 2962/2701,
  31981. bottom: 184/3146
  31982. }
  31983. },
  31984. maw: {
  31985. height: math.unit(5.35, "feet"),
  31986. name: "Maw",
  31987. image: {
  31988. source: "./media/characters/julian/maw.svg"
  31989. }
  31990. },
  31991. paw: {
  31992. height: math.unit(3.07, "feet"),
  31993. name: "Paw",
  31994. image: {
  31995. source: "./media/characters/julian/paw.svg"
  31996. }
  31997. },
  31998. },
  31999. [
  32000. {
  32001. name: "Default",
  32002. height: math.unit(12, "feet"),
  32003. default: true
  32004. },
  32005. {
  32006. name: "Big",
  32007. height: math.unit(50, "feet")
  32008. },
  32009. {
  32010. name: "Really Big",
  32011. height: math.unit(1, "mile")
  32012. },
  32013. {
  32014. name: "Extremely Big",
  32015. height: math.unit(100, "miles")
  32016. },
  32017. {
  32018. name: "Planet Hugger",
  32019. height: math.unit(200, "megameters")
  32020. },
  32021. {
  32022. name: "Unreasonably Big",
  32023. height: math.unit(1e300, "meters")
  32024. },
  32025. ]
  32026. ))
  32027. characterMakers.push(() => makeCharacter(
  32028. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32029. {
  32030. solgooleo: {
  32031. height: math.unit(4, "meters"),
  32032. weight: math.unit(6000*1.5, "kg"),
  32033. volume: math.unit(6000, "liters"),
  32034. name: "Solgooleo",
  32035. image: {
  32036. source: "./media/characters/pi/solgooleo.svg",
  32037. extra: 388/331,
  32038. bottom: 29/417
  32039. }
  32040. },
  32041. },
  32042. [
  32043. {
  32044. name: "Normal",
  32045. height: math.unit(4, "meters"),
  32046. default: true
  32047. },
  32048. ]
  32049. ))
  32050. characterMakers.push(() => makeCharacter(
  32051. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32052. {
  32053. front: {
  32054. height: math.unit(8 + 2/12, "feet"),
  32055. weight: math.unit(4, "tons"),
  32056. name: "Front",
  32057. image: {
  32058. source: "./media/characters/shaun/front.svg",
  32059. extra: 1550/1505,
  32060. bottom: 353/1903
  32061. }
  32062. },
  32063. },
  32064. [
  32065. {
  32066. name: "Lorg",
  32067. height: math.unit(8 + 2/12, "feet"),
  32068. default: true
  32069. },
  32070. ]
  32071. ))
  32072. characterMakers.push(() => makeCharacter(
  32073. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32074. {
  32075. front: {
  32076. height: math.unit(7, "feet"),
  32077. name: "Front",
  32078. image: {
  32079. source: "./media/characters/sini/front.svg",
  32080. extra: 726/678,
  32081. bottom: 35/761
  32082. }
  32083. },
  32084. back: {
  32085. height: math.unit(7, "feet"),
  32086. name: "Back",
  32087. image: {
  32088. source: "./media/characters/sini/back.svg",
  32089. extra: 743/701,
  32090. bottom: 12/755
  32091. }
  32092. },
  32093. mawAnthro: {
  32094. height: math.unit(2.14, "feet"),
  32095. name: "Maw (Anthro)",
  32096. image: {
  32097. source: "./media/characters/sini/maw-anthro.svg"
  32098. }
  32099. },
  32100. dick: {
  32101. height: math.unit(1.45, "feet"),
  32102. name: "Dick (Anthro)",
  32103. image: {
  32104. source: "./media/characters/sini/dick-anthro.svg"
  32105. }
  32106. },
  32107. feral: {
  32108. height: math.unit(13, "feet"),
  32109. name: "Feral",
  32110. image: {
  32111. source: "./media/characters/sini/feral.svg",
  32112. extra: 814/605,
  32113. bottom: 11/825
  32114. }
  32115. },
  32116. mawFeral: {
  32117. height: math.unit(4.6, "feet"),
  32118. name: "Maw-feral",
  32119. image: {
  32120. source: "./media/characters/sini/maw-feral.svg"
  32121. }
  32122. },
  32123. footFeral: {
  32124. height: math.unit(4.2, "feet"),
  32125. name: "Foot-feral",
  32126. image: {
  32127. source: "./media/characters/sini/foot-feral.svg"
  32128. }
  32129. },
  32130. },
  32131. [
  32132. {
  32133. name: "Normal",
  32134. height: math.unit(7, "feet"),
  32135. default: true
  32136. },
  32137. ]
  32138. ))
  32139. characterMakers.push(() => makeCharacter(
  32140. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32141. {
  32142. side: {
  32143. height: math.unit(13, "meters"),
  32144. weight: math.unit(9072, "kg"),
  32145. name: "Side",
  32146. image: {
  32147. source: "./media/characters/raylldo/side.svg",
  32148. extra: 403/344,
  32149. bottom: 42/445
  32150. }
  32151. },
  32152. leaping: {
  32153. height: math.unit(12.3, "meters"),
  32154. weight: math.unit(9072, "kg"),
  32155. name: "Leaping",
  32156. image: {
  32157. source: "./media/characters/raylldo/leaping.svg",
  32158. extra: 470/249,
  32159. bottom: 13/483
  32160. }
  32161. },
  32162. flying: {
  32163. height: math.unit(18, "meters"),
  32164. weight: math.unit(9072, "kg"),
  32165. name: "Flying",
  32166. image: {
  32167. source: "./media/characters/raylldo/flying.svg"
  32168. }
  32169. },
  32170. head: {
  32171. height: math.unit(5.85, "meters"),
  32172. name: "Head",
  32173. image: {
  32174. source: "./media/characters/raylldo/head.svg"
  32175. }
  32176. },
  32177. maw: {
  32178. height: math.unit(5.32, "meters"),
  32179. name: "Maw",
  32180. image: {
  32181. source: "./media/characters/raylldo/maw.svg"
  32182. }
  32183. },
  32184. eye: {
  32185. height: math.unit(0.54, "meters"),
  32186. name: "Eye",
  32187. image: {
  32188. source: "./media/characters/raylldo/eye.svg"
  32189. }
  32190. },
  32191. },
  32192. [
  32193. {
  32194. name: "Normal",
  32195. height: math.unit(13, "meters"),
  32196. default: true
  32197. },
  32198. ]
  32199. ))
  32200. characterMakers.push(() => makeCharacter(
  32201. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32202. {
  32203. anthroFront: {
  32204. height: math.unit(9, "feet"),
  32205. weight: math.unit(600, "lb"),
  32206. name: "Anthro (Front)",
  32207. image: {
  32208. source: "./media/characters/glint/anthro-front.svg",
  32209. extra: 1097/1018,
  32210. bottom: 28/1125
  32211. }
  32212. },
  32213. anthroBack: {
  32214. height: math.unit(9, "feet"),
  32215. weight: math.unit(600, "lb"),
  32216. name: "Anthro (Back)",
  32217. image: {
  32218. source: "./media/characters/glint/anthro-back.svg",
  32219. extra: 1154/997,
  32220. bottom: 36/1190
  32221. }
  32222. },
  32223. feral: {
  32224. height: math.unit(11, "feet"),
  32225. weight: math.unit(50000, "lb"),
  32226. name: "Feral",
  32227. image: {
  32228. source: "./media/characters/glint/feral.svg",
  32229. extra: 3035/1585,
  32230. bottom: 1169/4204
  32231. }
  32232. },
  32233. dickAnthro: {
  32234. height: math.unit(0.7, "meters"),
  32235. name: "Dick (Anthro)",
  32236. image: {
  32237. source: "./media/characters/glint/dick-anthro.svg"
  32238. }
  32239. },
  32240. dickFeral: {
  32241. height: math.unit(2.65, "meters"),
  32242. name: "Dick (Feral)",
  32243. image: {
  32244. source: "./media/characters/glint/dick-feral.svg"
  32245. }
  32246. },
  32247. slitHidden: {
  32248. height: math.unit(5.85, "meters"),
  32249. name: "Slit (Hidden)",
  32250. image: {
  32251. source: "./media/characters/glint/slit-hidden.svg"
  32252. }
  32253. },
  32254. slitErect: {
  32255. height: math.unit(5.85, "meters"),
  32256. name: "Slit (Erect)",
  32257. image: {
  32258. source: "./media/characters/glint/slit-erect.svg"
  32259. }
  32260. },
  32261. mawAnthro: {
  32262. height: math.unit(0.63, "meters"),
  32263. name: "Maw (Anthro)",
  32264. image: {
  32265. source: "./media/characters/glint/maw.svg"
  32266. }
  32267. },
  32268. mawFeral: {
  32269. height: math.unit(2.89, "meters"),
  32270. name: "Maw (Feral)",
  32271. image: {
  32272. source: "./media/characters/glint/maw.svg"
  32273. }
  32274. },
  32275. },
  32276. [
  32277. {
  32278. name: "Normal",
  32279. height: math.unit(9, "feet"),
  32280. default: true
  32281. },
  32282. ]
  32283. ))
  32284. characterMakers.push(() => makeCharacter(
  32285. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32286. {
  32287. side: {
  32288. height: math.unit(15, "feet"),
  32289. weight: math.unit(5000, "kg"),
  32290. name: "Side",
  32291. image: {
  32292. source: "./media/characters/kairne/side.svg",
  32293. extra: 979/811,
  32294. bottom: 13/992
  32295. }
  32296. },
  32297. front: {
  32298. height: math.unit(15, "feet"),
  32299. weight: math.unit(5000, "kg"),
  32300. name: "Front",
  32301. image: {
  32302. source: "./media/characters/kairne/front.svg",
  32303. extra: 908/814,
  32304. bottom: 26/934
  32305. }
  32306. },
  32307. sideNsfw: {
  32308. height: math.unit(15, "feet"),
  32309. weight: math.unit(5000, "kg"),
  32310. name: "Side (NSFW)",
  32311. image: {
  32312. source: "./media/characters/kairne/side-nsfw.svg",
  32313. extra: 979/811,
  32314. bottom: 13/992
  32315. }
  32316. },
  32317. frontNsfw: {
  32318. height: math.unit(15, "feet"),
  32319. weight: math.unit(5000, "kg"),
  32320. name: "Front (NSFW)",
  32321. image: {
  32322. source: "./media/characters/kairne/front-nsfw.svg",
  32323. extra: 908/814,
  32324. bottom: 26/934
  32325. }
  32326. },
  32327. dickCaged: {
  32328. height: math.unit(0.65, "meters"),
  32329. name: "Dick-caged",
  32330. image: {
  32331. source: "./media/characters/kairne/dick-caged.svg"
  32332. }
  32333. },
  32334. dick: {
  32335. height: math.unit(0.79, "meters"),
  32336. name: "Dick",
  32337. image: {
  32338. source: "./media/characters/kairne/dick.svg"
  32339. }
  32340. },
  32341. genitals: {
  32342. height: math.unit(1.29, "meters"),
  32343. name: "Genitals",
  32344. image: {
  32345. source: "./media/characters/kairne/genitals.svg"
  32346. }
  32347. },
  32348. maw: {
  32349. height: math.unit(1.73, "meters"),
  32350. name: "Maw",
  32351. image: {
  32352. source: "./media/characters/kairne/maw.svg"
  32353. }
  32354. },
  32355. },
  32356. [
  32357. {
  32358. name: "Normal",
  32359. height: math.unit(15, "feet"),
  32360. default: true
  32361. },
  32362. ]
  32363. ))
  32364. characterMakers.push(() => makeCharacter(
  32365. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32366. {
  32367. front: {
  32368. height: math.unit(5 + 8/12, "feet"),
  32369. weight: math.unit(139, "lb"),
  32370. name: "Front",
  32371. image: {
  32372. source: "./media/characters/biscuit-jackal/front.svg",
  32373. extra: 2106/1961,
  32374. bottom: 58/2164
  32375. }
  32376. },
  32377. back: {
  32378. height: math.unit(5 + 8/12, "feet"),
  32379. weight: math.unit(139, "lb"),
  32380. name: "Back",
  32381. image: {
  32382. source: "./media/characters/biscuit-jackal/back.svg",
  32383. extra: 2132/1976,
  32384. bottom: 57/2189
  32385. }
  32386. },
  32387. werejackal: {
  32388. height: math.unit(6 + 3/12, "feet"),
  32389. weight: math.unit(188, "lb"),
  32390. name: "Werejackal",
  32391. image: {
  32392. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32393. extra: 2373/2178,
  32394. bottom: 53/2426
  32395. }
  32396. },
  32397. },
  32398. [
  32399. {
  32400. name: "Normal",
  32401. height: math.unit(5 + 8/12, "feet"),
  32402. default: true
  32403. },
  32404. ]
  32405. ))
  32406. characterMakers.push(() => makeCharacter(
  32407. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32408. {
  32409. front: {
  32410. height: math.unit(140, "cm"),
  32411. weight: math.unit(45, "kg"),
  32412. name: "Front",
  32413. image: {
  32414. source: "./media/characters/tayra-white/front.svg",
  32415. extra: 2229/2192,
  32416. bottom: 75/2304
  32417. }
  32418. },
  32419. },
  32420. [
  32421. {
  32422. name: "Normal",
  32423. height: math.unit(140, "cm"),
  32424. default: true
  32425. },
  32426. ]
  32427. ))
  32428. characterMakers.push(() => makeCharacter(
  32429. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32430. {
  32431. front: {
  32432. height: math.unit(4 + 5/12, "feet"),
  32433. name: "Front",
  32434. image: {
  32435. source: "./media/characters/scoop/front.svg",
  32436. extra: 1257/1136,
  32437. bottom: 69/1326
  32438. }
  32439. },
  32440. back: {
  32441. height: math.unit(4 + 5/12, "feet"),
  32442. name: "Back",
  32443. image: {
  32444. source: "./media/characters/scoop/back.svg",
  32445. extra: 1321/1152,
  32446. bottom: 32/1353
  32447. }
  32448. },
  32449. maw: {
  32450. height: math.unit(0.68, "feet"),
  32451. name: "Maw",
  32452. image: {
  32453. source: "./media/characters/scoop/maw.svg"
  32454. }
  32455. },
  32456. },
  32457. [
  32458. {
  32459. name: "Really Small",
  32460. height: math.unit(1, "mm")
  32461. },
  32462. {
  32463. name: "Micro",
  32464. height: math.unit(1, "inch")
  32465. },
  32466. {
  32467. name: "Normal",
  32468. height: math.unit(4 + 5/12, "feet"),
  32469. default: true
  32470. },
  32471. {
  32472. name: "Macro",
  32473. height: math.unit(200, "feet")
  32474. },
  32475. {
  32476. name: "Megamacro",
  32477. height: math.unit(3240, "feet")
  32478. },
  32479. {
  32480. name: "Teramacro",
  32481. height: math.unit(2500, "miles")
  32482. },
  32483. ]
  32484. ))
  32485. characterMakers.push(() => makeCharacter(
  32486. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32487. {
  32488. front: {
  32489. height: math.unit(15 + 7/12, "feet"),
  32490. name: "Front",
  32491. image: {
  32492. source: "./media/characters/saphinara/front.svg",
  32493. extra: 604/546,
  32494. bottom: 19/623
  32495. }
  32496. },
  32497. side: {
  32498. height: math.unit(15 + 7/12, "feet"),
  32499. name: "Side",
  32500. image: {
  32501. source: "./media/characters/saphinara/side.svg",
  32502. extra: 605/547,
  32503. bottom: 6/611
  32504. }
  32505. },
  32506. back: {
  32507. height: math.unit(15 + 7/12, "feet"),
  32508. name: "Back",
  32509. image: {
  32510. source: "./media/characters/saphinara/back.svg",
  32511. extra: 591/531,
  32512. bottom: 13/604
  32513. }
  32514. },
  32515. frontTail: {
  32516. height: math.unit(15 + 7/12, "feet"),
  32517. name: "Front (Full Tail)",
  32518. image: {
  32519. source: "./media/characters/saphinara/front-tail.svg",
  32520. extra: 748/547,
  32521. bottom: 66/814
  32522. }
  32523. },
  32524. },
  32525. [
  32526. {
  32527. name: "Normal",
  32528. height: math.unit(15 + 7/12, "feet"),
  32529. default: true
  32530. },
  32531. {
  32532. name: "Angry",
  32533. height: math.unit(30 + 6/12, "feet")
  32534. },
  32535. {
  32536. name: "Enraged",
  32537. height: math.unit(102 + 1/12, "feet")
  32538. },
  32539. ]
  32540. ))
  32541. characterMakers.push(() => makeCharacter(
  32542. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32543. {
  32544. front: {
  32545. height: math.unit(6 + 8/12, "feet"),
  32546. weight: math.unit(300, "lb"),
  32547. name: "Front",
  32548. image: {
  32549. source: "./media/characters/jrain/front.svg",
  32550. extra: 3039/2865,
  32551. bottom: 399/3438
  32552. }
  32553. },
  32554. back: {
  32555. height: math.unit(6 + 8/12, "feet"),
  32556. weight: math.unit(300, "lb"),
  32557. name: "Back",
  32558. image: {
  32559. source: "./media/characters/jrain/back.svg",
  32560. extra: 3089/2938,
  32561. bottom: 172/3261
  32562. }
  32563. },
  32564. head: {
  32565. height: math.unit(2.14, "feet"),
  32566. name: "Head",
  32567. image: {
  32568. source: "./media/characters/jrain/head.svg"
  32569. }
  32570. },
  32571. maw: {
  32572. height: math.unit(1.77, "feet"),
  32573. name: "Maw",
  32574. image: {
  32575. source: "./media/characters/jrain/maw.svg"
  32576. }
  32577. },
  32578. leftHand: {
  32579. height: math.unit(1.1, "feet"),
  32580. name: "Left Hand",
  32581. image: {
  32582. source: "./media/characters/jrain/left-hand.svg"
  32583. }
  32584. },
  32585. rightHand: {
  32586. height: math.unit(1.1, "feet"),
  32587. name: "Right Hand",
  32588. image: {
  32589. source: "./media/characters/jrain/right-hand.svg"
  32590. }
  32591. },
  32592. eye: {
  32593. height: math.unit(0.35, "feet"),
  32594. name: "Eye",
  32595. image: {
  32596. source: "./media/characters/jrain/eye.svg"
  32597. }
  32598. },
  32599. },
  32600. [
  32601. {
  32602. name: "Normal",
  32603. height: math.unit(6 + 8/12, "feet"),
  32604. default: true
  32605. },
  32606. {
  32607. name: "Casually Large",
  32608. height: math.unit(25, "feet")
  32609. },
  32610. {
  32611. name: "Giant",
  32612. height: math.unit(100, "feet")
  32613. },
  32614. {
  32615. name: "Kaiju",
  32616. height: math.unit(300, "feet")
  32617. },
  32618. ]
  32619. ))
  32620. characterMakers.push(() => makeCharacter(
  32621. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32622. {
  32623. dragon: {
  32624. height: math.unit(5, "meters"),
  32625. name: "Dragon",
  32626. image: {
  32627. source: "./media/characters/sabrina/dragon.svg",
  32628. extra: 3670 / 2365,
  32629. bottom: 333 / 4003
  32630. }
  32631. },
  32632. gryphon: {
  32633. height: math.unit(3, "meters"),
  32634. name: "Gryphon",
  32635. image: {
  32636. source: "./media/characters/sabrina/gryphon.svg",
  32637. extra: 1576 / 945,
  32638. bottom: 71 / 1647
  32639. }
  32640. },
  32641. snake: {
  32642. height: math.unit(12, "meters"),
  32643. name: "Snake",
  32644. image: {
  32645. source: "./media/characters/sabrina/snake.svg",
  32646. extra: 1758 / 1320,
  32647. bottom: 186 / 1944
  32648. }
  32649. },
  32650. collar: {
  32651. height: math.unit(1.86, "meters"),
  32652. name: "Collar",
  32653. image: {
  32654. source: "./media/characters/sabrina/collar.svg"
  32655. }
  32656. },
  32657. eye: {
  32658. height: math.unit(0.53, "meters"),
  32659. name: "Eye",
  32660. image: {
  32661. source: "./media/characters/sabrina/eye.svg"
  32662. }
  32663. },
  32664. foot: {
  32665. height: math.unit(1.86, "meters"),
  32666. name: "Foot",
  32667. image: {
  32668. source: "./media/characters/sabrina/foot.svg"
  32669. }
  32670. },
  32671. hand: {
  32672. height: math.unit(1.32, "meters"),
  32673. name: "Hand",
  32674. image: {
  32675. source: "./media/characters/sabrina/hand.svg"
  32676. }
  32677. },
  32678. head: {
  32679. height: math.unit(2.44, "meters"),
  32680. name: "Head",
  32681. image: {
  32682. source: "./media/characters/sabrina/head.svg"
  32683. }
  32684. },
  32685. headAngry: {
  32686. height: math.unit(2.44, "meters"),
  32687. name: "Head (Angry))",
  32688. image: {
  32689. source: "./media/characters/sabrina/head-angry.svg"
  32690. }
  32691. },
  32692. maw: {
  32693. height: math.unit(1.65, "meters"),
  32694. name: "Maw",
  32695. image: {
  32696. source: "./media/characters/sabrina/maw.svg"
  32697. }
  32698. },
  32699. spikes: {
  32700. height: math.unit(1.69, "meters"),
  32701. name: "Spikes",
  32702. image: {
  32703. source: "./media/characters/sabrina/spikes.svg"
  32704. }
  32705. },
  32706. stomach: {
  32707. height: math.unit(1.15, "meters"),
  32708. name: "Stomach",
  32709. image: {
  32710. source: "./media/characters/sabrina/stomach.svg"
  32711. }
  32712. },
  32713. tongue: {
  32714. height: math.unit(1.27, "meters"),
  32715. name: "Tongue",
  32716. image: {
  32717. source: "./media/characters/sabrina/tongue.svg"
  32718. }
  32719. },
  32720. wingDorsal: {
  32721. height: math.unit(4.85, "meters"),
  32722. name: "Wing (Dorsal)",
  32723. image: {
  32724. source: "./media/characters/sabrina/wing-dorsal.svg"
  32725. }
  32726. },
  32727. wingVentral: {
  32728. height: math.unit(4.85, "meters"),
  32729. name: "Wing (Ventral)",
  32730. image: {
  32731. source: "./media/characters/sabrina/wing-ventral.svg"
  32732. }
  32733. },
  32734. },
  32735. [
  32736. {
  32737. name: "Normal",
  32738. height: math.unit(5, "meters"),
  32739. default: true
  32740. },
  32741. ]
  32742. ))
  32743. characterMakers.push(() => makeCharacter(
  32744. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32745. {
  32746. frontMaid: {
  32747. height: math.unit(5 + 5/12, "feet"),
  32748. weight: math.unit(130, "lb"),
  32749. name: "Front (Maid)",
  32750. image: {
  32751. source: "./media/characters/midnight-tales/front-maid.svg",
  32752. extra: 489/454,
  32753. bottom: 61/550
  32754. }
  32755. },
  32756. frontFormal: {
  32757. height: math.unit(5 + 5/12, "feet"),
  32758. weight: math.unit(130, "lb"),
  32759. name: "Front (Formal)",
  32760. image: {
  32761. source: "./media/characters/midnight-tales/front-formal.svg",
  32762. extra: 489/454,
  32763. bottom: 61/550
  32764. }
  32765. },
  32766. back: {
  32767. height: math.unit(5 + 5/12, "feet"),
  32768. weight: math.unit(130, "lb"),
  32769. name: "Back",
  32770. image: {
  32771. source: "./media/characters/midnight-tales/back.svg",
  32772. extra: 498/456,
  32773. bottom: 33/531
  32774. }
  32775. },
  32776. frontBeast: {
  32777. height: math.unit(40, "feet"),
  32778. weight: math.unit(64000, "lb"),
  32779. name: "Front (Beast)",
  32780. image: {
  32781. source: "./media/characters/midnight-tales/front-beast.svg",
  32782. extra: 927/860,
  32783. bottom: 53/980
  32784. }
  32785. },
  32786. backBeast: {
  32787. height: math.unit(40, "feet"),
  32788. weight: math.unit(64000, "lb"),
  32789. name: "Back (Beast)",
  32790. image: {
  32791. source: "./media/characters/midnight-tales/back-beast.svg",
  32792. extra: 929/855,
  32793. bottom: 16/945
  32794. }
  32795. },
  32796. footBeast: {
  32797. height: math.unit(6.7, "feet"),
  32798. name: "Foot (Beast)",
  32799. image: {
  32800. source: "./media/characters/midnight-tales/foot-beast.svg"
  32801. }
  32802. },
  32803. headBeast: {
  32804. height: math.unit(8, "feet"),
  32805. name: "Head (Beast)",
  32806. image: {
  32807. source: "./media/characters/midnight-tales/head-beast.svg"
  32808. }
  32809. },
  32810. },
  32811. [
  32812. {
  32813. name: "Normal",
  32814. height: math.unit(5 + 5 / 12, "feet"),
  32815. default: true
  32816. },
  32817. {
  32818. name: "Macro",
  32819. height: math.unit(25, "feet")
  32820. },
  32821. ]
  32822. ))
  32823. characterMakers.push(() => makeCharacter(
  32824. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32825. {
  32826. front: {
  32827. height: math.unit(5 + 10/12, "feet"),
  32828. name: "Front",
  32829. image: {
  32830. source: "./media/characters/argon/front.svg",
  32831. extra: 2009/1935,
  32832. bottom: 118/2127
  32833. }
  32834. },
  32835. back: {
  32836. height: math.unit(5 + 10/12, "feet"),
  32837. name: "Back",
  32838. image: {
  32839. source: "./media/characters/argon/back.svg",
  32840. extra: 2047/1992,
  32841. bottom: 20/2067
  32842. }
  32843. },
  32844. frontDressed: {
  32845. height: math.unit(5 + 10/12, "feet"),
  32846. name: "Front (Dressed)",
  32847. image: {
  32848. source: "./media/characters/argon/front-dressed.svg",
  32849. extra: 2009/1935,
  32850. bottom: 118/2127
  32851. }
  32852. },
  32853. },
  32854. [
  32855. {
  32856. name: "Normal",
  32857. height: math.unit(5 + 10/12, "feet"),
  32858. default: true
  32859. },
  32860. ]
  32861. ))
  32862. characterMakers.push(() => makeCharacter(
  32863. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32864. {
  32865. front: {
  32866. height: math.unit(8 + 6/12, "feet"),
  32867. weight: math.unit(1150, "lb"),
  32868. name: "Front",
  32869. image: {
  32870. source: "./media/characters/kichi/front.svg",
  32871. extra: 1267/1164,
  32872. bottom: 61/1328
  32873. }
  32874. },
  32875. back: {
  32876. height: math.unit(8 + 6/12, "feet"),
  32877. weight: math.unit(1150, "lb"),
  32878. name: "Back",
  32879. image: {
  32880. source: "./media/characters/kichi/back.svg",
  32881. extra: 1273/1166,
  32882. bottom: 33/1306
  32883. }
  32884. },
  32885. },
  32886. [
  32887. {
  32888. name: "Normal",
  32889. height: math.unit(8 + 6/12, "feet"),
  32890. default: true
  32891. },
  32892. ]
  32893. ))
  32894. characterMakers.push(() => makeCharacter(
  32895. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32896. {
  32897. front: {
  32898. height: math.unit(6, "feet"),
  32899. weight: math.unit(210, "lb"),
  32900. name: "Front",
  32901. image: {
  32902. source: "./media/characters/manetel-greyscale/front.svg",
  32903. extra: 350/312,
  32904. bottom: 8/358
  32905. }
  32906. },
  32907. },
  32908. [
  32909. {
  32910. name: "Micro",
  32911. height: math.unit(2, "inches")
  32912. },
  32913. {
  32914. name: "Normal",
  32915. height: math.unit(6, "feet"),
  32916. default: true
  32917. },
  32918. {
  32919. name: "Minimacro",
  32920. height: math.unit(17, "feet")
  32921. },
  32922. {
  32923. name: "Macro",
  32924. height: math.unit(117, "feet")
  32925. },
  32926. ]
  32927. ))
  32928. characterMakers.push(() => makeCharacter(
  32929. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32930. {
  32931. side: {
  32932. height: math.unit(5 + 1/12, "feet"),
  32933. weight: math.unit(418, "lb"),
  32934. name: "Side",
  32935. image: {
  32936. source: "./media/characters/softpurr/side.svg",
  32937. extra: 1993/1945,
  32938. bottom: 134/2127
  32939. }
  32940. },
  32941. front: {
  32942. height: math.unit(5 + 1/12, "feet"),
  32943. weight: math.unit(418, "lb"),
  32944. name: "Front",
  32945. image: {
  32946. source: "./media/characters/softpurr/front.svg",
  32947. extra: 1950/1856,
  32948. bottom: 174/2124
  32949. }
  32950. },
  32951. paw: {
  32952. height: math.unit(1, "feet"),
  32953. name: "Paw",
  32954. image: {
  32955. source: "./media/characters/softpurr/paw.svg"
  32956. }
  32957. },
  32958. },
  32959. [
  32960. {
  32961. name: "Normal",
  32962. height: math.unit(5 + 1/12, "feet"),
  32963. default: true
  32964. },
  32965. ]
  32966. ))
  32967. characterMakers.push(() => makeCharacter(
  32968. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32969. {
  32970. front: {
  32971. height: math.unit(260, "meters"),
  32972. name: "Front",
  32973. image: {
  32974. source: "./media/characters/anahita/front.svg",
  32975. extra: 665/635,
  32976. bottom: 89/754
  32977. }
  32978. },
  32979. },
  32980. [
  32981. {
  32982. name: "Macro",
  32983. height: math.unit(260, "meters"),
  32984. default: true
  32985. },
  32986. ]
  32987. ))
  32988. characterMakers.push(() => makeCharacter(
  32989. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32990. {
  32991. front: {
  32992. height: math.unit(4 + 10/12, "feet"),
  32993. weight: math.unit(160, "lb"),
  32994. name: "Front",
  32995. image: {
  32996. source: "./media/characters/chip-mouse/front.svg",
  32997. extra: 3528/3408,
  32998. bottom: 0/3528
  32999. }
  33000. },
  33001. frontNsfw: {
  33002. height: math.unit(4 + 10/12, "feet"),
  33003. weight: math.unit(160, "lb"),
  33004. name: "Front (NSFW)",
  33005. image: {
  33006. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33007. extra: 3528/3408,
  33008. bottom: 0/3528
  33009. }
  33010. },
  33011. },
  33012. [
  33013. {
  33014. name: "Normal",
  33015. height: math.unit(4 + 10/12, "feet"),
  33016. default: true
  33017. },
  33018. ]
  33019. ))
  33020. characterMakers.push(() => makeCharacter(
  33021. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33022. {
  33023. side: {
  33024. height: math.unit(10, "feet"),
  33025. weight: math.unit(14000, "lb"),
  33026. name: "Side",
  33027. image: {
  33028. source: "./media/characters/kremm/side.svg",
  33029. extra: 1390/1053,
  33030. bottom: 90/1480
  33031. }
  33032. },
  33033. gut: {
  33034. height: math.unit(5.8, "feet"),
  33035. name: "Gut",
  33036. image: {
  33037. source: "./media/characters/kremm/gut.svg"
  33038. }
  33039. },
  33040. ass: {
  33041. height: math.unit(6.1, "feet"),
  33042. name: "Ass",
  33043. image: {
  33044. source: "./media/characters/kremm/ass.svg"
  33045. }
  33046. },
  33047. jaws: {
  33048. height: math.unit(2.2, "feet"),
  33049. name: "Jaws",
  33050. image: {
  33051. source: "./media/characters/kremm/jaws.svg"
  33052. }
  33053. },
  33054. dick: {
  33055. height: math.unit(4.26, "feet"),
  33056. name: "Dick",
  33057. image: {
  33058. source: "./media/characters/kremm/dick.svg"
  33059. }
  33060. },
  33061. },
  33062. [
  33063. {
  33064. name: "Normal",
  33065. height: math.unit(10, "feet"),
  33066. default: true
  33067. },
  33068. ]
  33069. ))
  33070. characterMakers.push(() => makeCharacter(
  33071. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33072. {
  33073. front: {
  33074. height: math.unit(30, "stories"),
  33075. name: "Front",
  33076. image: {
  33077. source: "./media/characters/kai/front.svg",
  33078. extra: 1892/1718,
  33079. bottom: 162/2054
  33080. }
  33081. },
  33082. },
  33083. [
  33084. {
  33085. name: "Macro",
  33086. height: math.unit(30, "stories"),
  33087. default: true
  33088. },
  33089. ]
  33090. ))
  33091. characterMakers.push(() => makeCharacter(
  33092. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33093. {
  33094. front: {
  33095. height: math.unit(6 + 4/12, "feet"),
  33096. weight: math.unit(145, "lb"),
  33097. name: "Front",
  33098. image: {
  33099. source: "./media/characters/sykes/front.svg",
  33100. extra: 1321 / 1187,
  33101. bottom: 66 / 1387
  33102. }
  33103. },
  33104. back: {
  33105. height: math.unit(6 + 4/12, "feet"),
  33106. weight: math.unit(145, "lb"),
  33107. name: "Back",
  33108. image: {
  33109. source: "./media/characters/sykes/back.svg",
  33110. extra: 1326/1181,
  33111. bottom: 31/1357
  33112. }
  33113. },
  33114. handBack: {
  33115. height: math.unit(0.9, "feet"),
  33116. name: "Hand (Back)",
  33117. image: {
  33118. source: "./media/characters/sykes/hand-back.svg"
  33119. }
  33120. },
  33121. handFront: {
  33122. height: math.unit(0.839, "feet"),
  33123. name: "Hand (Front)",
  33124. image: {
  33125. source: "./media/characters/sykes/hand-front.svg"
  33126. }
  33127. },
  33128. leftFoot: {
  33129. height: math.unit(1.2, "feet"),
  33130. name: "Foot (Left)",
  33131. image: {
  33132. source: "./media/characters/sykes/foot-left.svg"
  33133. }
  33134. },
  33135. rightFoot: {
  33136. height: math.unit(1.2, "feet"),
  33137. name: "Foot (Right)",
  33138. image: {
  33139. source: "./media/characters/sykes/foot-right.svg"
  33140. }
  33141. },
  33142. maw: {
  33143. height: math.unit(1.93, "feet"),
  33144. name: "Maw",
  33145. image: {
  33146. source: "./media/characters/sykes/maw.svg"
  33147. }
  33148. },
  33149. teeth: {
  33150. height: math.unit(0.51, "feet"),
  33151. name: "Teeth",
  33152. image: {
  33153. source: "./media/characters/sykes/teeth.svg"
  33154. }
  33155. },
  33156. tongue: {
  33157. height: math.unit(2.13, "feet"),
  33158. name: "Tongue",
  33159. image: {
  33160. source: "./media/characters/sykes/tongue.svg"
  33161. }
  33162. },
  33163. uvula: {
  33164. height: math.unit(0.16, "feet"),
  33165. name: "Uvula",
  33166. image: {
  33167. source: "./media/characters/sykes/uvula.svg"
  33168. }
  33169. },
  33170. collar: {
  33171. height: math.unit(0.287, "feet"),
  33172. name: "Collar",
  33173. image: {
  33174. source: "./media/characters/sykes/collar.svg"
  33175. }
  33176. },
  33177. },
  33178. [
  33179. {
  33180. name: "Shrunken",
  33181. height: math.unit(5, "inches")
  33182. },
  33183. {
  33184. name: "Normal",
  33185. height: math.unit(6 + 4 / 12, "feet"),
  33186. default: true
  33187. },
  33188. {
  33189. name: "Big",
  33190. height: math.unit(15, "feet")
  33191. },
  33192. ]
  33193. ))
  33194. characterMakers.push(() => makeCharacter(
  33195. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33196. {
  33197. front: {
  33198. height: math.unit(5 + 8/12, "feet"),
  33199. weight: math.unit(190, "lb"),
  33200. name: "Front",
  33201. image: {
  33202. source: "./media/characters/oven-otter/front.svg",
  33203. extra: 1809/1740,
  33204. bottom: 181/1990
  33205. }
  33206. },
  33207. back: {
  33208. height: math.unit(5 + 8/12, "feet"),
  33209. weight: math.unit(190, "lb"),
  33210. name: "Back",
  33211. image: {
  33212. source: "./media/characters/oven-otter/back.svg",
  33213. extra: 1709/1635,
  33214. bottom: 118/1827
  33215. }
  33216. },
  33217. hand: {
  33218. height: math.unit(1.07, "feet"),
  33219. name: "Hand",
  33220. image: {
  33221. source: "./media/characters/oven-otter/hand.svg"
  33222. }
  33223. },
  33224. beans: {
  33225. height: math.unit(1.74, "feet"),
  33226. name: "Beans",
  33227. image: {
  33228. source: "./media/characters/oven-otter/beans.svg"
  33229. }
  33230. },
  33231. },
  33232. [
  33233. {
  33234. name: "Micro",
  33235. height: math.unit(0.5, "inches")
  33236. },
  33237. {
  33238. name: "Normal",
  33239. height: math.unit(5 + 8/12, "feet"),
  33240. default: true
  33241. },
  33242. {
  33243. name: "Macro",
  33244. height: math.unit(250, "feet")
  33245. },
  33246. {
  33247. name: "Really High",
  33248. height: math.unit(420, "feet")
  33249. },
  33250. ]
  33251. ))
  33252. characterMakers.push(() => makeCharacter(
  33253. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33254. {
  33255. front: {
  33256. height: math.unit(5, "meters"),
  33257. weight: math.unit(292000000000000, "kg"),
  33258. name: "Front",
  33259. image: {
  33260. source: "./media/characters/devourer/front.svg",
  33261. extra: 1800/1733,
  33262. bottom: 211/2011
  33263. }
  33264. },
  33265. maw: {
  33266. height: math.unit(1.1, "meter"),
  33267. name: "Maw",
  33268. image: {
  33269. source: "./media/characters/devourer/maw.svg"
  33270. }
  33271. },
  33272. },
  33273. [
  33274. {
  33275. name: "Small",
  33276. height: math.unit(3, "meters")
  33277. },
  33278. {
  33279. name: "Large",
  33280. height: math.unit(5, "meters"),
  33281. default: true
  33282. },
  33283. ]
  33284. ))
  33285. characterMakers.push(() => makeCharacter(
  33286. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33287. {
  33288. front: {
  33289. height: math.unit(6, "feet"),
  33290. weight: math.unit(400, "lb"),
  33291. name: "Front",
  33292. image: {
  33293. source: "./media/characters/ellarby/front.svg",
  33294. extra: 1909/1763,
  33295. bottom: 80/1989
  33296. }
  33297. },
  33298. back: {
  33299. height: math.unit(6, "feet"),
  33300. weight: math.unit(400, "lb"),
  33301. name: "Back",
  33302. image: {
  33303. source: "./media/characters/ellarby/back.svg",
  33304. extra: 1914/1784,
  33305. bottom: 172/2086
  33306. }
  33307. },
  33308. },
  33309. [
  33310. {
  33311. name: "Mischief",
  33312. height: math.unit(18, "inches")
  33313. },
  33314. {
  33315. name: "Trouble",
  33316. height: math.unit(12, "feet")
  33317. },
  33318. {
  33319. name: "Havoc",
  33320. height: math.unit(200, "feet"),
  33321. default: true
  33322. },
  33323. {
  33324. name: "Pandemonium",
  33325. height: math.unit(1, "mile")
  33326. },
  33327. {
  33328. name: "Catastrophe",
  33329. height: math.unit(100, "miles")
  33330. },
  33331. ]
  33332. ))
  33333. characterMakers.push(() => makeCharacter(
  33334. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33335. {
  33336. front: {
  33337. height: math.unit(4.7, "meters"),
  33338. weight: math.unit(6500, "kg"),
  33339. name: "Front",
  33340. image: {
  33341. source: "./media/characters/vex/front.svg",
  33342. extra: 1288/1140,
  33343. bottom: 100/1388
  33344. }
  33345. },
  33346. },
  33347. [
  33348. {
  33349. name: "Normal",
  33350. height: math.unit(4.7, "meters"),
  33351. default: true
  33352. },
  33353. ]
  33354. ))
  33355. characterMakers.push(() => makeCharacter(
  33356. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33357. {
  33358. normal: {
  33359. height: math.unit(6, "feet"),
  33360. weight: math.unit(350, "lb"),
  33361. name: "Normal",
  33362. image: {
  33363. source: "./media/characters/teshy/normal.svg",
  33364. extra: 1795/1735,
  33365. bottom: 16/1811
  33366. }
  33367. },
  33368. monsterFront: {
  33369. height: math.unit(12, "feet"),
  33370. weight: math.unit(4700, "lb"),
  33371. name: "Monster (Front)",
  33372. image: {
  33373. source: "./media/characters/teshy/monster-front.svg",
  33374. extra: 2042/2034,
  33375. bottom: 128/2170
  33376. }
  33377. },
  33378. monsterSide: {
  33379. height: math.unit(12, "feet"),
  33380. weight: math.unit(4700, "lb"),
  33381. name: "Monster (Side)",
  33382. image: {
  33383. source: "./media/characters/teshy/monster-side.svg",
  33384. extra: 2067/2056,
  33385. bottom: 70/2137
  33386. }
  33387. },
  33388. monsterBack: {
  33389. height: math.unit(12, "feet"),
  33390. weight: math.unit(4700, "lb"),
  33391. name: "Monster (Back)",
  33392. image: {
  33393. source: "./media/characters/teshy/monster-back.svg",
  33394. extra: 1921/1914,
  33395. bottom: 171/2092
  33396. }
  33397. },
  33398. },
  33399. [
  33400. {
  33401. name: "Normal",
  33402. height: math.unit(6, "feet"),
  33403. default: true
  33404. },
  33405. ]
  33406. ))
  33407. characterMakers.push(() => makeCharacter(
  33408. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33409. {
  33410. front: {
  33411. height: math.unit(6, "feet"),
  33412. name: "Front",
  33413. image: {
  33414. source: "./media/characters/ramey/front.svg",
  33415. extra: 790/787,
  33416. bottom: 27/817
  33417. }
  33418. },
  33419. },
  33420. [
  33421. {
  33422. name: "Normal",
  33423. height: math.unit(6, "feet"),
  33424. default: true
  33425. },
  33426. ]
  33427. ))
  33428. characterMakers.push(() => makeCharacter(
  33429. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33430. {
  33431. front: {
  33432. height: math.unit(5 + 5/12, "feet"),
  33433. weight: math.unit(120, "lb"),
  33434. name: "Front",
  33435. image: {
  33436. source: "./media/characters/phirae/front.svg",
  33437. extra: 2491/2436,
  33438. bottom: 38/2529
  33439. }
  33440. },
  33441. },
  33442. [
  33443. {
  33444. name: "Normal",
  33445. height: math.unit(5 + 5/12, "feet"),
  33446. default: true
  33447. },
  33448. ]
  33449. ))
  33450. characterMakers.push(() => makeCharacter(
  33451. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33452. {
  33453. front: {
  33454. height: math.unit(6, "feet"),
  33455. weight: math.unit(150, "lb"),
  33456. name: "Front",
  33457. image: {
  33458. source: "./media/characters/stagglas/front.svg",
  33459. extra: 962/882,
  33460. bottom: 53/1015
  33461. }
  33462. },
  33463. },
  33464. [
  33465. {
  33466. name: "Normal",
  33467. height: math.unit(5 + 3/12, "feet"),
  33468. default: true
  33469. },
  33470. ]
  33471. ))
  33472. characterMakers.push(() => makeCharacter(
  33473. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33474. {
  33475. front: {
  33476. height: math.unit(5 + 4/12, "feet"),
  33477. weight: math.unit(145, "lb"),
  33478. name: "Front",
  33479. image: {
  33480. source: "./media/characters/starra/front.svg",
  33481. extra: 1790/1691,
  33482. bottom: 91/1881
  33483. }
  33484. },
  33485. },
  33486. [
  33487. {
  33488. name: "Normal",
  33489. height: math.unit(5 + 4/12, "feet"),
  33490. default: true
  33491. },
  33492. ]
  33493. ))
  33494. characterMakers.push(() => makeCharacter(
  33495. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33496. {
  33497. front: {
  33498. height: math.unit(2.2, "meters"),
  33499. name: "Front",
  33500. image: {
  33501. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33502. extra: 1194/1005,
  33503. bottom: 25/1219
  33504. }
  33505. },
  33506. },
  33507. [
  33508. {
  33509. name: "Normal",
  33510. height: math.unit(2.2, "meters"),
  33511. default: true
  33512. },
  33513. ]
  33514. ))
  33515. characterMakers.push(() => makeCharacter(
  33516. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33517. {
  33518. side: {
  33519. height: math.unit(8 + 2/12, "feet"),
  33520. weight: math.unit(1240, "lb"),
  33521. name: "Side",
  33522. image: {
  33523. source: "./media/characters/mika-valentine/side.svg",
  33524. extra: 2670/2501,
  33525. bottom: 250/2920
  33526. }
  33527. },
  33528. },
  33529. [
  33530. {
  33531. name: "Normal",
  33532. height: math.unit(8 + 2/12, "feet"),
  33533. default: true
  33534. },
  33535. ]
  33536. ))
  33537. characterMakers.push(() => makeCharacter(
  33538. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33539. {
  33540. front: {
  33541. height: math.unit(7 + 2/12, "feet"),
  33542. name: "Front",
  33543. image: {
  33544. source: "./media/characters/xoltol/front.svg",
  33545. extra: 2212/2124,
  33546. bottom: 84/2296
  33547. }
  33548. },
  33549. side: {
  33550. height: math.unit(7 + 2/12, "feet"),
  33551. name: "Side",
  33552. image: {
  33553. source: "./media/characters/xoltol/side.svg",
  33554. extra: 2273/2197,
  33555. bottom: 26/2299
  33556. }
  33557. },
  33558. hand: {
  33559. height: math.unit(2.5, "feet"),
  33560. name: "Hand",
  33561. image: {
  33562. source: "./media/characters/xoltol/hand.svg"
  33563. }
  33564. },
  33565. },
  33566. [
  33567. {
  33568. name: "Small-ish",
  33569. height: math.unit(5 + 11/12, "feet")
  33570. },
  33571. {
  33572. name: "Normal",
  33573. height: math.unit(7 + 2/12, "feet")
  33574. },
  33575. {
  33576. name: "\"Macro\"",
  33577. height: math.unit(14 + 9/12, "feet"),
  33578. default: true
  33579. },
  33580. {
  33581. name: "Alternate Height",
  33582. height: math.unit(20, "feet")
  33583. },
  33584. {
  33585. name: "Actually Macro",
  33586. height: math.unit(100, "feet")
  33587. },
  33588. ]
  33589. ))
  33590. characterMakers.push(() => makeCharacter(
  33591. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33592. {
  33593. front: {
  33594. height: math.unit(5 + 2/12, "feet"),
  33595. name: "Front",
  33596. image: {
  33597. source: "./media/characters/kotetsu-redwood/front.svg",
  33598. extra: 1053/942,
  33599. bottom: 60/1113
  33600. }
  33601. },
  33602. },
  33603. [
  33604. {
  33605. name: "Normal",
  33606. height: math.unit(5 + 2/12, "feet"),
  33607. default: true
  33608. },
  33609. ]
  33610. ))
  33611. characterMakers.push(() => makeCharacter(
  33612. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33613. {
  33614. front: {
  33615. height: math.unit(2.4, "meters"),
  33616. weight: math.unit(125, "kg"),
  33617. name: "Front",
  33618. image: {
  33619. source: "./media/characters/lilith/front.svg",
  33620. extra: 1590/1513,
  33621. bottom: 203/1793
  33622. }
  33623. },
  33624. },
  33625. [
  33626. {
  33627. name: "Humanoid",
  33628. height: math.unit(2.4, "meters")
  33629. },
  33630. {
  33631. name: "Normal",
  33632. height: math.unit(6, "meters"),
  33633. default: true
  33634. },
  33635. {
  33636. name: "Largest",
  33637. height: math.unit(55, "meters")
  33638. },
  33639. ]
  33640. ))
  33641. characterMakers.push(() => makeCharacter(
  33642. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33643. {
  33644. front: {
  33645. height: math.unit(8 + 4/12, "feet"),
  33646. weight: math.unit(535, "lb"),
  33647. name: "Front",
  33648. image: {
  33649. source: "./media/characters/beh'kah-bolger/front.svg",
  33650. extra: 1660/1603,
  33651. bottom: 37/1697
  33652. }
  33653. },
  33654. },
  33655. [
  33656. {
  33657. name: "Normal",
  33658. height: math.unit(8 + 4/12, "feet"),
  33659. default: true
  33660. },
  33661. {
  33662. name: "Kaiju",
  33663. height: math.unit(250, "feet")
  33664. },
  33665. {
  33666. name: "Still Growing",
  33667. height: math.unit(10, "miles")
  33668. },
  33669. {
  33670. name: "Continental",
  33671. height: math.unit(5000, "miles")
  33672. },
  33673. {
  33674. name: "Final Form",
  33675. height: math.unit(2500000, "miles")
  33676. },
  33677. ]
  33678. ))
  33679. characterMakers.push(() => makeCharacter(
  33680. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33681. {
  33682. front: {
  33683. height: math.unit(7 + 2/12, "feet"),
  33684. weight: math.unit(230, "kg"),
  33685. name: "Front",
  33686. image: {
  33687. source: "./media/characters/tatyana-milewska/front.svg",
  33688. extra: 1199/1150,
  33689. bottom: 86/1285
  33690. }
  33691. },
  33692. },
  33693. [
  33694. {
  33695. name: "Normal",
  33696. height: math.unit(7 + 2/12, "feet"),
  33697. default: true
  33698. },
  33699. {
  33700. name: "Big",
  33701. height: math.unit(12, "feet")
  33702. },
  33703. {
  33704. name: "Minimacro",
  33705. height: math.unit(20, "feet")
  33706. },
  33707. {
  33708. name: "Macro",
  33709. height: math.unit(120, "feet")
  33710. },
  33711. ]
  33712. ))
  33713. characterMakers.push(() => makeCharacter(
  33714. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33715. {
  33716. front: {
  33717. height: math.unit(7 + 8/12, "feet"),
  33718. weight: math.unit(152, "kg"),
  33719. name: "Front",
  33720. image: {
  33721. source: "./media/characters/helen-arri/front.svg",
  33722. extra: 440/423,
  33723. bottom: 14/454
  33724. }
  33725. },
  33726. back: {
  33727. height: math.unit(7 + 8/12, "feet"),
  33728. weight: math.unit(152, "kg"),
  33729. name: "Back",
  33730. image: {
  33731. source: "./media/characters/helen-arri/back.svg",
  33732. extra: 443/426,
  33733. bottom: 8/451
  33734. }
  33735. },
  33736. },
  33737. [
  33738. {
  33739. name: "Normal",
  33740. height: math.unit(7 + 8/12, "feet"),
  33741. default: true
  33742. },
  33743. {
  33744. name: "Big",
  33745. height: math.unit(14, "feet")
  33746. },
  33747. {
  33748. name: "Minimacro",
  33749. height: math.unit(24, "feet")
  33750. },
  33751. {
  33752. name: "Macro",
  33753. height: math.unit(140, "feet")
  33754. },
  33755. ]
  33756. ))
  33757. characterMakers.push(() => makeCharacter(
  33758. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33759. {
  33760. front: {
  33761. height: math.unit(6, "meters"),
  33762. name: "Front",
  33763. image: {
  33764. source: "./media/characters/ehanu-rehu/front.svg",
  33765. extra: 1800/1800,
  33766. bottom: 59/1859
  33767. }
  33768. },
  33769. },
  33770. [
  33771. {
  33772. name: "Normal",
  33773. height: math.unit(6, "meters"),
  33774. default: true
  33775. },
  33776. ]
  33777. ))
  33778. characterMakers.push(() => makeCharacter(
  33779. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33780. {
  33781. front: {
  33782. height: math.unit(7 + 3/12, "feet"),
  33783. name: "Front",
  33784. image: {
  33785. source: "./media/characters/renholder/front.svg",
  33786. extra: 3096/2960,
  33787. bottom: 250/3346
  33788. }
  33789. },
  33790. },
  33791. [
  33792. {
  33793. name: "Normal Bat",
  33794. height: math.unit(7 + 3/12, "feet"),
  33795. default: true
  33796. },
  33797. {
  33798. name: "Slightly Tall Bat",
  33799. height: math.unit(100, "feet")
  33800. },
  33801. {
  33802. name: "Big Bat",
  33803. height: math.unit(1000, "feet")
  33804. },
  33805. {
  33806. name: "City-Sized Bat",
  33807. height: math.unit(200000, "feet")
  33808. },
  33809. {
  33810. name: "Bigger Bat",
  33811. height: math.unit(10000, "miles")
  33812. },
  33813. {
  33814. name: "Solar Sized Bat",
  33815. height: math.unit(100, "AU")
  33816. },
  33817. {
  33818. name: "Galactic Bat",
  33819. height: math.unit(200000, "lightyears")
  33820. },
  33821. {
  33822. name: "Universally Known Bat",
  33823. height: math.unit(1, "universe")
  33824. },
  33825. ]
  33826. ))
  33827. characterMakers.push(() => makeCharacter(
  33828. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33829. {
  33830. front: {
  33831. height: math.unit(6 + 11/12, "feet"),
  33832. weight: math.unit(250, "lb"),
  33833. name: "Front",
  33834. image: {
  33835. source: "./media/characters/cookiecat/front.svg",
  33836. extra: 893/827,
  33837. bottom: 14/907
  33838. }
  33839. },
  33840. },
  33841. [
  33842. {
  33843. name: "Micro",
  33844. height: math.unit(3, "inches")
  33845. },
  33846. {
  33847. name: "Normal",
  33848. height: math.unit(6 + 11/12, "feet"),
  33849. default: true
  33850. },
  33851. {
  33852. name: "Macro",
  33853. height: math.unit(100, "feet")
  33854. },
  33855. {
  33856. name: "Macro+",
  33857. height: math.unit(404, "feet")
  33858. },
  33859. {
  33860. name: "Megamacro",
  33861. height: math.unit(165, "miles")
  33862. },
  33863. {
  33864. name: "Planetary",
  33865. height: math.unit(4600, "miles")
  33866. },
  33867. ]
  33868. ))
  33869. characterMakers.push(() => makeCharacter(
  33870. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33871. {
  33872. front: {
  33873. height: math.unit(10 + 3/12, "feet"),
  33874. weight: math.unit(1500, "lb"),
  33875. name: "Front",
  33876. image: {
  33877. source: "./media/characters/tux-kusanagi/front.svg",
  33878. extra: 944/840,
  33879. bottom: 39/983
  33880. }
  33881. },
  33882. back: {
  33883. height: math.unit(10 + 3/12, "feet"),
  33884. weight: math.unit(1500, "lb"),
  33885. name: "Back",
  33886. image: {
  33887. source: "./media/characters/tux-kusanagi/back.svg",
  33888. extra: 941/842,
  33889. bottom: 28/969
  33890. }
  33891. },
  33892. rump: {
  33893. height: math.unit(5.25, "feet"),
  33894. name: "Rump",
  33895. image: {
  33896. source: "./media/characters/tux-kusanagi/rump.svg"
  33897. }
  33898. },
  33899. beak: {
  33900. height: math.unit(1.54, "feet"),
  33901. name: "Beak",
  33902. image: {
  33903. source: "./media/characters/tux-kusanagi/beak.svg"
  33904. }
  33905. },
  33906. },
  33907. [
  33908. {
  33909. name: "Normal",
  33910. height: math.unit(10 + 3/12, "feet"),
  33911. default: true
  33912. },
  33913. ]
  33914. ))
  33915. characterMakers.push(() => makeCharacter(
  33916. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33917. {
  33918. front: {
  33919. height: math.unit(58, "feet"),
  33920. weight: math.unit(200, "tons"),
  33921. name: "Front",
  33922. image: {
  33923. source: "./media/characters/uzarmazari/front.svg",
  33924. extra: 1575/1455,
  33925. bottom: 152/1727
  33926. }
  33927. },
  33928. back: {
  33929. height: math.unit(58, "feet"),
  33930. weight: math.unit(200, "tons"),
  33931. name: "Back",
  33932. image: {
  33933. source: "./media/characters/uzarmazari/back.svg",
  33934. extra: 1585/1510,
  33935. bottom: 157/1742
  33936. }
  33937. },
  33938. head: {
  33939. height: math.unit(26, "feet"),
  33940. name: "Head",
  33941. image: {
  33942. source: "./media/characters/uzarmazari/head.svg"
  33943. }
  33944. },
  33945. },
  33946. [
  33947. {
  33948. name: "Normal",
  33949. height: math.unit(58, "feet"),
  33950. default: true
  33951. },
  33952. ]
  33953. ))
  33954. characterMakers.push(() => makeCharacter(
  33955. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33956. {
  33957. side: {
  33958. height: math.unit(15, "feet"),
  33959. name: "Side",
  33960. image: {
  33961. source: "./media/characters/akitu/side.svg",
  33962. extra: 1421/1321,
  33963. bottom: 157/1578
  33964. }
  33965. },
  33966. front: {
  33967. height: math.unit(15, "feet"),
  33968. name: "Front",
  33969. image: {
  33970. source: "./media/characters/akitu/front.svg",
  33971. extra: 1435/1326,
  33972. bottom: 232/1667
  33973. }
  33974. },
  33975. },
  33976. [
  33977. {
  33978. name: "Normal",
  33979. height: math.unit(15, "feet"),
  33980. default: true
  33981. },
  33982. ]
  33983. ))
  33984. characterMakers.push(() => makeCharacter(
  33985. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33986. {
  33987. front: {
  33988. height: math.unit(10 + 8/12, "feet"),
  33989. name: "Front",
  33990. image: {
  33991. source: "./media/characters/azalie-croixland/front.svg",
  33992. extra: 1972/1856,
  33993. bottom: 31/2003
  33994. }
  33995. },
  33996. },
  33997. [
  33998. {
  33999. name: "Original Height",
  34000. height: math.unit(5 + 4/12, "feet")
  34001. },
  34002. {
  34003. name: "Normal Height",
  34004. height: math.unit(10 + 8/12, "feet"),
  34005. default: true
  34006. },
  34007. ]
  34008. ))
  34009. characterMakers.push(() => makeCharacter(
  34010. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34011. {
  34012. side: {
  34013. height: math.unit(7 + 1/12, "feet"),
  34014. weight: math.unit(245, "lb"),
  34015. name: "Side",
  34016. image: {
  34017. source: "./media/characters/kavus-kazian/side.svg",
  34018. extra: 349/342,
  34019. bottom: 15/364
  34020. }
  34021. },
  34022. },
  34023. [
  34024. {
  34025. name: "Normal",
  34026. height: math.unit(7 + 1/12, "feet"),
  34027. default: true
  34028. },
  34029. ]
  34030. ))
  34031. characterMakers.push(() => makeCharacter(
  34032. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34033. {
  34034. normal: {
  34035. height: math.unit(5 + 11/12, "feet"),
  34036. name: "Normal",
  34037. image: {
  34038. source: "./media/characters/moonlight-rose/normal.svg",
  34039. extra: 1979/1835,
  34040. bottom: 14/1993
  34041. }
  34042. },
  34043. demon: {
  34044. height: math.unit(5, "km"),
  34045. name: "Demon",
  34046. image: {
  34047. source: "./media/characters/moonlight-rose/demon.svg",
  34048. extra: 986/916,
  34049. bottom: 28/1014
  34050. }
  34051. },
  34052. },
  34053. [
  34054. {
  34055. name: "\"Natural\" height",
  34056. height: math.unit(5 + 11/12, "feet")
  34057. },
  34058. {
  34059. name: "Comfortable Size",
  34060. height: math.unit(40, "meters")
  34061. },
  34062. {
  34063. name: "Common Size",
  34064. height: math.unit(50, "km"),
  34065. default: true
  34066. },
  34067. {
  34068. name: "Demonic",
  34069. height: math.unit(1.24415e+21, "meters")
  34070. },
  34071. ]
  34072. ))
  34073. characterMakers.push(() => makeCharacter(
  34074. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34075. {
  34076. front: {
  34077. height: math.unit(16, "feet"),
  34078. weight: math.unit(610, "kg"),
  34079. name: "Front",
  34080. image: {
  34081. source: "./media/characters/huckle/front.svg",
  34082. extra: 1731/1625,
  34083. bottom: 33/1764
  34084. }
  34085. },
  34086. back: {
  34087. height: math.unit(16, "feet"),
  34088. weight: math.unit(610, "kg"),
  34089. name: "Back",
  34090. image: {
  34091. source: "./media/characters/huckle/back.svg",
  34092. extra: 1738/1651,
  34093. bottom: 37/1775
  34094. }
  34095. },
  34096. laughing: {
  34097. height: math.unit(3.75, "feet"),
  34098. name: "Laughing",
  34099. image: {
  34100. source: "./media/characters/huckle/laughing.svg"
  34101. }
  34102. },
  34103. angry: {
  34104. height: math.unit(4.15, "feet"),
  34105. name: "Angry",
  34106. image: {
  34107. source: "./media/characters/huckle/angry.svg"
  34108. }
  34109. },
  34110. },
  34111. [
  34112. {
  34113. name: "Normal",
  34114. height: math.unit(16, "feet"),
  34115. default: true
  34116. },
  34117. {
  34118. name: "Mini Macro",
  34119. height: math.unit(463, "feet")
  34120. },
  34121. {
  34122. name: "Macro",
  34123. height: math.unit(1680, "meters")
  34124. },
  34125. {
  34126. name: "Mega Macro",
  34127. height: math.unit(175, "km")
  34128. },
  34129. {
  34130. name: "Terra Macro",
  34131. height: math.unit(32, "gigameters")
  34132. },
  34133. {
  34134. name: "Multiverse+",
  34135. height: math.unit(2.56e23, "yottameters")
  34136. },
  34137. ]
  34138. ))
  34139. characterMakers.push(() => makeCharacter(
  34140. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34141. {
  34142. front: {
  34143. height: math.unit(6 + 9/12, "feet"),
  34144. weight: math.unit(280, "lb"),
  34145. name: "Front",
  34146. image: {
  34147. source: "./media/characters/candy/front.svg",
  34148. extra: 234/217,
  34149. bottom: 11/245
  34150. }
  34151. },
  34152. },
  34153. [
  34154. {
  34155. name: "Really Small",
  34156. height: math.unit(0.1, "nm")
  34157. },
  34158. {
  34159. name: "Micro",
  34160. height: math.unit(2, "inches")
  34161. },
  34162. {
  34163. name: "Normal",
  34164. height: math.unit(6 + 9/12, "feet"),
  34165. default: true
  34166. },
  34167. {
  34168. name: "Small Macro",
  34169. height: math.unit(69, "feet")
  34170. },
  34171. {
  34172. name: "Macro",
  34173. height: math.unit(160, "feet")
  34174. },
  34175. {
  34176. name: "Megamacro",
  34177. height: math.unit(22000, "miles")
  34178. },
  34179. {
  34180. name: "Gigamacro",
  34181. height: math.unit(50000, "miles")
  34182. },
  34183. ]
  34184. ))
  34185. characterMakers.push(() => makeCharacter(
  34186. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34187. {
  34188. front: {
  34189. height: math.unit(4, "feet"),
  34190. weight: math.unit(90, "lb"),
  34191. name: "Front",
  34192. image: {
  34193. source: "./media/characters/joey-mcdonald/front.svg",
  34194. extra: 1059/852,
  34195. bottom: 33/1092
  34196. }
  34197. },
  34198. back: {
  34199. height: math.unit(4, "feet"),
  34200. weight: math.unit(90, "lb"),
  34201. name: "Back",
  34202. image: {
  34203. source: "./media/characters/joey-mcdonald/back.svg",
  34204. extra: 1077/879,
  34205. bottom: 5/1082
  34206. }
  34207. },
  34208. },
  34209. [
  34210. {
  34211. name: "Normal",
  34212. height: math.unit(4, "feet"),
  34213. default: true
  34214. },
  34215. ]
  34216. ))
  34217. characterMakers.push(() => makeCharacter(
  34218. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34219. {
  34220. front: {
  34221. height: math.unit(12 + 6/12, "feet"),
  34222. name: "Front",
  34223. image: {
  34224. source: "./media/characters/kass-lockheed/front.svg",
  34225. extra: 354/343,
  34226. bottom: 9/363
  34227. }
  34228. },
  34229. back: {
  34230. height: math.unit(12 + 6/12, "feet"),
  34231. name: "Back",
  34232. image: {
  34233. source: "./media/characters/kass-lockheed/back.svg",
  34234. extra: 364/352,
  34235. bottom: 3/367
  34236. }
  34237. },
  34238. dick: {
  34239. height: math.unit(3.12, "feet"),
  34240. name: "Dick",
  34241. image: {
  34242. source: "./media/characters/kass-lockheed/dick.svg"
  34243. }
  34244. },
  34245. head: {
  34246. height: math.unit(2.6, "feet"),
  34247. name: "Head",
  34248. image: {
  34249. source: "./media/characters/kass-lockheed/head.svg"
  34250. }
  34251. },
  34252. bleh: {
  34253. height: math.unit(2.85, "feet"),
  34254. name: "Bleh",
  34255. image: {
  34256. source: "./media/characters/kass-lockheed/bleh.svg"
  34257. }
  34258. },
  34259. smug: {
  34260. height: math.unit(2.85, "feet"),
  34261. name: "Smug",
  34262. image: {
  34263. source: "./media/characters/kass-lockheed/smug.svg"
  34264. }
  34265. },
  34266. },
  34267. [
  34268. {
  34269. name: "Normal",
  34270. height: math.unit(12 + 6/12, "feet"),
  34271. default: true
  34272. },
  34273. ]
  34274. ))
  34275. characterMakers.push(() => makeCharacter(
  34276. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34277. {
  34278. front: {
  34279. height: math.unit(6 + 2/12, "feet"),
  34280. name: "Front",
  34281. image: {
  34282. source: "./media/characters/taylor/front.svg",
  34283. extra: 639/495,
  34284. bottom: 12/651
  34285. }
  34286. },
  34287. },
  34288. [
  34289. {
  34290. name: "Normal",
  34291. height: math.unit(6 + 2/12, "feet"),
  34292. default: true
  34293. },
  34294. {
  34295. name: "Big",
  34296. height: math.unit(15, "feet")
  34297. },
  34298. {
  34299. name: "Lorg",
  34300. height: math.unit(80, "feet")
  34301. },
  34302. {
  34303. name: "Too Lorg",
  34304. height: math.unit(120, "feet")
  34305. },
  34306. ]
  34307. ))
  34308. characterMakers.push(() => makeCharacter(
  34309. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34310. {
  34311. front: {
  34312. height: math.unit(15, "feet"),
  34313. name: "Front",
  34314. image: {
  34315. source: "./media/characters/kaizer/front.svg",
  34316. extra: 1612/1436,
  34317. bottom: 43/1655
  34318. }
  34319. },
  34320. },
  34321. [
  34322. {
  34323. name: "Normal",
  34324. height: math.unit(15, "feet"),
  34325. default: true
  34326. },
  34327. ]
  34328. ))
  34329. characterMakers.push(() => makeCharacter(
  34330. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34331. {
  34332. front: {
  34333. height: math.unit(2, "feet"),
  34334. weight: math.unit(30, "lb"),
  34335. name: "Front",
  34336. image: {
  34337. source: "./media/characters/sandy/front.svg",
  34338. extra: 1439/1307,
  34339. bottom: 194/1633
  34340. }
  34341. },
  34342. },
  34343. [
  34344. {
  34345. name: "Normal",
  34346. height: math.unit(2, "feet"),
  34347. default: true
  34348. },
  34349. ]
  34350. ))
  34351. characterMakers.push(() => makeCharacter(
  34352. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34353. {
  34354. front: {
  34355. height: math.unit(3, "feet"),
  34356. name: "Front",
  34357. image: {
  34358. source: "./media/characters/mellvi/front.svg",
  34359. extra: 1831/1630,
  34360. bottom: 58/1889
  34361. }
  34362. },
  34363. },
  34364. [
  34365. {
  34366. name: "Normal",
  34367. height: math.unit(3, "feet"),
  34368. default: true
  34369. },
  34370. ]
  34371. ))
  34372. characterMakers.push(() => makeCharacter(
  34373. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34374. {
  34375. front: {
  34376. height: math.unit(5 + 11/12, "feet"),
  34377. weight: math.unit(200, "lb"),
  34378. name: "Front",
  34379. image: {
  34380. source: "./media/characters/shirou/front.svg",
  34381. extra: 2491/2383,
  34382. bottom: 189/2680
  34383. }
  34384. },
  34385. back: {
  34386. height: math.unit(5 + 11/12, "feet"),
  34387. weight: math.unit(200, "lb"),
  34388. name: "Back",
  34389. image: {
  34390. source: "./media/characters/shirou/back.svg",
  34391. extra: 2554/2450,
  34392. bottom: 76/2630
  34393. }
  34394. },
  34395. },
  34396. [
  34397. {
  34398. name: "Normal",
  34399. height: math.unit(5 + 11/12, "feet"),
  34400. default: true
  34401. },
  34402. ]
  34403. ))
  34404. characterMakers.push(() => makeCharacter(
  34405. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34406. {
  34407. front: {
  34408. height: math.unit(6 + 3/12, "feet"),
  34409. weight: math.unit(177, "lb"),
  34410. name: "Front",
  34411. image: {
  34412. source: "./media/characters/noryu/front.svg",
  34413. extra: 973/885,
  34414. bottom: 10/983
  34415. }
  34416. },
  34417. },
  34418. [
  34419. {
  34420. name: "Normal",
  34421. height: math.unit(6 + 3/12, "feet"),
  34422. default: true
  34423. },
  34424. ]
  34425. ))
  34426. characterMakers.push(() => makeCharacter(
  34427. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34428. {
  34429. front: {
  34430. height: math.unit(5 + 6/12, "feet"),
  34431. weight: math.unit(170, "lb"),
  34432. name: "Front",
  34433. image: {
  34434. source: "./media/characters/mevolas-rubenido/front.svg",
  34435. extra: 2109/1901,
  34436. bottom: 96/2205
  34437. }
  34438. },
  34439. },
  34440. [
  34441. {
  34442. name: "Normal",
  34443. height: math.unit(5 + 6/12, "feet"),
  34444. default: true
  34445. },
  34446. ]
  34447. ))
  34448. characterMakers.push(() => makeCharacter(
  34449. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34450. {
  34451. front: {
  34452. height: math.unit(100, "feet"),
  34453. name: "Front",
  34454. image: {
  34455. source: "./media/characters/dee/front.svg",
  34456. extra: 2153/2036,
  34457. bottom: 59/2212
  34458. }
  34459. },
  34460. back: {
  34461. height: math.unit(100, "feet"),
  34462. name: "Back",
  34463. image: {
  34464. source: "./media/characters/dee/back.svg",
  34465. extra: 2183/2058,
  34466. bottom: 75/2258
  34467. }
  34468. },
  34469. foot: {
  34470. height: math.unit(19.43, "feet"),
  34471. name: "Foot",
  34472. image: {
  34473. source: "./media/characters/dee/foot.svg"
  34474. }
  34475. },
  34476. hoof: {
  34477. height: math.unit(20.6, "feet"),
  34478. name: "Hoof",
  34479. image: {
  34480. source: "./media/characters/dee/hoof.svg"
  34481. }
  34482. },
  34483. },
  34484. [
  34485. {
  34486. name: "Macro",
  34487. height: math.unit(100, "feet"),
  34488. default: true
  34489. },
  34490. ]
  34491. ))
  34492. characterMakers.push(() => makeCharacter(
  34493. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34494. {
  34495. front: {
  34496. height: math.unit(5 + 6/12, "feet"),
  34497. name: "Front",
  34498. image: {
  34499. source: "./media/characters/teh/front.svg",
  34500. extra: 1002/847,
  34501. bottom: 62/1064
  34502. }
  34503. },
  34504. },
  34505. [
  34506. {
  34507. name: "Normal",
  34508. height: math.unit(5 + 6/12, "feet"),
  34509. default: true
  34510. },
  34511. ]
  34512. ))
  34513. characterMakers.push(() => makeCharacter(
  34514. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34515. {
  34516. side: {
  34517. height: math.unit(6 + 1/12, "feet"),
  34518. weight: math.unit(204, "lb"),
  34519. name: "Side",
  34520. image: {
  34521. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34522. extra: 974/775,
  34523. bottom: 169/1143
  34524. }
  34525. },
  34526. sitting: {
  34527. height: math.unit(6 + 2/12, "feet"),
  34528. weight: math.unit(204, "lb"),
  34529. name: "Sitting",
  34530. image: {
  34531. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34532. extra: 1175/964,
  34533. bottom: 378/1553
  34534. }
  34535. },
  34536. },
  34537. [
  34538. {
  34539. name: "Normal",
  34540. height: math.unit(6 + 1/12, "feet"),
  34541. default: true
  34542. },
  34543. ]
  34544. ))
  34545. characterMakers.push(() => makeCharacter(
  34546. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34547. {
  34548. front: {
  34549. height: math.unit(6, "inches"),
  34550. name: "Front",
  34551. image: {
  34552. source: "./media/characters/tululi/front.svg",
  34553. extra: 1997/1876,
  34554. bottom: 20/2017
  34555. }
  34556. },
  34557. },
  34558. [
  34559. {
  34560. name: "Normal",
  34561. height: math.unit(6, "inches"),
  34562. default: true
  34563. },
  34564. ]
  34565. ))
  34566. characterMakers.push(() => makeCharacter(
  34567. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34568. {
  34569. front: {
  34570. height: math.unit(4 + 1/12, "feet"),
  34571. name: "Front",
  34572. image: {
  34573. source: "./media/characters/star/front.svg",
  34574. extra: 1493/1189,
  34575. bottom: 48/1541
  34576. }
  34577. },
  34578. },
  34579. [
  34580. {
  34581. name: "Normal",
  34582. height: math.unit(4 + 1/12, "feet"),
  34583. default: true
  34584. },
  34585. ]
  34586. ))
  34587. characterMakers.push(() => makeCharacter(
  34588. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34589. {
  34590. front: {
  34591. height: math.unit(6 + 3/12, "feet"),
  34592. name: "Front",
  34593. image: {
  34594. source: "./media/characters/comet/front.svg",
  34595. extra: 1681/1462,
  34596. bottom: 26/1707
  34597. }
  34598. },
  34599. },
  34600. [
  34601. {
  34602. name: "Normal",
  34603. height: math.unit(6 + 3/12, "feet"),
  34604. default: true
  34605. },
  34606. ]
  34607. ))
  34608. characterMakers.push(() => makeCharacter(
  34609. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34610. {
  34611. front: {
  34612. height: math.unit(950, "feet"),
  34613. name: "Front",
  34614. image: {
  34615. source: "./media/characters/vortex/front.svg",
  34616. extra: 1497/1434,
  34617. bottom: 56/1553
  34618. }
  34619. },
  34620. maw: {
  34621. height: math.unit(285, "feet"),
  34622. name: "Maw",
  34623. image: {
  34624. source: "./media/characters/vortex/maw.svg"
  34625. }
  34626. },
  34627. },
  34628. [
  34629. {
  34630. name: "Macro",
  34631. height: math.unit(950, "feet"),
  34632. default: true
  34633. },
  34634. ]
  34635. ))
  34636. characterMakers.push(() => makeCharacter(
  34637. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34638. {
  34639. front: {
  34640. height: math.unit(600, "feet"),
  34641. weight: math.unit(0.02, "grams"),
  34642. name: "Front",
  34643. image: {
  34644. source: "./media/characters/doodle/front.svg",
  34645. extra: 1578/1413,
  34646. bottom: 37/1615
  34647. }
  34648. },
  34649. },
  34650. [
  34651. {
  34652. name: "Macro",
  34653. height: math.unit(600, "feet"),
  34654. default: true
  34655. },
  34656. ]
  34657. ))
  34658. characterMakers.push(() => makeCharacter(
  34659. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34660. {
  34661. front: {
  34662. height: math.unit(6 + 6/12, "feet"),
  34663. name: "Front",
  34664. image: {
  34665. source: "./media/characters/jai/front.svg",
  34666. extra: 1645/1534,
  34667. bottom: 115/1760
  34668. }
  34669. },
  34670. },
  34671. [
  34672. {
  34673. name: "Normal",
  34674. height: math.unit(6 + 6/12, "feet"),
  34675. default: true
  34676. },
  34677. ]
  34678. ))
  34679. characterMakers.push(() => makeCharacter(
  34680. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34681. {
  34682. front: {
  34683. height: math.unit(6 + 8/12, "feet"),
  34684. name: "Front",
  34685. image: {
  34686. source: "./media/characters/pixel/front.svg",
  34687. extra: 1900/1735,
  34688. bottom: 63/1963
  34689. }
  34690. },
  34691. },
  34692. [
  34693. {
  34694. name: "Normal",
  34695. height: math.unit(6 + 8/12, "feet"),
  34696. default: true
  34697. },
  34698. ]
  34699. ))
  34700. characterMakers.push(() => makeCharacter(
  34701. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34702. {
  34703. front: {
  34704. height: math.unit(4 + 11/12, "feet"),
  34705. weight: math.unit(111, "lb"),
  34706. name: "Front",
  34707. image: {
  34708. source: "./media/characters/rhett/front.svg",
  34709. extra: 1682/1586,
  34710. bottom: 92/1774
  34711. }
  34712. },
  34713. },
  34714. [
  34715. {
  34716. name: "Mini",
  34717. height: math.unit(1 + 1/12, "feet")
  34718. },
  34719. {
  34720. name: "Normal",
  34721. height: math.unit(4 + 11/12, "feet"),
  34722. default: true
  34723. },
  34724. ]
  34725. ))
  34726. characterMakers.push(() => makeCharacter(
  34727. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34728. {
  34729. front: {
  34730. height: math.unit(3 + 3/12, "feet"),
  34731. name: "Front",
  34732. image: {
  34733. source: "./media/characters/penny/front.svg",
  34734. extra: 1406/1311,
  34735. bottom: 26/1432
  34736. }
  34737. },
  34738. },
  34739. [
  34740. {
  34741. name: "Normal",
  34742. height: math.unit(3 + 3/12, "feet"),
  34743. default: true
  34744. },
  34745. ]
  34746. ))
  34747. characterMakers.push(() => makeCharacter(
  34748. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34749. {
  34750. front: {
  34751. height: math.unit(4 + 11/12, "feet"),
  34752. name: "Front",
  34753. image: {
  34754. source: "./media/characters/monty/front.svg",
  34755. extra: 1479/1209,
  34756. bottom: 0/1479
  34757. }
  34758. },
  34759. },
  34760. [
  34761. {
  34762. name: "Normal",
  34763. height: math.unit(4 + 11/12, "feet"),
  34764. default: true
  34765. },
  34766. ]
  34767. ))
  34768. characterMakers.push(() => makeCharacter(
  34769. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34770. {
  34771. front: {
  34772. height: math.unit(8 + 4/12, "feet"),
  34773. name: "Front",
  34774. image: {
  34775. source: "./media/characters/sterling/front.svg",
  34776. extra: 1420/1236,
  34777. bottom: 27/1447
  34778. }
  34779. },
  34780. },
  34781. [
  34782. {
  34783. name: "Normal",
  34784. height: math.unit(8 + 4/12, "feet"),
  34785. default: true
  34786. },
  34787. ]
  34788. ))
  34789. characterMakers.push(() => makeCharacter(
  34790. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34791. {
  34792. front: {
  34793. height: math.unit(15, "feet"),
  34794. name: "Front",
  34795. image: {
  34796. source: "./media/characters/marble/front.svg",
  34797. extra: 973/937,
  34798. bottom: 32/1005
  34799. }
  34800. },
  34801. },
  34802. [
  34803. {
  34804. name: "Normal",
  34805. height: math.unit(15, "feet"),
  34806. default: true
  34807. },
  34808. ]
  34809. ))
  34810. characterMakers.push(() => makeCharacter(
  34811. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34812. {
  34813. front: {
  34814. height: math.unit(3, "inches"),
  34815. name: "Front",
  34816. image: {
  34817. source: "./media/characters/powder/front.svg",
  34818. extra: 1504/1334,
  34819. bottom: 518/2022
  34820. }
  34821. },
  34822. },
  34823. [
  34824. {
  34825. name: "Normal",
  34826. height: math.unit(3, "inches"),
  34827. default: true
  34828. },
  34829. ]
  34830. ))
  34831. characterMakers.push(() => makeCharacter(
  34832. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34833. {
  34834. front: {
  34835. height: math.unit(4 + 5/12, "feet"),
  34836. name: "Front",
  34837. image: {
  34838. source: "./media/characters/joey-raccoon/front.svg",
  34839. extra: 1273/1197,
  34840. bottom: 0/1273
  34841. }
  34842. },
  34843. },
  34844. [
  34845. {
  34846. name: "Normal",
  34847. height: math.unit(4 + 5/12, "feet"),
  34848. default: true
  34849. },
  34850. ]
  34851. ))
  34852. characterMakers.push(() => makeCharacter(
  34853. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34854. {
  34855. front: {
  34856. height: math.unit(8 + 4/12, "feet"),
  34857. name: "Front",
  34858. image: {
  34859. source: "./media/characters/vick/front.svg",
  34860. extra: 2187/2118,
  34861. bottom: 47/2234
  34862. }
  34863. },
  34864. },
  34865. [
  34866. {
  34867. name: "Normal",
  34868. height: math.unit(8 + 4/12, "feet"),
  34869. default: true
  34870. },
  34871. ]
  34872. ))
  34873. characterMakers.push(() => makeCharacter(
  34874. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34875. {
  34876. front: {
  34877. height: math.unit(5 + 5/12, "feet"),
  34878. name: "Front",
  34879. image: {
  34880. source: "./media/characters/mitsy/front.svg",
  34881. extra: 1842/1695,
  34882. bottom: 0/1842
  34883. }
  34884. },
  34885. },
  34886. [
  34887. {
  34888. name: "Normal",
  34889. height: math.unit(5 + 5/12, "feet"),
  34890. default: true
  34891. },
  34892. ]
  34893. ))
  34894. characterMakers.push(() => makeCharacter(
  34895. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34896. {
  34897. front: {
  34898. height: math.unit(6 + 3/12, "feet"),
  34899. name: "Front",
  34900. image: {
  34901. source: "./media/characters/silvy/front.svg",
  34902. extra: 1995/1836,
  34903. bottom: 225/2220
  34904. }
  34905. },
  34906. },
  34907. [
  34908. {
  34909. name: "Normal",
  34910. height: math.unit(6 + 3/12, "feet"),
  34911. default: true
  34912. },
  34913. ]
  34914. ))
  34915. characterMakers.push(() => makeCharacter(
  34916. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34917. {
  34918. front: {
  34919. height: math.unit(3 + 8/12, "feet"),
  34920. name: "Front",
  34921. image: {
  34922. source: "./media/characters/rodney/front.svg",
  34923. extra: 1956/1747,
  34924. bottom: 31/1987
  34925. }
  34926. },
  34927. frontDressed: {
  34928. height: math.unit(2.9, "feet"),
  34929. name: "Front (Dressed)",
  34930. image: {
  34931. source: "./media/characters/rodney/front-dressed.svg",
  34932. extra: 1382/1241,
  34933. bottom: 385/1767
  34934. }
  34935. },
  34936. },
  34937. [
  34938. {
  34939. name: "Normal",
  34940. height: math.unit(3 + 8/12, "feet"),
  34941. default: true
  34942. },
  34943. ]
  34944. ))
  34945. characterMakers.push(() => makeCharacter(
  34946. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34947. {
  34948. front: {
  34949. height: math.unit(5 + 9/12, "feet"),
  34950. weight: math.unit(194, "lbs"),
  34951. name: "Front",
  34952. image: {
  34953. source: "./media/characters/zakail-sudekai/front.svg",
  34954. extra: 2696/2533,
  34955. bottom: 248/2944
  34956. }
  34957. },
  34958. maw: {
  34959. height: math.unit(1.35, "feet"),
  34960. name: "Maw",
  34961. image: {
  34962. source: "./media/characters/zakail-sudekai/maw.svg"
  34963. }
  34964. },
  34965. },
  34966. [
  34967. {
  34968. name: "Normal",
  34969. height: math.unit(5 + 9/12, "feet"),
  34970. default: true
  34971. },
  34972. ]
  34973. ))
  34974. characterMakers.push(() => makeCharacter(
  34975. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34976. {
  34977. front: {
  34978. height: math.unit(8 + 4/12, "feet"),
  34979. weight: math.unit(1200, "lb"),
  34980. name: "Front",
  34981. image: {
  34982. source: "./media/characters/eleanor/front.svg",
  34983. extra: 1226/1192,
  34984. bottom: 52/1278
  34985. }
  34986. },
  34987. back: {
  34988. height: math.unit(8 + 4/12, "feet"),
  34989. weight: math.unit(1200, "lb"),
  34990. name: "Back",
  34991. image: {
  34992. source: "./media/characters/eleanor/back.svg",
  34993. extra: 1242/1184,
  34994. bottom: 60/1302
  34995. }
  34996. },
  34997. head: {
  34998. height: math.unit(2.62, "feet"),
  34999. name: "Head",
  35000. image: {
  35001. source: "./media/characters/eleanor/head.svg"
  35002. }
  35003. },
  35004. },
  35005. [
  35006. {
  35007. name: "Normal",
  35008. height: math.unit(8 + 4/12, "feet"),
  35009. default: true
  35010. },
  35011. ]
  35012. ))
  35013. characterMakers.push(() => makeCharacter(
  35014. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35015. {
  35016. front: {
  35017. height: math.unit(8 + 4/12, "feet"),
  35018. weight: math.unit(750, "lb"),
  35019. name: "Front",
  35020. image: {
  35021. source: "./media/characters/tanya/front.svg",
  35022. extra: 1749/1615,
  35023. bottom: 33/1782
  35024. }
  35025. },
  35026. },
  35027. [
  35028. {
  35029. name: "Normal",
  35030. height: math.unit(8 + 4/12, "feet"),
  35031. default: true
  35032. },
  35033. ]
  35034. ))
  35035. characterMakers.push(() => makeCharacter(
  35036. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35037. {
  35038. front: {
  35039. height: math.unit(5, "feet"),
  35040. weight: math.unit(225, "lb"),
  35041. name: "Front",
  35042. image: {
  35043. source: "./media/characters/cindy/front.svg",
  35044. extra: 1320/1250,
  35045. bottom: 42/1362
  35046. }
  35047. },
  35048. frontDressed: {
  35049. height: math.unit(5, "feet"),
  35050. weight: math.unit(225, "lb"),
  35051. name: "Front (Dressed)",
  35052. image: {
  35053. source: "./media/characters/cindy/front-dressed.svg",
  35054. extra: 1320/1250,
  35055. bottom: 42/1362
  35056. }
  35057. },
  35058. back: {
  35059. height: math.unit(5, "feet"),
  35060. weight: math.unit(225, "lb"),
  35061. name: "Back",
  35062. image: {
  35063. source: "./media/characters/cindy/back.svg",
  35064. extra: 1384/1346,
  35065. bottom: 14/1398
  35066. }
  35067. },
  35068. },
  35069. [
  35070. {
  35071. name: "Normal",
  35072. height: math.unit(5, "feet"),
  35073. default: true
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35079. {
  35080. front: {
  35081. height: math.unit(6 + 9/12, "feet"),
  35082. weight: math.unit(440, "lb"),
  35083. name: "Front",
  35084. image: {
  35085. source: "./media/characters/wilbur-owen/front.svg",
  35086. extra: 1575/1448,
  35087. bottom: 72/1647
  35088. }
  35089. },
  35090. back: {
  35091. height: math.unit(6 + 9/12, "feet"),
  35092. weight: math.unit(440, "lb"),
  35093. name: "Back",
  35094. image: {
  35095. source: "./media/characters/wilbur-owen/back.svg",
  35096. extra: 1578/1445,
  35097. bottom: 36/1614
  35098. }
  35099. },
  35100. },
  35101. [
  35102. {
  35103. name: "Normal",
  35104. height: math.unit(6 + 9/12, "feet"),
  35105. default: true
  35106. },
  35107. ]
  35108. ))
  35109. characterMakers.push(() => makeCharacter(
  35110. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35111. {
  35112. front: {
  35113. height: math.unit(6 + 5/12, "feet"),
  35114. weight: math.unit(650, "lb"),
  35115. name: "Front",
  35116. image: {
  35117. source: "./media/characters/keegan/front.svg",
  35118. extra: 2387/2198,
  35119. bottom: 33/2420
  35120. }
  35121. },
  35122. side: {
  35123. height: math.unit(6 + 5/12, "feet"),
  35124. weight: math.unit(650, "lb"),
  35125. name: "Side",
  35126. image: {
  35127. source: "./media/characters/keegan/side.svg",
  35128. extra: 2390/2202,
  35129. bottom: 47/2437
  35130. }
  35131. },
  35132. back: {
  35133. height: math.unit(6 + 5/12, "feet"),
  35134. weight: math.unit(650, "lb"),
  35135. name: "Back",
  35136. image: {
  35137. source: "./media/characters/keegan/back.svg",
  35138. extra: 2418/2268,
  35139. bottom: 15/2433
  35140. }
  35141. },
  35142. frontSfw: {
  35143. height: math.unit(6 + 5/12, "feet"),
  35144. weight: math.unit(650, "lb"),
  35145. name: "Front (SFW)",
  35146. image: {
  35147. source: "./media/characters/keegan/front-sfw.svg",
  35148. extra: 2387/2198,
  35149. bottom: 33/2420
  35150. }
  35151. },
  35152. beans: {
  35153. height: math.unit(1.85, "feet"),
  35154. name: "Beans",
  35155. image: {
  35156. source: "./media/characters/keegan/beans.svg"
  35157. }
  35158. },
  35159. },
  35160. [
  35161. {
  35162. name: "Normal",
  35163. height: math.unit(6 + 5/12, "feet"),
  35164. default: true
  35165. },
  35166. ]
  35167. ))
  35168. characterMakers.push(() => makeCharacter(
  35169. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35170. {
  35171. front: {
  35172. height: math.unit(9, "feet"),
  35173. name: "Front",
  35174. image: {
  35175. source: "./media/characters/colton/front.svg",
  35176. extra: 1589/1326,
  35177. bottom: 139/1728
  35178. }
  35179. },
  35180. },
  35181. [
  35182. {
  35183. name: "Normal",
  35184. height: math.unit(9, "feet"),
  35185. default: true
  35186. },
  35187. ]
  35188. ))
  35189. characterMakers.push(() => makeCharacter(
  35190. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35191. {
  35192. front: {
  35193. height: math.unit(2 + 9/12, "feet"),
  35194. name: "Front",
  35195. image: {
  35196. source: "./media/characters/bora/front.svg",
  35197. extra: 1265/1250,
  35198. bottom: 24/1289
  35199. }
  35200. },
  35201. },
  35202. [
  35203. {
  35204. name: "Normal",
  35205. height: math.unit(2 + 9/12, "feet"),
  35206. default: true
  35207. },
  35208. ]
  35209. ))
  35210. characterMakers.push(() => makeCharacter(
  35211. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35212. {
  35213. front: {
  35214. height: math.unit(8, "feet"),
  35215. name: "Front",
  35216. image: {
  35217. source: "./media/characters/myu-myu/front.svg",
  35218. extra: 1949/1857,
  35219. bottom: 90/2039
  35220. }
  35221. },
  35222. },
  35223. [
  35224. {
  35225. name: "Normal",
  35226. height: math.unit(8, "feet"),
  35227. default: true
  35228. },
  35229. {
  35230. name: "Big",
  35231. height: math.unit(15, "feet")
  35232. },
  35233. {
  35234. name: "BIG",
  35235. height: math.unit(25, "feet")
  35236. },
  35237. ]
  35238. ))
  35239. characterMakers.push(() => makeCharacter(
  35240. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35241. {
  35242. side: {
  35243. height: math.unit(7 + 5/12, "feet"),
  35244. weight: math.unit(2800, "lb"),
  35245. name: "Side",
  35246. image: {
  35247. source: "./media/characters/haloren/side.svg",
  35248. extra: 1793/409,
  35249. bottom: 59/1852
  35250. }
  35251. },
  35252. frontPaw: {
  35253. height: math.unit(2.36, "feet"),
  35254. name: "Front paw",
  35255. image: {
  35256. source: "./media/characters/haloren/front-paw.svg"
  35257. }
  35258. },
  35259. hindPaw: {
  35260. height: math.unit(3.18, "feet"),
  35261. name: "Hind paw",
  35262. image: {
  35263. source: "./media/characters/haloren/hind-paw.svg"
  35264. }
  35265. },
  35266. maw: {
  35267. height: math.unit(5.05, "feet"),
  35268. name: "Maw",
  35269. image: {
  35270. source: "./media/characters/haloren/maw.svg"
  35271. }
  35272. },
  35273. dick: {
  35274. height: math.unit(2.90, "feet"),
  35275. name: "Dick",
  35276. image: {
  35277. source: "./media/characters/haloren/dick.svg"
  35278. }
  35279. },
  35280. },
  35281. [
  35282. {
  35283. name: "Normal",
  35284. height: math.unit(7 + 5/12, "feet"),
  35285. default: true
  35286. },
  35287. {
  35288. name: "Enhanced",
  35289. height: math.unit(14 + 3/12, "feet")
  35290. },
  35291. ]
  35292. ))
  35293. characterMakers.push(() => makeCharacter(
  35294. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35295. {
  35296. front: {
  35297. height: math.unit(171, "cm"),
  35298. name: "Front",
  35299. image: {
  35300. source: "./media/characters/kimmy/front.svg",
  35301. extra: 1491/1435,
  35302. bottom: 53/1544
  35303. }
  35304. },
  35305. },
  35306. [
  35307. {
  35308. name: "Small",
  35309. height: math.unit(9, "cm")
  35310. },
  35311. {
  35312. name: "Normal",
  35313. height: math.unit(171, "cm"),
  35314. default: true
  35315. },
  35316. ]
  35317. ))
  35318. characterMakers.push(() => makeCharacter(
  35319. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35320. {
  35321. front: {
  35322. height: math.unit(8, "feet"),
  35323. weight: math.unit(300, "lb"),
  35324. name: "Front",
  35325. image: {
  35326. source: "./media/characters/galeboomer/front.svg",
  35327. extra: 4651/4415,
  35328. bottom: 162/4813
  35329. }
  35330. },
  35331. back: {
  35332. height: math.unit(8, "feet"),
  35333. weight: math.unit(300, "lb"),
  35334. name: "Back",
  35335. image: {
  35336. source: "./media/characters/galeboomer/back.svg",
  35337. extra: 4544/4314,
  35338. bottom: 16/4560
  35339. }
  35340. },
  35341. frontAlt: {
  35342. height: math.unit(8, "feet"),
  35343. weight: math.unit(300, "lb"),
  35344. name: "Front (Alt)",
  35345. image: {
  35346. source: "./media/characters/galeboomer/front-alt.svg",
  35347. extra: 4458/4228,
  35348. bottom: 68/4526
  35349. }
  35350. },
  35351. maw: {
  35352. height: math.unit(1.2, "feet"),
  35353. name: "Maw",
  35354. image: {
  35355. source: "./media/characters/galeboomer/maw.svg"
  35356. }
  35357. },
  35358. },
  35359. [
  35360. {
  35361. name: "Normal",
  35362. height: math.unit(8, "feet"),
  35363. default: true
  35364. },
  35365. ]
  35366. ))
  35367. characterMakers.push(() => makeCharacter(
  35368. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35369. {
  35370. front: {
  35371. height: math.unit(5 + 9/12, "feet"),
  35372. weight: math.unit(120, "lb"),
  35373. name: "Front",
  35374. image: {
  35375. source: "./media/characters/chyr/front.svg",
  35376. extra: 1323/1254,
  35377. bottom: 63/1386
  35378. }
  35379. },
  35380. back: {
  35381. height: math.unit(5 + 9/12, "feet"),
  35382. weight: math.unit(120, "lb"),
  35383. name: "Back",
  35384. image: {
  35385. source: "./media/characters/chyr/back.svg",
  35386. extra: 1323/1252,
  35387. bottom: 48/1371
  35388. }
  35389. },
  35390. },
  35391. [
  35392. {
  35393. name: "Normal",
  35394. height: math.unit(5 + 9/12, "feet"),
  35395. default: true
  35396. },
  35397. ]
  35398. ))
  35399. characterMakers.push(() => makeCharacter(
  35400. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35401. {
  35402. front: {
  35403. height: math.unit(7, "feet"),
  35404. weight: math.unit(310, "lb"),
  35405. name: "Front",
  35406. image: {
  35407. source: "./media/characters/solarus/front.svg",
  35408. extra: 2415/2021,
  35409. bottom: 103/2518
  35410. }
  35411. },
  35412. back: {
  35413. height: math.unit(7, "feet"),
  35414. weight: math.unit(310, "lb"),
  35415. name: "Back",
  35416. image: {
  35417. source: "./media/characters/solarus/back.svg",
  35418. extra: 2463/2089,
  35419. bottom: 79/2542
  35420. }
  35421. },
  35422. },
  35423. [
  35424. {
  35425. name: "Normal",
  35426. height: math.unit(7, "feet"),
  35427. default: true
  35428. },
  35429. ]
  35430. ))
  35431. characterMakers.push(() => makeCharacter(
  35432. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35433. {
  35434. front: {
  35435. height: math.unit(16, "feet"),
  35436. name: "Front",
  35437. image: {
  35438. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35439. extra: 1844/1780,
  35440. bottom: 58/1902
  35441. }
  35442. },
  35443. },
  35444. [
  35445. {
  35446. name: "Normal",
  35447. height: math.unit(16, "feet"),
  35448. default: true
  35449. },
  35450. ]
  35451. ))
  35452. characterMakers.push(() => makeCharacter(
  35453. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35454. {
  35455. front: {
  35456. height: math.unit(11 + 6/12, "feet"),
  35457. weight: math.unit(1366, "lb"),
  35458. name: "Front",
  35459. image: {
  35460. source: "./media/characters/lexor/front.svg",
  35461. extra: 1560/1481,
  35462. bottom: 211/1771
  35463. }
  35464. },
  35465. back: {
  35466. height: math.unit(11 + 6/12, "feet"),
  35467. weight: math.unit(1366, "lb"),
  35468. name: "Back",
  35469. image: {
  35470. source: "./media/characters/lexor/back.svg",
  35471. extra: 1614/1533,
  35472. bottom: 76/1690
  35473. }
  35474. },
  35475. maw: {
  35476. height: math.unit(3, "feet"),
  35477. name: "Maw",
  35478. image: {
  35479. source: "./media/characters/lexor/maw.svg"
  35480. }
  35481. },
  35482. dick: {
  35483. height: math.unit(2.59, "feet"),
  35484. name: "Dick",
  35485. image: {
  35486. source: "./media/characters/lexor/dick.svg"
  35487. }
  35488. },
  35489. },
  35490. [
  35491. {
  35492. name: "Normal",
  35493. height: math.unit(11 + 6/12, "feet"),
  35494. default: true
  35495. },
  35496. ]
  35497. ))
  35498. characterMakers.push(() => makeCharacter(
  35499. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35500. {
  35501. front: {
  35502. height: math.unit(5 + 8/12, "feet"),
  35503. name: "Front",
  35504. image: {
  35505. source: "./media/characters/magnum/front.svg",
  35506. extra: 942/855,
  35507. bottom: 26/968
  35508. }
  35509. },
  35510. },
  35511. [
  35512. {
  35513. name: "Normal",
  35514. height: math.unit(5 + 8/12, "feet"),
  35515. default: true
  35516. },
  35517. ]
  35518. ))
  35519. //characters
  35520. function makeCharacters() {
  35521. const results = [];
  35522. characterMakers.forEach(character => {
  35523. results.push(character());
  35524. });
  35525. return results;
  35526. }