less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

36455 lines
916 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(13 + 2/12, "feet"),
  5588. weight: math.unit(800, "kg"),
  5589. name: "Front",
  5590. image: {
  5591. source: "./media/characters/gin/front.svg",
  5592. extra: 1312/1191,
  5593. bottom: 45/1357
  5594. }
  5595. },
  5596. mouth: {
  5597. height: math.unit(2.39 * 1.8, "feet"),
  5598. name: "Mouth",
  5599. image: {
  5600. source: "./media/characters/gin/mouth.svg"
  5601. }
  5602. },
  5603. hand: {
  5604. height: math.unit(1.57 * 2.19, "feet"),
  5605. name: "Hand",
  5606. image: {
  5607. source: "./media/characters/gin/hand.svg"
  5608. }
  5609. },
  5610. foot: {
  5611. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5612. name: "Foot",
  5613. image: {
  5614. source: "./media/characters/gin/foot.svg"
  5615. }
  5616. },
  5617. sole: {
  5618. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5619. name: "Sole",
  5620. image: {
  5621. source: "./media/characters/gin/sole.svg"
  5622. }
  5623. },
  5624. },
  5625. [
  5626. {
  5627. name: "Very Small",
  5628. height: math.unit(13 + 2 / 12, "feet")
  5629. },
  5630. {
  5631. name: "Micro",
  5632. height: math.unit(600, "miles")
  5633. },
  5634. {
  5635. name: "Regular",
  5636. height: math.unit(20, "earths"),
  5637. default: true
  5638. },
  5639. {
  5640. name: "Macro",
  5641. height: math.unit(2.2, "solarradii")
  5642. },
  5643. {
  5644. name: "Teramacro",
  5645. height: math.unit(1.2, "galaxies")
  5646. },
  5647. {
  5648. name: "Omegamacro",
  5649. height: math.unit(200, "universes")
  5650. },
  5651. ]
  5652. ))
  5653. characterMakers.push(() => makeCharacter(
  5654. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5655. {
  5656. front: {
  5657. height: math.unit(6 + 1 / 6, "feet"),
  5658. weight: math.unit(178, "lbs"),
  5659. name: "Front",
  5660. image: {
  5661. source: "./media/characters/guy/front.svg"
  5662. }
  5663. }
  5664. },
  5665. [
  5666. {
  5667. name: "Normal",
  5668. height: math.unit(6 + 1 / 6, "feet"),
  5669. default: true
  5670. },
  5671. {
  5672. name: "Large",
  5673. height: math.unit(25 + 7 / 12, "feet")
  5674. },
  5675. {
  5676. name: "Macro",
  5677. height: math.unit(60 + 9 / 12, "feet")
  5678. },
  5679. {
  5680. name: "Macro+",
  5681. height: math.unit(246, "feet")
  5682. },
  5683. {
  5684. name: "Macro++",
  5685. height: math.unit(878, "feet")
  5686. }
  5687. ]
  5688. ))
  5689. characterMakers.push(() => makeCharacter(
  5690. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5691. {
  5692. front: {
  5693. height: math.unit(9, "feet"),
  5694. weight: math.unit(800, "lbs"),
  5695. name: "Front",
  5696. image: {
  5697. source: "./media/characters/tiberius/front.svg",
  5698. extra: 2295 / 2071
  5699. }
  5700. },
  5701. back: {
  5702. height: math.unit(9, "feet"),
  5703. weight: math.unit(800, "lbs"),
  5704. name: "Back",
  5705. image: {
  5706. source: "./media/characters/tiberius/back.svg",
  5707. extra: 2373 / 2160
  5708. }
  5709. },
  5710. },
  5711. [
  5712. {
  5713. name: "Normal",
  5714. height: math.unit(9, "feet"),
  5715. default: true
  5716. }
  5717. ]
  5718. ))
  5719. characterMakers.push(() => makeCharacter(
  5720. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5721. {
  5722. front: {
  5723. height: math.unit(6, "feet"),
  5724. weight: math.unit(600, "lbs"),
  5725. name: "Front",
  5726. image: {
  5727. source: "./media/characters/surgo/front.svg",
  5728. extra: 3591 / 2227
  5729. }
  5730. },
  5731. back: {
  5732. height: math.unit(6, "feet"),
  5733. weight: math.unit(600, "lbs"),
  5734. name: "Back",
  5735. image: {
  5736. source: "./media/characters/surgo/back.svg",
  5737. extra: 3557 / 2228
  5738. }
  5739. },
  5740. laying: {
  5741. height: math.unit(6 * 0.85, "feet"),
  5742. weight: math.unit(600, "lbs"),
  5743. name: "Laying",
  5744. image: {
  5745. source: "./media/characters/surgo/laying.svg"
  5746. }
  5747. },
  5748. },
  5749. [
  5750. {
  5751. name: "Normal",
  5752. height: math.unit(6, "feet"),
  5753. default: true
  5754. }
  5755. ]
  5756. ))
  5757. characterMakers.push(() => makeCharacter(
  5758. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5759. {
  5760. side: {
  5761. height: math.unit(6, "feet"),
  5762. weight: math.unit(150, "lbs"),
  5763. name: "Side",
  5764. image: {
  5765. source: "./media/characters/cibus/side.svg",
  5766. extra: 800 / 400
  5767. }
  5768. },
  5769. },
  5770. [
  5771. {
  5772. name: "Normal",
  5773. height: math.unit(6, "feet"),
  5774. default: true
  5775. }
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(6, "feet"),
  5783. weight: math.unit(240, "lbs"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/nibbles/front.svg"
  5787. }
  5788. },
  5789. side: {
  5790. height: math.unit(6, "feet"),
  5791. weight: math.unit(240, "lbs"),
  5792. name: "Side",
  5793. image: {
  5794. source: "./media/characters/nibbles/side.svg"
  5795. }
  5796. },
  5797. },
  5798. [
  5799. {
  5800. name: "Normal",
  5801. height: math.unit(9, "feet"),
  5802. default: true
  5803. }
  5804. ]
  5805. ))
  5806. characterMakers.push(() => makeCharacter(
  5807. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5808. {
  5809. side: {
  5810. height: math.unit(5 + 1 / 6, "feet"),
  5811. weight: math.unit(130, "lbs"),
  5812. name: "Side",
  5813. image: {
  5814. source: "./media/characters/rikky/side.svg",
  5815. extra: 851 / 801
  5816. }
  5817. },
  5818. },
  5819. [
  5820. {
  5821. name: "Normal",
  5822. height: math.unit(5 + 1 / 6, "feet")
  5823. },
  5824. {
  5825. name: "Macro",
  5826. height: math.unit(152, "feet"),
  5827. default: true
  5828. },
  5829. {
  5830. name: "Megamacro",
  5831. height: math.unit(7, "miles")
  5832. }
  5833. ]
  5834. ))
  5835. characterMakers.push(() => makeCharacter(
  5836. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5837. {
  5838. side: {
  5839. height: math.unit(370, "cm"),
  5840. weight: math.unit(350, "lbs"),
  5841. name: "Side",
  5842. image: {
  5843. source: "./media/characters/malfressa/side.svg"
  5844. }
  5845. },
  5846. walking: {
  5847. height: math.unit(370, "cm"),
  5848. weight: math.unit(350, "lbs"),
  5849. name: "Walking",
  5850. image: {
  5851. source: "./media/characters/malfressa/walking.svg"
  5852. }
  5853. },
  5854. feral: {
  5855. height: math.unit(2500, "cm"),
  5856. weight: math.unit(100000, "lbs"),
  5857. name: "Feral",
  5858. image: {
  5859. source: "./media/characters/malfressa/feral.svg",
  5860. extra: 2108 / 837,
  5861. bottom: 0.02
  5862. }
  5863. },
  5864. },
  5865. [
  5866. {
  5867. name: "Normal",
  5868. height: math.unit(370, "cm")
  5869. },
  5870. {
  5871. name: "Macro",
  5872. height: math.unit(300, "meters"),
  5873. default: true
  5874. }
  5875. ]
  5876. ))
  5877. characterMakers.push(() => makeCharacter(
  5878. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5879. {
  5880. front: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(60, "kg"),
  5883. name: "Front",
  5884. image: {
  5885. source: "./media/characters/jaro/front.svg"
  5886. }
  5887. },
  5888. back: {
  5889. height: math.unit(6, "feet"),
  5890. weight: math.unit(60, "kg"),
  5891. name: "Back",
  5892. image: {
  5893. source: "./media/characters/jaro/back.svg"
  5894. }
  5895. },
  5896. },
  5897. [
  5898. {
  5899. name: "Micro",
  5900. height: math.unit(7, "inches")
  5901. },
  5902. {
  5903. name: "Normal",
  5904. height: math.unit(5.5, "feet"),
  5905. default: true
  5906. },
  5907. {
  5908. name: "Minimacro",
  5909. height: math.unit(20, "feet")
  5910. },
  5911. {
  5912. name: "Macro",
  5913. height: math.unit(200, "meters")
  5914. }
  5915. ]
  5916. ))
  5917. characterMakers.push(() => makeCharacter(
  5918. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5919. {
  5920. front: {
  5921. height: math.unit(6, "feet"),
  5922. weight: math.unit(195, "lb"),
  5923. name: "Front",
  5924. image: {
  5925. source: "./media/characters/rogue/front.svg"
  5926. }
  5927. },
  5928. },
  5929. [
  5930. {
  5931. name: "Macro",
  5932. height: math.unit(90, "feet"),
  5933. default: true
  5934. },
  5935. ]
  5936. ))
  5937. characterMakers.push(() => makeCharacter(
  5938. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5939. {
  5940. front: {
  5941. height: math.unit(5 + 8 / 12, "feet"),
  5942. weight: math.unit(140, "lb"),
  5943. name: "Front",
  5944. image: {
  5945. source: "./media/characters/piper/front.svg",
  5946. extra: 3948/3655,
  5947. bottom: 0/3948
  5948. }
  5949. },
  5950. },
  5951. [
  5952. {
  5953. name: "Micro",
  5954. height: math.unit(2, "inches")
  5955. },
  5956. {
  5957. name: "Normal",
  5958. height: math.unit(5 + 8 / 12, "feet")
  5959. },
  5960. {
  5961. name: "Macro",
  5962. height: math.unit(250, "feet"),
  5963. default: true
  5964. },
  5965. {
  5966. name: "Megamacro",
  5967. height: math.unit(7, "miles")
  5968. },
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5973. {
  5974. front: {
  5975. height: math.unit(6, "feet"),
  5976. weight: math.unit(220, "lb"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/gemini/front.svg"
  5980. }
  5981. },
  5982. back: {
  5983. height: math.unit(6, "feet"),
  5984. weight: math.unit(220, "lb"),
  5985. name: "Back",
  5986. image: {
  5987. source: "./media/characters/gemini/back.svg"
  5988. }
  5989. },
  5990. kneeling: {
  5991. height: math.unit(6 / 1.5, "feet"),
  5992. weight: math.unit(220, "lb"),
  5993. name: "Kneeling",
  5994. image: {
  5995. source: "./media/characters/gemini/kneeling.svg",
  5996. bottom: 0.02
  5997. }
  5998. },
  5999. },
  6000. [
  6001. {
  6002. name: "Macro",
  6003. height: math.unit(300, "meters"),
  6004. default: true
  6005. },
  6006. {
  6007. name: "Megamacro",
  6008. height: math.unit(6900, "meters")
  6009. },
  6010. ]
  6011. ))
  6012. characterMakers.push(() => makeCharacter(
  6013. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6014. {
  6015. anthro: {
  6016. height: math.unit(2.35, "meters"),
  6017. weight: math.unit(73, "kg"),
  6018. name: "Anthro",
  6019. image: {
  6020. source: "./media/characters/alicia/anthro.svg",
  6021. extra: 2571 / 2385,
  6022. bottom: 75 / 2648
  6023. }
  6024. },
  6025. paw: {
  6026. height: math.unit(1.32, "feet"),
  6027. name: "Paw",
  6028. image: {
  6029. source: "./media/characters/alicia/paw.svg"
  6030. }
  6031. },
  6032. feral: {
  6033. height: math.unit(1.69, "meters"),
  6034. weight: math.unit(73, "kg"),
  6035. name: "Feral",
  6036. image: {
  6037. source: "./media/characters/alicia/feral.svg",
  6038. extra: 2123 / 1715,
  6039. bottom: 222 / 2349
  6040. }
  6041. },
  6042. },
  6043. [
  6044. {
  6045. name: "Normal",
  6046. height: math.unit(2.35, "meters")
  6047. },
  6048. {
  6049. name: "Macro",
  6050. height: math.unit(60, "meters"),
  6051. default: true
  6052. },
  6053. {
  6054. name: "Megamacro",
  6055. height: math.unit(10000, "kilometers")
  6056. },
  6057. ]
  6058. ))
  6059. characterMakers.push(() => makeCharacter(
  6060. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6061. {
  6062. front: {
  6063. height: math.unit(7, "feet"),
  6064. weight: math.unit(250, "lbs"),
  6065. name: "Front",
  6066. image: {
  6067. source: "./media/characters/archy/front.svg"
  6068. }
  6069. }
  6070. },
  6071. [
  6072. {
  6073. name: "Micro",
  6074. height: math.unit(1, "inch")
  6075. },
  6076. {
  6077. name: "Shorty",
  6078. height: math.unit(5, "feet")
  6079. },
  6080. {
  6081. name: "Normal",
  6082. height: math.unit(7, "feet")
  6083. },
  6084. {
  6085. name: "Macro",
  6086. height: math.unit(600, "meters"),
  6087. default: true
  6088. },
  6089. {
  6090. name: "Megamacro",
  6091. height: math.unit(1, "mile")
  6092. },
  6093. ]
  6094. ))
  6095. characterMakers.push(() => makeCharacter(
  6096. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6097. {
  6098. front: {
  6099. height: math.unit(1.65, "meters"),
  6100. weight: math.unit(74, "kg"),
  6101. name: "Front",
  6102. image: {
  6103. source: "./media/characters/berri/front.svg",
  6104. extra: 857 / 837,
  6105. bottom: 18 / 877
  6106. }
  6107. },
  6108. bum: {
  6109. height: math.unit(1.46, "feet"),
  6110. name: "Bum",
  6111. image: {
  6112. source: "./media/characters/berri/bum.svg"
  6113. }
  6114. },
  6115. mouth: {
  6116. height: math.unit(0.44, "feet"),
  6117. name: "Mouth",
  6118. image: {
  6119. source: "./media/characters/berri/mouth.svg"
  6120. }
  6121. },
  6122. paw: {
  6123. height: math.unit(0.826, "feet"),
  6124. name: "Paw",
  6125. image: {
  6126. source: "./media/characters/berri/paw.svg"
  6127. }
  6128. },
  6129. },
  6130. [
  6131. {
  6132. name: "Normal",
  6133. height: math.unit(1.65, "meters")
  6134. },
  6135. {
  6136. name: "Macro",
  6137. height: math.unit(60, "m"),
  6138. default: true
  6139. },
  6140. {
  6141. name: "Megamacro",
  6142. height: math.unit(9.213, "km")
  6143. },
  6144. {
  6145. name: "Planet Eater",
  6146. height: math.unit(489, "megameters")
  6147. },
  6148. {
  6149. name: "Teramacro",
  6150. height: math.unit(2471635000000, "meters")
  6151. },
  6152. {
  6153. name: "Examacro",
  6154. height: math.unit(8.0624e+26, "meters")
  6155. }
  6156. ]
  6157. ))
  6158. characterMakers.push(() => makeCharacter(
  6159. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6160. {
  6161. front: {
  6162. height: math.unit(1.72, "meters"),
  6163. weight: math.unit(68, "kg"),
  6164. name: "Front",
  6165. image: {
  6166. source: "./media/characters/lexi/front.svg"
  6167. }
  6168. }
  6169. },
  6170. [
  6171. {
  6172. name: "Very Smol",
  6173. height: math.unit(10, "mm")
  6174. },
  6175. {
  6176. name: "Micro",
  6177. height: math.unit(6.8, "cm"),
  6178. default: true
  6179. },
  6180. {
  6181. name: "Normal",
  6182. height: math.unit(1.72, "m")
  6183. }
  6184. ]
  6185. ))
  6186. characterMakers.push(() => makeCharacter(
  6187. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6188. {
  6189. front: {
  6190. height: math.unit(1.69, "meters"),
  6191. weight: math.unit(68, "kg"),
  6192. name: "Front",
  6193. image: {
  6194. source: "./media/characters/martin/front.svg",
  6195. extra: 596 / 581
  6196. }
  6197. }
  6198. },
  6199. [
  6200. {
  6201. name: "Micro",
  6202. height: math.unit(6.85, "cm"),
  6203. default: true
  6204. },
  6205. {
  6206. name: "Normal",
  6207. height: math.unit(1.69, "m")
  6208. }
  6209. ]
  6210. ))
  6211. characterMakers.push(() => makeCharacter(
  6212. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6213. {
  6214. front: {
  6215. height: math.unit(1.69, "meters"),
  6216. weight: math.unit(68, "kg"),
  6217. name: "Front",
  6218. image: {
  6219. source: "./media/characters/juno/front.svg"
  6220. }
  6221. }
  6222. },
  6223. [
  6224. {
  6225. name: "Micro",
  6226. height: math.unit(7, "cm")
  6227. },
  6228. {
  6229. name: "Normal",
  6230. height: math.unit(1.89, "m")
  6231. },
  6232. {
  6233. name: "Macro",
  6234. height: math.unit(353, "meters"),
  6235. default: true
  6236. }
  6237. ]
  6238. ))
  6239. characterMakers.push(() => makeCharacter(
  6240. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6241. {
  6242. front: {
  6243. height: math.unit(1.93, "meters"),
  6244. weight: math.unit(83, "kg"),
  6245. name: "Front",
  6246. image: {
  6247. source: "./media/characters/samantha/front.svg"
  6248. }
  6249. },
  6250. frontClothed: {
  6251. height: math.unit(1.93, "meters"),
  6252. weight: math.unit(83, "kg"),
  6253. name: "Front (Clothed)",
  6254. image: {
  6255. source: "./media/characters/samantha/front-clothed.svg"
  6256. }
  6257. },
  6258. back: {
  6259. height: math.unit(1.93, "meters"),
  6260. weight: math.unit(83, "kg"),
  6261. name: "Back",
  6262. image: {
  6263. source: "./media/characters/samantha/back.svg"
  6264. }
  6265. },
  6266. },
  6267. [
  6268. {
  6269. name: "Normal",
  6270. height: math.unit(1.93, "m")
  6271. },
  6272. {
  6273. name: "Macro",
  6274. height: math.unit(74, "meters"),
  6275. default: true
  6276. },
  6277. {
  6278. name: "Macro+",
  6279. height: math.unit(223, "meters"),
  6280. },
  6281. {
  6282. name: "Megamacro",
  6283. height: math.unit(8381, "meters"),
  6284. },
  6285. {
  6286. name: "Megamacro+",
  6287. height: math.unit(12000, "kilometers")
  6288. },
  6289. ]
  6290. ))
  6291. characterMakers.push(() => makeCharacter(
  6292. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6293. {
  6294. front: {
  6295. height: math.unit(1.92, "meters"),
  6296. weight: math.unit(80, "kg"),
  6297. name: "Front",
  6298. image: {
  6299. source: "./media/characters/dr-clay/front.svg"
  6300. }
  6301. },
  6302. frontClothed: {
  6303. height: math.unit(1.92, "meters"),
  6304. weight: math.unit(80, "kg"),
  6305. name: "Front (Clothed)",
  6306. image: {
  6307. source: "./media/characters/dr-clay/front-clothed.svg"
  6308. }
  6309. }
  6310. },
  6311. [
  6312. {
  6313. name: "Normal",
  6314. height: math.unit(1.92, "m")
  6315. },
  6316. {
  6317. name: "Macro",
  6318. height: math.unit(214, "meters"),
  6319. default: true
  6320. },
  6321. {
  6322. name: "Macro+",
  6323. height: math.unit(12.237, "meters"),
  6324. },
  6325. {
  6326. name: "Megamacro",
  6327. height: math.unit(557, "megameters"),
  6328. },
  6329. {
  6330. name: "Unimaginable",
  6331. height: math.unit(120e9, "lightyears")
  6332. },
  6333. ]
  6334. ))
  6335. characterMakers.push(() => makeCharacter(
  6336. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6337. {
  6338. front: {
  6339. height: math.unit(2, "meters"),
  6340. weight: math.unit(80, "kg"),
  6341. name: "Front",
  6342. image: {
  6343. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6344. }
  6345. }
  6346. },
  6347. [
  6348. {
  6349. name: "Teramacro",
  6350. height: math.unit(500000, "lightyears"),
  6351. default: true
  6352. },
  6353. ]
  6354. ))
  6355. characterMakers.push(() => makeCharacter(
  6356. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6357. {
  6358. front: {
  6359. height: math.unit(2, "meters"),
  6360. weight: math.unit(150, "kg"),
  6361. name: "Front",
  6362. image: {
  6363. source: "./media/characters/vemus/front.svg",
  6364. extra: 2384 / 2084,
  6365. bottom: 0.0123
  6366. }
  6367. }
  6368. },
  6369. [
  6370. {
  6371. name: "Normal",
  6372. height: math.unit(3.75, "meters"),
  6373. default: true
  6374. },
  6375. {
  6376. name: "Big",
  6377. height: math.unit(8, "meters")
  6378. },
  6379. {
  6380. name: "Macro",
  6381. height: math.unit(100, "meters")
  6382. },
  6383. {
  6384. name: "Macro+",
  6385. height: math.unit(1500, "meters")
  6386. },
  6387. {
  6388. name: "Stellar",
  6389. height: math.unit(14e8, "meters")
  6390. },
  6391. ]
  6392. ))
  6393. characterMakers.push(() => makeCharacter(
  6394. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6395. {
  6396. front: {
  6397. height: math.unit(2, "meters"),
  6398. weight: math.unit(70, "kg"),
  6399. name: "Front",
  6400. image: {
  6401. source: "./media/characters/beherit/front.svg",
  6402. extra: 1408 / 1242
  6403. }
  6404. }
  6405. },
  6406. [
  6407. {
  6408. name: "Normal",
  6409. height: math.unit(6, "feet")
  6410. },
  6411. {
  6412. name: "Lorg",
  6413. height: math.unit(25, "feet"),
  6414. default: true
  6415. },
  6416. {
  6417. name: "Lorger",
  6418. height: math.unit(75, "feet")
  6419. },
  6420. {
  6421. name: "Macro",
  6422. height: math.unit(200, "meters")
  6423. },
  6424. ]
  6425. ))
  6426. characterMakers.push(() => makeCharacter(
  6427. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6428. {
  6429. front: {
  6430. height: math.unit(2, "meters"),
  6431. weight: math.unit(150, "kg"),
  6432. name: "Front",
  6433. image: {
  6434. source: "./media/characters/everett/front.svg",
  6435. extra: 2038 / 1737,
  6436. bottom: 0.03
  6437. }
  6438. },
  6439. paw: {
  6440. height: math.unit(2 / 3.6, "meters"),
  6441. name: "Paw",
  6442. image: {
  6443. source: "./media/characters/everett/paw.svg"
  6444. }
  6445. },
  6446. },
  6447. [
  6448. {
  6449. name: "Normal",
  6450. height: math.unit(15, "feet"),
  6451. default: true
  6452. },
  6453. {
  6454. name: "Lorg",
  6455. height: math.unit(70, "feet"),
  6456. default: true
  6457. },
  6458. {
  6459. name: "Lorger",
  6460. height: math.unit(250, "feet")
  6461. },
  6462. {
  6463. name: "Macro",
  6464. height: math.unit(500, "meters")
  6465. },
  6466. ]
  6467. ))
  6468. characterMakers.push(() => makeCharacter(
  6469. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6470. {
  6471. front: {
  6472. height: math.unit(2, "meters"),
  6473. weight: math.unit(86, "kg"),
  6474. name: "Front",
  6475. image: {
  6476. source: "./media/characters/rose/front.svg",
  6477. extra: 350/335,
  6478. bottom: 10/360
  6479. }
  6480. },
  6481. frontAlt: {
  6482. height: math.unit(1.6, "meters"),
  6483. weight: math.unit(86, "kg"),
  6484. name: "Front (Alt)",
  6485. image: {
  6486. source: "./media/characters/rose/front-alt.svg",
  6487. extra: 299/283,
  6488. bottom: 3/302
  6489. }
  6490. },
  6491. plush: {
  6492. height: math.unit(2, "meters"),
  6493. weight: math.unit(86/3, "kg"),
  6494. name: "Plush",
  6495. image: {
  6496. source: "./media/characters/rose/plush.svg",
  6497. extra: 361/337,
  6498. bottom: 11/372
  6499. }
  6500. },
  6501. },
  6502. [
  6503. {
  6504. name: "Mini-Micro",
  6505. height: math.unit(1, "cm")
  6506. },
  6507. {
  6508. name: "Micro",
  6509. height: math.unit(3.5, "inches"),
  6510. default: true
  6511. },
  6512. {
  6513. name: "Normal",
  6514. height: math.unit(6 + 1 / 6, "feet")
  6515. },
  6516. {
  6517. name: "Mini-Macro",
  6518. height: math.unit(9 + 10 / 12, "feet")
  6519. },
  6520. ]
  6521. ))
  6522. characterMakers.push(() => makeCharacter(
  6523. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6524. {
  6525. front: {
  6526. height: math.unit(2, "meters"),
  6527. weight: math.unit(350, "lbs"),
  6528. name: "Front",
  6529. image: {
  6530. source: "./media/characters/regal/front.svg"
  6531. }
  6532. },
  6533. back: {
  6534. height: math.unit(2, "meters"),
  6535. weight: math.unit(350, "lbs"),
  6536. name: "Back",
  6537. image: {
  6538. source: "./media/characters/regal/back.svg"
  6539. }
  6540. },
  6541. },
  6542. [
  6543. {
  6544. name: "Macro",
  6545. height: math.unit(350, "feet"),
  6546. default: true
  6547. }
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6552. {
  6553. front: {
  6554. height: math.unit(4 + 11 / 12, "feet"),
  6555. weight: math.unit(100, "lbs"),
  6556. name: "Front",
  6557. image: {
  6558. source: "./media/characters/opal/front.svg"
  6559. }
  6560. },
  6561. frontAlt: {
  6562. height: math.unit(4 + 11 / 12, "feet"),
  6563. weight: math.unit(100, "lbs"),
  6564. name: "Front (Alt)",
  6565. image: {
  6566. source: "./media/characters/opal/front-alt.svg"
  6567. }
  6568. },
  6569. },
  6570. [
  6571. {
  6572. name: "Small",
  6573. height: math.unit(4 + 11 / 12, "feet")
  6574. },
  6575. {
  6576. name: "Normal",
  6577. height: math.unit(20, "feet"),
  6578. default: true
  6579. },
  6580. {
  6581. name: "Macro",
  6582. height: math.unit(120, "feet")
  6583. },
  6584. {
  6585. name: "Megamacro",
  6586. height: math.unit(80, "miles")
  6587. },
  6588. {
  6589. name: "True Size",
  6590. height: math.unit(100000, "lightyears")
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6596. {
  6597. front: {
  6598. height: math.unit(6, "feet"),
  6599. weight: math.unit(200, "lbs"),
  6600. name: "Front",
  6601. image: {
  6602. source: "./media/characters/vector-wuff/front.svg"
  6603. }
  6604. }
  6605. },
  6606. [
  6607. {
  6608. name: "Normal",
  6609. height: math.unit(2.8, "meters")
  6610. },
  6611. {
  6612. name: "Macro",
  6613. height: math.unit(450, "meters"),
  6614. default: true
  6615. },
  6616. {
  6617. name: "Megamacro",
  6618. height: math.unit(15, "kilometers")
  6619. }
  6620. ]
  6621. ))
  6622. characterMakers.push(() => makeCharacter(
  6623. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6624. {
  6625. front: {
  6626. height: math.unit(6, "feet"),
  6627. weight: math.unit(256, "lbs"),
  6628. name: "Front",
  6629. image: {
  6630. source: "./media/characters/dannik/front.svg"
  6631. }
  6632. }
  6633. },
  6634. [
  6635. {
  6636. name: "Macro",
  6637. height: math.unit(69.57, "meters"),
  6638. default: true
  6639. },
  6640. ]
  6641. ))
  6642. characterMakers.push(() => makeCharacter(
  6643. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6644. {
  6645. front: {
  6646. height: math.unit(6, "feet"),
  6647. weight: math.unit(120, "lbs"),
  6648. name: "Front",
  6649. image: {
  6650. source: "./media/characters/azura-saharah/front.svg"
  6651. }
  6652. },
  6653. back: {
  6654. height: math.unit(6, "feet"),
  6655. weight: math.unit(120, "lbs"),
  6656. name: "Back",
  6657. image: {
  6658. source: "./media/characters/azura-saharah/back.svg"
  6659. }
  6660. },
  6661. },
  6662. [
  6663. {
  6664. name: "Macro",
  6665. height: math.unit(100, "feet"),
  6666. default: true
  6667. },
  6668. ]
  6669. ))
  6670. characterMakers.push(() => makeCharacter(
  6671. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6672. {
  6673. side: {
  6674. height: math.unit(5 + 4 / 12, "feet"),
  6675. weight: math.unit(163, "lbs"),
  6676. name: "Side",
  6677. image: {
  6678. source: "./media/characters/kennedy/side.svg"
  6679. }
  6680. }
  6681. },
  6682. [
  6683. {
  6684. name: "Standard Doggo",
  6685. height: math.unit(5 + 4 / 12, "feet")
  6686. },
  6687. {
  6688. name: "Big Doggo",
  6689. height: math.unit(25 + 3 / 12, "feet"),
  6690. default: true
  6691. },
  6692. ]
  6693. ))
  6694. characterMakers.push(() => makeCharacter(
  6695. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6696. {
  6697. front: {
  6698. height: math.unit(6, "feet"),
  6699. weight: math.unit(90, "lbs"),
  6700. name: "Front",
  6701. image: {
  6702. source: "./media/characters/odi-lunar/front.svg"
  6703. }
  6704. }
  6705. },
  6706. [
  6707. {
  6708. name: "Micro",
  6709. height: math.unit(3, "inches"),
  6710. default: true
  6711. },
  6712. {
  6713. name: "Normal",
  6714. height: math.unit(5.5, "feet")
  6715. }
  6716. ]
  6717. ))
  6718. characterMakers.push(() => makeCharacter(
  6719. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6720. {
  6721. back: {
  6722. height: math.unit(6, "feet"),
  6723. weight: math.unit(220, "lbs"),
  6724. name: "Back",
  6725. image: {
  6726. source: "./media/characters/mandake/back.svg"
  6727. }
  6728. }
  6729. },
  6730. [
  6731. {
  6732. name: "Normal",
  6733. height: math.unit(7, "feet"),
  6734. default: true
  6735. },
  6736. {
  6737. name: "Macro",
  6738. height: math.unit(78, "feet")
  6739. },
  6740. {
  6741. name: "Macro+",
  6742. height: math.unit(300, "meters")
  6743. },
  6744. {
  6745. name: "Macro++",
  6746. height: math.unit(2400, "feet")
  6747. },
  6748. {
  6749. name: "Megamacro",
  6750. height: math.unit(5167, "meters")
  6751. },
  6752. {
  6753. name: "Gigamacro",
  6754. height: math.unit(41769, "miles")
  6755. },
  6756. ]
  6757. ))
  6758. characterMakers.push(() => makeCharacter(
  6759. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6760. {
  6761. front: {
  6762. height: math.unit(6, "feet"),
  6763. weight: math.unit(120, "lbs"),
  6764. name: "Front",
  6765. image: {
  6766. source: "./media/characters/yozey/front.svg"
  6767. }
  6768. },
  6769. frontAlt: {
  6770. height: math.unit(6, "feet"),
  6771. weight: math.unit(120, "lbs"),
  6772. name: "Front (Alt)",
  6773. image: {
  6774. source: "./media/characters/yozey/front-alt.svg"
  6775. }
  6776. },
  6777. side: {
  6778. height: math.unit(6, "feet"),
  6779. weight: math.unit(120, "lbs"),
  6780. name: "Side",
  6781. image: {
  6782. source: "./media/characters/yozey/side.svg"
  6783. }
  6784. },
  6785. },
  6786. [
  6787. {
  6788. name: "Micro",
  6789. height: math.unit(3, "inches"),
  6790. default: true
  6791. },
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(6, "feet")
  6795. }
  6796. ]
  6797. ))
  6798. characterMakers.push(() => makeCharacter(
  6799. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6800. {
  6801. front: {
  6802. height: math.unit(6, "feet"),
  6803. weight: math.unit(103, "lbs"),
  6804. name: "Front",
  6805. image: {
  6806. source: "./media/characters/valeska-voss/front.svg"
  6807. }
  6808. }
  6809. },
  6810. [
  6811. {
  6812. name: "Mini-Sized Sub",
  6813. height: math.unit(3.1, "inches")
  6814. },
  6815. {
  6816. name: "Mid-Sized Sub",
  6817. height: math.unit(6.2, "inches")
  6818. },
  6819. {
  6820. name: "Full-Sized Sub",
  6821. height: math.unit(9.3, "inches")
  6822. },
  6823. {
  6824. name: "Normal",
  6825. height: math.unit(5 + 2 / 12, "foot"),
  6826. default: true
  6827. },
  6828. ]
  6829. ))
  6830. characterMakers.push(() => makeCharacter(
  6831. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6832. {
  6833. front: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(160, "lbs"),
  6836. name: "Front",
  6837. image: {
  6838. source: "./media/characters/gene-zeta/front.svg",
  6839. extra: 3006 / 2826,
  6840. bottom: 182 / 3188
  6841. }
  6842. }
  6843. },
  6844. [
  6845. {
  6846. name: "Micro",
  6847. height: math.unit(6, "inches")
  6848. },
  6849. {
  6850. name: "Normal",
  6851. height: math.unit(5 + 11 / 12, "foot"),
  6852. default: true
  6853. },
  6854. {
  6855. name: "Macro",
  6856. height: math.unit(140, "feet")
  6857. },
  6858. {
  6859. name: "Supercharged",
  6860. height: math.unit(2500, "feet")
  6861. },
  6862. ]
  6863. ))
  6864. characterMakers.push(() => makeCharacter(
  6865. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6866. {
  6867. front: {
  6868. height: math.unit(6, "feet"),
  6869. weight: math.unit(350, "lbs"),
  6870. name: "Front",
  6871. image: {
  6872. source: "./media/characters/razinox/front.svg",
  6873. extra: 1686 / 1548,
  6874. bottom: 28.2 / 1868
  6875. }
  6876. },
  6877. back: {
  6878. height: math.unit(6, "feet"),
  6879. weight: math.unit(350, "lbs"),
  6880. name: "Back",
  6881. image: {
  6882. source: "./media/characters/razinox/back.svg",
  6883. extra: 1660 / 1590,
  6884. bottom: 15 / 1665
  6885. }
  6886. },
  6887. },
  6888. [
  6889. {
  6890. name: "Normal",
  6891. height: math.unit(10 + 8 / 12, "foot")
  6892. },
  6893. {
  6894. name: "Minimacro",
  6895. height: math.unit(15, "foot")
  6896. },
  6897. {
  6898. name: "Macro",
  6899. height: math.unit(60, "foot"),
  6900. default: true
  6901. },
  6902. {
  6903. name: "Megamacro",
  6904. height: math.unit(5, "miles")
  6905. },
  6906. {
  6907. name: "Gigamacro",
  6908. height: math.unit(6000, "miles")
  6909. },
  6910. ]
  6911. ))
  6912. characterMakers.push(() => makeCharacter(
  6913. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6914. {
  6915. front: {
  6916. height: math.unit(6, "feet"),
  6917. weight: math.unit(150, "lbs"),
  6918. name: "Front",
  6919. image: {
  6920. source: "./media/characters/cobalt/front.svg"
  6921. }
  6922. }
  6923. },
  6924. [
  6925. {
  6926. name: "Normal",
  6927. height: math.unit(8 + 1 / 12, "foot")
  6928. },
  6929. {
  6930. name: "Macro",
  6931. height: math.unit(111, "foot"),
  6932. default: true
  6933. },
  6934. {
  6935. name: "Supracosmic",
  6936. height: math.unit(1e42, "feet")
  6937. },
  6938. ]
  6939. ))
  6940. characterMakers.push(() => makeCharacter(
  6941. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6942. {
  6943. front: {
  6944. height: math.unit(6, "feet"),
  6945. weight: math.unit(140, "lbs"),
  6946. name: "Front",
  6947. image: {
  6948. source: "./media/characters/amanda/front.svg"
  6949. }
  6950. }
  6951. },
  6952. [
  6953. {
  6954. name: "Micro",
  6955. height: math.unit(5, "inches"),
  6956. default: true
  6957. },
  6958. ]
  6959. ))
  6960. characterMakers.push(() => makeCharacter(
  6961. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6962. {
  6963. front: {
  6964. height: math.unit(2.75, "meters"),
  6965. weight: math.unit(1200, "lb"),
  6966. name: "Front",
  6967. image: {
  6968. source: "./media/characters/teal/front.svg",
  6969. extra: 2463 / 2320,
  6970. bottom: 166 / 2629
  6971. }
  6972. },
  6973. back: {
  6974. height: math.unit(2.75, "meters"),
  6975. weight: math.unit(1200, "lb"),
  6976. name: "Back",
  6977. image: {
  6978. source: "./media/characters/teal/back.svg",
  6979. extra: 2580 / 2489,
  6980. bottom: 151 / 2731
  6981. }
  6982. },
  6983. sitting: {
  6984. height: math.unit(1.9, "meters"),
  6985. weight: math.unit(1200, "lb"),
  6986. name: "Sitting",
  6987. image: {
  6988. source: "./media/characters/teal/sitting.svg",
  6989. extra: 623 / 590,
  6990. bottom: 121 / 744
  6991. }
  6992. },
  6993. standing: {
  6994. height: math.unit(2.75, "meters"),
  6995. weight: math.unit(1200, "lb"),
  6996. name: "Standing",
  6997. image: {
  6998. source: "./media/characters/teal/standing.svg",
  6999. extra: 923 / 893,
  7000. bottom: 60 / 983
  7001. }
  7002. },
  7003. stretching: {
  7004. height: math.unit(3.65, "meters"),
  7005. weight: math.unit(1200, "lb"),
  7006. name: "Stretching",
  7007. image: {
  7008. source: "./media/characters/teal/stretching.svg",
  7009. extra: 1276 / 1244,
  7010. bottom: 0 / 1276
  7011. }
  7012. },
  7013. legged: {
  7014. height: math.unit(1.3, "meters"),
  7015. weight: math.unit(100, "lb"),
  7016. name: "Legged",
  7017. image: {
  7018. source: "./media/characters/teal/legged.svg",
  7019. extra: 462 / 437,
  7020. bottom: 24 / 486
  7021. }
  7022. },
  7023. naga: {
  7024. height: math.unit(5.4, "meters"),
  7025. weight: math.unit(4000, "lb"),
  7026. name: "Naga",
  7027. image: {
  7028. source: "./media/characters/teal/naga.svg",
  7029. extra: 1902 / 1858,
  7030. bottom: 0 / 1902
  7031. }
  7032. },
  7033. hand: {
  7034. height: math.unit(0.52, "meters"),
  7035. name: "Hand",
  7036. image: {
  7037. source: "./media/characters/teal/hand.svg"
  7038. }
  7039. },
  7040. maw: {
  7041. height: math.unit(0.43, "meters"),
  7042. name: "Maw",
  7043. image: {
  7044. source: "./media/characters/teal/maw.svg"
  7045. }
  7046. },
  7047. slit: {
  7048. height: math.unit(0.25, "meters"),
  7049. name: "Slit",
  7050. image: {
  7051. source: "./media/characters/teal/slit.svg"
  7052. }
  7053. },
  7054. },
  7055. [
  7056. {
  7057. name: "Normal",
  7058. height: math.unit(2.75, "meters"),
  7059. default: true
  7060. },
  7061. {
  7062. name: "Macro",
  7063. height: math.unit(300, "feet")
  7064. },
  7065. {
  7066. name: "Macro+",
  7067. height: math.unit(2000, "feet")
  7068. },
  7069. ]
  7070. ))
  7071. characterMakers.push(() => makeCharacter(
  7072. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7073. {
  7074. frontCat: {
  7075. height: math.unit(6, "feet"),
  7076. weight: math.unit(180, "lbs"),
  7077. name: "Front (Cat)",
  7078. image: {
  7079. source: "./media/characters/ravin-amulet/front-cat.svg"
  7080. }
  7081. },
  7082. frontCatAlt: {
  7083. height: math.unit(6, "feet"),
  7084. weight: math.unit(180, "lbs"),
  7085. name: "Front (Alt, Cat)",
  7086. image: {
  7087. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7088. }
  7089. },
  7090. frontWerewolf: {
  7091. height: math.unit(6 * 1.2, "feet"),
  7092. weight: math.unit(225, "lbs"),
  7093. name: "Front (Werewolf)",
  7094. image: {
  7095. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7096. }
  7097. },
  7098. backWerewolf: {
  7099. height: math.unit(6 * 1.2, "feet"),
  7100. weight: math.unit(225, "lbs"),
  7101. name: "Back (Werewolf)",
  7102. image: {
  7103. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7104. }
  7105. },
  7106. },
  7107. [
  7108. {
  7109. name: "Nano",
  7110. height: math.unit(1, "micrometer")
  7111. },
  7112. {
  7113. name: "Micro",
  7114. height: math.unit(1, "inch")
  7115. },
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(6, "feet"),
  7119. default: true
  7120. },
  7121. {
  7122. name: "Macro",
  7123. height: math.unit(60, "feet")
  7124. }
  7125. ]
  7126. ))
  7127. characterMakers.push(() => makeCharacter(
  7128. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7129. {
  7130. front: {
  7131. height: math.unit(6, "feet"),
  7132. weight: math.unit(165, "lbs"),
  7133. name: "Front",
  7134. image: {
  7135. source: "./media/characters/fluoresce/front.svg"
  7136. }
  7137. }
  7138. },
  7139. [
  7140. {
  7141. name: "Micro",
  7142. height: math.unit(6, "cm")
  7143. },
  7144. {
  7145. name: "Normal",
  7146. height: math.unit(5 + 7 / 12, "feet"),
  7147. default: true
  7148. },
  7149. {
  7150. name: "Macro",
  7151. height: math.unit(56, "feet")
  7152. },
  7153. {
  7154. name: "Megamacro",
  7155. height: math.unit(1.9, "miles")
  7156. },
  7157. ]
  7158. ))
  7159. characterMakers.push(() => makeCharacter(
  7160. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7161. {
  7162. front: {
  7163. height: math.unit(9 + 6 / 12, "feet"),
  7164. weight: math.unit(523, "lbs"),
  7165. name: "Side",
  7166. image: {
  7167. source: "./media/characters/aurora/side.svg"
  7168. }
  7169. }
  7170. },
  7171. [
  7172. {
  7173. name: "Normal",
  7174. height: math.unit(9 + 6 / 12, "feet")
  7175. },
  7176. {
  7177. name: "Macro",
  7178. height: math.unit(96, "feet"),
  7179. default: true
  7180. },
  7181. {
  7182. name: "Macro+",
  7183. height: math.unit(243, "feet")
  7184. },
  7185. ]
  7186. ))
  7187. characterMakers.push(() => makeCharacter(
  7188. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7189. {
  7190. front: {
  7191. height: math.unit(194, "cm"),
  7192. weight: math.unit(90, "kg"),
  7193. name: "Front",
  7194. image: {
  7195. source: "./media/characters/ranek/front.svg"
  7196. }
  7197. },
  7198. side: {
  7199. height: math.unit(194, "cm"),
  7200. weight: math.unit(90, "kg"),
  7201. name: "Side",
  7202. image: {
  7203. source: "./media/characters/ranek/side.svg"
  7204. }
  7205. },
  7206. back: {
  7207. height: math.unit(194, "cm"),
  7208. weight: math.unit(90, "kg"),
  7209. name: "Back",
  7210. image: {
  7211. source: "./media/characters/ranek/back.svg"
  7212. }
  7213. },
  7214. feral: {
  7215. height: math.unit(30, "cm"),
  7216. weight: math.unit(1.6, "lbs"),
  7217. name: "Feral",
  7218. image: {
  7219. source: "./media/characters/ranek/feral.svg"
  7220. }
  7221. },
  7222. },
  7223. [
  7224. {
  7225. name: "Normal",
  7226. height: math.unit(194, "cm"),
  7227. default: true
  7228. },
  7229. {
  7230. name: "Macro",
  7231. height: math.unit(100, "meters")
  7232. },
  7233. ]
  7234. ))
  7235. characterMakers.push(() => makeCharacter(
  7236. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7237. {
  7238. front: {
  7239. height: math.unit(5 + 6 / 12, "feet"),
  7240. weight: math.unit(153, "lbs"),
  7241. name: "Front",
  7242. image: {
  7243. source: "./media/characters/andrew-cooper/front.svg"
  7244. }
  7245. },
  7246. },
  7247. [
  7248. {
  7249. name: "Nano",
  7250. height: math.unit(1, "mm")
  7251. },
  7252. {
  7253. name: "Micro",
  7254. height: math.unit(2, "inches")
  7255. },
  7256. {
  7257. name: "Normal",
  7258. height: math.unit(5 + 6 / 12, "feet"),
  7259. default: true
  7260. }
  7261. ]
  7262. ))
  7263. characterMakers.push(() => makeCharacter(
  7264. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7265. {
  7266. front: {
  7267. height: math.unit(6, "feet"),
  7268. weight: math.unit(180, "lbs"),
  7269. name: "Front",
  7270. image: {
  7271. source: "./media/characters/akane-sato/front.svg",
  7272. extra: 1219 / 1140
  7273. }
  7274. },
  7275. back: {
  7276. height: math.unit(6, "feet"),
  7277. weight: math.unit(180, "lbs"),
  7278. name: "Back",
  7279. image: {
  7280. source: "./media/characters/akane-sato/back.svg",
  7281. extra: 1219 / 1170
  7282. }
  7283. },
  7284. },
  7285. [
  7286. {
  7287. name: "Normal",
  7288. height: math.unit(2.5, "meters")
  7289. },
  7290. {
  7291. name: "Macro",
  7292. height: math.unit(250, "meters"),
  7293. default: true
  7294. },
  7295. {
  7296. name: "Megamacro",
  7297. height: math.unit(25, "km")
  7298. },
  7299. ]
  7300. ))
  7301. characterMakers.push(() => makeCharacter(
  7302. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7303. {
  7304. front: {
  7305. height: math.unit(6, "feet"),
  7306. weight: math.unit(65, "kg"),
  7307. name: "Front",
  7308. image: {
  7309. source: "./media/characters/rook/front.svg",
  7310. extra: 960 / 950
  7311. }
  7312. }
  7313. },
  7314. [
  7315. {
  7316. name: "Normal",
  7317. height: math.unit(8.8, "feet")
  7318. },
  7319. {
  7320. name: "Macro",
  7321. height: math.unit(88, "feet"),
  7322. default: true
  7323. },
  7324. {
  7325. name: "Megamacro",
  7326. height: math.unit(8, "miles")
  7327. },
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7332. {
  7333. front: {
  7334. height: math.unit(12 + 2 / 12, "feet"),
  7335. weight: math.unit(808, "lbs"),
  7336. name: "Front",
  7337. image: {
  7338. source: "./media/characters/prodigy/front.svg"
  7339. }
  7340. }
  7341. },
  7342. [
  7343. {
  7344. name: "Normal",
  7345. height: math.unit(12 + 2 / 12, "feet"),
  7346. default: true
  7347. },
  7348. {
  7349. name: "Macro",
  7350. height: math.unit(143, "feet")
  7351. },
  7352. {
  7353. name: "Macro+",
  7354. height: math.unit(400, "feet")
  7355. },
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7360. {
  7361. front: {
  7362. height: math.unit(6, "feet"),
  7363. weight: math.unit(225, "lbs"),
  7364. name: "Front",
  7365. image: {
  7366. source: "./media/characters/daniel/front.svg"
  7367. }
  7368. },
  7369. leaning: {
  7370. height: math.unit(6, "feet"),
  7371. weight: math.unit(225, "lbs"),
  7372. name: "Leaning",
  7373. image: {
  7374. source: "./media/characters/daniel/leaning.svg"
  7375. }
  7376. },
  7377. },
  7378. [
  7379. {
  7380. name: "Macro",
  7381. height: math.unit(1000, "feet"),
  7382. default: true
  7383. },
  7384. ]
  7385. ))
  7386. characterMakers.push(() => makeCharacter(
  7387. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7388. {
  7389. front: {
  7390. height: math.unit(6, "feet"),
  7391. weight: math.unit(88, "lbs"),
  7392. name: "Front",
  7393. image: {
  7394. source: "./media/characters/chiros/front.svg",
  7395. extra: 306 / 226
  7396. }
  7397. },
  7398. side: {
  7399. height: math.unit(6, "feet"),
  7400. weight: math.unit(88, "lbs"),
  7401. name: "Side",
  7402. image: {
  7403. source: "./media/characters/chiros/side.svg",
  7404. extra: 306 / 226
  7405. }
  7406. },
  7407. },
  7408. [
  7409. {
  7410. name: "Normal",
  7411. height: math.unit(6, "cm"),
  7412. default: true
  7413. },
  7414. ]
  7415. ))
  7416. characterMakers.push(() => makeCharacter(
  7417. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7418. {
  7419. front: {
  7420. height: math.unit(6, "feet"),
  7421. weight: math.unit(100, "lbs"),
  7422. name: "Front",
  7423. image: {
  7424. source: "./media/characters/selka/front.svg",
  7425. extra: 947 / 887
  7426. }
  7427. }
  7428. },
  7429. [
  7430. {
  7431. name: "Normal",
  7432. height: math.unit(5, "cm"),
  7433. default: true
  7434. },
  7435. ]
  7436. ))
  7437. characterMakers.push(() => makeCharacter(
  7438. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7439. {
  7440. front: {
  7441. height: math.unit(8 + 3 / 12, "feet"),
  7442. weight: math.unit(424, "lbs"),
  7443. name: "Front",
  7444. image: {
  7445. source: "./media/characters/verin/front.svg",
  7446. extra: 1845 / 1550
  7447. }
  7448. },
  7449. frontArmored: {
  7450. height: math.unit(8 + 3 / 12, "feet"),
  7451. weight: math.unit(424, "lbs"),
  7452. name: "Front (Armored)",
  7453. image: {
  7454. source: "./media/characters/verin/front-armor.svg",
  7455. extra: 1845 / 1550,
  7456. bottom: 0.01
  7457. }
  7458. },
  7459. back: {
  7460. height: math.unit(8 + 3 / 12, "feet"),
  7461. weight: math.unit(424, "lbs"),
  7462. name: "Back",
  7463. image: {
  7464. source: "./media/characters/verin/back.svg",
  7465. bottom: 0.1,
  7466. extra: 1
  7467. }
  7468. },
  7469. foot: {
  7470. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7471. name: "Foot",
  7472. image: {
  7473. source: "./media/characters/verin/foot.svg"
  7474. }
  7475. },
  7476. },
  7477. [
  7478. {
  7479. name: "Normal",
  7480. height: math.unit(8 + 3 / 12, "feet")
  7481. },
  7482. {
  7483. name: "Minimacro",
  7484. height: math.unit(21, "feet"),
  7485. default: true
  7486. },
  7487. {
  7488. name: "Macro",
  7489. height: math.unit(626, "feet")
  7490. },
  7491. ]
  7492. ))
  7493. characterMakers.push(() => makeCharacter(
  7494. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7495. {
  7496. front: {
  7497. height: math.unit(2.718, "meters"),
  7498. weight: math.unit(150, "lbs"),
  7499. name: "Front",
  7500. image: {
  7501. source: "./media/characters/sovrim-terraquian/front.svg"
  7502. }
  7503. },
  7504. back: {
  7505. height: math.unit(2.718, "meters"),
  7506. weight: math.unit(150, "lbs"),
  7507. name: "Back",
  7508. image: {
  7509. source: "./media/characters/sovrim-terraquian/back.svg"
  7510. }
  7511. }
  7512. },
  7513. [
  7514. {
  7515. name: "Micro",
  7516. height: math.unit(2, "inches")
  7517. },
  7518. {
  7519. name: "Small",
  7520. height: math.unit(1, "meter")
  7521. },
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(Math.E, "meters"),
  7525. default: true
  7526. },
  7527. {
  7528. name: "Macro",
  7529. height: math.unit(20, "meters")
  7530. },
  7531. {
  7532. name: "Macro+",
  7533. height: math.unit(400, "meters")
  7534. },
  7535. ]
  7536. ))
  7537. characterMakers.push(() => makeCharacter(
  7538. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7539. {
  7540. front: {
  7541. height: math.unit(7, "feet"),
  7542. weight: math.unit(489, "lbs"),
  7543. name: "Front",
  7544. image: {
  7545. source: "./media/characters/reece-silvermane/front.svg",
  7546. bottom: 0.02,
  7547. extra: 1
  7548. }
  7549. },
  7550. },
  7551. [
  7552. {
  7553. name: "Macro",
  7554. height: math.unit(1.5, "miles"),
  7555. default: true
  7556. },
  7557. ]
  7558. ))
  7559. characterMakers.push(() => makeCharacter(
  7560. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7561. {
  7562. front: {
  7563. height: math.unit(6, "feet"),
  7564. weight: math.unit(78, "kg"),
  7565. name: "Front",
  7566. image: {
  7567. source: "./media/characters/kane/front.svg",
  7568. extra: 978 / 899
  7569. }
  7570. },
  7571. },
  7572. [
  7573. {
  7574. name: "Normal",
  7575. height: math.unit(2.1, "m"),
  7576. },
  7577. {
  7578. name: "Macro",
  7579. height: math.unit(1, "km"),
  7580. default: true
  7581. },
  7582. ]
  7583. ))
  7584. characterMakers.push(() => makeCharacter(
  7585. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7586. {
  7587. front: {
  7588. height: math.unit(6, "feet"),
  7589. weight: math.unit(200, "kg"),
  7590. name: "Front",
  7591. image: {
  7592. source: "./media/characters/tegon/front.svg",
  7593. bottom: 0.01,
  7594. extra: 1
  7595. }
  7596. },
  7597. },
  7598. [
  7599. {
  7600. name: "Micro",
  7601. height: math.unit(1, "inch")
  7602. },
  7603. {
  7604. name: "Normal",
  7605. height: math.unit(6 + 3 / 12, "feet"),
  7606. default: true
  7607. },
  7608. {
  7609. name: "Macro",
  7610. height: math.unit(300, "feet")
  7611. },
  7612. {
  7613. name: "Megamacro",
  7614. height: math.unit(69, "miles")
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7620. {
  7621. side: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(2304, "lbs"),
  7624. name: "Side",
  7625. image: {
  7626. source: "./media/characters/arcturax/side.svg",
  7627. extra: 790 / 376,
  7628. bottom: 0.01
  7629. }
  7630. },
  7631. },
  7632. [
  7633. {
  7634. name: "Micro",
  7635. height: math.unit(2, "inch")
  7636. },
  7637. {
  7638. name: "Normal",
  7639. height: math.unit(6, "feet")
  7640. },
  7641. {
  7642. name: "Macro",
  7643. height: math.unit(39, "feet"),
  7644. default: true
  7645. },
  7646. {
  7647. name: "Megamacro",
  7648. height: math.unit(7, "miles")
  7649. },
  7650. ]
  7651. ))
  7652. characterMakers.push(() => makeCharacter(
  7653. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7654. {
  7655. front: {
  7656. height: math.unit(6, "feet"),
  7657. weight: math.unit(50, "lbs"),
  7658. name: "Front",
  7659. image: {
  7660. source: "./media/characters/sentri/front.svg",
  7661. extra: 1750 / 1570,
  7662. bottom: 0.025
  7663. }
  7664. },
  7665. frontAlt: {
  7666. height: math.unit(6, "feet"),
  7667. weight: math.unit(50, "lbs"),
  7668. name: "Front (Alt)",
  7669. image: {
  7670. source: "./media/characters/sentri/front-alt.svg",
  7671. extra: 1750 / 1570,
  7672. bottom: 0.025
  7673. }
  7674. },
  7675. },
  7676. [
  7677. {
  7678. name: "Normal",
  7679. height: math.unit(15, "feet"),
  7680. default: true
  7681. },
  7682. {
  7683. name: "Macro",
  7684. height: math.unit(2500, "feet")
  7685. }
  7686. ]
  7687. ))
  7688. characterMakers.push(() => makeCharacter(
  7689. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7690. {
  7691. front: {
  7692. height: math.unit(5 + 8 / 12, "feet"),
  7693. weight: math.unit(130, "lbs"),
  7694. name: "Front",
  7695. image: {
  7696. source: "./media/characters/corvin/front.svg",
  7697. extra: 1803 / 1629
  7698. }
  7699. },
  7700. frontShirt: {
  7701. height: math.unit(5 + 8 / 12, "feet"),
  7702. weight: math.unit(130, "lbs"),
  7703. name: "Front (Shirt)",
  7704. image: {
  7705. source: "./media/characters/corvin/front-shirt.svg",
  7706. extra: 1803 / 1629
  7707. }
  7708. },
  7709. frontPoncho: {
  7710. height: math.unit(5 + 8 / 12, "feet"),
  7711. weight: math.unit(130, "lbs"),
  7712. name: "Front (Poncho)",
  7713. image: {
  7714. source: "./media/characters/corvin/front-poncho.svg",
  7715. extra: 1803 / 1629
  7716. }
  7717. },
  7718. side: {
  7719. height: math.unit(5 + 8 / 12, "feet"),
  7720. weight: math.unit(130, "lbs"),
  7721. name: "Side",
  7722. image: {
  7723. source: "./media/characters/corvin/side.svg",
  7724. extra: 1012 / 945
  7725. }
  7726. },
  7727. back: {
  7728. height: math.unit(5 + 8 / 12, "feet"),
  7729. weight: math.unit(130, "lbs"),
  7730. name: "Back",
  7731. image: {
  7732. source: "./media/characters/corvin/back.svg",
  7733. extra: 1803 / 1629
  7734. }
  7735. },
  7736. },
  7737. [
  7738. {
  7739. name: "Micro",
  7740. height: math.unit(3, "inches")
  7741. },
  7742. {
  7743. name: "Normal",
  7744. height: math.unit(5 + 8 / 12, "feet")
  7745. },
  7746. {
  7747. name: "Macro",
  7748. height: math.unit(300, "feet"),
  7749. default: true
  7750. },
  7751. {
  7752. name: "Megamacro",
  7753. height: math.unit(500, "miles")
  7754. }
  7755. ]
  7756. ))
  7757. characterMakers.push(() => makeCharacter(
  7758. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7759. {
  7760. front: {
  7761. height: math.unit(6, "feet"),
  7762. weight: math.unit(135, "lbs"),
  7763. name: "Front",
  7764. image: {
  7765. source: "./media/characters/q/front.svg",
  7766. extra: 854 / 752,
  7767. bottom: 0.005
  7768. }
  7769. },
  7770. back: {
  7771. height: math.unit(6, "feet"),
  7772. weight: math.unit(130, "lbs"),
  7773. name: "Back",
  7774. image: {
  7775. source: "./media/characters/q/back.svg",
  7776. extra: 854 / 752
  7777. }
  7778. },
  7779. },
  7780. [
  7781. {
  7782. name: "Macro",
  7783. height: math.unit(90, "feet"),
  7784. default: true
  7785. },
  7786. {
  7787. name: "Extra Macro",
  7788. height: math.unit(300, "feet"),
  7789. },
  7790. {
  7791. name: "BIG WALF",
  7792. height: math.unit(750, "feet"),
  7793. },
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(150, "lbs"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/carley/front.svg",
  7805. extra: 3927 / 3540,
  7806. bottom: 29.2 / 735
  7807. }
  7808. }
  7809. },
  7810. [
  7811. {
  7812. name: "Normal",
  7813. height: math.unit(6 + 3 / 12, "feet")
  7814. },
  7815. {
  7816. name: "Macro",
  7817. height: math.unit(185, "feet"),
  7818. default: true
  7819. },
  7820. {
  7821. name: "Megamacro",
  7822. height: math.unit(8, "miles"),
  7823. },
  7824. ]
  7825. ))
  7826. characterMakers.push(() => makeCharacter(
  7827. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7828. {
  7829. front: {
  7830. height: math.unit(3, "feet"),
  7831. weight: math.unit(28, "lbs"),
  7832. name: "Front",
  7833. image: {
  7834. source: "./media/characters/citrine/front.svg"
  7835. }
  7836. }
  7837. },
  7838. [
  7839. {
  7840. name: "Normal",
  7841. height: math.unit(3, "feet"),
  7842. default: true
  7843. }
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7848. {
  7849. front: {
  7850. height: math.unit(14, "feet"),
  7851. weight: math.unit(1450, "kg"),
  7852. capacity: math.unit(15, "people"),
  7853. name: "Front",
  7854. image: {
  7855. source: "./media/characters/aura-starwind/front.svg",
  7856. extra: 1455 / 1335
  7857. }
  7858. },
  7859. side: {
  7860. height: math.unit(14, "feet"),
  7861. weight: math.unit(1450, "kg"),
  7862. capacity: math.unit(15, "people"),
  7863. name: "Side",
  7864. image: {
  7865. source: "./media/characters/aura-starwind/side.svg",
  7866. extra: 1654 / 1497
  7867. }
  7868. },
  7869. taur: {
  7870. height: math.unit(18, "feet"),
  7871. weight: math.unit(5500, "kg"),
  7872. capacity: math.unit(50, "people"),
  7873. name: "Taur",
  7874. image: {
  7875. source: "./media/characters/aura-starwind/taur.svg",
  7876. extra: 1760 / 1650
  7877. }
  7878. },
  7879. feral: {
  7880. height: math.unit(46, "feet"),
  7881. weight: math.unit(25000, "kg"),
  7882. capacity: math.unit(120, "people"),
  7883. name: "Feral",
  7884. image: {
  7885. source: "./media/characters/aura-starwind/feral.svg"
  7886. }
  7887. },
  7888. },
  7889. [
  7890. {
  7891. name: "Normal",
  7892. height: math.unit(14, "feet"),
  7893. default: true
  7894. },
  7895. {
  7896. name: "Macro",
  7897. height: math.unit(50, "meters")
  7898. },
  7899. {
  7900. name: "Megamacro",
  7901. height: math.unit(5000, "meters")
  7902. },
  7903. {
  7904. name: "Gigamacro",
  7905. height: math.unit(100000, "kilometers")
  7906. },
  7907. ]
  7908. ))
  7909. characterMakers.push(() => makeCharacter(
  7910. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7911. {
  7912. front: {
  7913. height: math.unit(2 + 7 / 12, "feet"),
  7914. weight: math.unit(32, "lbs"),
  7915. name: "Front",
  7916. image: {
  7917. source: "./media/characters/rivet/front.svg",
  7918. extra: 1716 / 1658,
  7919. bottom: 0.03
  7920. }
  7921. },
  7922. foot: {
  7923. height: math.unit(0.551, "feet"),
  7924. name: "Rivet's Foot",
  7925. image: {
  7926. source: "./media/characters/rivet/foot.svg"
  7927. },
  7928. rename: true
  7929. }
  7930. },
  7931. [
  7932. {
  7933. name: "Micro",
  7934. height: math.unit(1.5, "inches"),
  7935. },
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(2 + 7 / 12, "feet"),
  7939. default: true
  7940. },
  7941. {
  7942. name: "Macro",
  7943. height: math.unit(85, "feet")
  7944. },
  7945. {
  7946. name: "Megamacro",
  7947. height: math.unit(2.2, "km")
  7948. }
  7949. ]
  7950. ))
  7951. characterMakers.push(() => makeCharacter(
  7952. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7953. {
  7954. front: {
  7955. height: math.unit(5 + 9 / 12, "feet"),
  7956. weight: math.unit(150, "lbs"),
  7957. name: "Front",
  7958. image: {
  7959. source: "./media/characters/coffee/front.svg",
  7960. extra: 3666 / 3032,
  7961. bottom: 0.04
  7962. }
  7963. },
  7964. foot: {
  7965. height: math.unit(1.29, "feet"),
  7966. name: "Foot",
  7967. image: {
  7968. source: "./media/characters/coffee/foot.svg"
  7969. }
  7970. },
  7971. },
  7972. [
  7973. {
  7974. name: "Micro",
  7975. height: math.unit(2, "inches"),
  7976. },
  7977. {
  7978. name: "Normal",
  7979. height: math.unit(5 + 9 / 12, "feet"),
  7980. default: true
  7981. },
  7982. {
  7983. name: "Macro",
  7984. height: math.unit(800, "feet")
  7985. },
  7986. {
  7987. name: "Megamacro",
  7988. height: math.unit(25, "miles")
  7989. }
  7990. ]
  7991. ))
  7992. characterMakers.push(() => makeCharacter(
  7993. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7994. {
  7995. front: {
  7996. height: math.unit(6, "feet"),
  7997. weight: math.unit(200, "lbs"),
  7998. name: "Front",
  7999. image: {
  8000. source: "./media/characters/chari-gal/front.svg",
  8001. extra: 1568 / 1385,
  8002. bottom: 0.047
  8003. }
  8004. },
  8005. gigantamax: {
  8006. height: math.unit(6 * 16, "feet"),
  8007. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8008. name: "Gigantamax",
  8009. image: {
  8010. source: "./media/characters/chari-gal/gigantamax.svg",
  8011. extra: 1124 / 888,
  8012. bottom: 0.03
  8013. }
  8014. },
  8015. },
  8016. [
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(5 + 7 / 12, "feet")
  8020. },
  8021. {
  8022. name: "Macro",
  8023. height: math.unit(200, "feet"),
  8024. default: true
  8025. }
  8026. ]
  8027. ))
  8028. characterMakers.push(() => makeCharacter(
  8029. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8030. {
  8031. front: {
  8032. height: math.unit(6, "feet"),
  8033. weight: math.unit(150, "lbs"),
  8034. name: "Front",
  8035. image: {
  8036. source: "./media/characters/nova/front.svg",
  8037. extra: 5000 / 4722,
  8038. bottom: 0.02
  8039. }
  8040. }
  8041. },
  8042. [
  8043. {
  8044. name: "Micro-",
  8045. height: math.unit(0.8, "inches")
  8046. },
  8047. {
  8048. name: "Micro",
  8049. height: math.unit(2, "inches"),
  8050. default: true
  8051. },
  8052. ]
  8053. ))
  8054. characterMakers.push(() => makeCharacter(
  8055. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8056. {
  8057. front: {
  8058. height: math.unit(3 + 1 / 12, "feet"),
  8059. weight: math.unit(21.7, "lbs"),
  8060. name: "Front",
  8061. image: {
  8062. source: "./media/characters/argent/front.svg",
  8063. extra: 1471 / 1331,
  8064. bottom: 100.8 / 1575.5
  8065. }
  8066. }
  8067. },
  8068. [
  8069. {
  8070. name: "Micro",
  8071. height: math.unit(2, "inches")
  8072. },
  8073. {
  8074. name: "Normal",
  8075. height: math.unit(3 + 1 / 12, "feet"),
  8076. default: true
  8077. },
  8078. {
  8079. name: "Macro",
  8080. height: math.unit(120, "feet")
  8081. },
  8082. ]
  8083. ))
  8084. characterMakers.push(() => makeCharacter(
  8085. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8086. {
  8087. lamp: {
  8088. height: math.unit(7 * 1559 / 989, "feet"),
  8089. name: "Magic Lamp",
  8090. image: {
  8091. source: "./media/characters/mira-al-cul/lamp.svg",
  8092. extra: 1617 / 1559
  8093. }
  8094. },
  8095. front: {
  8096. height: math.unit(7, "feet"),
  8097. name: "Front",
  8098. image: {
  8099. source: "./media/characters/mira-al-cul/front.svg",
  8100. extra: 1044 / 990
  8101. }
  8102. },
  8103. },
  8104. [
  8105. {
  8106. name: "Heavily Restricted",
  8107. height: math.unit(7 * 1559 / 989, "feet")
  8108. },
  8109. {
  8110. name: "Freshly Freed",
  8111. height: math.unit(50 * 1559 / 989, "feet")
  8112. },
  8113. {
  8114. name: "World Encompassing",
  8115. height: math.unit(10000 * 1559 / 989, "miles")
  8116. },
  8117. {
  8118. name: "Galactic",
  8119. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8120. },
  8121. {
  8122. name: "Palmed Universe",
  8123. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8124. default: true
  8125. },
  8126. {
  8127. name: "Multiversal Matriarch",
  8128. height: math.unit(8.87e10, "yottameters")
  8129. },
  8130. {
  8131. name: "Void Mother",
  8132. height: math.unit(3.14e110, "yottaparsecs")
  8133. },
  8134. {
  8135. name: "Toying with Transcendence",
  8136. height: math.unit(1e307, "meters")
  8137. },
  8138. ]
  8139. ))
  8140. characterMakers.push(() => makeCharacter(
  8141. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8142. {
  8143. front: {
  8144. height: math.unit(17 + 1 / 12, "feet"),
  8145. weight: math.unit(476.2 * 5, "lbs"),
  8146. name: "Front",
  8147. image: {
  8148. source: "./media/characters/kuro-shi-uchū/front.svg",
  8149. extra: 2329 / 1835,
  8150. bottom: 0.02
  8151. }
  8152. },
  8153. },
  8154. [
  8155. {
  8156. name: "Micro",
  8157. height: math.unit(2, "inches")
  8158. },
  8159. {
  8160. name: "Normal",
  8161. height: math.unit(12, "meters")
  8162. },
  8163. {
  8164. name: "Planetary",
  8165. height: math.unit(0.00929, "AU"),
  8166. default: true
  8167. },
  8168. {
  8169. name: "Universal",
  8170. height: math.unit(20, "gigaparsecs")
  8171. },
  8172. ]
  8173. ))
  8174. characterMakers.push(() => makeCharacter(
  8175. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8176. {
  8177. front: {
  8178. height: math.unit(5 + 2 / 12, "feet"),
  8179. weight: math.unit(120, "lbs"),
  8180. name: "Front",
  8181. image: {
  8182. source: "./media/characters/katherine/front.svg",
  8183. extra: 2075 / 1969
  8184. }
  8185. },
  8186. dress: {
  8187. height: math.unit(5 + 2 / 12, "feet"),
  8188. weight: math.unit(120, "lbs"),
  8189. name: "Dress",
  8190. image: {
  8191. source: "./media/characters/katherine/dress.svg",
  8192. extra: 2258 / 2064
  8193. }
  8194. },
  8195. },
  8196. [
  8197. {
  8198. name: "Micro",
  8199. height: math.unit(1, "inches"),
  8200. default: true
  8201. },
  8202. {
  8203. name: "Normal",
  8204. height: math.unit(5 + 2 / 12, "feet")
  8205. },
  8206. {
  8207. name: "Macro",
  8208. height: math.unit(100, "meters")
  8209. },
  8210. {
  8211. name: "Megamacro",
  8212. height: math.unit(80, "miles")
  8213. },
  8214. ]
  8215. ))
  8216. characterMakers.push(() => makeCharacter(
  8217. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8218. {
  8219. front: {
  8220. height: math.unit(7 + 8 / 12, "feet"),
  8221. weight: math.unit(250, "lbs"),
  8222. name: "Front",
  8223. image: {
  8224. source: "./media/characters/yevis/front.svg",
  8225. extra: 1938 / 1755
  8226. }
  8227. }
  8228. },
  8229. [
  8230. {
  8231. name: "Mortal",
  8232. height: math.unit(7 + 8 / 12, "feet")
  8233. },
  8234. {
  8235. name: "Battle",
  8236. height: math.unit(25 + 11 / 12, "feet")
  8237. },
  8238. {
  8239. name: "Wrath",
  8240. height: math.unit(1654 + 11 / 12, "feet")
  8241. },
  8242. {
  8243. name: "Planet Destroyer",
  8244. height: math.unit(12000, "miles")
  8245. },
  8246. {
  8247. name: "Galaxy Conqueror",
  8248. height: math.unit(1.45, "zettameters"),
  8249. default: true
  8250. },
  8251. {
  8252. name: "Universal War",
  8253. height: math.unit(184, "gigaparsecs")
  8254. },
  8255. {
  8256. name: "Eternity War",
  8257. height: math.unit(1.98e55, "yottaparsecs")
  8258. },
  8259. ]
  8260. ))
  8261. characterMakers.push(() => makeCharacter(
  8262. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8263. {
  8264. front: {
  8265. height: math.unit(5 + 8 / 12, "feet"),
  8266. weight: math.unit(63, "kg"),
  8267. name: "Front",
  8268. image: {
  8269. source: "./media/characters/xavier/front.svg",
  8270. extra: 944 / 883
  8271. }
  8272. },
  8273. frontStretch: {
  8274. height: math.unit(5 + 8 / 12, "feet"),
  8275. weight: math.unit(63, "kg"),
  8276. name: "Stretching",
  8277. image: {
  8278. source: "./media/characters/xavier/front-stretch.svg",
  8279. extra: 962 / 820
  8280. }
  8281. },
  8282. },
  8283. [
  8284. {
  8285. name: "Normal",
  8286. height: math.unit(5 + 8 / 12, "feet")
  8287. },
  8288. {
  8289. name: "Macro",
  8290. height: math.unit(100, "meters"),
  8291. default: true
  8292. },
  8293. {
  8294. name: "McLargeHuge",
  8295. height: math.unit(10, "miles")
  8296. },
  8297. ]
  8298. ))
  8299. characterMakers.push(() => makeCharacter(
  8300. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8301. {
  8302. front: {
  8303. height: math.unit(5 + 5 / 12, "feet"),
  8304. weight: math.unit(150, "lb"),
  8305. name: "Front",
  8306. image: {
  8307. source: "./media/characters/joshii/front.svg",
  8308. extra: 765 / 653,
  8309. bottom: 51 / 816
  8310. }
  8311. },
  8312. foot: {
  8313. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8314. name: "Foot",
  8315. image: {
  8316. source: "./media/characters/joshii/foot.svg"
  8317. }
  8318. },
  8319. },
  8320. [
  8321. {
  8322. name: "Micro",
  8323. height: math.unit(2, "inches"),
  8324. default: true
  8325. },
  8326. {
  8327. name: "Normal",
  8328. height: math.unit(5 + 5 / 12, "feet")
  8329. },
  8330. {
  8331. name: "Macro",
  8332. height: math.unit(785, "feet")
  8333. },
  8334. {
  8335. name: "Megamacro",
  8336. height: math.unit(24.5, "miles")
  8337. },
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8342. {
  8343. front: {
  8344. height: math.unit(6, "feet"),
  8345. weight: math.unit(150, "lb"),
  8346. name: "Front",
  8347. image: {
  8348. source: "./media/characters/goddess-elizabeth/front.svg",
  8349. extra: 1800 / 1525,
  8350. bottom: 0.005
  8351. }
  8352. },
  8353. foot: {
  8354. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8355. name: "Foot",
  8356. image: {
  8357. source: "./media/characters/goddess-elizabeth/foot.svg"
  8358. }
  8359. },
  8360. mouth: {
  8361. height: math.unit(6, "feet"),
  8362. name: "Mouth",
  8363. image: {
  8364. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8365. }
  8366. },
  8367. },
  8368. [
  8369. {
  8370. name: "Micro",
  8371. height: math.unit(12, "feet")
  8372. },
  8373. {
  8374. name: "Normal",
  8375. height: math.unit(80, "miles"),
  8376. default: true
  8377. },
  8378. {
  8379. name: "Macro",
  8380. height: math.unit(15000, "parsecs")
  8381. },
  8382. ]
  8383. ))
  8384. characterMakers.push(() => makeCharacter(
  8385. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8386. {
  8387. front: {
  8388. height: math.unit(5 + 9 / 12, "feet"),
  8389. weight: math.unit(144, "lb"),
  8390. name: "Front",
  8391. image: {
  8392. source: "./media/characters/kara/front.svg"
  8393. }
  8394. },
  8395. feet: {
  8396. height: math.unit(6 / 6.765, "feet"),
  8397. name: "Kara's Feet",
  8398. rename: true,
  8399. image: {
  8400. source: "./media/characters/kara/feet.svg"
  8401. }
  8402. },
  8403. },
  8404. [
  8405. {
  8406. name: "Normal",
  8407. height: math.unit(5 + 9 / 12, "feet")
  8408. },
  8409. {
  8410. name: "Macro",
  8411. height: math.unit(174, "feet"),
  8412. default: true
  8413. },
  8414. ]
  8415. ))
  8416. characterMakers.push(() => makeCharacter(
  8417. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8418. {
  8419. front: {
  8420. height: math.unit(18, "feet"),
  8421. weight: math.unit(4050, "lb"),
  8422. name: "Front",
  8423. image: {
  8424. source: "./media/characters/tyrone/front.svg",
  8425. extra: 2405 / 2270,
  8426. bottom: 182 / 2587
  8427. }
  8428. },
  8429. },
  8430. [
  8431. {
  8432. name: "Normal",
  8433. height: math.unit(18, "feet"),
  8434. default: true
  8435. },
  8436. {
  8437. name: "Macro",
  8438. height: math.unit(300, "feet")
  8439. },
  8440. {
  8441. name: "Megamacro",
  8442. height: math.unit(15, "km")
  8443. },
  8444. {
  8445. name: "Gigamacro",
  8446. height: math.unit(500, "km")
  8447. },
  8448. {
  8449. name: "Teramacro",
  8450. height: math.unit(0.5, "gigameters")
  8451. },
  8452. {
  8453. name: "Omnimacro",
  8454. height: math.unit(1e252, "yottauniverse")
  8455. },
  8456. ]
  8457. ))
  8458. characterMakers.push(() => makeCharacter(
  8459. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8460. {
  8461. front: {
  8462. height: math.unit(7 + 8 / 12, "feet"),
  8463. weight: math.unit(120, "lb"),
  8464. name: "Front",
  8465. image: {
  8466. source: "./media/characters/danny/front.svg",
  8467. extra: 1490 / 1350
  8468. }
  8469. },
  8470. back: {
  8471. height: math.unit(7 + 8 / 12, "feet"),
  8472. weight: math.unit(120, "lb"),
  8473. name: "Back",
  8474. image: {
  8475. source: "./media/characters/danny/back.svg",
  8476. extra: 1490 / 1350
  8477. }
  8478. },
  8479. },
  8480. [
  8481. {
  8482. name: "Normal",
  8483. height: math.unit(7 + 8 / 12, "feet"),
  8484. default: true
  8485. },
  8486. ]
  8487. ))
  8488. characterMakers.push(() => makeCharacter(
  8489. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8490. {
  8491. front: {
  8492. height: math.unit(3.5, "inches"),
  8493. weight: math.unit(19, "grams"),
  8494. name: "Front",
  8495. image: {
  8496. source: "./media/characters/mallow/front.svg",
  8497. extra: 471 / 431
  8498. }
  8499. },
  8500. back: {
  8501. height: math.unit(3.5, "inches"),
  8502. weight: math.unit(19, "grams"),
  8503. name: "Back",
  8504. image: {
  8505. source: "./media/characters/mallow/back.svg",
  8506. extra: 471 / 431
  8507. }
  8508. },
  8509. },
  8510. [
  8511. {
  8512. name: "Normal",
  8513. height: math.unit(3.5, "inches"),
  8514. default: true
  8515. },
  8516. ]
  8517. ))
  8518. characterMakers.push(() => makeCharacter(
  8519. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8520. {
  8521. front: {
  8522. height: math.unit(9, "feet"),
  8523. weight: math.unit(230, "kg"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/starry-aqua/front.svg"
  8527. }
  8528. },
  8529. back: {
  8530. height: math.unit(9, "feet"),
  8531. weight: math.unit(230, "kg"),
  8532. name: "Back",
  8533. image: {
  8534. source: "./media/characters/starry-aqua/back.svg"
  8535. }
  8536. },
  8537. hand: {
  8538. height: math.unit(9 * 0.1168, "feet"),
  8539. name: "Hand",
  8540. image: {
  8541. source: "./media/characters/starry-aqua/hand.svg"
  8542. }
  8543. },
  8544. foot: {
  8545. height: math.unit(9 * 0.18, "feet"),
  8546. name: "Foot",
  8547. image: {
  8548. source: "./media/characters/starry-aqua/foot.svg"
  8549. }
  8550. }
  8551. },
  8552. [
  8553. {
  8554. name: "Micro",
  8555. height: math.unit(3, "inches")
  8556. },
  8557. {
  8558. name: "Normal",
  8559. height: math.unit(9, "feet")
  8560. },
  8561. {
  8562. name: "Macro",
  8563. height: math.unit(300, "feet"),
  8564. default: true
  8565. },
  8566. {
  8567. name: "Megamacro",
  8568. height: math.unit(3200, "feet")
  8569. }
  8570. ]
  8571. ))
  8572. characterMakers.push(() => makeCharacter(
  8573. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8574. {
  8575. front: {
  8576. height: math.unit(6, "feet"),
  8577. weight: math.unit(230, "lb"),
  8578. name: "Front",
  8579. image: {
  8580. source: "./media/characters/luka/front.svg",
  8581. extra: 1,
  8582. bottom: 0.025
  8583. }
  8584. },
  8585. },
  8586. [
  8587. {
  8588. name: "Normal",
  8589. height: math.unit(12 + 8 / 12, "feet"),
  8590. default: true
  8591. },
  8592. {
  8593. name: "Minimacro",
  8594. height: math.unit(20, "feet")
  8595. },
  8596. {
  8597. name: "Macro",
  8598. height: math.unit(250, "feet")
  8599. },
  8600. {
  8601. name: "Megamacro",
  8602. height: math.unit(5, "miles")
  8603. },
  8604. {
  8605. name: "Gigamacro",
  8606. height: math.unit(8000, "miles")
  8607. },
  8608. ]
  8609. ))
  8610. characterMakers.push(() => makeCharacter(
  8611. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8612. {
  8613. front: {
  8614. height: math.unit(6, "feet"),
  8615. weight: math.unit(150, "lb"),
  8616. name: "Front",
  8617. image: {
  8618. source: "./media/characters/natalie-nightring/front.svg",
  8619. extra: 1,
  8620. bottom: 0.06
  8621. }
  8622. },
  8623. },
  8624. [
  8625. {
  8626. name: "Uh Oh",
  8627. height: math.unit(0.1, "mm")
  8628. },
  8629. {
  8630. name: "Small",
  8631. height: math.unit(3, "inches")
  8632. },
  8633. {
  8634. name: "Human Scale",
  8635. height: math.unit(6, "feet")
  8636. },
  8637. {
  8638. name: "Librarian",
  8639. height: math.unit(50, "feet"),
  8640. default: true
  8641. },
  8642. {
  8643. name: "Immense",
  8644. height: math.unit(200, "miles")
  8645. },
  8646. ]
  8647. ))
  8648. characterMakers.push(() => makeCharacter(
  8649. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8650. {
  8651. front: {
  8652. height: math.unit(6, "feet"),
  8653. weight: math.unit(180, "lbs"),
  8654. name: "Front",
  8655. image: {
  8656. source: "./media/characters/danni-rosie/front.svg",
  8657. extra: 1260 / 1128,
  8658. bottom: 0.022
  8659. }
  8660. },
  8661. },
  8662. [
  8663. {
  8664. name: "Micro",
  8665. height: math.unit(2, "inches"),
  8666. default: true
  8667. },
  8668. ]
  8669. ))
  8670. characterMakers.push(() => makeCharacter(
  8671. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8672. {
  8673. front: {
  8674. height: math.unit(5 + 9 / 12, "feet"),
  8675. weight: math.unit(220, "lb"),
  8676. name: "Front",
  8677. image: {
  8678. source: "./media/characters/samantha-kruse/front.svg",
  8679. extra: (985 / 935),
  8680. bottom: 0.03
  8681. }
  8682. },
  8683. frontUndressed: {
  8684. height: math.unit(5 + 9 / 12, "feet"),
  8685. weight: math.unit(220, "lb"),
  8686. name: "Front (Undressed)",
  8687. image: {
  8688. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8689. extra: (973 / 923),
  8690. bottom: 0.025
  8691. }
  8692. },
  8693. fat: {
  8694. height: math.unit(5 + 9 / 12, "feet"),
  8695. weight: math.unit(900, "lb"),
  8696. name: "Front (Fat)",
  8697. image: {
  8698. source: "./media/characters/samantha-kruse/fat.svg",
  8699. extra: 2688 / 2561
  8700. }
  8701. },
  8702. },
  8703. [
  8704. {
  8705. name: "Normal",
  8706. height: math.unit(5 + 9 / 12, "feet"),
  8707. default: true
  8708. }
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8713. {
  8714. back: {
  8715. height: math.unit(5 + 4 / 12, "feet"),
  8716. weight: math.unit(4963, "lb"),
  8717. name: "Back",
  8718. image: {
  8719. source: "./media/characters/amelia-rosie/back.svg",
  8720. extra: 1113 / 963,
  8721. bottom: 0.01
  8722. }
  8723. },
  8724. },
  8725. [
  8726. {
  8727. name: "Level 0",
  8728. height: math.unit(5 + 4 / 12, "feet")
  8729. },
  8730. {
  8731. name: "Level 1",
  8732. height: math.unit(164597, "feet"),
  8733. default: true
  8734. },
  8735. {
  8736. name: "Level 2",
  8737. height: math.unit(956243, "miles")
  8738. },
  8739. {
  8740. name: "Level 3",
  8741. height: math.unit(29421709423, "miles")
  8742. },
  8743. {
  8744. name: "Level 4",
  8745. height: math.unit(154, "lightyears")
  8746. },
  8747. {
  8748. name: "Level 5",
  8749. height: math.unit(4738272, "lightyears")
  8750. },
  8751. {
  8752. name: "Level 6",
  8753. height: math.unit(145787152896, "lightyears")
  8754. },
  8755. ]
  8756. ))
  8757. characterMakers.push(() => makeCharacter(
  8758. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8759. {
  8760. front: {
  8761. height: math.unit(5 + 11 / 12, "feet"),
  8762. weight: math.unit(65, "kg"),
  8763. name: "Front",
  8764. image: {
  8765. source: "./media/characters/rook-kitara/front.svg",
  8766. extra: 1347 / 1274,
  8767. bottom: 0.005
  8768. }
  8769. },
  8770. },
  8771. [
  8772. {
  8773. name: "Totally Unfair",
  8774. height: math.unit(1.8, "mm")
  8775. },
  8776. {
  8777. name: "Lap Rookie",
  8778. height: math.unit(1.4, "feet")
  8779. },
  8780. {
  8781. name: "Normal",
  8782. height: math.unit(5 + 11 / 12, "feet"),
  8783. default: true
  8784. },
  8785. {
  8786. name: "How Did This Happen",
  8787. height: math.unit(80, "miles")
  8788. }
  8789. ]
  8790. ))
  8791. characterMakers.push(() => makeCharacter(
  8792. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8793. {
  8794. front: {
  8795. height: math.unit(7, "feet"),
  8796. weight: math.unit(300, "lb"),
  8797. name: "Front",
  8798. image: {
  8799. source: "./media/characters/pisces/front.svg",
  8800. extra: 2255 / 2115,
  8801. bottom: 0.03
  8802. }
  8803. },
  8804. back: {
  8805. height: math.unit(7, "feet"),
  8806. weight: math.unit(300, "lb"),
  8807. name: "Back",
  8808. image: {
  8809. source: "./media/characters/pisces/back.svg",
  8810. extra: 2146 / 2055,
  8811. bottom: 0.04
  8812. }
  8813. },
  8814. },
  8815. [
  8816. {
  8817. name: "Normal",
  8818. height: math.unit(7, "feet"),
  8819. default: true
  8820. },
  8821. {
  8822. name: "Swimming Pool",
  8823. height: math.unit(12.2, "meters")
  8824. },
  8825. {
  8826. name: "Olympic Swimming Pool",
  8827. height: math.unit(56.3, "meters")
  8828. },
  8829. {
  8830. name: "Lake Superior",
  8831. height: math.unit(93900, "meters")
  8832. },
  8833. {
  8834. name: "Mediterranean Sea",
  8835. height: math.unit(644457, "meters")
  8836. },
  8837. {
  8838. name: "World's Oceans",
  8839. height: math.unit(4567491, "meters")
  8840. },
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8845. {
  8846. front: {
  8847. height: math.unit(2.3, "meters"),
  8848. weight: math.unit(120, "kg"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/zelas/front.svg"
  8852. }
  8853. },
  8854. side: {
  8855. height: math.unit(2.3, "meters"),
  8856. weight: math.unit(120, "kg"),
  8857. name: "Side",
  8858. image: {
  8859. source: "./media/characters/zelas/side.svg"
  8860. }
  8861. },
  8862. back: {
  8863. height: math.unit(2.3, "meters"),
  8864. weight: math.unit(120, "kg"),
  8865. name: "Back",
  8866. image: {
  8867. source: "./media/characters/zelas/back.svg"
  8868. }
  8869. },
  8870. foot: {
  8871. height: math.unit(1.116, "feet"),
  8872. name: "Foot",
  8873. image: {
  8874. source: "./media/characters/zelas/foot.svg"
  8875. }
  8876. },
  8877. },
  8878. [
  8879. {
  8880. name: "Normal",
  8881. height: math.unit(2.3, "meters")
  8882. },
  8883. {
  8884. name: "Macro",
  8885. height: math.unit(30, "meters"),
  8886. default: true
  8887. },
  8888. ]
  8889. ))
  8890. characterMakers.push(() => makeCharacter(
  8891. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8892. {
  8893. front: {
  8894. height: math.unit(1, "inch"),
  8895. weight: math.unit(0.21, "grams"),
  8896. name: "Front",
  8897. image: {
  8898. source: "./media/characters/talbot/front.svg",
  8899. extra: 594 / 544
  8900. }
  8901. },
  8902. },
  8903. [
  8904. {
  8905. name: "Micro",
  8906. height: math.unit(1, "inch"),
  8907. default: true
  8908. },
  8909. ]
  8910. ))
  8911. characterMakers.push(() => makeCharacter(
  8912. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8913. {
  8914. front: {
  8915. height: math.unit(3 + 3 / 12, "feet"),
  8916. weight: math.unit(51.8, "lb"),
  8917. name: "Front",
  8918. image: {
  8919. source: "./media/characters/fliss/front.svg",
  8920. extra: 840 / 640
  8921. }
  8922. },
  8923. },
  8924. [
  8925. {
  8926. name: "Teeny Tiny",
  8927. height: math.unit(1, "mm")
  8928. },
  8929. {
  8930. name: "Small",
  8931. height: math.unit(1, "inch"),
  8932. default: true
  8933. },
  8934. {
  8935. name: "Standard Sylveon",
  8936. height: math.unit(3 + 3 / 12, "feet")
  8937. },
  8938. {
  8939. name: "Large Nuisance",
  8940. height: math.unit(33, "feet")
  8941. },
  8942. {
  8943. name: "City Filler",
  8944. height: math.unit(3000, "feet")
  8945. },
  8946. {
  8947. name: "New Horizon",
  8948. height: math.unit(6000, "miles")
  8949. },
  8950. ]
  8951. ))
  8952. characterMakers.push(() => makeCharacter(
  8953. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8954. {
  8955. front: {
  8956. height: math.unit(5, "cm"),
  8957. weight: math.unit(1.94, "g"),
  8958. name: "Front",
  8959. image: {
  8960. source: "./media/characters/fleta/front.svg",
  8961. extra: 835 / 803
  8962. }
  8963. },
  8964. back: {
  8965. height: math.unit(5, "cm"),
  8966. weight: math.unit(1.94, "g"),
  8967. name: "Back",
  8968. image: {
  8969. source: "./media/characters/fleta/back.svg",
  8970. extra: 835 / 803
  8971. }
  8972. },
  8973. },
  8974. [
  8975. {
  8976. name: "Micro",
  8977. height: math.unit(5, "cm"),
  8978. default: true
  8979. },
  8980. ]
  8981. ))
  8982. characterMakers.push(() => makeCharacter(
  8983. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8984. {
  8985. front: {
  8986. height: math.unit(6, "feet"),
  8987. weight: math.unit(225, "lb"),
  8988. name: "Front",
  8989. image: {
  8990. source: "./media/characters/dominic/front.svg",
  8991. extra: 1770 / 1620,
  8992. bottom: 0.025
  8993. }
  8994. },
  8995. back: {
  8996. height: math.unit(6, "feet"),
  8997. weight: math.unit(225, "lb"),
  8998. name: "Back",
  8999. image: {
  9000. source: "./media/characters/dominic/back.svg",
  9001. extra: 1745 / 1620,
  9002. bottom: 0.065
  9003. }
  9004. },
  9005. },
  9006. [
  9007. {
  9008. name: "Nano",
  9009. height: math.unit(0.1, "mm")
  9010. },
  9011. {
  9012. name: "Micro-",
  9013. height: math.unit(1, "mm")
  9014. },
  9015. {
  9016. name: "Micro",
  9017. height: math.unit(4, "inches")
  9018. },
  9019. {
  9020. name: "Normal",
  9021. height: math.unit(6 + 4 / 12, "feet"),
  9022. default: true
  9023. },
  9024. {
  9025. name: "Macro",
  9026. height: math.unit(115, "feet")
  9027. },
  9028. {
  9029. name: "Macro+",
  9030. height: math.unit(955, "feet")
  9031. },
  9032. {
  9033. name: "Megamacro",
  9034. height: math.unit(8990, "feet")
  9035. },
  9036. {
  9037. name: "Gigmacro",
  9038. height: math.unit(9310, "miles")
  9039. },
  9040. {
  9041. name: "Teramacro",
  9042. height: math.unit(1567005010, "miles")
  9043. },
  9044. {
  9045. name: "Examacro",
  9046. height: math.unit(1425, "parsecs")
  9047. },
  9048. ]
  9049. ))
  9050. characterMakers.push(() => makeCharacter(
  9051. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9052. {
  9053. front: {
  9054. height: math.unit(400, "feet"),
  9055. weight: math.unit(44444444, "lb"),
  9056. name: "Front",
  9057. image: {
  9058. source: "./media/characters/major-colonel/front.svg"
  9059. }
  9060. },
  9061. back: {
  9062. height: math.unit(400, "feet"),
  9063. weight: math.unit(44444444, "lb"),
  9064. name: "Back",
  9065. image: {
  9066. source: "./media/characters/major-colonel/back.svg"
  9067. }
  9068. },
  9069. },
  9070. [
  9071. {
  9072. name: "Macro",
  9073. height: math.unit(400, "feet"),
  9074. default: true
  9075. },
  9076. ]
  9077. ))
  9078. characterMakers.push(() => makeCharacter(
  9079. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9080. {
  9081. catFront: {
  9082. height: math.unit(6, "feet"),
  9083. weight: math.unit(120, "lb"),
  9084. name: "Front (Cat Side)",
  9085. image: {
  9086. source: "./media/characters/axel-lycan/cat-front.svg",
  9087. extra: 430 / 402,
  9088. bottom: 43 / 472.35
  9089. }
  9090. },
  9091. catBack: {
  9092. height: math.unit(6, "feet"),
  9093. weight: math.unit(120, "lb"),
  9094. name: "Back (Cat Side)",
  9095. image: {
  9096. source: "./media/characters/axel-lycan/cat-back.svg",
  9097. extra: 447 / 419,
  9098. bottom: 23.3 / 469
  9099. }
  9100. },
  9101. wolfFront: {
  9102. height: math.unit(6, "feet"),
  9103. weight: math.unit(120, "lb"),
  9104. name: "Front (Wolf Side)",
  9105. image: {
  9106. source: "./media/characters/axel-lycan/wolf-front.svg",
  9107. extra: 485 / 456,
  9108. bottom: 19 / 504
  9109. }
  9110. },
  9111. wolfBack: {
  9112. height: math.unit(6, "feet"),
  9113. weight: math.unit(120, "lb"),
  9114. name: "Back (Wolf Side)",
  9115. image: {
  9116. source: "./media/characters/axel-lycan/wolf-back.svg",
  9117. extra: 475 / 438,
  9118. bottom: 39.2 / 514
  9119. }
  9120. },
  9121. },
  9122. [
  9123. {
  9124. name: "Macro",
  9125. height: math.unit(1, "km"),
  9126. default: true
  9127. },
  9128. ]
  9129. ))
  9130. characterMakers.push(() => makeCharacter(
  9131. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9132. {
  9133. front: {
  9134. height: math.unit(5 + 9 / 12, "feet"),
  9135. weight: math.unit(175, "lb"),
  9136. name: "Front",
  9137. image: {
  9138. source: "./media/characters/vanrel-hyena/front.svg",
  9139. extra: 1086 / 1010,
  9140. bottom: 0.04
  9141. }
  9142. },
  9143. },
  9144. [
  9145. {
  9146. name: "Normal",
  9147. height: math.unit(5 + 9 / 12, "feet"),
  9148. default: true
  9149. },
  9150. ]
  9151. ))
  9152. characterMakers.push(() => makeCharacter(
  9153. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9154. {
  9155. front: {
  9156. height: math.unit(6, "feet"),
  9157. weight: math.unit(103, "lb"),
  9158. name: "Front",
  9159. image: {
  9160. source: "./media/characters/abbott-absol/front.svg",
  9161. extra: 2010 / 1842
  9162. }
  9163. },
  9164. },
  9165. [
  9166. {
  9167. name: "Megamicro",
  9168. height: math.unit(0.1, "mm")
  9169. },
  9170. {
  9171. name: "Micro",
  9172. height: math.unit(1, "inch")
  9173. },
  9174. {
  9175. name: "Normal",
  9176. height: math.unit(6, "feet"),
  9177. default: true
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9183. {
  9184. front: {
  9185. height: math.unit(6, "feet"),
  9186. weight: math.unit(264, "lb"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/hector/front.svg",
  9190. extra: 2280 / 2130,
  9191. bottom: 0.07
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Normal",
  9198. height: math.unit(12.25, "foot"),
  9199. default: true
  9200. },
  9201. {
  9202. name: "Macro",
  9203. height: math.unit(160, "feet")
  9204. },
  9205. ]
  9206. ))
  9207. characterMakers.push(() => makeCharacter(
  9208. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9209. {
  9210. front: {
  9211. height: math.unit(6, "feet"),
  9212. weight: math.unit(150, "lb"),
  9213. name: "Front",
  9214. image: {
  9215. source: "./media/characters/sal/front.svg",
  9216. extra: 1846 / 1699,
  9217. bottom: 0.04
  9218. }
  9219. },
  9220. },
  9221. [
  9222. {
  9223. name: "Megamacro",
  9224. height: math.unit(10, "miles"),
  9225. default: true
  9226. },
  9227. ]
  9228. ))
  9229. characterMakers.push(() => makeCharacter(
  9230. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9231. {
  9232. front: {
  9233. height: math.unit(3, "meters"),
  9234. weight: math.unit(450, "kg"),
  9235. name: "front",
  9236. image: {
  9237. source: "./media/characters/ranger/front.svg",
  9238. extra: 2401 / 2243,
  9239. bottom: 0.05
  9240. }
  9241. },
  9242. },
  9243. [
  9244. {
  9245. name: "Normal",
  9246. height: math.unit(3, "meters"),
  9247. default: true
  9248. },
  9249. ]
  9250. ))
  9251. characterMakers.push(() => makeCharacter(
  9252. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9253. {
  9254. front: {
  9255. height: math.unit(14, "feet"),
  9256. weight: math.unit(800, "kg"),
  9257. name: "Front",
  9258. image: {
  9259. source: "./media/characters/theresa/front.svg",
  9260. extra: 3575 / 3346,
  9261. bottom: 0.03
  9262. }
  9263. },
  9264. },
  9265. [
  9266. {
  9267. name: "Normal",
  9268. height: math.unit(14, "feet"),
  9269. default: true
  9270. },
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9275. {
  9276. front: {
  9277. height: math.unit(6, "feet"),
  9278. weight: math.unit(3, "kg"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/ine/front.svg",
  9282. extra: 678 / 539,
  9283. bottom: 0.023
  9284. }
  9285. },
  9286. },
  9287. [
  9288. {
  9289. name: "Normal",
  9290. height: math.unit(2.265, "feet"),
  9291. default: true
  9292. },
  9293. ]
  9294. ))
  9295. characterMakers.push(() => makeCharacter(
  9296. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9297. {
  9298. front: {
  9299. height: math.unit(5, "feet"),
  9300. weight: math.unit(30, "kg"),
  9301. name: "Front",
  9302. image: {
  9303. source: "./media/characters/vial/front.svg",
  9304. extra: 1365 / 1277,
  9305. bottom: 0.04
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Normal",
  9312. height: math.unit(5, "feet"),
  9313. default: true
  9314. },
  9315. ]
  9316. ))
  9317. characterMakers.push(() => makeCharacter(
  9318. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9319. {
  9320. side: {
  9321. height: math.unit(3.4, "meters"),
  9322. weight: math.unit(1000, "lb"),
  9323. name: "Side",
  9324. image: {
  9325. source: "./media/characters/rovoska/side.svg",
  9326. extra: 4403 / 1515
  9327. }
  9328. },
  9329. },
  9330. [
  9331. {
  9332. name: "Normal",
  9333. height: math.unit(3.4, "meters"),
  9334. default: true
  9335. },
  9336. ]
  9337. ))
  9338. characterMakers.push(() => makeCharacter(
  9339. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9340. {
  9341. front: {
  9342. height: math.unit(8, "feet"),
  9343. weight: math.unit(315, "lb"),
  9344. name: "Front",
  9345. image: {
  9346. source: "./media/characters/gunner-rotthbauer/front.svg"
  9347. }
  9348. },
  9349. back: {
  9350. height: math.unit(8, "feet"),
  9351. weight: math.unit(315, "lb"),
  9352. name: "Back",
  9353. image: {
  9354. source: "./media/characters/gunner-rotthbauer/back.svg"
  9355. }
  9356. },
  9357. },
  9358. [
  9359. {
  9360. name: "Micro",
  9361. height: math.unit(3.5, "inches")
  9362. },
  9363. {
  9364. name: "Normal",
  9365. height: math.unit(8, "feet"),
  9366. default: true
  9367. },
  9368. {
  9369. name: "Macro",
  9370. height: math.unit(250, "feet")
  9371. },
  9372. {
  9373. name: "Megamacro",
  9374. height: math.unit(1, "AU")
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9380. {
  9381. front: {
  9382. height: math.unit(5 + 5 / 12, "feet"),
  9383. weight: math.unit(140, "lb"),
  9384. name: "Front",
  9385. image: {
  9386. source: "./media/characters/allatia/front.svg",
  9387. extra: 1227 / 1180,
  9388. bottom: 0.027
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Normal",
  9395. height: math.unit(5 + 5 / 12, "feet")
  9396. },
  9397. {
  9398. name: "Macro",
  9399. height: math.unit(250, "feet"),
  9400. default: true
  9401. },
  9402. {
  9403. name: "Megamacro",
  9404. height: math.unit(8, "miles")
  9405. }
  9406. ]
  9407. ))
  9408. characterMakers.push(() => makeCharacter(
  9409. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9410. {
  9411. front: {
  9412. height: math.unit(6, "feet"),
  9413. weight: math.unit(120, "lb"),
  9414. name: "Front",
  9415. image: {
  9416. source: "./media/characters/tene/front.svg",
  9417. extra: 1728 / 1578,
  9418. bottom: 0.022
  9419. }
  9420. },
  9421. stomping: {
  9422. height: math.unit(2.025, "meters"),
  9423. weight: math.unit(120, "lb"),
  9424. name: "Stomping",
  9425. image: {
  9426. source: "./media/characters/tene/stomping.svg",
  9427. extra: 938 / 873,
  9428. bottom: 0.01
  9429. }
  9430. },
  9431. sitting: {
  9432. height: math.unit(1, "meter"),
  9433. weight: math.unit(120, "lb"),
  9434. name: "Sitting",
  9435. image: {
  9436. source: "./media/characters/tene/sitting.svg",
  9437. extra: 437 / 415,
  9438. bottom: 0.1
  9439. }
  9440. },
  9441. feral: {
  9442. height: math.unit(3.9, "feet"),
  9443. weight: math.unit(250, "lb"),
  9444. name: "Feral",
  9445. image: {
  9446. source: "./media/characters/tene/feral.svg",
  9447. extra: 717 / 458,
  9448. bottom: 0.179
  9449. }
  9450. },
  9451. },
  9452. [
  9453. {
  9454. name: "Normal",
  9455. height: math.unit(6, "feet")
  9456. },
  9457. {
  9458. name: "Macro",
  9459. height: math.unit(300, "feet"),
  9460. default: true
  9461. },
  9462. {
  9463. name: "Megamacro",
  9464. height: math.unit(5, "miles")
  9465. },
  9466. ]
  9467. ))
  9468. characterMakers.push(() => makeCharacter(
  9469. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9470. {
  9471. side: {
  9472. height: math.unit(6, "feet"),
  9473. name: "Side",
  9474. image: {
  9475. source: "./media/characters/evander/side.svg",
  9476. extra: 877 / 477
  9477. }
  9478. },
  9479. },
  9480. [
  9481. {
  9482. name: "Normal",
  9483. height: math.unit(0.83, "meters"),
  9484. default: true
  9485. },
  9486. ]
  9487. ))
  9488. characterMakers.push(() => makeCharacter(
  9489. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9490. {
  9491. front: {
  9492. height: math.unit(12, "feet"),
  9493. weight: math.unit(1000, "lb"),
  9494. name: "Front",
  9495. image: {
  9496. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9497. extra: 1762 / 1611
  9498. }
  9499. },
  9500. back: {
  9501. height: math.unit(12, "feet"),
  9502. weight: math.unit(1000, "lb"),
  9503. name: "Back",
  9504. image: {
  9505. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9506. extra: 1762 / 1611
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Normal",
  9513. height: math.unit(12, "feet"),
  9514. default: true
  9515. },
  9516. {
  9517. name: "Kaiju",
  9518. height: math.unit(150, "feet")
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9524. {
  9525. front: {
  9526. height: math.unit(6, "feet"),
  9527. weight: math.unit(150, "lb"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/zero-alurus/front.svg"
  9531. }
  9532. },
  9533. back: {
  9534. height: math.unit(6, "feet"),
  9535. weight: math.unit(150, "lb"),
  9536. name: "Back",
  9537. image: {
  9538. source: "./media/characters/zero-alurus/back.svg"
  9539. }
  9540. },
  9541. },
  9542. [
  9543. {
  9544. name: "Normal",
  9545. height: math.unit(5 + 10 / 12, "feet")
  9546. },
  9547. {
  9548. name: "Macro",
  9549. height: math.unit(60, "feet"),
  9550. default: true
  9551. },
  9552. {
  9553. name: "Macro+",
  9554. height: math.unit(450, "feet")
  9555. },
  9556. ]
  9557. ))
  9558. characterMakers.push(() => makeCharacter(
  9559. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9560. {
  9561. front: {
  9562. height: math.unit(6, "feet"),
  9563. weight: math.unit(200, "lb"),
  9564. name: "Front",
  9565. image: {
  9566. source: "./media/characters/mega-shi/front.svg",
  9567. extra: 1279 / 1250,
  9568. bottom: 0.02
  9569. }
  9570. },
  9571. back: {
  9572. height: math.unit(6, "feet"),
  9573. weight: math.unit(200, "lb"),
  9574. name: "Back",
  9575. image: {
  9576. source: "./media/characters/mega-shi/back.svg",
  9577. extra: 1279 / 1250,
  9578. bottom: 0.02
  9579. }
  9580. },
  9581. },
  9582. [
  9583. {
  9584. name: "Micro",
  9585. height: math.unit(16 + 6 / 12, "feet")
  9586. },
  9587. {
  9588. name: "Third Dimension",
  9589. height: math.unit(40, "meters")
  9590. },
  9591. {
  9592. name: "Normal",
  9593. height: math.unit(660, "feet"),
  9594. default: true
  9595. },
  9596. {
  9597. name: "Megamacro",
  9598. height: math.unit(10, "miles")
  9599. },
  9600. {
  9601. name: "Planetary Launch",
  9602. height: math.unit(500, "miles")
  9603. },
  9604. {
  9605. name: "Interstellar",
  9606. height: math.unit(1e9, "miles")
  9607. },
  9608. {
  9609. name: "Leaving the Universe",
  9610. height: math.unit(1, "gigaparsec")
  9611. },
  9612. {
  9613. name: "Travelling Universes",
  9614. height: math.unit(30e15, "parsecs")
  9615. },
  9616. ]
  9617. ))
  9618. characterMakers.push(() => makeCharacter(
  9619. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9620. {
  9621. front: {
  9622. height: math.unit(6, "feet"),
  9623. weight: math.unit(150, "lb"),
  9624. name: "Front",
  9625. image: {
  9626. source: "./media/characters/odyssey/front.svg",
  9627. extra: 1782 / 1582,
  9628. bottom: 0.01
  9629. }
  9630. },
  9631. side: {
  9632. height: math.unit(5.7, "feet"),
  9633. weight: math.unit(140, "lb"),
  9634. name: "Side",
  9635. image: {
  9636. source: "./media/characters/odyssey/side.svg",
  9637. extra: 6462 / 5700
  9638. }
  9639. },
  9640. },
  9641. [
  9642. {
  9643. name: "Normal",
  9644. height: math.unit(5 + 4 / 12, "feet")
  9645. },
  9646. {
  9647. name: "Macro",
  9648. height: math.unit(1, "km")
  9649. },
  9650. {
  9651. name: "Megamacro",
  9652. height: math.unit(3000, "km")
  9653. },
  9654. {
  9655. name: "Gigamacro",
  9656. height: math.unit(1, "AU"),
  9657. default: true
  9658. },
  9659. {
  9660. name: "Omniversal",
  9661. height: math.unit(100e14, "lightyears")
  9662. },
  9663. ]
  9664. ))
  9665. characterMakers.push(() => makeCharacter(
  9666. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9667. {
  9668. front: {
  9669. height: math.unit(6, "feet"),
  9670. weight: math.unit(300, "lb"),
  9671. name: "Front",
  9672. image: {
  9673. source: "./media/characters/mekuto/front.svg",
  9674. extra: 921 / 832,
  9675. bottom: 0.03
  9676. }
  9677. },
  9678. hand: {
  9679. height: math.unit(6 / 10.24, "feet"),
  9680. name: "Hand",
  9681. image: {
  9682. source: "./media/characters/mekuto/hand.svg"
  9683. }
  9684. },
  9685. foot: {
  9686. height: math.unit(6 / 5.05, "feet"),
  9687. name: "Foot",
  9688. image: {
  9689. source: "./media/characters/mekuto/foot.svg"
  9690. }
  9691. },
  9692. },
  9693. [
  9694. {
  9695. name: "Minimicro",
  9696. height: math.unit(0.2, "inches")
  9697. },
  9698. {
  9699. name: "Micro",
  9700. height: math.unit(1.5, "inches")
  9701. },
  9702. {
  9703. name: "Normal",
  9704. height: math.unit(5 + 11 / 12, "feet"),
  9705. default: true
  9706. },
  9707. {
  9708. name: "Minimacro",
  9709. height: math.unit(17 + 9 / 12, "feet")
  9710. },
  9711. {
  9712. name: "Macro",
  9713. height: math.unit(177.5, "feet")
  9714. },
  9715. {
  9716. name: "Megamacro",
  9717. height: math.unit(152, "miles")
  9718. },
  9719. ]
  9720. ))
  9721. characterMakers.push(() => makeCharacter(
  9722. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9723. {
  9724. front: {
  9725. height: math.unit(6.5, "inches"),
  9726. weight: math.unit(13, "oz"),
  9727. name: "Front",
  9728. image: {
  9729. source: "./media/characters/dafydd-tomos/front.svg",
  9730. extra: 2990 / 2603,
  9731. bottom: 0.03
  9732. }
  9733. },
  9734. },
  9735. [
  9736. {
  9737. name: "Micro",
  9738. height: math.unit(6.5, "inches"),
  9739. default: true
  9740. },
  9741. ]
  9742. ))
  9743. characterMakers.push(() => makeCharacter(
  9744. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9745. {
  9746. front: {
  9747. height: math.unit(6, "feet"),
  9748. weight: math.unit(150, "lb"),
  9749. name: "Front",
  9750. image: {
  9751. source: "./media/characters/splinter/front.svg",
  9752. extra: 2990 / 2882,
  9753. bottom: 0.04
  9754. }
  9755. },
  9756. back: {
  9757. height: math.unit(6, "feet"),
  9758. weight: math.unit(150, "lb"),
  9759. name: "Back",
  9760. image: {
  9761. source: "./media/characters/splinter/back.svg",
  9762. extra: 2990 / 2882,
  9763. bottom: 0.04
  9764. }
  9765. },
  9766. },
  9767. [
  9768. {
  9769. name: "Normal",
  9770. height: math.unit(6, "feet")
  9771. },
  9772. {
  9773. name: "Macro",
  9774. height: math.unit(230, "meters"),
  9775. default: true
  9776. },
  9777. ]
  9778. ))
  9779. characterMakers.push(() => makeCharacter(
  9780. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9781. {
  9782. front: {
  9783. height: math.unit(4 + 10 / 12, "feet"),
  9784. weight: math.unit(480, "lb"),
  9785. name: "Front",
  9786. image: {
  9787. source: "./media/characters/snow-gabumon/front.svg",
  9788. extra: 1140 / 963,
  9789. bottom: 0.058
  9790. }
  9791. },
  9792. back: {
  9793. height: math.unit(4 + 10 / 12, "feet"),
  9794. weight: math.unit(480, "lb"),
  9795. name: "Back",
  9796. image: {
  9797. source: "./media/characters/snow-gabumon/back.svg",
  9798. extra: 1115 / 962,
  9799. bottom: 0.041
  9800. }
  9801. },
  9802. frontUndresed: {
  9803. height: math.unit(4 + 10 / 12, "feet"),
  9804. weight: math.unit(480, "lb"),
  9805. name: "Front (Undressed)",
  9806. image: {
  9807. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9808. extra: 1061 / 960,
  9809. bottom: 0.045
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Micro",
  9816. height: math.unit(1, "inch")
  9817. },
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(4 + 10 / 12, "feet"),
  9821. default: true
  9822. },
  9823. {
  9824. name: "Macro",
  9825. height: math.unit(200, "feet")
  9826. },
  9827. {
  9828. name: "Megamacro",
  9829. height: math.unit(120, "miles")
  9830. },
  9831. {
  9832. name: "Gigamacro",
  9833. height: math.unit(9800, "miles")
  9834. },
  9835. ]
  9836. ))
  9837. characterMakers.push(() => makeCharacter(
  9838. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9839. {
  9840. front: {
  9841. height: math.unit(1.7, "meters"),
  9842. weight: math.unit(140, "lb"),
  9843. name: "Front",
  9844. image: {
  9845. source: "./media/characters/moody/front.svg",
  9846. extra: 3226 / 3007,
  9847. bottom: 0.087
  9848. }
  9849. },
  9850. },
  9851. [
  9852. {
  9853. name: "Micro",
  9854. height: math.unit(1, "mm")
  9855. },
  9856. {
  9857. name: "Normal",
  9858. height: math.unit(1.7, "meters"),
  9859. default: true
  9860. },
  9861. {
  9862. name: "Macro",
  9863. height: math.unit(80, "meters")
  9864. },
  9865. {
  9866. name: "Macro+",
  9867. height: math.unit(500, "meters")
  9868. },
  9869. ]
  9870. ))
  9871. characterMakers.push(() => makeCharacter(
  9872. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9873. {
  9874. front: {
  9875. height: math.unit(6, "feet"),
  9876. weight: math.unit(150, "lb"),
  9877. name: "Front",
  9878. image: {
  9879. source: "./media/characters/zyas/front.svg",
  9880. extra: 1180 / 1120,
  9881. bottom: 0.045
  9882. }
  9883. },
  9884. },
  9885. [
  9886. {
  9887. name: "Normal",
  9888. height: math.unit(10, "feet"),
  9889. default: true
  9890. },
  9891. {
  9892. name: "Macro",
  9893. height: math.unit(500, "feet")
  9894. },
  9895. {
  9896. name: "Megamacro",
  9897. height: math.unit(5, "miles")
  9898. },
  9899. {
  9900. name: "Teramacro",
  9901. height: math.unit(150000, "miles")
  9902. },
  9903. ]
  9904. ))
  9905. characterMakers.push(() => makeCharacter(
  9906. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9907. {
  9908. front: {
  9909. height: math.unit(6, "feet"),
  9910. weight: math.unit(150, "lb"),
  9911. name: "Front",
  9912. image: {
  9913. source: "./media/characters/cuon/front.svg",
  9914. extra: 1390 / 1320,
  9915. bottom: 0.008
  9916. }
  9917. },
  9918. },
  9919. [
  9920. {
  9921. name: "Micro",
  9922. height: math.unit(3, "inches")
  9923. },
  9924. {
  9925. name: "Normal",
  9926. height: math.unit(18 + 9 / 12, "feet"),
  9927. default: true
  9928. },
  9929. {
  9930. name: "Macro",
  9931. height: math.unit(360, "feet")
  9932. },
  9933. {
  9934. name: "Megamacro",
  9935. height: math.unit(360, "miles")
  9936. },
  9937. ]
  9938. ))
  9939. characterMakers.push(() => makeCharacter(
  9940. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9941. {
  9942. front: {
  9943. height: math.unit(2.4, "meters"),
  9944. weight: math.unit(70, "kg"),
  9945. name: "Front",
  9946. image: {
  9947. source: "./media/characters/nyanuxk/front.svg",
  9948. extra: 1172 / 1084,
  9949. bottom: 0.065
  9950. }
  9951. },
  9952. side: {
  9953. height: math.unit(2.4, "meters"),
  9954. weight: math.unit(70, "kg"),
  9955. name: "Side",
  9956. image: {
  9957. source: "./media/characters/nyanuxk/side.svg",
  9958. extra: 1190 / 1132,
  9959. bottom: 0.007
  9960. }
  9961. },
  9962. back: {
  9963. height: math.unit(2.4, "meters"),
  9964. weight: math.unit(70, "kg"),
  9965. name: "Back",
  9966. image: {
  9967. source: "./media/characters/nyanuxk/back.svg",
  9968. extra: 1200 / 1141,
  9969. bottom: 0.015
  9970. }
  9971. },
  9972. foot: {
  9973. height: math.unit(0.52, "meters"),
  9974. name: "Foot",
  9975. image: {
  9976. source: "./media/characters/nyanuxk/foot.svg"
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Micro",
  9983. height: math.unit(2, "cm")
  9984. },
  9985. {
  9986. name: "Normal",
  9987. height: math.unit(2.4, "meters"),
  9988. default: true
  9989. },
  9990. {
  9991. name: "Smaller Macro",
  9992. height: math.unit(120, "meters")
  9993. },
  9994. {
  9995. name: "Bigger Macro",
  9996. height: math.unit(1.2, "km")
  9997. },
  9998. {
  9999. name: "Megamacro",
  10000. height: math.unit(15, "kilometers")
  10001. },
  10002. {
  10003. name: "Gigamacro",
  10004. height: math.unit(2000, "km")
  10005. },
  10006. {
  10007. name: "Teramacro",
  10008. height: math.unit(500000, "km")
  10009. },
  10010. ]
  10011. ))
  10012. characterMakers.push(() => makeCharacter(
  10013. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10014. {
  10015. side: {
  10016. height: math.unit(6, "feet"),
  10017. name: "Side",
  10018. image: {
  10019. source: "./media/characters/ailbhe/side.svg",
  10020. extra: 757 / 464,
  10021. bottom: 0.041
  10022. }
  10023. },
  10024. },
  10025. [
  10026. {
  10027. name: "Normal",
  10028. height: math.unit(1.07, "meters"),
  10029. default: true
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(120, "kg"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/zevulfius/front.svg",
  10042. extra: 965 / 903
  10043. }
  10044. },
  10045. side: {
  10046. height: math.unit(6, "feet"),
  10047. weight: math.unit(120, "kg"),
  10048. name: "Side",
  10049. image: {
  10050. source: "./media/characters/zevulfius/side.svg",
  10051. extra: 939 / 900
  10052. }
  10053. },
  10054. back: {
  10055. height: math.unit(6, "feet"),
  10056. weight: math.unit(120, "kg"),
  10057. name: "Back",
  10058. image: {
  10059. source: "./media/characters/zevulfius/back.svg",
  10060. extra: 918 / 854,
  10061. bottom: 0.005
  10062. }
  10063. },
  10064. foot: {
  10065. height: math.unit(6 / 3.72, "feet"),
  10066. name: "Foot",
  10067. image: {
  10068. source: "./media/characters/zevulfius/foot.svg"
  10069. }
  10070. },
  10071. },
  10072. [
  10073. {
  10074. name: "Macro",
  10075. height: math.unit(750, "meters")
  10076. },
  10077. {
  10078. name: "Megamacro",
  10079. height: math.unit(20, "km"),
  10080. default: true
  10081. },
  10082. {
  10083. name: "Gigamacro",
  10084. height: math.unit(2000, "km")
  10085. },
  10086. {
  10087. name: "Teramacro",
  10088. height: math.unit(250000, "km")
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10094. {
  10095. front: {
  10096. height: math.unit(100, "feet"),
  10097. weight: math.unit(350, "kg"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/rikes/front.svg",
  10101. extra: 1565 / 1483,
  10102. bottom: 0.017
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Macro",
  10109. height: math.unit(100, "feet"),
  10110. default: true
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10116. {
  10117. anthro: {
  10118. height: math.unit(8, "feet"),
  10119. weight: math.unit(120, "kg"),
  10120. name: "Anthro",
  10121. image: {
  10122. source: "./media/characters/adam-silver-mane/anthro.svg",
  10123. extra: 5743 / 5339,
  10124. bottom: 0.07
  10125. }
  10126. },
  10127. taur: {
  10128. height: math.unit(16, "feet"),
  10129. weight: math.unit(1500, "kg"),
  10130. name: "Taur",
  10131. image: {
  10132. source: "./media/characters/adam-silver-mane/taur.svg",
  10133. extra: 1713 / 1571,
  10134. bottom: 0.01
  10135. }
  10136. },
  10137. },
  10138. [
  10139. {
  10140. name: "Normal",
  10141. height: math.unit(8, "feet")
  10142. },
  10143. {
  10144. name: "Minimacro",
  10145. height: math.unit(80, "feet")
  10146. },
  10147. {
  10148. name: "Macro",
  10149. height: math.unit(800, "feet"),
  10150. default: true
  10151. },
  10152. {
  10153. name: "Megamacro",
  10154. height: math.unit(8000, "feet")
  10155. },
  10156. {
  10157. name: "Gigamacro",
  10158. height: math.unit(800, "miles")
  10159. },
  10160. {
  10161. name: "Teramacro",
  10162. height: math.unit(80000, "miles")
  10163. },
  10164. {
  10165. name: "Celestial",
  10166. height: math.unit(8e6, "miles")
  10167. },
  10168. {
  10169. name: "Star Dragon",
  10170. height: math.unit(800000, "parsecs")
  10171. },
  10172. {
  10173. name: "Godly",
  10174. height: math.unit(800, "teraparsecs")
  10175. },
  10176. ]
  10177. ))
  10178. characterMakers.push(() => makeCharacter(
  10179. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10180. {
  10181. front: {
  10182. height: math.unit(6, "feet"),
  10183. weight: math.unit(150, "lb"),
  10184. name: "Front",
  10185. image: {
  10186. source: "./media/characters/ky'owin/front.svg",
  10187. extra: 3888 / 3068,
  10188. bottom: 0.015
  10189. }
  10190. },
  10191. },
  10192. [
  10193. {
  10194. name: "Normal",
  10195. height: math.unit(6 + 8 / 12, "feet")
  10196. },
  10197. {
  10198. name: "Large",
  10199. height: math.unit(68, "feet")
  10200. },
  10201. {
  10202. name: "Macro",
  10203. height: math.unit(132, "feet")
  10204. },
  10205. {
  10206. name: "Macro+",
  10207. height: math.unit(340, "feet")
  10208. },
  10209. {
  10210. name: "Macro++",
  10211. height: math.unit(680, "feet"),
  10212. default: true
  10213. },
  10214. {
  10215. name: "Megamacro",
  10216. height: math.unit(1, "mile")
  10217. },
  10218. {
  10219. name: "Megamacro+",
  10220. height: math.unit(10, "miles")
  10221. },
  10222. ]
  10223. ))
  10224. characterMakers.push(() => makeCharacter(
  10225. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10226. {
  10227. front: {
  10228. height: math.unit(4, "feet"),
  10229. weight: math.unit(50, "lb"),
  10230. name: "Front",
  10231. image: {
  10232. source: "./media/characters/mal/front.svg",
  10233. extra: 785 / 724,
  10234. bottom: 0.07
  10235. }
  10236. },
  10237. },
  10238. [
  10239. {
  10240. name: "Micro",
  10241. height: math.unit(4, "inches")
  10242. },
  10243. {
  10244. name: "Normal",
  10245. height: math.unit(4, "feet"),
  10246. default: true
  10247. },
  10248. {
  10249. name: "Macro",
  10250. height: math.unit(200, "feet")
  10251. },
  10252. ]
  10253. ))
  10254. characterMakers.push(() => makeCharacter(
  10255. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10256. {
  10257. front: {
  10258. height: math.unit(6, "feet"),
  10259. weight: math.unit(150, "lb"),
  10260. name: "Front",
  10261. image: {
  10262. source: "./media/characters/jordan-deware/front.svg",
  10263. extra: 1191 / 1012
  10264. }
  10265. },
  10266. },
  10267. [
  10268. {
  10269. name: "Nano",
  10270. height: math.unit(0.01, "mm")
  10271. },
  10272. {
  10273. name: "Minimicro",
  10274. height: math.unit(1, "mm")
  10275. },
  10276. {
  10277. name: "Micro",
  10278. height: math.unit(0.5, "inches")
  10279. },
  10280. {
  10281. name: "Normal",
  10282. height: math.unit(4, "feet"),
  10283. default: true
  10284. },
  10285. {
  10286. name: "Minimacro",
  10287. height: math.unit(40, "meters")
  10288. },
  10289. {
  10290. name: "Small Macro",
  10291. height: math.unit(400, "meters")
  10292. },
  10293. {
  10294. name: "Macro",
  10295. height: math.unit(4, "miles")
  10296. },
  10297. {
  10298. name: "Megamacro",
  10299. height: math.unit(40, "miles")
  10300. },
  10301. {
  10302. name: "Megamacro+",
  10303. height: math.unit(400, "miles")
  10304. },
  10305. {
  10306. name: "Gigamacro",
  10307. height: math.unit(400000, "miles")
  10308. },
  10309. ]
  10310. ))
  10311. characterMakers.push(() => makeCharacter(
  10312. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10313. {
  10314. side: {
  10315. height: math.unit(6, "feet"),
  10316. weight: math.unit(150, "lb"),
  10317. name: "Side",
  10318. image: {
  10319. source: "./media/characters/kimiko/side.svg",
  10320. extra: 600 / 358
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Normal",
  10327. height: math.unit(15, "feet"),
  10328. default: true
  10329. },
  10330. {
  10331. name: "Macro",
  10332. height: math.unit(220, "feet")
  10333. },
  10334. {
  10335. name: "Macro+",
  10336. height: math.unit(1450, "feet")
  10337. },
  10338. {
  10339. name: "Megamacro",
  10340. height: math.unit(11500, "feet")
  10341. },
  10342. {
  10343. name: "Gigamacro",
  10344. height: math.unit(9500, "miles")
  10345. },
  10346. {
  10347. name: "Teramacro",
  10348. height: math.unit(2208005005, "miles")
  10349. },
  10350. {
  10351. name: "Examacro",
  10352. height: math.unit(2750, "parsecs")
  10353. },
  10354. {
  10355. name: "Zettamacro",
  10356. height: math.unit(101500, "parsecs")
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10362. {
  10363. front: {
  10364. height: math.unit(6, "feet"),
  10365. weight: math.unit(70, "kg"),
  10366. name: "Front",
  10367. image: {
  10368. source: "./media/characters/andrew-sleepy/front.svg"
  10369. }
  10370. },
  10371. side: {
  10372. height: math.unit(6, "feet"),
  10373. weight: math.unit(70, "kg"),
  10374. name: "Side",
  10375. image: {
  10376. source: "./media/characters/andrew-sleepy/side.svg"
  10377. }
  10378. },
  10379. },
  10380. [
  10381. {
  10382. name: "Micro",
  10383. height: math.unit(1, "mm"),
  10384. default: true
  10385. },
  10386. ]
  10387. ))
  10388. characterMakers.push(() => makeCharacter(
  10389. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10390. {
  10391. front: {
  10392. height: math.unit(6, "feet"),
  10393. weight: math.unit(150, "lb"),
  10394. name: "Front",
  10395. image: {
  10396. source: "./media/characters/judio/front.svg",
  10397. extra: 1258 / 1110
  10398. }
  10399. },
  10400. },
  10401. [
  10402. {
  10403. name: "Normal",
  10404. height: math.unit(5 + 6 / 12, "feet")
  10405. },
  10406. {
  10407. name: "Macro",
  10408. height: math.unit(1000, "feet"),
  10409. default: true
  10410. },
  10411. {
  10412. name: "Megamacro",
  10413. height: math.unit(10, "miles")
  10414. },
  10415. ]
  10416. ))
  10417. characterMakers.push(() => makeCharacter(
  10418. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10419. {
  10420. front: {
  10421. height: math.unit(6, "feet"),
  10422. weight: math.unit(68, "kg"),
  10423. name: "Front",
  10424. image: {
  10425. source: "./media/characters/nomaxice/front.svg",
  10426. extra: 1498 / 1073,
  10427. bottom: 0.075
  10428. }
  10429. },
  10430. foot: {
  10431. height: math.unit(1.1, "feet"),
  10432. name: "Foot",
  10433. image: {
  10434. source: "./media/characters/nomaxice/foot.svg"
  10435. }
  10436. },
  10437. },
  10438. [
  10439. {
  10440. name: "Micro",
  10441. height: math.unit(8, "cm")
  10442. },
  10443. {
  10444. name: "Norm",
  10445. height: math.unit(1.82, "m")
  10446. },
  10447. {
  10448. name: "Norm+",
  10449. height: math.unit(8.8, "feet")
  10450. },
  10451. {
  10452. name: "Big",
  10453. height: math.unit(8, "meters"),
  10454. default: true
  10455. },
  10456. {
  10457. name: "Macro",
  10458. height: math.unit(18, "meters")
  10459. },
  10460. {
  10461. name: "Macro+",
  10462. height: math.unit(88, "meters")
  10463. },
  10464. ]
  10465. ))
  10466. characterMakers.push(() => makeCharacter(
  10467. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10468. {
  10469. front: {
  10470. height: math.unit(12, "feet"),
  10471. weight: math.unit(1.5, "tons"),
  10472. name: "Front",
  10473. image: {
  10474. source: "./media/characters/dydros/front.svg",
  10475. extra: 863 / 800,
  10476. bottom: 0.015
  10477. }
  10478. },
  10479. back: {
  10480. height: math.unit(12, "feet"),
  10481. weight: math.unit(1.5, "tons"),
  10482. name: "Back",
  10483. image: {
  10484. source: "./media/characters/dydros/back.svg",
  10485. extra: 900 / 843,
  10486. bottom: 0.005
  10487. }
  10488. },
  10489. },
  10490. [
  10491. {
  10492. name: "Normal",
  10493. height: math.unit(12, "feet"),
  10494. default: true
  10495. },
  10496. ]
  10497. ))
  10498. characterMakers.push(() => makeCharacter(
  10499. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10500. {
  10501. front: {
  10502. height: math.unit(6, "feet"),
  10503. weight: math.unit(100, "kg"),
  10504. name: "Front",
  10505. image: {
  10506. source: "./media/characters/riggi/front.svg",
  10507. extra: 5787 / 5303
  10508. }
  10509. },
  10510. hyper: {
  10511. height: math.unit(6 * 5 / 3, "feet"),
  10512. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10513. name: "Hyper",
  10514. image: {
  10515. source: "./media/characters/riggi/hyper.svg",
  10516. extra: 3595 / 3485
  10517. }
  10518. },
  10519. },
  10520. [
  10521. {
  10522. name: "Small Macro",
  10523. height: math.unit(50, "feet")
  10524. },
  10525. {
  10526. name: "Default",
  10527. height: math.unit(200, "feet"),
  10528. default: true
  10529. },
  10530. {
  10531. name: "Loom",
  10532. height: math.unit(10000, "feet")
  10533. },
  10534. {
  10535. name: "Cruising Altitude",
  10536. height: math.unit(30000, "feet")
  10537. },
  10538. {
  10539. name: "Megamacro",
  10540. height: math.unit(100, "miles")
  10541. },
  10542. {
  10543. name: "Continent Sized",
  10544. height: math.unit(2800, "miles")
  10545. },
  10546. {
  10547. name: "Earth Sized",
  10548. height: math.unit(8000, "miles")
  10549. },
  10550. ]
  10551. ))
  10552. characterMakers.push(() => makeCharacter(
  10553. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10554. {
  10555. front: {
  10556. height: math.unit(6, "feet"),
  10557. weight: math.unit(250, "lb"),
  10558. name: "Front",
  10559. image: {
  10560. source: "./media/characters/alexi/front.svg",
  10561. extra: 3483 / 3291,
  10562. bottom: 0.04
  10563. }
  10564. },
  10565. back: {
  10566. height: math.unit(6, "feet"),
  10567. weight: math.unit(250, "lb"),
  10568. name: "Back",
  10569. image: {
  10570. source: "./media/characters/alexi/back.svg",
  10571. extra: 3533 / 3356,
  10572. bottom: 0.021
  10573. }
  10574. },
  10575. frontTransforming: {
  10576. height: math.unit(8.58, "feet"),
  10577. weight: math.unit(1300, "lb"),
  10578. name: "Transforming",
  10579. image: {
  10580. source: "./media/characters/alexi/front-transforming.svg",
  10581. extra: 437 / 409,
  10582. bottom: 19 / 458.66
  10583. }
  10584. },
  10585. frontTransformed: {
  10586. height: math.unit(12.5, "feet"),
  10587. weight: math.unit(4000, "lb"),
  10588. name: "Transformed",
  10589. image: {
  10590. source: "./media/characters/alexi/front-transformed.svg",
  10591. extra: 639 / 614,
  10592. bottom: 30.55 / 671
  10593. }
  10594. },
  10595. },
  10596. [
  10597. {
  10598. name: "Normal",
  10599. height: math.unit(14, "feet"),
  10600. default: true
  10601. },
  10602. {
  10603. name: "Minimacro",
  10604. height: math.unit(30, "meters")
  10605. },
  10606. {
  10607. name: "Macro",
  10608. height: math.unit(500, "meters")
  10609. },
  10610. {
  10611. name: "Megamacro",
  10612. height: math.unit(9000, "km")
  10613. },
  10614. {
  10615. name: "Teramacro",
  10616. height: math.unit(384000, "km")
  10617. },
  10618. ]
  10619. ))
  10620. characterMakers.push(() => makeCharacter(
  10621. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10622. {
  10623. front: {
  10624. height: math.unit(6, "feet"),
  10625. weight: math.unit(150, "lb"),
  10626. name: "Front",
  10627. image: {
  10628. source: "./media/characters/kayroo/front.svg",
  10629. extra: 1153 / 1038,
  10630. bottom: 0.06
  10631. }
  10632. },
  10633. foot: {
  10634. height: math.unit(6, "feet"),
  10635. weight: math.unit(150, "lb"),
  10636. name: "Foot",
  10637. image: {
  10638. source: "./media/characters/kayroo/foot.svg"
  10639. }
  10640. },
  10641. },
  10642. [
  10643. {
  10644. name: "Normal",
  10645. height: math.unit(8, "feet"),
  10646. default: true
  10647. },
  10648. {
  10649. name: "Minimacro",
  10650. height: math.unit(250, "feet")
  10651. },
  10652. {
  10653. name: "Macro",
  10654. height: math.unit(2800, "feet")
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(5200, "feet")
  10659. },
  10660. {
  10661. name: "Gigamacro",
  10662. height: math.unit(27000, "feet")
  10663. },
  10664. {
  10665. name: "Omega",
  10666. height: math.unit(45000, "feet")
  10667. },
  10668. ]
  10669. ))
  10670. characterMakers.push(() => makeCharacter(
  10671. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10672. {
  10673. front: {
  10674. height: math.unit(18, "feet"),
  10675. weight: math.unit(5800, "lb"),
  10676. name: "Front",
  10677. image: {
  10678. source: "./media/characters/rhys/front.svg",
  10679. extra: 3386 / 3090,
  10680. bottom: 0.07
  10681. }
  10682. },
  10683. },
  10684. [
  10685. {
  10686. name: "Normal",
  10687. height: math.unit(18, "feet"),
  10688. default: true
  10689. },
  10690. {
  10691. name: "Working Size",
  10692. height: math.unit(200, "feet")
  10693. },
  10694. {
  10695. name: "Demolition Size",
  10696. height: math.unit(2000, "feet")
  10697. },
  10698. {
  10699. name: "Maximum Licensed Size",
  10700. height: math.unit(5, "miles")
  10701. },
  10702. {
  10703. name: "Maximum Observed Size",
  10704. height: math.unit(10, "yottameters")
  10705. },
  10706. ]
  10707. ))
  10708. characterMakers.push(() => makeCharacter(
  10709. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10710. {
  10711. front: {
  10712. height: math.unit(6, "feet"),
  10713. weight: math.unit(250, "lb"),
  10714. name: "Front",
  10715. image: {
  10716. source: "./media/characters/toto/front.svg",
  10717. extra: 527 / 479,
  10718. bottom: 0.05
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Micro",
  10725. height: math.unit(3, "feet")
  10726. },
  10727. {
  10728. name: "Normal",
  10729. height: math.unit(10, "feet")
  10730. },
  10731. {
  10732. name: "Macro",
  10733. height: math.unit(150, "feet"),
  10734. default: true
  10735. },
  10736. {
  10737. name: "Megamacro",
  10738. height: math.unit(1200, "feet")
  10739. },
  10740. ]
  10741. ))
  10742. characterMakers.push(() => makeCharacter(
  10743. { name: "King", species: ["lion"], tags: ["anthro"] },
  10744. {
  10745. back: {
  10746. height: math.unit(6, "feet"),
  10747. weight: math.unit(150, "lb"),
  10748. name: "Back",
  10749. image: {
  10750. source: "./media/characters/king/back.svg"
  10751. }
  10752. },
  10753. },
  10754. [
  10755. {
  10756. name: "Micro",
  10757. height: math.unit(2, "inches")
  10758. },
  10759. {
  10760. name: "Normal",
  10761. height: math.unit(8, "feet")
  10762. },
  10763. {
  10764. name: "Macro",
  10765. height: math.unit(200, "feet"),
  10766. default: true
  10767. },
  10768. {
  10769. name: "Megamacro",
  10770. height: math.unit(50, "miles")
  10771. },
  10772. ]
  10773. ))
  10774. characterMakers.push(() => makeCharacter(
  10775. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10776. {
  10777. anthro: {
  10778. height: math.unit(6 + 5 / 12, "feet"),
  10779. weight: math.unit(280, "lb"),
  10780. name: "Anthro",
  10781. image: {
  10782. source: "./media/characters/cordite/anthro.svg",
  10783. extra: 1986 / 1905,
  10784. bottom: 0.025
  10785. }
  10786. },
  10787. feral: {
  10788. height: math.unit(2, "feet"),
  10789. weight: math.unit(90, "lb"),
  10790. name: "Feral",
  10791. image: {
  10792. source: "./media/characters/cordite/feral.svg",
  10793. extra: 1260 / 755,
  10794. bottom: 0.05
  10795. }
  10796. },
  10797. },
  10798. [
  10799. {
  10800. name: "Normal",
  10801. height: math.unit(6 + 5 / 12, "feet"),
  10802. default: true
  10803. },
  10804. ]
  10805. ))
  10806. characterMakers.push(() => makeCharacter(
  10807. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10808. {
  10809. front: {
  10810. height: math.unit(6, "feet"),
  10811. weight: math.unit(150, "lb"),
  10812. name: "Front",
  10813. image: {
  10814. source: "./media/characters/pianostrong/front.svg",
  10815. extra: 6577 / 6254,
  10816. bottom: 0.02
  10817. }
  10818. },
  10819. side: {
  10820. height: math.unit(6, "feet"),
  10821. weight: math.unit(150, "lb"),
  10822. name: "Side",
  10823. image: {
  10824. source: "./media/characters/pianostrong/side.svg",
  10825. extra: 6106 / 5730
  10826. }
  10827. },
  10828. back: {
  10829. height: math.unit(6, "feet"),
  10830. weight: math.unit(150, "lb"),
  10831. name: "Back",
  10832. image: {
  10833. source: "./media/characters/pianostrong/back.svg",
  10834. extra: 6085 / 5733,
  10835. bottom: 0.01
  10836. }
  10837. },
  10838. },
  10839. [
  10840. {
  10841. name: "Macro",
  10842. height: math.unit(100, "feet")
  10843. },
  10844. {
  10845. name: "Macro+",
  10846. height: math.unit(300, "feet"),
  10847. default: true
  10848. },
  10849. {
  10850. name: "Macro++",
  10851. height: math.unit(1000, "feet")
  10852. },
  10853. ]
  10854. ))
  10855. characterMakers.push(() => makeCharacter(
  10856. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10857. {
  10858. front: {
  10859. height: math.unit(6, "feet"),
  10860. weight: math.unit(150, "lb"),
  10861. name: "Front",
  10862. image: {
  10863. source: "./media/characters/kona/front.svg",
  10864. extra: 2960 / 2629,
  10865. bottom: 0.005
  10866. }
  10867. },
  10868. },
  10869. [
  10870. {
  10871. name: "Normal",
  10872. height: math.unit(11 + 8 / 12, "feet")
  10873. },
  10874. {
  10875. name: "Macro",
  10876. height: math.unit(850, "feet"),
  10877. default: true
  10878. },
  10879. {
  10880. name: "Macro+",
  10881. height: math.unit(1.5, "km"),
  10882. default: true
  10883. },
  10884. {
  10885. name: "Megamacro",
  10886. height: math.unit(80, "miles")
  10887. },
  10888. {
  10889. name: "Gigamacro",
  10890. height: math.unit(3500, "miles")
  10891. },
  10892. ]
  10893. ))
  10894. characterMakers.push(() => makeCharacter(
  10895. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10896. {
  10897. side: {
  10898. height: math.unit(1.9, "meters"),
  10899. weight: math.unit(326, "kg"),
  10900. name: "Side",
  10901. image: {
  10902. source: "./media/characters/levi/side.svg",
  10903. extra: 1704 / 1334,
  10904. bottom: 0.02
  10905. }
  10906. },
  10907. },
  10908. [
  10909. {
  10910. name: "Normal",
  10911. height: math.unit(1.9, "meters"),
  10912. default: true
  10913. },
  10914. {
  10915. name: "Macro",
  10916. height: math.unit(20, "meters")
  10917. },
  10918. {
  10919. name: "Macro+",
  10920. height: math.unit(200, "meters")
  10921. },
  10922. {
  10923. name: "Megamacro",
  10924. height: math.unit(2, "km")
  10925. },
  10926. {
  10927. name: "Megamacro+",
  10928. height: math.unit(20, "km")
  10929. },
  10930. {
  10931. name: "Gigamacro",
  10932. height: math.unit(2500, "km")
  10933. },
  10934. {
  10935. name: "Gigamacro+",
  10936. height: math.unit(120000, "km")
  10937. },
  10938. {
  10939. name: "Teramacro",
  10940. height: math.unit(7.77e6, "km")
  10941. },
  10942. ]
  10943. ))
  10944. characterMakers.push(() => makeCharacter(
  10945. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10946. {
  10947. front: {
  10948. height: math.unit(6 + 4 / 12, "feet"),
  10949. weight: math.unit(188, "lb"),
  10950. name: "Front",
  10951. image: {
  10952. source: "./media/characters/bmc/front.svg",
  10953. extra: 1067 / 1022,
  10954. bottom: 0.047
  10955. }
  10956. },
  10957. },
  10958. [
  10959. {
  10960. name: "Human-sized",
  10961. height: math.unit(6 + 4 / 12, "feet")
  10962. },
  10963. {
  10964. name: "Small",
  10965. height: math.unit(250, "feet")
  10966. },
  10967. {
  10968. name: "Normal",
  10969. height: math.unit(1250, "feet"),
  10970. default: true
  10971. },
  10972. {
  10973. name: "Good Day",
  10974. height: math.unit(88, "miles")
  10975. },
  10976. {
  10977. name: "Largest Measured Size",
  10978. height: math.unit(11.2e6, "lightyears")
  10979. },
  10980. ]
  10981. ))
  10982. characterMakers.push(() => makeCharacter(
  10983. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10984. {
  10985. front: {
  10986. height: math.unit(20, "feet"),
  10987. weight: math.unit(2016, "kg"),
  10988. name: "Front",
  10989. image: {
  10990. source: "./media/characters/sven-the-kaiju/front.svg",
  10991. extra: 1479 / 1449,
  10992. bottom: 0.05
  10993. }
  10994. },
  10995. },
  10996. [
  10997. {
  10998. name: "Fairy",
  10999. height: math.unit(6, "inches")
  11000. },
  11001. {
  11002. name: "Normal",
  11003. height: math.unit(20, "feet"),
  11004. default: true
  11005. },
  11006. {
  11007. name: "Rampage",
  11008. height: math.unit(200, "feet")
  11009. },
  11010. {
  11011. name: "Archfey Forest Guardian",
  11012. height: math.unit(1, "mile")
  11013. },
  11014. ]
  11015. ))
  11016. characterMakers.push(() => makeCharacter(
  11017. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11018. {
  11019. front: {
  11020. height: math.unit(4, "meters"),
  11021. weight: math.unit(2, "tons"),
  11022. name: "Front",
  11023. image: {
  11024. source: "./media/characters/marik/front.svg",
  11025. extra: 1057 / 1003,
  11026. bottom: 0.08
  11027. }
  11028. },
  11029. },
  11030. [
  11031. {
  11032. name: "Normal",
  11033. height: math.unit(4, "meters"),
  11034. default: true
  11035. },
  11036. {
  11037. name: "Macro",
  11038. height: math.unit(20, "meters")
  11039. },
  11040. {
  11041. name: "Megamacro",
  11042. height: math.unit(50, "km")
  11043. },
  11044. {
  11045. name: "Gigamacro",
  11046. height: math.unit(100, "km")
  11047. },
  11048. {
  11049. name: "Alpha Macro",
  11050. height: math.unit(7.88e7, "yottameters")
  11051. },
  11052. ]
  11053. ))
  11054. characterMakers.push(() => makeCharacter(
  11055. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11056. {
  11057. front: {
  11058. height: math.unit(6, "feet"),
  11059. weight: math.unit(110, "lb"),
  11060. name: "Front",
  11061. image: {
  11062. source: "./media/characters/mel/front.svg",
  11063. extra: 736 / 617,
  11064. bottom: 0.017
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Pico",
  11071. height: math.unit(3, "pm")
  11072. },
  11073. {
  11074. name: "Nano",
  11075. height: math.unit(3, "nm")
  11076. },
  11077. {
  11078. name: "Micro",
  11079. height: math.unit(0.3, "mm"),
  11080. default: true
  11081. },
  11082. {
  11083. name: "Micro+",
  11084. height: math.unit(3, "mm")
  11085. },
  11086. {
  11087. name: "Normal",
  11088. height: math.unit(5 + 10.5 / 12, "feet")
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11094. {
  11095. kaiju: {
  11096. height: math.unit(1.75, "meters"),
  11097. weight: math.unit(55, "kg"),
  11098. name: "Kaiju",
  11099. image: {
  11100. source: "./media/characters/lykonous/kaiju.svg",
  11101. extra: 1055 / 946,
  11102. bottom: 0.135
  11103. }
  11104. },
  11105. },
  11106. [
  11107. {
  11108. name: "Normal",
  11109. height: math.unit(2.5, "meters"),
  11110. default: true
  11111. },
  11112. {
  11113. name: "Kaiju Dragon",
  11114. height: math.unit(60, "meters")
  11115. },
  11116. {
  11117. name: "Mega Kaiju",
  11118. height: math.unit(120, "km")
  11119. },
  11120. {
  11121. name: "Giga Kaiju",
  11122. height: math.unit(200, "megameters")
  11123. },
  11124. {
  11125. name: "Terra Kaiju",
  11126. height: math.unit(400, "gigameters")
  11127. },
  11128. {
  11129. name: "Kaiju Dragon God",
  11130. height: math.unit(13000, "exaparsecs")
  11131. },
  11132. ]
  11133. ))
  11134. characterMakers.push(() => makeCharacter(
  11135. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11136. {
  11137. front: {
  11138. height: math.unit(6, "feet"),
  11139. weight: math.unit(150, "lb"),
  11140. name: "Front",
  11141. image: {
  11142. source: "./media/characters/blü/front.svg",
  11143. extra: 1883 / 1564,
  11144. bottom: 0.031
  11145. }
  11146. },
  11147. },
  11148. [
  11149. {
  11150. name: "Normal",
  11151. height: math.unit(13, "feet"),
  11152. default: true
  11153. },
  11154. {
  11155. name: "Big Boi",
  11156. height: math.unit(150, "meters")
  11157. },
  11158. {
  11159. name: "Mini Stomper",
  11160. height: math.unit(300, "meters")
  11161. },
  11162. {
  11163. name: "Macro",
  11164. height: math.unit(1000, "meters")
  11165. },
  11166. {
  11167. name: "Megamacro",
  11168. height: math.unit(11000, "meters")
  11169. },
  11170. {
  11171. name: "Gigamacro",
  11172. height: math.unit(11000, "km")
  11173. },
  11174. {
  11175. name: "Teramacro",
  11176. height: math.unit(420000, "km")
  11177. },
  11178. {
  11179. name: "Examacro",
  11180. height: math.unit(120, "parsecs")
  11181. },
  11182. {
  11183. name: "God Tho",
  11184. height: math.unit(98000000000, "parsecs")
  11185. },
  11186. ]
  11187. ))
  11188. characterMakers.push(() => makeCharacter(
  11189. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11190. {
  11191. taurFront: {
  11192. height: math.unit(6, "feet"),
  11193. weight: math.unit(200, "lb"),
  11194. name: "Taur (Front)",
  11195. image: {
  11196. source: "./media/characters/scales/taur-front.svg",
  11197. extra: 1,
  11198. bottom: 0.05
  11199. }
  11200. },
  11201. taurBack: {
  11202. height: math.unit(6, "feet"),
  11203. weight: math.unit(200, "lb"),
  11204. name: "Taur (Back)",
  11205. image: {
  11206. source: "./media/characters/scales/taur-back.svg",
  11207. extra: 1,
  11208. bottom: 0.08
  11209. }
  11210. },
  11211. anthro: {
  11212. height: math.unit(6 * 7 / 12, "feet"),
  11213. weight: math.unit(100, "lb"),
  11214. name: "Anthro",
  11215. image: {
  11216. source: "./media/characters/scales/anthro.svg",
  11217. extra: 1,
  11218. bottom: 0.06
  11219. }
  11220. },
  11221. },
  11222. [
  11223. {
  11224. name: "Normal",
  11225. height: math.unit(12, "feet"),
  11226. default: true
  11227. },
  11228. ]
  11229. ))
  11230. characterMakers.push(() => makeCharacter(
  11231. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11232. {
  11233. front: {
  11234. height: math.unit(6, "feet"),
  11235. weight: math.unit(150, "lb"),
  11236. name: "Front",
  11237. image: {
  11238. source: "./media/characters/koragos/front.svg",
  11239. extra: 841 / 794,
  11240. bottom: 0.035
  11241. }
  11242. },
  11243. back: {
  11244. height: math.unit(6, "feet"),
  11245. weight: math.unit(150, "lb"),
  11246. name: "Back",
  11247. image: {
  11248. source: "./media/characters/koragos/back.svg",
  11249. extra: 841 / 810,
  11250. bottom: 0.022
  11251. }
  11252. },
  11253. },
  11254. [
  11255. {
  11256. name: "Normal",
  11257. height: math.unit(6 + 11 / 12, "feet"),
  11258. default: true
  11259. },
  11260. {
  11261. name: "Macro",
  11262. height: math.unit(490, "feet")
  11263. },
  11264. {
  11265. name: "Megamacro",
  11266. height: math.unit(10, "miles")
  11267. },
  11268. {
  11269. name: "Gigamacro",
  11270. height: math.unit(50, "miles")
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11276. {
  11277. front: {
  11278. height: math.unit(6, "feet"),
  11279. weight: math.unit(250, "lb"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/xylrem/front.svg",
  11283. extra: 3323 / 3050,
  11284. bottom: 0.065
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Micro",
  11291. height: math.unit(4, "feet")
  11292. },
  11293. {
  11294. name: "Normal",
  11295. height: math.unit(16, "feet"),
  11296. default: true
  11297. },
  11298. {
  11299. name: "Macro",
  11300. height: math.unit(2720, "feet")
  11301. },
  11302. {
  11303. name: "Megamacro",
  11304. height: math.unit(25000, "miles")
  11305. },
  11306. ]
  11307. ))
  11308. characterMakers.push(() => makeCharacter(
  11309. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11310. {
  11311. front: {
  11312. height: math.unit(8, "feet"),
  11313. weight: math.unit(250, "kg"),
  11314. name: "Front",
  11315. image: {
  11316. source: "./media/characters/ikideru/front.svg",
  11317. extra: 930 / 870,
  11318. bottom: 0.087
  11319. }
  11320. },
  11321. back: {
  11322. height: math.unit(8, "feet"),
  11323. weight: math.unit(250, "kg"),
  11324. name: "Back",
  11325. image: {
  11326. source: "./media/characters/ikideru/back.svg",
  11327. extra: 919 / 852,
  11328. bottom: 0.055
  11329. }
  11330. },
  11331. },
  11332. [
  11333. {
  11334. name: "Rare",
  11335. height: math.unit(8, "feet"),
  11336. default: true
  11337. },
  11338. {
  11339. name: "Playful Loom",
  11340. height: math.unit(80, "feet")
  11341. },
  11342. {
  11343. name: "City Leaner",
  11344. height: math.unit(230, "feet")
  11345. },
  11346. {
  11347. name: "Megamacro",
  11348. height: math.unit(2500, "feet")
  11349. },
  11350. {
  11351. name: "Gigamacro",
  11352. height: math.unit(26400, "feet")
  11353. },
  11354. {
  11355. name: "Tectonic Shifter",
  11356. height: math.unit(1.7, "megameters")
  11357. },
  11358. {
  11359. name: "Planet Carer",
  11360. height: math.unit(21, "megameters")
  11361. },
  11362. {
  11363. name: "God",
  11364. height: math.unit(11157.22, "parsecs")
  11365. },
  11366. ]
  11367. ))
  11368. characterMakers.push(() => makeCharacter(
  11369. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11370. {
  11371. front: {
  11372. height: math.unit(6, "feet"),
  11373. weight: math.unit(120, "lb"),
  11374. name: "Front",
  11375. image: {
  11376. source: "./media/characters/neo/front.svg"
  11377. }
  11378. },
  11379. },
  11380. [
  11381. {
  11382. name: "Micro",
  11383. height: math.unit(2, "inches"),
  11384. default: true
  11385. },
  11386. {
  11387. name: "Human Size",
  11388. height: math.unit(5 + 8 / 12, "feet")
  11389. },
  11390. ]
  11391. ))
  11392. characterMakers.push(() => makeCharacter(
  11393. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11394. {
  11395. front: {
  11396. height: math.unit(13 + 10 / 12, "feet"),
  11397. weight: math.unit(5320, "lb"),
  11398. name: "Front",
  11399. image: {
  11400. source: "./media/characters/chauncey-chantz/front.svg",
  11401. extra: 1587 / 1435,
  11402. bottom: 0.02
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Normal",
  11409. height: math.unit(13 + 10 / 12, "feet"),
  11410. default: true
  11411. },
  11412. {
  11413. name: "Macro",
  11414. height: math.unit(45, "feet")
  11415. },
  11416. {
  11417. name: "Megamacro",
  11418. height: math.unit(250, "miles")
  11419. },
  11420. {
  11421. name: "Planetary",
  11422. height: math.unit(10000, "miles")
  11423. },
  11424. {
  11425. name: "Galactic",
  11426. height: math.unit(40000, "parsecs")
  11427. },
  11428. {
  11429. name: "Universal",
  11430. height: math.unit(1, "yottameter")
  11431. },
  11432. ]
  11433. ))
  11434. characterMakers.push(() => makeCharacter(
  11435. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11436. {
  11437. front: {
  11438. height: math.unit(6, "feet"),
  11439. weight: math.unit(150, "lb"),
  11440. name: "Front",
  11441. image: {
  11442. source: "./media/characters/epifox/front.svg",
  11443. extra: 1,
  11444. bottom: 0.075
  11445. }
  11446. },
  11447. },
  11448. [
  11449. {
  11450. name: "Micro",
  11451. height: math.unit(6, "inches")
  11452. },
  11453. {
  11454. name: "Normal",
  11455. height: math.unit(12, "feet"),
  11456. default: true
  11457. },
  11458. {
  11459. name: "Macro",
  11460. height: math.unit(3810, "feet")
  11461. },
  11462. {
  11463. name: "Megamacro",
  11464. height: math.unit(500, "miles")
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11470. {
  11471. front: {
  11472. height: math.unit(1.8796, "m"),
  11473. weight: math.unit(230, "lb"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/colin-t/front.svg",
  11477. extra: 1272 / 1193,
  11478. bottom: 0.07
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Micro",
  11485. height: math.unit(0.571, "meters")
  11486. },
  11487. {
  11488. name: "Normal",
  11489. height: math.unit(1.8796, "meters"),
  11490. default: true
  11491. },
  11492. {
  11493. name: "Tall",
  11494. height: math.unit(4, "meters")
  11495. },
  11496. {
  11497. name: "Macro",
  11498. height: math.unit(67.241, "meters")
  11499. },
  11500. {
  11501. name: "Megamacro",
  11502. height: math.unit(371.856, "meters")
  11503. },
  11504. {
  11505. name: "Planetary",
  11506. height: math.unit(12631.5689, "km")
  11507. },
  11508. ]
  11509. ))
  11510. characterMakers.push(() => makeCharacter(
  11511. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11512. {
  11513. front: {
  11514. height: math.unit(1.85, "meters"),
  11515. weight: math.unit(80, "kg"),
  11516. name: "Front",
  11517. image: {
  11518. source: "./media/characters/matvei/front.svg",
  11519. extra: 614 / 594,
  11520. bottom: 0.01
  11521. }
  11522. },
  11523. },
  11524. [
  11525. {
  11526. name: "Normal",
  11527. height: math.unit(1.85, "meters"),
  11528. default: true
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11534. {
  11535. front: {
  11536. height: math.unit(5 + 9 / 12, "feet"),
  11537. weight: math.unit(70, "lb"),
  11538. name: "Front",
  11539. image: {
  11540. source: "./media/characters/quincy/front.svg",
  11541. extra: 3041 / 2751
  11542. }
  11543. },
  11544. back: {
  11545. height: math.unit(5 + 9 / 12, "feet"),
  11546. weight: math.unit(70, "lb"),
  11547. name: "Back",
  11548. image: {
  11549. source: "./media/characters/quincy/back.svg",
  11550. extra: 3041 / 2751
  11551. }
  11552. },
  11553. flying: {
  11554. height: math.unit(5 + 4 / 12, "feet"),
  11555. weight: math.unit(70, "lb"),
  11556. name: "Flying",
  11557. image: {
  11558. source: "./media/characters/quincy/flying.svg",
  11559. extra: 1044 / 930
  11560. }
  11561. },
  11562. },
  11563. [
  11564. {
  11565. name: "Micro",
  11566. height: math.unit(3, "cm")
  11567. },
  11568. {
  11569. name: "Normal",
  11570. height: math.unit(5 + 9 / 12, "feet")
  11571. },
  11572. {
  11573. name: "Macro",
  11574. height: math.unit(200, "meters"),
  11575. default: true
  11576. },
  11577. {
  11578. name: "Megamacro",
  11579. height: math.unit(1000, "meters")
  11580. },
  11581. ]
  11582. ))
  11583. characterMakers.push(() => makeCharacter(
  11584. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11585. {
  11586. front: {
  11587. height: math.unit(4 + 7 / 12, "feet"),
  11588. weight: math.unit(50, "lb"),
  11589. name: "Front",
  11590. image: {
  11591. source: "./media/characters/vanrel/front.svg",
  11592. extra: 1,
  11593. bottom: 0.02
  11594. }
  11595. },
  11596. frontAlt: {
  11597. height: math.unit(4 + 7 / 12, "feet"),
  11598. weight: math.unit(50, "lb"),
  11599. name: "Front-alt",
  11600. image: {
  11601. source: "./media/characters/vanrel/front-alt.svg",
  11602. extra: 1,
  11603. bottom: 15 / 1511
  11604. }
  11605. },
  11606. elemental: {
  11607. height: math.unit(3, "feet"),
  11608. weight: math.unit(50, "lb"),
  11609. name: "Elemental",
  11610. image: {
  11611. source: "./media/characters/vanrel/elemental.svg",
  11612. extra: 192.3 / 162.8,
  11613. bottom: 1.79 / 194.17
  11614. }
  11615. },
  11616. side: {
  11617. height: math.unit(4 + 7 / 12, "feet"),
  11618. weight: math.unit(50, "lb"),
  11619. name: "Side",
  11620. image: {
  11621. source: "./media/characters/vanrel/side.svg",
  11622. extra: 1,
  11623. bottom: 0.025
  11624. }
  11625. },
  11626. tome: {
  11627. height: math.unit(1.35, "feet"),
  11628. weight: math.unit(10, "lb"),
  11629. name: "Vanrel's Tome",
  11630. rename: true,
  11631. image: {
  11632. source: "./media/characters/vanrel/tome.svg"
  11633. }
  11634. },
  11635. beans: {
  11636. height: math.unit(0.89, "feet"),
  11637. name: "Beans",
  11638. image: {
  11639. source: "./media/characters/vanrel/beans.svg"
  11640. }
  11641. },
  11642. },
  11643. [
  11644. {
  11645. name: "Normal",
  11646. height: math.unit(4 + 7 / 12, "feet"),
  11647. default: true
  11648. },
  11649. ]
  11650. ))
  11651. characterMakers.push(() => makeCharacter(
  11652. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11653. {
  11654. front: {
  11655. height: math.unit(7 + 5 / 12, "feet"),
  11656. weight: math.unit(150, "lb"),
  11657. name: "Front",
  11658. image: {
  11659. source: "./media/characters/kuiper-vanrel/front.svg",
  11660. extra: 1118 / 1068,
  11661. bottom: 0.09
  11662. }
  11663. },
  11664. foot: {
  11665. height: math.unit(0.55, "meters"),
  11666. name: "Foot",
  11667. image: {
  11668. source: "./media/characters/kuiper-vanrel/foot.svg",
  11669. }
  11670. },
  11671. battle: {
  11672. height: math.unit(6.824, "feet"),
  11673. weight: math.unit(150, "lb"),
  11674. name: "Battle",
  11675. image: {
  11676. source: "./media/characters/kuiper-vanrel/battle.svg",
  11677. extra: 1466 / 1327,
  11678. bottom: 29 / 1492.5
  11679. }
  11680. },
  11681. battleAlt: {
  11682. height: math.unit(6.824, "feet"),
  11683. weight: math.unit(150, "lb"),
  11684. name: "Battle (Alt)",
  11685. image: {
  11686. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11687. extra: 2081 / 1965,
  11688. bottom: 40 / 2121
  11689. }
  11690. },
  11691. },
  11692. [
  11693. {
  11694. name: "Normal",
  11695. height: math.unit(7 + 5 / 12, "feet"),
  11696. default: true
  11697. },
  11698. ]
  11699. ))
  11700. characterMakers.push(() => makeCharacter(
  11701. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11702. {
  11703. front: {
  11704. height: math.unit(8 + 5 / 12, "feet"),
  11705. weight: math.unit(150, "lb"),
  11706. name: "Front",
  11707. image: {
  11708. source: "./media/characters/keset-vanrel/front.svg",
  11709. extra: 1150 / 1084,
  11710. bottom: 0.05
  11711. }
  11712. },
  11713. hand: {
  11714. height: math.unit(0.6, "meters"),
  11715. name: "Hand",
  11716. image: {
  11717. source: "./media/characters/keset-vanrel/hand.svg"
  11718. }
  11719. },
  11720. foot: {
  11721. height: math.unit(0.94978, "meters"),
  11722. name: "Foot",
  11723. image: {
  11724. source: "./media/characters/keset-vanrel/foot.svg"
  11725. }
  11726. },
  11727. battle: {
  11728. height: math.unit(7.408, "feet"),
  11729. weight: math.unit(150, "lb"),
  11730. name: "Battle",
  11731. image: {
  11732. source: "./media/characters/keset-vanrel/battle.svg",
  11733. extra: 1890 / 1386,
  11734. bottom: 73.28 / 1970
  11735. }
  11736. },
  11737. },
  11738. [
  11739. {
  11740. name: "Normal",
  11741. height: math.unit(8 + 5 / 12, "feet"),
  11742. default: true
  11743. },
  11744. ]
  11745. ))
  11746. characterMakers.push(() => makeCharacter(
  11747. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11748. {
  11749. front: {
  11750. height: math.unit(6, "feet"),
  11751. weight: math.unit(150, "lb"),
  11752. name: "Front",
  11753. image: {
  11754. source: "./media/characters/neos/front.svg",
  11755. extra: 1696 / 992,
  11756. bottom: 0.14
  11757. }
  11758. },
  11759. },
  11760. [
  11761. {
  11762. name: "Normal",
  11763. height: math.unit(54, "cm"),
  11764. default: true
  11765. },
  11766. {
  11767. name: "Macro",
  11768. height: math.unit(100, "m")
  11769. },
  11770. {
  11771. name: "Megamacro",
  11772. height: math.unit(10, "km")
  11773. },
  11774. {
  11775. name: "Megamacro+",
  11776. height: math.unit(100, "km")
  11777. },
  11778. {
  11779. name: "Gigamacro",
  11780. height: math.unit(100, "Mm")
  11781. },
  11782. {
  11783. name: "Teramacro",
  11784. height: math.unit(100, "Gm")
  11785. },
  11786. {
  11787. name: "Examacro",
  11788. height: math.unit(100, "Em")
  11789. },
  11790. {
  11791. name: "Godly",
  11792. height: math.unit(10000, "Ym")
  11793. },
  11794. {
  11795. name: "Beyond Godly",
  11796. height: math.unit(25, "multiverses")
  11797. },
  11798. ]
  11799. ))
  11800. characterMakers.push(() => makeCharacter(
  11801. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11802. {
  11803. feminine: {
  11804. height: math.unit(5, "feet"),
  11805. weight: math.unit(100, "lb"),
  11806. name: "Feminine",
  11807. image: {
  11808. source: "./media/characters/sammy-mouse/feminine.svg",
  11809. extra: 2526 / 2425,
  11810. bottom: 0.123
  11811. }
  11812. },
  11813. masculine: {
  11814. height: math.unit(5, "feet"),
  11815. weight: math.unit(100, "lb"),
  11816. name: "Masculine",
  11817. image: {
  11818. source: "./media/characters/sammy-mouse/masculine.svg",
  11819. extra: 2526 / 2425,
  11820. bottom: 0.123
  11821. }
  11822. },
  11823. },
  11824. [
  11825. {
  11826. name: "Micro",
  11827. height: math.unit(5, "inches")
  11828. },
  11829. {
  11830. name: "Normal",
  11831. height: math.unit(5, "feet"),
  11832. default: true
  11833. },
  11834. {
  11835. name: "Macro",
  11836. height: math.unit(60, "feet")
  11837. },
  11838. ]
  11839. ))
  11840. characterMakers.push(() => makeCharacter(
  11841. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11842. {
  11843. front: {
  11844. height: math.unit(4, "feet"),
  11845. weight: math.unit(50, "lb"),
  11846. name: "Front",
  11847. image: {
  11848. source: "./media/characters/kole/front.svg",
  11849. extra: 1423 / 1303,
  11850. bottom: 0.025
  11851. }
  11852. },
  11853. back: {
  11854. height: math.unit(4, "feet"),
  11855. weight: math.unit(50, "lb"),
  11856. name: "Back",
  11857. image: {
  11858. source: "./media/characters/kole/back.svg",
  11859. extra: 1426 / 1280,
  11860. bottom: 0.02
  11861. }
  11862. },
  11863. },
  11864. [
  11865. {
  11866. name: "Normal",
  11867. height: math.unit(4, "feet"),
  11868. default: true
  11869. },
  11870. ]
  11871. ))
  11872. characterMakers.push(() => makeCharacter(
  11873. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11874. {
  11875. front: {
  11876. height: math.unit(2 + 6 / 12, "feet"),
  11877. weight: math.unit(20, "lb"),
  11878. name: "Front",
  11879. image: {
  11880. source: "./media/characters/rufran/front.svg",
  11881. extra: 2041 / 1839,
  11882. bottom: 0.055
  11883. }
  11884. },
  11885. back: {
  11886. height: math.unit(2 + 6 / 12, "feet"),
  11887. weight: math.unit(20, "lb"),
  11888. name: "Back",
  11889. image: {
  11890. source: "./media/characters/rufran/back.svg",
  11891. extra: 2054 / 1839,
  11892. bottom: 0.01
  11893. }
  11894. },
  11895. hand: {
  11896. height: math.unit(0.2166, "meters"),
  11897. name: "Hand",
  11898. image: {
  11899. source: "./media/characters/rufran/hand.svg"
  11900. }
  11901. },
  11902. foot: {
  11903. height: math.unit(0.185, "meters"),
  11904. name: "Foot",
  11905. image: {
  11906. source: "./media/characters/rufran/foot.svg"
  11907. }
  11908. },
  11909. },
  11910. [
  11911. {
  11912. name: "Micro",
  11913. height: math.unit(1, "inch")
  11914. },
  11915. {
  11916. name: "Normal",
  11917. height: math.unit(2 + 6 / 12, "feet"),
  11918. default: true
  11919. },
  11920. {
  11921. name: "Big",
  11922. height: math.unit(60, "feet")
  11923. },
  11924. {
  11925. name: "Macro",
  11926. height: math.unit(325, "feet")
  11927. },
  11928. ]
  11929. ))
  11930. characterMakers.push(() => makeCharacter(
  11931. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11932. {
  11933. front: {
  11934. height: math.unit(0.3, "meters"),
  11935. weight: math.unit(3.5, "kg"),
  11936. name: "Front",
  11937. image: {
  11938. source: "./media/characters/chip/front.svg",
  11939. extra: 748 / 674
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Micro",
  11946. height: math.unit(1, "inch"),
  11947. default: true
  11948. },
  11949. ]
  11950. ))
  11951. characterMakers.push(() => makeCharacter(
  11952. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11953. {
  11954. side: {
  11955. height: math.unit(2.3, "meters"),
  11956. weight: math.unit(3500, "lb"),
  11957. name: "Side",
  11958. image: {
  11959. source: "./media/characters/torvid/side.svg",
  11960. extra: 1972 / 722,
  11961. bottom: 0.035
  11962. }
  11963. },
  11964. },
  11965. [
  11966. {
  11967. name: "Normal",
  11968. height: math.unit(2.3, "meters"),
  11969. default: true
  11970. },
  11971. ]
  11972. ))
  11973. characterMakers.push(() => makeCharacter(
  11974. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11975. {
  11976. front: {
  11977. height: math.unit(2, "meters"),
  11978. weight: math.unit(150.5, "kg"),
  11979. name: "Front",
  11980. image: {
  11981. source: "./media/characters/susan/front.svg",
  11982. extra: 693 / 635,
  11983. bottom: 0.05
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Megamacro",
  11990. height: math.unit(505, "miles"),
  11991. default: true
  11992. },
  11993. ]
  11994. ))
  11995. characterMakers.push(() => makeCharacter(
  11996. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11997. {
  11998. front: {
  11999. height: math.unit(6, "feet"),
  12000. weight: math.unit(150, "lb"),
  12001. name: "Front",
  12002. image: {
  12003. source: "./media/characters/raindrops/front.svg",
  12004. extra: 2655 / 2461,
  12005. bottom: 49 / 2705
  12006. }
  12007. },
  12008. back: {
  12009. height: math.unit(6, "feet"),
  12010. weight: math.unit(150, "lb"),
  12011. name: "Back",
  12012. image: {
  12013. source: "./media/characters/raindrops/back.svg",
  12014. extra: 2574 / 2400,
  12015. bottom: 65 / 2634
  12016. }
  12017. },
  12018. },
  12019. [
  12020. {
  12021. name: "Micro",
  12022. height: math.unit(6, "inches")
  12023. },
  12024. {
  12025. name: "Normal",
  12026. height: math.unit(6 + 2 / 12, "feet")
  12027. },
  12028. {
  12029. name: "Macro",
  12030. height: math.unit(131, "feet"),
  12031. default: true
  12032. },
  12033. {
  12034. name: "Megamacro",
  12035. height: math.unit(15, "miles")
  12036. },
  12037. {
  12038. name: "Gigamacro",
  12039. height: math.unit(4000, "miles")
  12040. },
  12041. {
  12042. name: "Teramacro",
  12043. height: math.unit(315000, "miles")
  12044. },
  12045. ]
  12046. ))
  12047. characterMakers.push(() => makeCharacter(
  12048. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12049. {
  12050. front: {
  12051. height: math.unit(2.794, "meters"),
  12052. weight: math.unit(325, "kg"),
  12053. name: "Front",
  12054. image: {
  12055. source: "./media/characters/tezwa/front.svg",
  12056. extra: 2083 / 1906,
  12057. bottom: 0.031
  12058. }
  12059. },
  12060. foot: {
  12061. height: math.unit(0.687, "meters"),
  12062. name: "Foot",
  12063. image: {
  12064. source: "./media/characters/tezwa/foot.svg"
  12065. }
  12066. },
  12067. },
  12068. [
  12069. {
  12070. name: "Normal",
  12071. height: math.unit(9 + 2 / 12, "feet"),
  12072. default: true
  12073. },
  12074. ]
  12075. ))
  12076. characterMakers.push(() => makeCharacter(
  12077. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12078. {
  12079. front: {
  12080. height: math.unit(58, "feet"),
  12081. weight: math.unit(89000, "lb"),
  12082. name: "Front",
  12083. image: {
  12084. source: "./media/characters/typhus/front.svg",
  12085. extra: 816 / 800,
  12086. bottom: 0.065
  12087. }
  12088. },
  12089. },
  12090. [
  12091. {
  12092. name: "Macro",
  12093. height: math.unit(58, "feet"),
  12094. default: true
  12095. },
  12096. ]
  12097. ))
  12098. characterMakers.push(() => makeCharacter(
  12099. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12100. {
  12101. front: {
  12102. height: math.unit(12, "feet"),
  12103. weight: math.unit(6, "tonnes"),
  12104. name: "Front",
  12105. image: {
  12106. source: "./media/characters/lyra-von-wulf/front.svg",
  12107. extra: 1,
  12108. bottom: 0.10
  12109. }
  12110. },
  12111. frontMecha: {
  12112. height: math.unit(12, "feet"),
  12113. weight: math.unit(12, "tonnes"),
  12114. name: "Front (Mecha)",
  12115. image: {
  12116. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12117. extra: 1,
  12118. bottom: 0.042
  12119. }
  12120. },
  12121. maw: {
  12122. height: math.unit(2.2, "feet"),
  12123. name: "Maw",
  12124. image: {
  12125. source: "./media/characters/lyra-von-wulf/maw.svg"
  12126. }
  12127. },
  12128. },
  12129. [
  12130. {
  12131. name: "Normal",
  12132. height: math.unit(12, "feet"),
  12133. default: true
  12134. },
  12135. {
  12136. name: "Classic",
  12137. height: math.unit(50, "feet")
  12138. },
  12139. {
  12140. name: "Macro",
  12141. height: math.unit(500, "feet")
  12142. },
  12143. {
  12144. name: "Megamacro",
  12145. height: math.unit(1, "mile")
  12146. },
  12147. {
  12148. name: "Gigamacro",
  12149. height: math.unit(400, "miles")
  12150. },
  12151. {
  12152. name: "Teramacro",
  12153. height: math.unit(22000, "miles")
  12154. },
  12155. {
  12156. name: "Solarmacro",
  12157. height: math.unit(8600000, "miles")
  12158. },
  12159. {
  12160. name: "Galactic",
  12161. height: math.unit(1057000, "lightyears")
  12162. },
  12163. ]
  12164. ))
  12165. characterMakers.push(() => makeCharacter(
  12166. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12167. {
  12168. front: {
  12169. height: math.unit(6 + 10 / 12, "feet"),
  12170. weight: math.unit(150, "lb"),
  12171. name: "Front",
  12172. image: {
  12173. source: "./media/characters/dixon/front.svg",
  12174. extra: 3361 / 3209,
  12175. bottom: 0.01
  12176. }
  12177. },
  12178. },
  12179. [
  12180. {
  12181. name: "Normal",
  12182. height: math.unit(6 + 10 / 12, "feet"),
  12183. default: true
  12184. },
  12185. {
  12186. name: "Big",
  12187. height: math.unit(12, "meters")
  12188. },
  12189. {
  12190. name: "Macro",
  12191. height: math.unit(500, "meters")
  12192. },
  12193. {
  12194. name: "Megamacro",
  12195. height: math.unit(2, "km")
  12196. },
  12197. ]
  12198. ))
  12199. characterMakers.push(() => makeCharacter(
  12200. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12201. {
  12202. front: {
  12203. height: math.unit(185, "cm"),
  12204. weight: math.unit(68, "kg"),
  12205. name: "Front",
  12206. image: {
  12207. source: "./media/characters/kauko/front.svg",
  12208. extra: 1455 / 1421,
  12209. bottom: 0.03
  12210. }
  12211. },
  12212. back: {
  12213. height: math.unit(185, "cm"),
  12214. weight: math.unit(68, "kg"),
  12215. name: "Back",
  12216. image: {
  12217. source: "./media/characters/kauko/back.svg",
  12218. extra: 1455 / 1421,
  12219. bottom: 0.004
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "Normal",
  12226. height: math.unit(185, "cm"),
  12227. default: true
  12228. },
  12229. ]
  12230. ))
  12231. characterMakers.push(() => makeCharacter(
  12232. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12233. {
  12234. front: {
  12235. height: math.unit(6, "feet"),
  12236. weight: math.unit(150, "kg"),
  12237. name: "Front",
  12238. image: {
  12239. source: "./media/characters/varg/front.svg",
  12240. extra: 1108 / 1018,
  12241. bottom: 0.0375
  12242. }
  12243. },
  12244. },
  12245. [
  12246. {
  12247. name: "Normal",
  12248. height: math.unit(5, "meters")
  12249. },
  12250. {
  12251. name: "Macro",
  12252. height: math.unit(200, "meters")
  12253. },
  12254. {
  12255. name: "Megamacro",
  12256. height: math.unit(20, "kilometers")
  12257. },
  12258. {
  12259. name: "True Size",
  12260. height: math.unit(211, "km"),
  12261. default: true
  12262. },
  12263. {
  12264. name: "Gigamacro",
  12265. height: math.unit(1000, "km")
  12266. },
  12267. {
  12268. name: "Gigamacro+",
  12269. height: math.unit(8000, "km")
  12270. },
  12271. {
  12272. name: "Teramacro",
  12273. height: math.unit(1000000, "km")
  12274. },
  12275. ]
  12276. ))
  12277. characterMakers.push(() => makeCharacter(
  12278. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12279. {
  12280. front: {
  12281. height: math.unit(7 + 7 / 12, "feet"),
  12282. weight: math.unit(267, "lb"),
  12283. name: "Front",
  12284. image: {
  12285. source: "./media/characters/dayza/front.svg",
  12286. extra: 1262 / 1200,
  12287. bottom: 0.035
  12288. }
  12289. },
  12290. side: {
  12291. height: math.unit(7 + 7 / 12, "feet"),
  12292. weight: math.unit(267, "lb"),
  12293. name: "Side",
  12294. image: {
  12295. source: "./media/characters/dayza/side.svg",
  12296. extra: 1295 / 1245,
  12297. bottom: 0.05
  12298. }
  12299. },
  12300. back: {
  12301. height: math.unit(7 + 7 / 12, "feet"),
  12302. weight: math.unit(267, "lb"),
  12303. name: "Back",
  12304. image: {
  12305. source: "./media/characters/dayza/back.svg",
  12306. extra: 1241 / 1170
  12307. }
  12308. },
  12309. },
  12310. [
  12311. {
  12312. name: "Normal",
  12313. height: math.unit(7 + 7 / 12, "feet"),
  12314. default: true
  12315. },
  12316. {
  12317. name: "Macro",
  12318. height: math.unit(155, "feet")
  12319. },
  12320. ]
  12321. ))
  12322. characterMakers.push(() => makeCharacter(
  12323. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12324. {
  12325. front: {
  12326. height: math.unit(6 + 5 / 12, "feet"),
  12327. weight: math.unit(160, "lb"),
  12328. name: "Front",
  12329. image: {
  12330. source: "./media/characters/xanthos/front.svg",
  12331. extra: 1,
  12332. bottom: 0.04
  12333. }
  12334. },
  12335. back: {
  12336. height: math.unit(6 + 5 / 12, "feet"),
  12337. weight: math.unit(160, "lb"),
  12338. name: "Back",
  12339. image: {
  12340. source: "./media/characters/xanthos/back.svg",
  12341. extra: 1,
  12342. bottom: 0.03
  12343. }
  12344. },
  12345. hand: {
  12346. height: math.unit(0.928, "feet"),
  12347. name: "Hand",
  12348. image: {
  12349. source: "./media/characters/xanthos/hand.svg"
  12350. }
  12351. },
  12352. foot: {
  12353. height: math.unit(1.286, "feet"),
  12354. name: "Foot",
  12355. image: {
  12356. source: "./media/characters/xanthos/foot.svg"
  12357. }
  12358. },
  12359. },
  12360. [
  12361. {
  12362. name: "Normal",
  12363. height: math.unit(6 + 5 / 12, "feet"),
  12364. default: true
  12365. },
  12366. {
  12367. name: "Normal+",
  12368. height: math.unit(6, "meters")
  12369. },
  12370. {
  12371. name: "Macro",
  12372. height: math.unit(40, "feet")
  12373. },
  12374. {
  12375. name: "Macro+",
  12376. height: math.unit(200, "meters")
  12377. },
  12378. {
  12379. name: "Megamacro",
  12380. height: math.unit(20, "km")
  12381. },
  12382. {
  12383. name: "Megamacro+",
  12384. height: math.unit(100, "km")
  12385. },
  12386. ]
  12387. ))
  12388. characterMakers.push(() => makeCharacter(
  12389. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12390. {
  12391. front: {
  12392. height: math.unit(6 + 3 / 12, "feet"),
  12393. weight: math.unit(215, "lb"),
  12394. name: "Front",
  12395. image: {
  12396. source: "./media/characters/grynn/front.svg",
  12397. extra: 4627 / 4209,
  12398. bottom: 0.047
  12399. }
  12400. },
  12401. },
  12402. [
  12403. {
  12404. name: "Micro",
  12405. height: math.unit(6, "inches")
  12406. },
  12407. {
  12408. name: "Normal",
  12409. height: math.unit(6 + 3 / 12, "feet"),
  12410. default: true
  12411. },
  12412. {
  12413. name: "Big",
  12414. height: math.unit(104, "feet")
  12415. },
  12416. {
  12417. name: "Macro",
  12418. height: math.unit(944, "feet")
  12419. },
  12420. {
  12421. name: "Macro+",
  12422. height: math.unit(9480, "feet")
  12423. },
  12424. {
  12425. name: "Megamacro",
  12426. height: math.unit(78752, "feet")
  12427. },
  12428. {
  12429. name: "Megamacro+",
  12430. height: math.unit(630128, "feet")
  12431. },
  12432. {
  12433. name: "Megamacro++",
  12434. height: math.unit(3150695, "feet")
  12435. },
  12436. ]
  12437. ))
  12438. characterMakers.push(() => makeCharacter(
  12439. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12440. {
  12441. front: {
  12442. height: math.unit(7 + 5 / 12, "feet"),
  12443. weight: math.unit(450, "lb"),
  12444. name: "Front",
  12445. image: {
  12446. source: "./media/characters/mocha-aura/front.svg",
  12447. extra: 1907 / 1817,
  12448. bottom: 0.04
  12449. }
  12450. },
  12451. back: {
  12452. height: math.unit(7 + 5 / 12, "feet"),
  12453. weight: math.unit(450, "lb"),
  12454. name: "Back",
  12455. image: {
  12456. source: "./media/characters/mocha-aura/back.svg",
  12457. extra: 1900 / 1825,
  12458. bottom: 0.045
  12459. }
  12460. },
  12461. },
  12462. [
  12463. {
  12464. name: "Nano",
  12465. height: math.unit(1, "nm")
  12466. },
  12467. {
  12468. name: "Megamicro",
  12469. height: math.unit(1, "mm")
  12470. },
  12471. {
  12472. name: "Micro",
  12473. height: math.unit(3, "inches")
  12474. },
  12475. {
  12476. name: "Normal",
  12477. height: math.unit(7 + 5 / 12, "feet"),
  12478. default: true
  12479. },
  12480. {
  12481. name: "Macro",
  12482. height: math.unit(30, "feet")
  12483. },
  12484. {
  12485. name: "Megamacro",
  12486. height: math.unit(3500, "feet")
  12487. },
  12488. {
  12489. name: "Teramacro",
  12490. height: math.unit(500000, "miles")
  12491. },
  12492. {
  12493. name: "Petamacro",
  12494. height: math.unit(50000000000000000, "parsecs")
  12495. },
  12496. ]
  12497. ))
  12498. characterMakers.push(() => makeCharacter(
  12499. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12500. {
  12501. front: {
  12502. height: math.unit(6, "feet"),
  12503. weight: math.unit(150, "lb"),
  12504. name: "Front",
  12505. image: {
  12506. source: "./media/characters/ilisha-devya/front.svg",
  12507. extra: 1,
  12508. bottom: 0.175
  12509. }
  12510. },
  12511. back: {
  12512. height: math.unit(6, "feet"),
  12513. weight: math.unit(150, "lb"),
  12514. name: "Back",
  12515. image: {
  12516. source: "./media/characters/ilisha-devya/back.svg",
  12517. extra: 1,
  12518. bottom: 0.015
  12519. }
  12520. },
  12521. },
  12522. [
  12523. {
  12524. name: "Macro",
  12525. height: math.unit(500, "feet"),
  12526. default: true
  12527. },
  12528. {
  12529. name: "Megamacro",
  12530. height: math.unit(10, "miles")
  12531. },
  12532. {
  12533. name: "Gigamacro",
  12534. height: math.unit(100000, "miles")
  12535. },
  12536. {
  12537. name: "Examacro",
  12538. height: math.unit(1e9, "lightyears")
  12539. },
  12540. {
  12541. name: "Omniversal",
  12542. height: math.unit(1e33, "lightyears")
  12543. },
  12544. {
  12545. name: "Beyond Infinite",
  12546. height: math.unit(1e100, "lightyears")
  12547. },
  12548. ]
  12549. ))
  12550. characterMakers.push(() => makeCharacter(
  12551. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12552. {
  12553. Side: {
  12554. height: math.unit(6, "feet"),
  12555. weight: math.unit(150, "lb"),
  12556. name: "Side",
  12557. image: {
  12558. source: "./media/characters/mira/side.svg",
  12559. extra: 900 / 799,
  12560. bottom: 0.02
  12561. }
  12562. },
  12563. },
  12564. [
  12565. {
  12566. name: "Human Size",
  12567. height: math.unit(6, "feet")
  12568. },
  12569. {
  12570. name: "Macro",
  12571. height: math.unit(100, "feet"),
  12572. default: true
  12573. },
  12574. {
  12575. name: "Megamacro",
  12576. height: math.unit(10, "miles")
  12577. },
  12578. {
  12579. name: "Gigamacro",
  12580. height: math.unit(25000, "miles")
  12581. },
  12582. {
  12583. name: "Teramacro",
  12584. height: math.unit(300, "AU")
  12585. },
  12586. {
  12587. name: "Full Size",
  12588. height: math.unit(4.5e10, "lightyears")
  12589. },
  12590. ]
  12591. ))
  12592. characterMakers.push(() => makeCharacter(
  12593. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12594. {
  12595. front: {
  12596. height: math.unit(6, "feet"),
  12597. weight: math.unit(150, "lb"),
  12598. name: "Front",
  12599. image: {
  12600. source: "./media/characters/holly/front.svg",
  12601. extra: 639 / 606
  12602. }
  12603. },
  12604. back: {
  12605. height: math.unit(6, "feet"),
  12606. weight: math.unit(150, "lb"),
  12607. name: "Back",
  12608. image: {
  12609. source: "./media/characters/holly/back.svg",
  12610. extra: 623 / 598
  12611. }
  12612. },
  12613. frontWorking: {
  12614. height: math.unit(6, "feet"),
  12615. weight: math.unit(150, "lb"),
  12616. name: "Front (Working)",
  12617. image: {
  12618. source: "./media/characters/holly/front-working.svg",
  12619. extra: 607 / 577,
  12620. bottom: 0.048
  12621. }
  12622. },
  12623. },
  12624. [
  12625. {
  12626. name: "Normal",
  12627. height: math.unit(12 + 3 / 12, "feet"),
  12628. default: true
  12629. },
  12630. ]
  12631. ))
  12632. characterMakers.push(() => makeCharacter(
  12633. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12634. {
  12635. front: {
  12636. height: math.unit(6, "feet"),
  12637. weight: math.unit(150, "lb"),
  12638. name: "Front",
  12639. image: {
  12640. source: "./media/characters/porter/front.svg",
  12641. extra: 1,
  12642. bottom: 0.01
  12643. }
  12644. },
  12645. frontRobes: {
  12646. height: math.unit(6, "feet"),
  12647. weight: math.unit(150, "lb"),
  12648. name: "Front (Robes)",
  12649. image: {
  12650. source: "./media/characters/porter/front-robes.svg",
  12651. extra: 1.01,
  12652. bottom: 0.01
  12653. }
  12654. },
  12655. },
  12656. [
  12657. {
  12658. name: "Normal",
  12659. height: math.unit(11 + 9 / 12, "feet"),
  12660. default: true
  12661. },
  12662. ]
  12663. ))
  12664. characterMakers.push(() => makeCharacter(
  12665. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12666. {
  12667. legendary: {
  12668. height: math.unit(6, "feet"),
  12669. weight: math.unit(150, "lb"),
  12670. name: "Legendary",
  12671. image: {
  12672. source: "./media/characters/lucy/legendary.svg",
  12673. extra: 1355 / 1100,
  12674. bottom: 0.045
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Legendary",
  12681. height: math.unit(86882 * 2, "miles"),
  12682. default: true
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12688. {
  12689. front: {
  12690. height: math.unit(6, "feet"),
  12691. weight: math.unit(150, "lb"),
  12692. name: "Front",
  12693. image: {
  12694. source: "./media/characters/drusilla/front.svg",
  12695. extra: 678 / 635,
  12696. bottom: 0.03
  12697. }
  12698. },
  12699. back: {
  12700. height: math.unit(6, "feet"),
  12701. weight: math.unit(150, "lb"),
  12702. name: "Back",
  12703. image: {
  12704. source: "./media/characters/drusilla/back.svg",
  12705. extra: 678 / 635,
  12706. bottom: 0.005
  12707. }
  12708. },
  12709. },
  12710. [
  12711. {
  12712. name: "Macro",
  12713. height: math.unit(100, "feet")
  12714. },
  12715. {
  12716. name: "Canon Height",
  12717. height: math.unit(2000, "feet"),
  12718. default: true
  12719. },
  12720. ]
  12721. ))
  12722. characterMakers.push(() => makeCharacter(
  12723. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12724. {
  12725. front: {
  12726. height: math.unit(6, "feet"),
  12727. weight: math.unit(180, "lb"),
  12728. name: "Front",
  12729. image: {
  12730. source: "./media/characters/renard-thatch/front.svg",
  12731. extra: 2411 / 2275,
  12732. bottom: 0.01
  12733. }
  12734. },
  12735. frontPosing: {
  12736. height: math.unit(6, "feet"),
  12737. weight: math.unit(180, "lb"),
  12738. name: "Front (Posing)",
  12739. image: {
  12740. source: "./media/characters/renard-thatch/front-posing.svg",
  12741. extra: 2381 / 2261,
  12742. bottom: 0.01
  12743. }
  12744. },
  12745. back: {
  12746. height: math.unit(6, "feet"),
  12747. weight: math.unit(180, "lb"),
  12748. name: "Back",
  12749. image: {
  12750. source: "./media/characters/renard-thatch/back.svg",
  12751. extra: 2428 / 2288
  12752. }
  12753. },
  12754. },
  12755. [
  12756. {
  12757. name: "Micro",
  12758. height: math.unit(3, "inches")
  12759. },
  12760. {
  12761. name: "Default",
  12762. height: math.unit(6, "feet"),
  12763. default: true
  12764. },
  12765. {
  12766. name: "Macro",
  12767. height: math.unit(75, "feet")
  12768. },
  12769. ]
  12770. ))
  12771. characterMakers.push(() => makeCharacter(
  12772. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12773. {
  12774. front: {
  12775. height: math.unit(1450, "feet"),
  12776. weight: math.unit(1.21e6, "tons"),
  12777. name: "Front",
  12778. image: {
  12779. source: "./media/characters/sekvra/front.svg",
  12780. extra: 1,
  12781. bottom: 0.03
  12782. }
  12783. },
  12784. frontClothed: {
  12785. height: math.unit(1450, "feet"),
  12786. weight: math.unit(1.21e6, "tons"),
  12787. name: "Front (Clothed)",
  12788. image: {
  12789. source: "./media/characters/sekvra/front-clothed.svg",
  12790. extra: 1,
  12791. bottom: 0.03
  12792. }
  12793. },
  12794. side: {
  12795. height: math.unit(1450, "feet"),
  12796. weight: math.unit(1.21e6, "tons"),
  12797. name: "Side",
  12798. image: {
  12799. source: "./media/characters/sekvra/side.svg",
  12800. extra: 1,
  12801. bottom: 0.025
  12802. }
  12803. },
  12804. back: {
  12805. height: math.unit(1450, "feet"),
  12806. weight: math.unit(1.21e6, "tons"),
  12807. name: "Back",
  12808. image: {
  12809. source: "./media/characters/sekvra/back.svg",
  12810. extra: 1,
  12811. bottom: 0.005
  12812. }
  12813. },
  12814. },
  12815. [
  12816. {
  12817. name: "Macro",
  12818. height: math.unit(1450, "feet"),
  12819. default: true
  12820. },
  12821. {
  12822. name: "Megamacro",
  12823. height: math.unit(15000, "feet")
  12824. },
  12825. ]
  12826. ))
  12827. characterMakers.push(() => makeCharacter(
  12828. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12829. {
  12830. front: {
  12831. height: math.unit(6, "feet"),
  12832. weight: math.unit(150, "lb"),
  12833. name: "Front",
  12834. image: {
  12835. source: "./media/characters/carmine/front.svg",
  12836. extra: 1,
  12837. bottom: 0.035
  12838. }
  12839. },
  12840. frontArmor: {
  12841. height: math.unit(6, "feet"),
  12842. weight: math.unit(150, "lb"),
  12843. name: "Front (Armor)",
  12844. image: {
  12845. source: "./media/characters/carmine/front-armor.svg",
  12846. extra: 1,
  12847. bottom: 0.035
  12848. }
  12849. },
  12850. },
  12851. [
  12852. {
  12853. name: "Large",
  12854. height: math.unit(1, "mile")
  12855. },
  12856. {
  12857. name: "Huge",
  12858. height: math.unit(40, "miles"),
  12859. default: true
  12860. },
  12861. {
  12862. name: "Colossal",
  12863. height: math.unit(2500, "miles")
  12864. },
  12865. ]
  12866. ))
  12867. characterMakers.push(() => makeCharacter(
  12868. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12869. {
  12870. front: {
  12871. height: math.unit(6, "feet"),
  12872. weight: math.unit(150, "lb"),
  12873. name: "Front",
  12874. image: {
  12875. source: "./media/characters/elyssia/front.svg",
  12876. extra: 2201 / 2035,
  12877. bottom: 0.05
  12878. }
  12879. },
  12880. frontClothed: {
  12881. height: math.unit(6, "feet"),
  12882. weight: math.unit(150, "lb"),
  12883. name: "Front (Clothed)",
  12884. image: {
  12885. source: "./media/characters/elyssia/front-clothed.svg",
  12886. extra: 2201 / 2035,
  12887. bottom: 0.05
  12888. }
  12889. },
  12890. back: {
  12891. height: math.unit(6, "feet"),
  12892. weight: math.unit(150, "lb"),
  12893. name: "Back",
  12894. image: {
  12895. source: "./media/characters/elyssia/back.svg",
  12896. extra: 2201 / 2035,
  12897. bottom: 0.013
  12898. }
  12899. },
  12900. },
  12901. [
  12902. {
  12903. name: "Smaller",
  12904. height: math.unit(150, "feet")
  12905. },
  12906. {
  12907. name: "Standard",
  12908. height: math.unit(1400, "feet"),
  12909. default: true
  12910. },
  12911. {
  12912. name: "Distracted",
  12913. height: math.unit(15000, "feet")
  12914. },
  12915. ]
  12916. ))
  12917. characterMakers.push(() => makeCharacter(
  12918. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12919. {
  12920. front: {
  12921. height: math.unit(7 + 4 / 12, "feet"),
  12922. weight: math.unit(500, "lb"),
  12923. name: "Front",
  12924. image: {
  12925. source: "./media/characters/geno-maxwell/front.svg",
  12926. extra: 2207 / 2040,
  12927. bottom: 0.015
  12928. }
  12929. },
  12930. },
  12931. [
  12932. {
  12933. name: "Micro",
  12934. height: math.unit(3, "inches")
  12935. },
  12936. {
  12937. name: "Normal",
  12938. height: math.unit(7 + 4 / 12, "feet"),
  12939. default: true
  12940. },
  12941. {
  12942. name: "Macro",
  12943. height: math.unit(220, "feet")
  12944. },
  12945. {
  12946. name: "Megamacro",
  12947. height: math.unit(11, "miles")
  12948. },
  12949. ]
  12950. ))
  12951. characterMakers.push(() => makeCharacter(
  12952. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12953. {
  12954. front: {
  12955. height: math.unit(7 + 4 / 12, "feet"),
  12956. weight: math.unit(500, "lb"),
  12957. name: "Front",
  12958. image: {
  12959. source: "./media/characters/regena-maxwell/front.svg",
  12960. extra: 3115 / 2770,
  12961. bottom: 0.02
  12962. }
  12963. },
  12964. },
  12965. [
  12966. {
  12967. name: "Normal",
  12968. height: math.unit(7 + 4 / 12, "feet"),
  12969. default: true
  12970. },
  12971. {
  12972. name: "Macro",
  12973. height: math.unit(220, "feet")
  12974. },
  12975. {
  12976. name: "Megamacro",
  12977. height: math.unit(11, "miles")
  12978. },
  12979. ]
  12980. ))
  12981. characterMakers.push(() => makeCharacter(
  12982. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12983. {
  12984. front: {
  12985. height: math.unit(6, "feet"),
  12986. weight: math.unit(150, "lb"),
  12987. name: "Front",
  12988. image: {
  12989. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12990. extra: 860 / 690,
  12991. bottom: 0.03
  12992. }
  12993. },
  12994. },
  12995. [
  12996. {
  12997. name: "Normal",
  12998. height: math.unit(1.7, "meters"),
  12999. default: true
  13000. },
  13001. ]
  13002. ))
  13003. characterMakers.push(() => makeCharacter(
  13004. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13005. {
  13006. front: {
  13007. height: math.unit(6, "feet"),
  13008. weight: math.unit(150, "lb"),
  13009. name: "Front",
  13010. image: {
  13011. source: "./media/characters/quilly/front.svg",
  13012. extra: 890 / 776
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Gigamacro",
  13019. height: math.unit(404090, "miles"),
  13020. default: true
  13021. },
  13022. ]
  13023. ))
  13024. characterMakers.push(() => makeCharacter(
  13025. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13026. {
  13027. front: {
  13028. height: math.unit(7 + 8 / 12, "feet"),
  13029. weight: math.unit(350, "lb"),
  13030. name: "Front",
  13031. image: {
  13032. source: "./media/characters/tempest/front.svg",
  13033. extra: 1175 / 1086,
  13034. bottom: 0.02
  13035. }
  13036. },
  13037. },
  13038. [
  13039. {
  13040. name: "Normal",
  13041. height: math.unit(7 + 8 / 12, "feet"),
  13042. default: true
  13043. },
  13044. ]
  13045. ))
  13046. characterMakers.push(() => makeCharacter(
  13047. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13048. {
  13049. side: {
  13050. height: math.unit(4 + 5 / 12, "feet"),
  13051. weight: math.unit(80, "lb"),
  13052. name: "Side",
  13053. image: {
  13054. source: "./media/characters/rodger/side.svg",
  13055. extra: 1235 / 1118
  13056. }
  13057. },
  13058. },
  13059. [
  13060. {
  13061. name: "Micro",
  13062. height: math.unit(1, "inch")
  13063. },
  13064. {
  13065. name: "Normal",
  13066. height: math.unit(4 + 5 / 12, "feet"),
  13067. default: true
  13068. },
  13069. {
  13070. name: "Macro",
  13071. height: math.unit(120, "feet")
  13072. },
  13073. ]
  13074. ))
  13075. characterMakers.push(() => makeCharacter(
  13076. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13077. {
  13078. front: {
  13079. height: math.unit(6, "feet"),
  13080. weight: math.unit(150, "lb"),
  13081. name: "Front",
  13082. image: {
  13083. source: "./media/characters/danyel/front.svg",
  13084. extra: 1185 / 1123,
  13085. bottom: 0.05
  13086. }
  13087. },
  13088. },
  13089. [
  13090. {
  13091. name: "Shrunken",
  13092. height: math.unit(0.5, "mm")
  13093. },
  13094. {
  13095. name: "Micro",
  13096. height: math.unit(1, "mm"),
  13097. default: true
  13098. },
  13099. {
  13100. name: "Upsized",
  13101. height: math.unit(5 + 5 / 12, "feet")
  13102. },
  13103. ]
  13104. ))
  13105. characterMakers.push(() => makeCharacter(
  13106. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13107. {
  13108. front: {
  13109. height: math.unit(5 + 6 / 12, "feet"),
  13110. weight: math.unit(200, "lb"),
  13111. name: "Front",
  13112. image: {
  13113. source: "./media/characters/vivian-bijoux/front.svg",
  13114. extra: 1,
  13115. bottom: 0.072
  13116. }
  13117. },
  13118. },
  13119. [
  13120. {
  13121. name: "Normal",
  13122. height: math.unit(5 + 6 / 12, "feet"),
  13123. default: true
  13124. },
  13125. {
  13126. name: "Bad Dream",
  13127. height: math.unit(500, "feet")
  13128. },
  13129. {
  13130. name: "Nightmare",
  13131. height: math.unit(500, "miles")
  13132. },
  13133. ]
  13134. ))
  13135. characterMakers.push(() => makeCharacter(
  13136. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13137. {
  13138. front: {
  13139. height: math.unit(6 + 1 / 12, "feet"),
  13140. weight: math.unit(260, "lb"),
  13141. name: "Front",
  13142. image: {
  13143. source: "./media/characters/zeta/front.svg",
  13144. extra: 1968 / 1889,
  13145. bottom: 0.06
  13146. }
  13147. },
  13148. back: {
  13149. height: math.unit(6 + 1 / 12, "feet"),
  13150. weight: math.unit(260, "lb"),
  13151. name: "Back",
  13152. image: {
  13153. source: "./media/characters/zeta/back.svg",
  13154. extra: 1944 / 1858,
  13155. bottom: 0.03
  13156. }
  13157. },
  13158. hand: {
  13159. height: math.unit(1.112, "feet"),
  13160. name: "Hand",
  13161. image: {
  13162. source: "./media/characters/zeta/hand.svg"
  13163. }
  13164. },
  13165. foot: {
  13166. height: math.unit(1.48, "feet"),
  13167. name: "Foot",
  13168. image: {
  13169. source: "./media/characters/zeta/foot.svg"
  13170. }
  13171. },
  13172. },
  13173. [
  13174. {
  13175. name: "Micro",
  13176. height: math.unit(6, "inches")
  13177. },
  13178. {
  13179. name: "Normal",
  13180. height: math.unit(6 + 1 / 12, "feet"),
  13181. default: true
  13182. },
  13183. {
  13184. name: "Macro",
  13185. height: math.unit(20, "feet")
  13186. },
  13187. ]
  13188. ))
  13189. characterMakers.push(() => makeCharacter(
  13190. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13191. {
  13192. front: {
  13193. height: math.unit(6, "feet"),
  13194. weight: math.unit(150, "lb"),
  13195. name: "Front",
  13196. image: {
  13197. source: "./media/characters/jamie-larsen/front.svg",
  13198. extra: 962 / 933,
  13199. bottom: 0.02
  13200. }
  13201. },
  13202. back: {
  13203. height: math.unit(6, "feet"),
  13204. weight: math.unit(150, "lb"),
  13205. name: "Back",
  13206. image: {
  13207. source: "./media/characters/jamie-larsen/back.svg",
  13208. extra: 997 / 946
  13209. }
  13210. },
  13211. },
  13212. [
  13213. {
  13214. name: "Macro",
  13215. height: math.unit(28 + 7 / 12, "feet"),
  13216. default: true
  13217. },
  13218. {
  13219. name: "Macro+",
  13220. height: math.unit(180, "feet")
  13221. },
  13222. {
  13223. name: "Megamacro",
  13224. height: math.unit(10, "miles")
  13225. },
  13226. {
  13227. name: "Gigamacro",
  13228. height: math.unit(200000, "miles")
  13229. },
  13230. ]
  13231. ))
  13232. characterMakers.push(() => makeCharacter(
  13233. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13234. {
  13235. front: {
  13236. height: math.unit(6, "feet"),
  13237. weight: math.unit(120, "lb"),
  13238. name: "Front",
  13239. image: {
  13240. source: "./media/characters/vance/front.svg",
  13241. extra: 1980 / 1890,
  13242. bottom: 0.09
  13243. }
  13244. },
  13245. back: {
  13246. height: math.unit(6, "feet"),
  13247. weight: math.unit(120, "lb"),
  13248. name: "Back",
  13249. image: {
  13250. source: "./media/characters/vance/back.svg",
  13251. extra: 2081 / 1994,
  13252. bottom: 0.014
  13253. }
  13254. },
  13255. hand: {
  13256. height: math.unit(0.88, "feet"),
  13257. name: "Hand",
  13258. image: {
  13259. source: "./media/characters/vance/hand.svg"
  13260. }
  13261. },
  13262. foot: {
  13263. height: math.unit(0.64, "feet"),
  13264. name: "Foot",
  13265. image: {
  13266. source: "./media/characters/vance/foot.svg"
  13267. }
  13268. },
  13269. },
  13270. [
  13271. {
  13272. name: "Small",
  13273. height: math.unit(90, "feet"),
  13274. default: true
  13275. },
  13276. {
  13277. name: "Macro",
  13278. height: math.unit(100, "meters")
  13279. },
  13280. {
  13281. name: "Megamacro",
  13282. height: math.unit(15, "miles")
  13283. },
  13284. ]
  13285. ))
  13286. characterMakers.push(() => makeCharacter(
  13287. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13288. {
  13289. front: {
  13290. height: math.unit(6, "feet"),
  13291. weight: math.unit(180, "lb"),
  13292. name: "Front",
  13293. image: {
  13294. source: "./media/characters/xochitl/front.svg",
  13295. extra: 2297 / 2261,
  13296. bottom: 0.065
  13297. }
  13298. },
  13299. back: {
  13300. height: math.unit(6, "feet"),
  13301. weight: math.unit(180, "lb"),
  13302. name: "Back",
  13303. image: {
  13304. source: "./media/characters/xochitl/back.svg",
  13305. extra: 2386 / 2354,
  13306. bottom: 0.01
  13307. }
  13308. },
  13309. foot: {
  13310. height: math.unit(6 / 5 * 1.15, "feet"),
  13311. weight: math.unit(150, "lb"),
  13312. name: "Foot",
  13313. image: {
  13314. source: "./media/characters/xochitl/foot.svg"
  13315. }
  13316. },
  13317. },
  13318. [
  13319. {
  13320. name: "Macro",
  13321. height: math.unit(80, "feet")
  13322. },
  13323. {
  13324. name: "Macro+",
  13325. height: math.unit(400, "feet"),
  13326. default: true
  13327. },
  13328. {
  13329. name: "Gigamacro",
  13330. height: math.unit(80000, "miles")
  13331. },
  13332. {
  13333. name: "Gigamacro+",
  13334. height: math.unit(400000, "miles")
  13335. },
  13336. {
  13337. name: "Teramacro",
  13338. height: math.unit(300, "AU")
  13339. },
  13340. ]
  13341. ))
  13342. characterMakers.push(() => makeCharacter(
  13343. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13344. {
  13345. front: {
  13346. height: math.unit(6, "feet"),
  13347. weight: math.unit(150, "lb"),
  13348. name: "Front",
  13349. image: {
  13350. source: "./media/characters/vincent/front.svg",
  13351. extra: 1130 / 1080,
  13352. bottom: 0.055
  13353. }
  13354. },
  13355. beak: {
  13356. height: math.unit(6 * 0.1, "feet"),
  13357. name: "Beak",
  13358. image: {
  13359. source: "./media/characters/vincent/beak.svg"
  13360. }
  13361. },
  13362. hand: {
  13363. height: math.unit(6 * 0.85, "feet"),
  13364. weight: math.unit(150, "lb"),
  13365. name: "Hand",
  13366. image: {
  13367. source: "./media/characters/vincent/hand.svg"
  13368. }
  13369. },
  13370. foot: {
  13371. height: math.unit(6 * 0.19, "feet"),
  13372. weight: math.unit(150, "lb"),
  13373. name: "Foot",
  13374. image: {
  13375. source: "./media/characters/vincent/foot.svg"
  13376. }
  13377. },
  13378. },
  13379. [
  13380. {
  13381. name: "Base",
  13382. height: math.unit(6 + 5 / 12, "feet"),
  13383. default: true
  13384. },
  13385. {
  13386. name: "Macro",
  13387. height: math.unit(300, "feet")
  13388. },
  13389. {
  13390. name: "Megamacro",
  13391. height: math.unit(2, "miles")
  13392. },
  13393. {
  13394. name: "Gigamacro",
  13395. height: math.unit(1000, "miles")
  13396. },
  13397. ]
  13398. ))
  13399. characterMakers.push(() => makeCharacter(
  13400. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13401. {
  13402. front: {
  13403. height: math.unit(6 + 2 / 12, "feet"),
  13404. weight: math.unit(265, "lb"),
  13405. name: "Front",
  13406. image: {
  13407. source: "./media/characters/jay/front.svg",
  13408. extra: 1510 / 1430,
  13409. bottom: 0.042
  13410. }
  13411. },
  13412. back: {
  13413. height: math.unit(6 + 2 / 12, "feet"),
  13414. weight: math.unit(265, "lb"),
  13415. name: "Back",
  13416. image: {
  13417. source: "./media/characters/jay/back.svg",
  13418. extra: 1510 / 1430,
  13419. bottom: 0.025
  13420. }
  13421. },
  13422. clothed: {
  13423. height: math.unit(6 + 2 / 12, "feet"),
  13424. weight: math.unit(265, "lb"),
  13425. name: "Front (Clothed)",
  13426. image: {
  13427. source: "./media/characters/jay/clothed.svg",
  13428. extra: 744 / 699,
  13429. bottom: 0.043
  13430. }
  13431. },
  13432. head: {
  13433. height: math.unit(1.772, "feet"),
  13434. name: "Head",
  13435. image: {
  13436. source: "./media/characters/jay/head.svg"
  13437. }
  13438. },
  13439. sizeRay: {
  13440. height: math.unit(1.331, "feet"),
  13441. name: "Size Ray",
  13442. image: {
  13443. source: "./media/characters/jay/size-ray.svg"
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Micro",
  13450. height: math.unit(1, "inch")
  13451. },
  13452. {
  13453. name: "Normal",
  13454. height: math.unit(6 + 2 / 12, "feet"),
  13455. default: true
  13456. },
  13457. {
  13458. name: "Macro",
  13459. height: math.unit(1, "mile")
  13460. },
  13461. {
  13462. name: "Megamacro",
  13463. height: math.unit(100, "miles")
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(2, "meters"),
  13472. weight: math.unit(500, "kg"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/coatl/front.svg",
  13476. extra: 3948 / 3500,
  13477. bottom: 0.082
  13478. }
  13479. },
  13480. },
  13481. [
  13482. {
  13483. name: "Normal",
  13484. height: math.unit(4, "meters")
  13485. },
  13486. {
  13487. name: "Macro",
  13488. height: math.unit(100, "meters"),
  13489. default: true
  13490. },
  13491. {
  13492. name: "Macro+",
  13493. height: math.unit(300, "meters")
  13494. },
  13495. {
  13496. name: "Megamacro",
  13497. height: math.unit(3, "gigameters")
  13498. },
  13499. {
  13500. name: "Megamacro+",
  13501. height: math.unit(300, "terameters")
  13502. },
  13503. {
  13504. name: "Megamacro++",
  13505. height: math.unit(3, "lightyears")
  13506. },
  13507. ]
  13508. ))
  13509. characterMakers.push(() => makeCharacter(
  13510. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13511. {
  13512. front: {
  13513. height: math.unit(6, "feet"),
  13514. weight: math.unit(50, "kg"),
  13515. name: "front",
  13516. image: {
  13517. source: "./media/characters/shiroryu/front.svg",
  13518. extra: 1990 / 1935
  13519. }
  13520. },
  13521. },
  13522. [
  13523. {
  13524. name: "Mortal Mingling",
  13525. height: math.unit(3, "meters")
  13526. },
  13527. {
  13528. name: "Kaiju-ish",
  13529. height: math.unit(250, "meters")
  13530. },
  13531. {
  13532. name: "Somewhat Godly",
  13533. height: math.unit(400, "km"),
  13534. default: true
  13535. },
  13536. {
  13537. name: "Planetary",
  13538. height: math.unit(300, "megameters")
  13539. },
  13540. {
  13541. name: "Galaxy-dwarfing",
  13542. height: math.unit(450, "kiloparsecs")
  13543. },
  13544. {
  13545. name: "Universe Eater",
  13546. height: math.unit(150, "gigaparsecs")
  13547. },
  13548. {
  13549. name: "Almost Immeasurable",
  13550. height: math.unit(1.3e266, "yottaparsecs")
  13551. },
  13552. ]
  13553. ))
  13554. characterMakers.push(() => makeCharacter(
  13555. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13556. {
  13557. front: {
  13558. height: math.unit(6, "feet"),
  13559. weight: math.unit(150, "lb"),
  13560. name: "Front",
  13561. image: {
  13562. source: "./media/characters/umeko/front.svg",
  13563. extra: 1,
  13564. bottom: 0.019
  13565. }
  13566. },
  13567. frontArmored: {
  13568. height: math.unit(6, "feet"),
  13569. weight: math.unit(150, "lb"),
  13570. name: "Front (Armored)",
  13571. image: {
  13572. source: "./media/characters/umeko/front-armored.svg",
  13573. extra: 1,
  13574. bottom: 0.021
  13575. }
  13576. },
  13577. },
  13578. [
  13579. {
  13580. name: "Macro",
  13581. height: math.unit(220, "feet"),
  13582. default: true
  13583. },
  13584. {
  13585. name: "Guardian Dragon",
  13586. height: math.unit(50, "miles")
  13587. },
  13588. {
  13589. name: "Cosmic",
  13590. height: math.unit(800000, "miles")
  13591. },
  13592. ]
  13593. ))
  13594. characterMakers.push(() => makeCharacter(
  13595. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13596. {
  13597. front: {
  13598. height: math.unit(6, "feet"),
  13599. weight: math.unit(150, "lb"),
  13600. name: "Front",
  13601. image: {
  13602. source: "./media/characters/cassidy/front.svg",
  13603. extra: 1,
  13604. bottom: 0.043
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Canon Height",
  13611. height: math.unit(120, "feet"),
  13612. default: true
  13613. },
  13614. {
  13615. name: "Macro+",
  13616. height: math.unit(400, "feet")
  13617. },
  13618. {
  13619. name: "Macro++",
  13620. height: math.unit(4000, "feet")
  13621. },
  13622. {
  13623. name: "Megamacro",
  13624. height: math.unit(3, "miles")
  13625. },
  13626. ]
  13627. ))
  13628. characterMakers.push(() => makeCharacter(
  13629. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13630. {
  13631. front: {
  13632. height: math.unit(6, "feet"),
  13633. weight: math.unit(150, "lb"),
  13634. name: "Front",
  13635. image: {
  13636. source: "./media/characters/isaac/front.svg",
  13637. extra: 896 / 815,
  13638. bottom: 0.11
  13639. }
  13640. },
  13641. },
  13642. [
  13643. {
  13644. name: "Human Size",
  13645. height: math.unit(8, "feet"),
  13646. default: true
  13647. },
  13648. {
  13649. name: "Macro",
  13650. height: math.unit(400, "feet")
  13651. },
  13652. {
  13653. name: "Megamacro",
  13654. height: math.unit(50, "miles")
  13655. },
  13656. {
  13657. name: "Canon Height",
  13658. height: math.unit(200, "AU")
  13659. },
  13660. ]
  13661. ))
  13662. characterMakers.push(() => makeCharacter(
  13663. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13664. {
  13665. front: {
  13666. height: math.unit(6, "feet"),
  13667. weight: math.unit(72, "kg"),
  13668. name: "Front",
  13669. image: {
  13670. source: "./media/characters/sleekit/front.svg",
  13671. extra: 4693 / 4487,
  13672. bottom: 0.012
  13673. }
  13674. },
  13675. },
  13676. [
  13677. {
  13678. name: "Minimum Height",
  13679. height: math.unit(10, "meters")
  13680. },
  13681. {
  13682. name: "Smaller",
  13683. height: math.unit(25, "meters")
  13684. },
  13685. {
  13686. name: "Larger",
  13687. height: math.unit(38, "meters"),
  13688. default: true
  13689. },
  13690. {
  13691. name: "Maximum height",
  13692. height: math.unit(100, "meters")
  13693. },
  13694. ]
  13695. ))
  13696. characterMakers.push(() => makeCharacter(
  13697. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13698. {
  13699. front: {
  13700. height: math.unit(6, "feet"),
  13701. weight: math.unit(150, "lb"),
  13702. name: "Front",
  13703. image: {
  13704. source: "./media/characters/nillia/front.svg",
  13705. extra: 2195 / 2037,
  13706. bottom: 0.005
  13707. }
  13708. },
  13709. back: {
  13710. height: math.unit(6, "feet"),
  13711. weight: math.unit(150, "lb"),
  13712. name: "Back",
  13713. image: {
  13714. source: "./media/characters/nillia/back.svg",
  13715. extra: 2195 / 2037,
  13716. bottom: 0.005
  13717. }
  13718. },
  13719. },
  13720. [
  13721. {
  13722. name: "Canon Height",
  13723. height: math.unit(489, "feet"),
  13724. default: true
  13725. }
  13726. ]
  13727. ))
  13728. characterMakers.push(() => makeCharacter(
  13729. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13730. {
  13731. front: {
  13732. height: math.unit(6, "feet"),
  13733. weight: math.unit(150, "lb"),
  13734. name: "Front",
  13735. image: {
  13736. source: "./media/characters/mesmyriza/front.svg",
  13737. extra: 2067 / 1784,
  13738. bottom: 0.035
  13739. }
  13740. },
  13741. foot: {
  13742. height: math.unit(6 / (250 / 35), "feet"),
  13743. name: "Foot",
  13744. image: {
  13745. source: "./media/characters/mesmyriza/foot.svg"
  13746. }
  13747. },
  13748. },
  13749. [
  13750. {
  13751. name: "Macro",
  13752. height: math.unit(457, "meters"),
  13753. default: true
  13754. },
  13755. {
  13756. name: "Megamacro",
  13757. height: math.unit(8, "megameters")
  13758. },
  13759. ]
  13760. ))
  13761. characterMakers.push(() => makeCharacter(
  13762. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13763. {
  13764. front: {
  13765. height: math.unit(6, "feet"),
  13766. weight: math.unit(250, "lb"),
  13767. name: "Front",
  13768. image: {
  13769. source: "./media/characters/saudade/front.svg",
  13770. extra: 1172 / 1139,
  13771. bottom: 0.035
  13772. }
  13773. },
  13774. },
  13775. [
  13776. {
  13777. name: "Micro",
  13778. height: math.unit(3, "inches")
  13779. },
  13780. {
  13781. name: "Normal",
  13782. height: math.unit(6, "feet"),
  13783. default: true
  13784. },
  13785. {
  13786. name: "Macro",
  13787. height: math.unit(50, "feet")
  13788. },
  13789. {
  13790. name: "Megamacro",
  13791. height: math.unit(2800, "feet")
  13792. },
  13793. ]
  13794. ))
  13795. characterMakers.push(() => makeCharacter(
  13796. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13797. {
  13798. front: {
  13799. height: math.unit(5 + 4 / 12, "feet"),
  13800. weight: math.unit(100, "lb"),
  13801. name: "Front",
  13802. image: {
  13803. source: "./media/characters/keireer/front.svg",
  13804. extra: 716 / 666,
  13805. bottom: 0.05
  13806. }
  13807. },
  13808. },
  13809. [
  13810. {
  13811. name: "Normal",
  13812. height: math.unit(5 + 4 / 12, "feet"),
  13813. default: true
  13814. },
  13815. ]
  13816. ))
  13817. characterMakers.push(() => makeCharacter(
  13818. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13819. {
  13820. front: {
  13821. height: math.unit(6, "feet"),
  13822. weight: math.unit(90, "kg"),
  13823. name: "Front",
  13824. image: {
  13825. source: "./media/characters/mirja/front.svg",
  13826. extra: 1789 / 1683,
  13827. bottom: 0.05
  13828. }
  13829. },
  13830. frontDressed: {
  13831. height: math.unit(6, "feet"),
  13832. weight: math.unit(90, "lb"),
  13833. name: "Front (Dressed)",
  13834. image: {
  13835. source: "./media/characters/mirja/front-dressed.svg",
  13836. extra: 1789 / 1683,
  13837. bottom: 0.05
  13838. }
  13839. },
  13840. back: {
  13841. height: math.unit(6, "feet"),
  13842. weight: math.unit(90, "lb"),
  13843. name: "Back",
  13844. image: {
  13845. source: "./media/characters/mirja/back.svg",
  13846. extra: 953 / 917,
  13847. bottom: 0.017
  13848. }
  13849. },
  13850. },
  13851. [
  13852. {
  13853. name: "\"Incognito\"",
  13854. height: math.unit(3, "meters")
  13855. },
  13856. {
  13857. name: "Strolling Size",
  13858. height: math.unit(15, "km")
  13859. },
  13860. {
  13861. name: "Larger Strolling Size",
  13862. height: math.unit(400, "km")
  13863. },
  13864. {
  13865. name: "Preferred Size",
  13866. height: math.unit(5000, "km")
  13867. },
  13868. {
  13869. name: "True Size",
  13870. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13871. default: true
  13872. },
  13873. ]
  13874. ))
  13875. characterMakers.push(() => makeCharacter(
  13876. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13877. {
  13878. front: {
  13879. height: math.unit(15, "feet"),
  13880. weight: math.unit(880, "kg"),
  13881. name: "Front",
  13882. image: {
  13883. source: "./media/characters/nightraver/front.svg",
  13884. extra: 2444 / 2160,
  13885. bottom: 0.027
  13886. }
  13887. },
  13888. back: {
  13889. height: math.unit(15, "feet"),
  13890. weight: math.unit(880, "kg"),
  13891. name: "Back",
  13892. image: {
  13893. source: "./media/characters/nightraver/back.svg",
  13894. extra: 2309 / 2180,
  13895. bottom: 0.005
  13896. }
  13897. },
  13898. sole: {
  13899. height: math.unit(2.878, "feet"),
  13900. name: "Sole",
  13901. image: {
  13902. source: "./media/characters/nightraver/sole.svg"
  13903. }
  13904. },
  13905. foot: {
  13906. height: math.unit(2.285, "feet"),
  13907. name: "Foot",
  13908. image: {
  13909. source: "./media/characters/nightraver/foot.svg"
  13910. }
  13911. },
  13912. maw: {
  13913. height: math.unit(2.67, "feet"),
  13914. name: "Maw",
  13915. image: {
  13916. source: "./media/characters/nightraver/maw.svg"
  13917. }
  13918. },
  13919. },
  13920. [
  13921. {
  13922. name: "Micro",
  13923. height: math.unit(1, "cm")
  13924. },
  13925. {
  13926. name: "Normal",
  13927. height: math.unit(15, "feet"),
  13928. default: true
  13929. },
  13930. {
  13931. name: "Macro",
  13932. height: math.unit(300, "feet")
  13933. },
  13934. {
  13935. name: "Megamacro",
  13936. height: math.unit(300, "miles")
  13937. },
  13938. {
  13939. name: "Gigamacro",
  13940. height: math.unit(10000, "miles")
  13941. },
  13942. ]
  13943. ))
  13944. characterMakers.push(() => makeCharacter(
  13945. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13946. {
  13947. side: {
  13948. height: math.unit(2, "inches"),
  13949. weight: math.unit(5, "grams"),
  13950. name: "Side",
  13951. image: {
  13952. source: "./media/characters/arc/side.svg"
  13953. }
  13954. },
  13955. },
  13956. [
  13957. {
  13958. name: "Micro",
  13959. height: math.unit(2, "inches"),
  13960. default: true
  13961. },
  13962. ]
  13963. ))
  13964. characterMakers.push(() => makeCharacter(
  13965. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13966. {
  13967. front: {
  13968. height: math.unit(1.1938, "meters"),
  13969. weight: math.unit(54, "kg"),
  13970. name: "Front",
  13971. image: {
  13972. source: "./media/characters/nebula-shahar/front.svg",
  13973. extra: 1642 / 1436,
  13974. bottom: 0.06
  13975. }
  13976. },
  13977. },
  13978. [
  13979. {
  13980. name: "Megamicro",
  13981. height: math.unit(0.3, "mm")
  13982. },
  13983. {
  13984. name: "Micro",
  13985. height: math.unit(3, "cm")
  13986. },
  13987. {
  13988. name: "Normal",
  13989. height: math.unit(138, "cm"),
  13990. default: true
  13991. },
  13992. {
  13993. name: "Macro",
  13994. height: math.unit(30, "m")
  13995. },
  13996. ]
  13997. ))
  13998. characterMakers.push(() => makeCharacter(
  13999. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14000. {
  14001. front: {
  14002. height: math.unit(5.24, "feet"),
  14003. weight: math.unit(150, "lb"),
  14004. name: "Front",
  14005. image: {
  14006. source: "./media/characters/shayla/front.svg",
  14007. extra: 1512 / 1414,
  14008. bottom: 0.01
  14009. }
  14010. },
  14011. back: {
  14012. height: math.unit(5.24, "feet"),
  14013. weight: math.unit(150, "lb"),
  14014. name: "Back",
  14015. image: {
  14016. source: "./media/characters/shayla/back.svg",
  14017. extra: 1512 / 1414
  14018. }
  14019. },
  14020. hand: {
  14021. height: math.unit(0.7781496062992126, "feet"),
  14022. name: "Hand",
  14023. image: {
  14024. source: "./media/characters/shayla/hand.svg"
  14025. }
  14026. },
  14027. foot: {
  14028. height: math.unit(1.4206036745406823, "feet"),
  14029. name: "Foot",
  14030. image: {
  14031. source: "./media/characters/shayla/foot.svg"
  14032. }
  14033. },
  14034. },
  14035. [
  14036. {
  14037. name: "Micro",
  14038. height: math.unit(0.32, "feet")
  14039. },
  14040. {
  14041. name: "Normal",
  14042. height: math.unit(5.24, "feet"),
  14043. default: true
  14044. },
  14045. {
  14046. name: "Macro",
  14047. height: math.unit(492.12, "feet")
  14048. },
  14049. {
  14050. name: "Megamacro",
  14051. height: math.unit(186.41, "miles")
  14052. },
  14053. ]
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14057. {
  14058. front: {
  14059. height: math.unit(2.2, "m"),
  14060. weight: math.unit(120, "kg"),
  14061. name: "Front",
  14062. image: {
  14063. source: "./media/characters/pia-jr/front.svg",
  14064. extra: 1000 / 970,
  14065. bottom: 0.035
  14066. }
  14067. },
  14068. hand: {
  14069. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14070. name: "Hand",
  14071. image: {
  14072. source: "./media/characters/pia-jr/hand.svg"
  14073. }
  14074. },
  14075. paw: {
  14076. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14077. name: "Paw",
  14078. image: {
  14079. source: "./media/characters/pia-jr/paw.svg"
  14080. }
  14081. },
  14082. },
  14083. [
  14084. {
  14085. name: "Micro",
  14086. height: math.unit(1.2, "cm")
  14087. },
  14088. {
  14089. name: "Normal",
  14090. height: math.unit(2.2, "m"),
  14091. default: true
  14092. },
  14093. {
  14094. name: "Macro",
  14095. height: math.unit(180, "m")
  14096. },
  14097. {
  14098. name: "Megamacro",
  14099. height: math.unit(420, "km")
  14100. },
  14101. ]
  14102. ))
  14103. characterMakers.push(() => makeCharacter(
  14104. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14105. {
  14106. front: {
  14107. height: math.unit(2, "m"),
  14108. weight: math.unit(115, "kg"),
  14109. name: "Front",
  14110. image: {
  14111. source: "./media/characters/pia-sr/front.svg",
  14112. extra: 760 / 730,
  14113. bottom: 0.015
  14114. }
  14115. },
  14116. back: {
  14117. height: math.unit(2, "m"),
  14118. weight: math.unit(115, "kg"),
  14119. name: "Back",
  14120. image: {
  14121. source: "./media/characters/pia-sr/back.svg",
  14122. extra: 760 / 730,
  14123. bottom: 0.01
  14124. }
  14125. },
  14126. hand: {
  14127. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14128. name: "Hand",
  14129. image: {
  14130. source: "./media/characters/pia-sr/hand.svg"
  14131. }
  14132. },
  14133. foot: {
  14134. height: math.unit(1.83, "feet"),
  14135. name: "Foot",
  14136. image: {
  14137. source: "./media/characters/pia-sr/foot.svg"
  14138. }
  14139. },
  14140. },
  14141. [
  14142. {
  14143. name: "Micro",
  14144. height: math.unit(88, "mm")
  14145. },
  14146. {
  14147. name: "Normal",
  14148. height: math.unit(2, "m"),
  14149. default: true
  14150. },
  14151. {
  14152. name: "Macro",
  14153. height: math.unit(200, "m")
  14154. },
  14155. {
  14156. name: "Megamacro",
  14157. height: math.unit(420, "km")
  14158. },
  14159. ]
  14160. ))
  14161. characterMakers.push(() => makeCharacter(
  14162. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14163. {
  14164. front: {
  14165. height: math.unit(8 + 2 / 12, "feet"),
  14166. weight: math.unit(300, "lb"),
  14167. name: "Front",
  14168. image: {
  14169. source: "./media/characters/kibibyte/front.svg",
  14170. extra: 2221 / 2098,
  14171. bottom: 0.04
  14172. }
  14173. },
  14174. },
  14175. [
  14176. {
  14177. name: "Normal",
  14178. height: math.unit(8 + 2 / 12, "feet"),
  14179. default: true
  14180. },
  14181. {
  14182. name: "Socialable Macro",
  14183. height: math.unit(50, "feet")
  14184. },
  14185. {
  14186. name: "Macro",
  14187. height: math.unit(300, "feet")
  14188. },
  14189. {
  14190. name: "Megamacro",
  14191. height: math.unit(500, "miles")
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14197. {
  14198. front: {
  14199. height: math.unit(6, "feet"),
  14200. weight: math.unit(150, "lb"),
  14201. name: "Front",
  14202. image: {
  14203. source: "./media/characters/felix/front.svg",
  14204. extra: 762 / 722,
  14205. bottom: 0.02
  14206. }
  14207. },
  14208. frontClothed: {
  14209. height: math.unit(6, "feet"),
  14210. weight: math.unit(150, "lb"),
  14211. name: "Front (Clothed)",
  14212. image: {
  14213. source: "./media/characters/felix/front-clothed.svg",
  14214. extra: 762 / 722,
  14215. bottom: 0.02
  14216. }
  14217. },
  14218. },
  14219. [
  14220. {
  14221. name: "Normal",
  14222. height: math.unit(6 + 8 / 12, "feet"),
  14223. default: true
  14224. },
  14225. {
  14226. name: "Macro",
  14227. height: math.unit(2600, "feet")
  14228. },
  14229. {
  14230. name: "Megamacro",
  14231. height: math.unit(450, "miles")
  14232. },
  14233. ]
  14234. ))
  14235. characterMakers.push(() => makeCharacter(
  14236. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14237. {
  14238. front: {
  14239. height: math.unit(6 + 1 / 12, "feet"),
  14240. weight: math.unit(250, "lb"),
  14241. name: "Front",
  14242. image: {
  14243. source: "./media/characters/tobo/front.svg",
  14244. extra: 608 / 586,
  14245. bottom: 0.023
  14246. }
  14247. },
  14248. back: {
  14249. height: math.unit(6 + 1 / 12, "feet"),
  14250. weight: math.unit(250, "lb"),
  14251. name: "Back",
  14252. image: {
  14253. source: "./media/characters/tobo/back.svg",
  14254. extra: 608 / 586
  14255. }
  14256. },
  14257. },
  14258. [
  14259. {
  14260. name: "Nano",
  14261. height: math.unit(2, "nm")
  14262. },
  14263. {
  14264. name: "Megamicro",
  14265. height: math.unit(0.1, "mm")
  14266. },
  14267. {
  14268. name: "Micro",
  14269. height: math.unit(1, "inch"),
  14270. default: true
  14271. },
  14272. {
  14273. name: "Human-sized",
  14274. height: math.unit(6 + 1 / 12, "feet")
  14275. },
  14276. {
  14277. name: "Macro",
  14278. height: math.unit(250, "feet")
  14279. },
  14280. {
  14281. name: "Megamacro",
  14282. height: math.unit(75, "miles")
  14283. },
  14284. {
  14285. name: "Texas-sized",
  14286. height: math.unit(750, "miles")
  14287. },
  14288. {
  14289. name: "Teramacro",
  14290. height: math.unit(50000, "miles")
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14296. {
  14297. front: {
  14298. height: math.unit(6, "feet"),
  14299. weight: math.unit(269, "lb"),
  14300. name: "Front",
  14301. image: {
  14302. source: "./media/characters/danny-kapowsky/front.svg",
  14303. extra: 766 / 736,
  14304. bottom: 0.044
  14305. }
  14306. },
  14307. back: {
  14308. height: math.unit(6, "feet"),
  14309. weight: math.unit(269, "lb"),
  14310. name: "Back",
  14311. image: {
  14312. source: "./media/characters/danny-kapowsky/back.svg",
  14313. extra: 797 / 760,
  14314. bottom: 0.025
  14315. }
  14316. },
  14317. },
  14318. [
  14319. {
  14320. name: "Macro",
  14321. height: math.unit(150, "feet"),
  14322. default: true
  14323. },
  14324. {
  14325. name: "Macro+",
  14326. height: math.unit(200, "feet")
  14327. },
  14328. {
  14329. name: "Macro++",
  14330. height: math.unit(300, "feet")
  14331. },
  14332. {
  14333. name: "Macro+++",
  14334. height: math.unit(400, "feet")
  14335. },
  14336. ]
  14337. ))
  14338. characterMakers.push(() => makeCharacter(
  14339. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14340. {
  14341. side: {
  14342. height: math.unit(6, "feet"),
  14343. weight: math.unit(170, "lb"),
  14344. name: "Side",
  14345. image: {
  14346. source: "./media/characters/finn/side.svg",
  14347. extra: 1953 / 1807,
  14348. bottom: 0.057
  14349. }
  14350. },
  14351. },
  14352. [
  14353. {
  14354. name: "Megamacro",
  14355. height: math.unit(14445, "feet"),
  14356. default: true
  14357. },
  14358. ]
  14359. ))
  14360. characterMakers.push(() => makeCharacter(
  14361. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14362. {
  14363. front: {
  14364. height: math.unit(5 + 6 / 12, "feet"),
  14365. weight: math.unit(125, "lb"),
  14366. name: "Front",
  14367. image: {
  14368. source: "./media/characters/roy/front.svg",
  14369. extra: 1,
  14370. bottom: 0.11
  14371. }
  14372. },
  14373. },
  14374. [
  14375. {
  14376. name: "Micro",
  14377. height: math.unit(3, "inches"),
  14378. default: true
  14379. },
  14380. {
  14381. name: "Normal",
  14382. height: math.unit(5 + 6 / 12, "feet")
  14383. },
  14384. {
  14385. name: "Lesser Macro",
  14386. height: math.unit(60, "feet")
  14387. },
  14388. {
  14389. name: "Greater Macro",
  14390. height: math.unit(120, "feet")
  14391. },
  14392. ]
  14393. ))
  14394. characterMakers.push(() => makeCharacter(
  14395. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14396. {
  14397. front: {
  14398. height: math.unit(6, "feet"),
  14399. weight: math.unit(100, "lb"),
  14400. name: "Front",
  14401. image: {
  14402. source: "./media/characters/aevsivs/front.svg",
  14403. extra: 1,
  14404. bottom: 0.03
  14405. }
  14406. },
  14407. back: {
  14408. height: math.unit(6, "feet"),
  14409. weight: math.unit(100, "lb"),
  14410. name: "Back",
  14411. image: {
  14412. source: "./media/characters/aevsivs/back.svg"
  14413. }
  14414. },
  14415. },
  14416. [
  14417. {
  14418. name: "Micro",
  14419. height: math.unit(2, "inches"),
  14420. default: true
  14421. },
  14422. {
  14423. name: "Normal",
  14424. height: math.unit(5, "feet")
  14425. },
  14426. ]
  14427. ))
  14428. characterMakers.push(() => makeCharacter(
  14429. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14430. {
  14431. front: {
  14432. height: math.unit(5 + 7 / 12, "feet"),
  14433. weight: math.unit(159, "lb"),
  14434. name: "Front",
  14435. image: {
  14436. source: "./media/characters/hildegard/front.svg",
  14437. extra: 289 / 269,
  14438. bottom: 7.63 / 297.8
  14439. }
  14440. },
  14441. back: {
  14442. height: math.unit(5 + 7 / 12, "feet"),
  14443. weight: math.unit(159, "lb"),
  14444. name: "Back",
  14445. image: {
  14446. source: "./media/characters/hildegard/back.svg",
  14447. extra: 280 / 260,
  14448. bottom: 2.3 / 282
  14449. }
  14450. },
  14451. },
  14452. [
  14453. {
  14454. name: "Normal",
  14455. height: math.unit(5 + 7 / 12, "feet"),
  14456. default: true
  14457. },
  14458. ]
  14459. ))
  14460. characterMakers.push(() => makeCharacter(
  14461. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14462. {
  14463. bernard: {
  14464. height: math.unit(2 + 7 / 12, "feet"),
  14465. weight: math.unit(66, "lb"),
  14466. name: "Bernard",
  14467. rename: true,
  14468. image: {
  14469. source: "./media/characters/bernard-wilder/bernard.svg",
  14470. extra: 192 / 128,
  14471. bottom: 0.05
  14472. }
  14473. },
  14474. wilder: {
  14475. height: math.unit(5 + 8 / 12, "feet"),
  14476. weight: math.unit(143, "lb"),
  14477. name: "Wilder",
  14478. rename: true,
  14479. image: {
  14480. source: "./media/characters/bernard-wilder/wilder.svg",
  14481. extra: 361 / 312,
  14482. bottom: 0.02
  14483. }
  14484. },
  14485. },
  14486. [
  14487. {
  14488. name: "Normal",
  14489. height: math.unit(2 + 7 / 12, "feet"),
  14490. default: true
  14491. },
  14492. ]
  14493. ))
  14494. characterMakers.push(() => makeCharacter(
  14495. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14496. {
  14497. anthro: {
  14498. height: math.unit(6 + 1 / 12, "feet"),
  14499. weight: math.unit(155, "lb"),
  14500. name: "Anthro",
  14501. image: {
  14502. source: "./media/characters/hearth/anthro.svg",
  14503. extra: 260 / 250,
  14504. bottom: 0.02
  14505. }
  14506. },
  14507. feral: {
  14508. height: math.unit(3.78, "feet"),
  14509. weight: math.unit(35, "kg"),
  14510. name: "Feral",
  14511. image: {
  14512. source: "./media/characters/hearth/feral.svg",
  14513. extra: 153 / 135,
  14514. bottom: 0.03
  14515. }
  14516. },
  14517. },
  14518. [
  14519. {
  14520. name: "Normal",
  14521. height: math.unit(6 + 1 / 12, "feet"),
  14522. default: true
  14523. },
  14524. ]
  14525. ))
  14526. characterMakers.push(() => makeCharacter(
  14527. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14528. {
  14529. front: {
  14530. height: math.unit(6, "feet"),
  14531. weight: math.unit(182, "lb"),
  14532. name: "Front",
  14533. image: {
  14534. source: "./media/characters/ingrid/front.svg",
  14535. extra: 294 / 268,
  14536. bottom: 0.027
  14537. }
  14538. },
  14539. },
  14540. [
  14541. {
  14542. name: "Normal",
  14543. height: math.unit(6, "feet"),
  14544. default: true
  14545. },
  14546. ]
  14547. ))
  14548. characterMakers.push(() => makeCharacter(
  14549. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14550. {
  14551. eevee: {
  14552. height: math.unit(2 + 10 / 12, "feet"),
  14553. weight: math.unit(86, "lb"),
  14554. name: "Malgam",
  14555. image: {
  14556. source: "./media/characters/malgam/eevee.svg",
  14557. extra: 218 / 180,
  14558. bottom: 0.2
  14559. }
  14560. },
  14561. sylveon: {
  14562. height: math.unit(4, "feet"),
  14563. weight: math.unit(101, "lb"),
  14564. name: "Future Malgam",
  14565. rename: true,
  14566. image: {
  14567. source: "./media/characters/malgam/sylveon.svg",
  14568. extra: 371 / 325,
  14569. bottom: 0.015
  14570. }
  14571. },
  14572. gigantamax: {
  14573. height: math.unit(50, "feet"),
  14574. name: "Gigantamax Malgam",
  14575. rename: true,
  14576. image: {
  14577. source: "./media/characters/malgam/gigantamax.svg"
  14578. }
  14579. },
  14580. },
  14581. [
  14582. {
  14583. name: "Normal",
  14584. height: math.unit(2 + 10 / 12, "feet"),
  14585. default: true
  14586. },
  14587. ]
  14588. ))
  14589. characterMakers.push(() => makeCharacter(
  14590. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14591. {
  14592. front: {
  14593. height: math.unit(5 + 11 / 12, "feet"),
  14594. weight: math.unit(188, "lb"),
  14595. name: "Front",
  14596. image: {
  14597. source: "./media/characters/fleur/front.svg",
  14598. extra: 309 / 283,
  14599. bottom: 0.007
  14600. }
  14601. },
  14602. },
  14603. [
  14604. {
  14605. name: "Normal",
  14606. height: math.unit(5 + 11 / 12, "feet"),
  14607. default: true
  14608. },
  14609. ]
  14610. ))
  14611. characterMakers.push(() => makeCharacter(
  14612. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14613. {
  14614. front: {
  14615. height: math.unit(5 + 4 / 12, "feet"),
  14616. weight: math.unit(122, "lb"),
  14617. name: "Front",
  14618. image: {
  14619. source: "./media/characters/jude/front.svg",
  14620. extra: 288 / 273,
  14621. bottom: 0.03
  14622. }
  14623. },
  14624. },
  14625. [
  14626. {
  14627. name: "Normal",
  14628. height: math.unit(5 + 4 / 12, "feet"),
  14629. default: true
  14630. },
  14631. ]
  14632. ))
  14633. characterMakers.push(() => makeCharacter(
  14634. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14635. {
  14636. front: {
  14637. height: math.unit(5 + 11 / 12, "feet"),
  14638. weight: math.unit(190, "lb"),
  14639. name: "Front",
  14640. image: {
  14641. source: "./media/characters/seara/front.svg",
  14642. extra: 1,
  14643. bottom: 0.05
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Normal",
  14650. height: math.unit(5 + 11 / 12, "feet"),
  14651. default: true
  14652. },
  14653. ]
  14654. ))
  14655. characterMakers.push(() => makeCharacter(
  14656. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14657. {
  14658. front: {
  14659. height: math.unit(16 + 5 / 12, "feet"),
  14660. weight: math.unit(524, "lb"),
  14661. name: "Front",
  14662. image: {
  14663. source: "./media/characters/caspian/front.svg",
  14664. extra: 1,
  14665. bottom: 0.04
  14666. }
  14667. },
  14668. },
  14669. [
  14670. {
  14671. name: "Normal",
  14672. height: math.unit(16 + 5 / 12, "feet"),
  14673. default: true
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14679. {
  14680. front: {
  14681. height: math.unit(5 + 7 / 12, "feet"),
  14682. weight: math.unit(170, "lb"),
  14683. name: "Front",
  14684. image: {
  14685. source: "./media/characters/mika/front.svg",
  14686. extra: 1,
  14687. bottom: 0.016
  14688. }
  14689. },
  14690. },
  14691. [
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(5 + 7 / 12, "feet"),
  14695. default: true
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(6 + 2 / 12, "feet"),
  14704. weight: math.unit(268, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/sol/front.svg",
  14708. extra: 247 / 231,
  14709. bottom: 0.05
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(6 + 2 / 12, "feet"),
  14717. default: true
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14723. {
  14724. buizel: {
  14725. height: math.unit(2 + 5 / 12, "feet"),
  14726. weight: math.unit(87, "lb"),
  14727. name: "Buizel",
  14728. image: {
  14729. source: "./media/characters/umiko/buizel.svg",
  14730. extra: 172 / 157,
  14731. bottom: 0.01
  14732. }
  14733. },
  14734. floatzel: {
  14735. height: math.unit(5 + 9 / 12, "feet"),
  14736. weight: math.unit(250, "lb"),
  14737. name: "Floatzel",
  14738. image: {
  14739. source: "./media/characters/umiko/floatzel.svg",
  14740. extra: 262 / 248
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Normal",
  14747. height: math.unit(2 + 5 / 12, "feet"),
  14748. default: true
  14749. },
  14750. ]
  14751. ))
  14752. characterMakers.push(() => makeCharacter(
  14753. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14754. {
  14755. front: {
  14756. height: math.unit(6 + 2 / 12, "feet"),
  14757. weight: math.unit(146, "lb"),
  14758. name: "Front",
  14759. image: {
  14760. source: "./media/characters/iliac/front.svg",
  14761. extra: 389 / 365,
  14762. bottom: 0.035
  14763. }
  14764. },
  14765. },
  14766. [
  14767. {
  14768. name: "Normal",
  14769. height: math.unit(6 + 2 / 12, "feet"),
  14770. default: true
  14771. },
  14772. ]
  14773. ))
  14774. characterMakers.push(() => makeCharacter(
  14775. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14776. {
  14777. front: {
  14778. height: math.unit(6, "feet"),
  14779. weight: math.unit(170, "lb"),
  14780. name: "Front",
  14781. image: {
  14782. source: "./media/characters/topaz/front.svg",
  14783. extra: 317 / 303,
  14784. bottom: 0.055
  14785. }
  14786. },
  14787. },
  14788. [
  14789. {
  14790. name: "Normal",
  14791. height: math.unit(6, "feet"),
  14792. default: true
  14793. },
  14794. ]
  14795. ))
  14796. characterMakers.push(() => makeCharacter(
  14797. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14798. {
  14799. front: {
  14800. height: math.unit(5 + 11 / 12, "feet"),
  14801. weight: math.unit(144, "lb"),
  14802. name: "Front",
  14803. image: {
  14804. source: "./media/characters/gabriel/front.svg",
  14805. extra: 285 / 262,
  14806. bottom: 0.004
  14807. }
  14808. },
  14809. },
  14810. [
  14811. {
  14812. name: "Normal",
  14813. height: math.unit(5 + 11 / 12, "feet"),
  14814. default: true
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14820. {
  14821. side: {
  14822. height: math.unit(6 + 5 / 12, "feet"),
  14823. weight: math.unit(300, "lb"),
  14824. name: "Side",
  14825. image: {
  14826. source: "./media/characters/tempest-suicune/side.svg",
  14827. extra: 195 / 154,
  14828. bottom: 0.04
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Normal",
  14835. height: math.unit(6 + 5 / 12, "feet"),
  14836. default: true
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(7 + 2 / 12, "feet"),
  14845. weight: math.unit(322, "lb"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/vulcan/front.svg",
  14849. extra: 154 / 147,
  14850. bottom: 0.04
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Normal",
  14857. height: math.unit(7 + 2 / 12, "feet"),
  14858. default: true
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14864. {
  14865. front: {
  14866. height: math.unit(5 + 10 / 12, "feet"),
  14867. weight: math.unit(264, "lb"),
  14868. name: "Front",
  14869. image: {
  14870. source: "./media/characters/gault/front.svg",
  14871. extra: 161 / 140,
  14872. bottom: 0.028
  14873. }
  14874. },
  14875. },
  14876. [
  14877. {
  14878. name: "Normal",
  14879. height: math.unit(5 + 10 / 12, "feet"),
  14880. default: true
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14886. {
  14887. front: {
  14888. height: math.unit(6, "feet"),
  14889. weight: math.unit(150, "lb"),
  14890. name: "Front",
  14891. image: {
  14892. source: "./media/characters/shard/front.svg",
  14893. extra: 273 / 238,
  14894. bottom: 0.02
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Normal",
  14901. height: math.unit(3 + 6 / 12, "feet"),
  14902. default: true
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14908. {
  14909. front: {
  14910. height: math.unit(5 + 11 / 12, "feet"),
  14911. weight: math.unit(146, "lb"),
  14912. name: "Front",
  14913. image: {
  14914. source: "./media/characters/ashe/front.svg",
  14915. extra: 400 / 373,
  14916. bottom: 0.01
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "Normal",
  14923. height: math.unit(5 + 11 / 12, "feet"),
  14924. default: true
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(5 + 5 / 12, "feet"),
  14933. weight: math.unit(135, "lb"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/beatrix/front.svg",
  14937. extra: 392 / 379,
  14938. bottom: 0.01
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(6, "feet"),
  14946. default: true
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14952. {
  14953. front: {
  14954. height: math.unit(6, "feet"),
  14955. weight: math.unit(150, "lb"),
  14956. name: "Front",
  14957. image: {
  14958. source: "./media/characters/ignatius/front.svg",
  14959. extra: 245 / 222,
  14960. bottom: 0.01
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Normal",
  14967. height: math.unit(5 + 5 / 12, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(6 + 2 / 12, "feet"),
  14977. weight: math.unit(138, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/mei-li/front.svg",
  14981. extra: 237 / 229,
  14982. bottom: 0.03
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(6 + 2 / 12, "feet"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14996. {
  14997. front: {
  14998. height: math.unit(2 + 4 / 12, "feet"),
  14999. weight: math.unit(62, "lb"),
  15000. name: "Front",
  15001. image: {
  15002. source: "./media/characters/puru/front.svg",
  15003. extra: 206 / 149,
  15004. bottom: 0.06
  15005. }
  15006. },
  15007. },
  15008. [
  15009. {
  15010. name: "Normal",
  15011. height: math.unit(2 + 4 / 12, "feet"),
  15012. default: true
  15013. },
  15014. ]
  15015. ))
  15016. characterMakers.push(() => makeCharacter(
  15017. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15018. {
  15019. anthro: {
  15020. height: math.unit(5 + 8/12, "feet"),
  15021. weight: math.unit(200, "lb"),
  15022. energyNeed: math.unit(2000, "kcal"),
  15023. name: "Anthro",
  15024. image: {
  15025. source: "./media/characters/kee/anthro.svg",
  15026. extra: 3251/3184,
  15027. bottom: 250/3501
  15028. }
  15029. },
  15030. taur: {
  15031. height: math.unit(11, "feet"),
  15032. weight: math.unit(500, "lb"),
  15033. energyNeed: math.unit(5000, "kcal"),
  15034. name: "Taur",
  15035. image: {
  15036. source: "./media/characters/kee/taur.svg",
  15037. extra: 1362/1320,
  15038. bottom: 83/1445
  15039. }
  15040. },
  15041. },
  15042. [
  15043. {
  15044. name: "Normal",
  15045. height: math.unit(5 + 8/12, "feet"),
  15046. default: true
  15047. },
  15048. {
  15049. name: "Macro",
  15050. height: math.unit(35, "feet")
  15051. },
  15052. ]
  15053. ))
  15054. characterMakers.push(() => makeCharacter(
  15055. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15056. {
  15057. anthro: {
  15058. height: math.unit(7, "feet"),
  15059. weight: math.unit(190, "lb"),
  15060. name: "Anthro",
  15061. image: {
  15062. source: "./media/characters/cobalt-dracha/anthro.svg",
  15063. extra: 231 / 225,
  15064. bottom: 0.04
  15065. }
  15066. },
  15067. feral: {
  15068. height: math.unit(9 + 7 / 12, "feet"),
  15069. weight: math.unit(294, "lb"),
  15070. name: "Feral",
  15071. image: {
  15072. source: "./media/characters/cobalt-dracha/feral.svg",
  15073. extra: 692 / 633,
  15074. bottom: 0.05
  15075. }
  15076. },
  15077. },
  15078. [
  15079. {
  15080. name: "Normal",
  15081. height: math.unit(7, "feet"),
  15082. default: true
  15083. },
  15084. ]
  15085. ))
  15086. characterMakers.push(() => makeCharacter(
  15087. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15088. {
  15089. fallen: {
  15090. height: math.unit(11 + 8 / 12, "feet"),
  15091. weight: math.unit(485, "lb"),
  15092. name: "Java (Fallen)",
  15093. rename: true,
  15094. image: {
  15095. source: "./media/characters/java/fallen.svg",
  15096. extra: 226 / 208,
  15097. bottom: 0.005
  15098. }
  15099. },
  15100. godkin: {
  15101. height: math.unit(10 + 6 / 12, "feet"),
  15102. weight: math.unit(328, "lb"),
  15103. name: "Java (Godkin)",
  15104. rename: true,
  15105. image: {
  15106. source: "./media/characters/java/godkin.svg",
  15107. extra: 270 / 262,
  15108. bottom: 0.02
  15109. }
  15110. },
  15111. },
  15112. [
  15113. {
  15114. name: "Normal",
  15115. height: math.unit(11 + 8 / 12, "feet"),
  15116. default: true
  15117. },
  15118. ]
  15119. ))
  15120. characterMakers.push(() => makeCharacter(
  15121. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15122. {
  15123. front: {
  15124. height: math.unit(7 + 8 / 12, "feet"),
  15125. weight: math.unit(320, "lb"),
  15126. name: "Front",
  15127. image: {
  15128. source: "./media/characters/skoll/front.svg",
  15129. extra: 232 / 220,
  15130. bottom: 0.02
  15131. }
  15132. },
  15133. },
  15134. [
  15135. {
  15136. name: "Normal",
  15137. height: math.unit(7 + 8 / 12, "feet"),
  15138. default: true
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15144. {
  15145. front: {
  15146. height: math.unit(5 + 9 / 12, "feet"),
  15147. weight: math.unit(170, "lb"),
  15148. name: "Front",
  15149. image: {
  15150. source: "./media/characters/purna/front.svg",
  15151. extra: 239 / 229,
  15152. bottom: 0.01
  15153. }
  15154. },
  15155. },
  15156. [
  15157. {
  15158. name: "Normal",
  15159. height: math.unit(5 + 9 / 12, "feet"),
  15160. default: true
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15166. {
  15167. front: {
  15168. height: math.unit(5 + 9 / 12, "feet"),
  15169. weight: math.unit(142, "lb"),
  15170. name: "Front",
  15171. image: {
  15172. source: "./media/characters/kuva/front.svg",
  15173. extra: 281 / 271,
  15174. bottom: 0.006
  15175. }
  15176. },
  15177. },
  15178. [
  15179. {
  15180. name: "Normal",
  15181. height: math.unit(5 + 9 / 12, "feet"),
  15182. default: true
  15183. },
  15184. ]
  15185. ))
  15186. characterMakers.push(() => makeCharacter(
  15187. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15188. {
  15189. anthro: {
  15190. height: math.unit(9 + 2 / 12, "feet"),
  15191. weight: math.unit(270, "lb"),
  15192. name: "Anthro",
  15193. image: {
  15194. source: "./media/characters/embra/anthro.svg",
  15195. extra: 200 / 187,
  15196. bottom: 0.02
  15197. }
  15198. },
  15199. feral: {
  15200. height: math.unit(18 + 8 / 12, "feet"),
  15201. weight: math.unit(576, "lb"),
  15202. name: "Feral",
  15203. image: {
  15204. source: "./media/characters/embra/feral.svg",
  15205. extra: 152 / 137,
  15206. bottom: 0.037
  15207. }
  15208. },
  15209. },
  15210. [
  15211. {
  15212. name: "Normal",
  15213. height: math.unit(9 + 2 / 12, "feet"),
  15214. default: true
  15215. },
  15216. ]
  15217. ))
  15218. characterMakers.push(() => makeCharacter(
  15219. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15220. {
  15221. anthro: {
  15222. height: math.unit(10 + 9 / 12, "feet"),
  15223. weight: math.unit(224, "lb"),
  15224. name: "Anthro",
  15225. image: {
  15226. source: "./media/characters/grottos/anthro.svg",
  15227. extra: 350 / 332,
  15228. bottom: 0.045
  15229. }
  15230. },
  15231. feral: {
  15232. height: math.unit(20 + 7 / 12, "feet"),
  15233. weight: math.unit(629, "lb"),
  15234. name: "Feral",
  15235. image: {
  15236. source: "./media/characters/grottos/feral.svg",
  15237. extra: 207 / 190,
  15238. bottom: 0.05
  15239. }
  15240. },
  15241. },
  15242. [
  15243. {
  15244. name: "Normal",
  15245. height: math.unit(10 + 9 / 12, "feet"),
  15246. default: true
  15247. },
  15248. ]
  15249. ))
  15250. characterMakers.push(() => makeCharacter(
  15251. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15252. {
  15253. anthro: {
  15254. height: math.unit(9 + 6 / 12, "feet"),
  15255. weight: math.unit(298, "lb"),
  15256. name: "Anthro",
  15257. image: {
  15258. source: "./media/characters/frifna/anthro.svg",
  15259. extra: 282 / 269,
  15260. bottom: 0.015
  15261. }
  15262. },
  15263. feral: {
  15264. height: math.unit(16 + 2 / 12, "feet"),
  15265. weight: math.unit(624, "lb"),
  15266. name: "Feral",
  15267. image: {
  15268. source: "./media/characters/frifna/feral.svg"
  15269. }
  15270. },
  15271. },
  15272. [
  15273. {
  15274. name: "Normal",
  15275. height: math.unit(9 + 6 / 12, "feet"),
  15276. default: true
  15277. },
  15278. ]
  15279. ))
  15280. characterMakers.push(() => makeCharacter(
  15281. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15282. {
  15283. front: {
  15284. height: math.unit(6 + 2 / 12, "feet"),
  15285. weight: math.unit(168, "lb"),
  15286. name: "Front",
  15287. image: {
  15288. source: "./media/characters/elise/front.svg",
  15289. extra: 276 / 271
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Normal",
  15296. height: math.unit(6 + 2 / 12, "feet"),
  15297. default: true
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(5 + 10 / 12, "feet"),
  15306. weight: math.unit(210, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/glade/front.svg",
  15310. extra: 258 / 247,
  15311. bottom: 0.008
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(5 + 10 / 12, "feet"),
  15319. default: true
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15325. {
  15326. front: {
  15327. height: math.unit(5 + 10 / 12, "feet"),
  15328. weight: math.unit(129, "lb"),
  15329. name: "Front",
  15330. image: {
  15331. source: "./media/characters/rina/front.svg",
  15332. extra: 266 / 255,
  15333. bottom: 0.005
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(5 + 10 / 12, "feet"),
  15341. default: true
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(6 + 1 / 12, "feet"),
  15350. weight: math.unit(192, "lb"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/veronica/front.svg",
  15354. extra: 319 / 309,
  15355. bottom: 0.005
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(6 + 1 / 12, "feet"),
  15363. default: true
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15369. {
  15370. front: {
  15371. height: math.unit(9 + 3 / 12, "feet"),
  15372. weight: math.unit(1100, "lb"),
  15373. name: "Front",
  15374. image: {
  15375. source: "./media/characters/braxton/front.svg",
  15376. extra: 1057 / 984,
  15377. bottom: 0.05
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(9 + 3 / 12, "feet")
  15385. },
  15386. {
  15387. name: "Giant",
  15388. height: math.unit(300, "feet"),
  15389. default: true
  15390. },
  15391. {
  15392. name: "Macro",
  15393. height: math.unit(700, "feet")
  15394. },
  15395. {
  15396. name: "Megamacro",
  15397. height: math.unit(6000, "feet")
  15398. },
  15399. ]
  15400. ))
  15401. characterMakers.push(() => makeCharacter(
  15402. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15403. {
  15404. front: {
  15405. height: math.unit(6 + 7 / 12, "feet"),
  15406. weight: math.unit(150, "lb"),
  15407. name: "Front",
  15408. image: {
  15409. source: "./media/characters/blue-feyonics/front.svg",
  15410. extra: 1403 / 1306,
  15411. bottom: 0.047
  15412. }
  15413. },
  15414. },
  15415. [
  15416. {
  15417. name: "Normal",
  15418. height: math.unit(6 + 7 / 12, "feet"),
  15419. default: true
  15420. },
  15421. ]
  15422. ))
  15423. characterMakers.push(() => makeCharacter(
  15424. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15425. {
  15426. front: {
  15427. height: math.unit(1.8, "meters"),
  15428. weight: math.unit(60, "kg"),
  15429. name: "Front",
  15430. image: {
  15431. source: "./media/characters/maxwell/front.svg",
  15432. extra: 2060 / 1873
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Micro",
  15439. height: math.unit(1, "mm")
  15440. },
  15441. {
  15442. name: "Normal",
  15443. height: math.unit(1.8, "meter"),
  15444. default: true
  15445. },
  15446. {
  15447. name: "Macro",
  15448. height: math.unit(30, "meters")
  15449. },
  15450. {
  15451. name: "Megamacro",
  15452. height: math.unit(10, "km")
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(6, "feet"),
  15461. weight: math.unit(150, "lb"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/jack/front.svg",
  15465. extra: 1754 / 1640,
  15466. bottom: 0.01
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Normal",
  15473. height: math.unit(80000, "feet"),
  15474. default: true
  15475. },
  15476. {
  15477. name: "Max size",
  15478. height: math.unit(10, "lightyears")
  15479. },
  15480. ]
  15481. ))
  15482. characterMakers.push(() => makeCharacter(
  15483. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15484. {
  15485. upright: {
  15486. height: math.unit(7, "feet"),
  15487. weight: math.unit(170, "lb"),
  15488. name: "Upright",
  15489. image: {
  15490. source: "./media/characters/cafat/upright.svg",
  15491. bottom: 0.01
  15492. }
  15493. },
  15494. uprightFull: {
  15495. height: math.unit(7, "feet"),
  15496. weight: math.unit(170, "lb"),
  15497. name: "Upright (Full)",
  15498. image: {
  15499. source: "./media/characters/cafat/upright-full.svg",
  15500. bottom: 0.01
  15501. }
  15502. },
  15503. side: {
  15504. height: math.unit(5, "feet"),
  15505. weight: math.unit(150, "lb"),
  15506. name: "Side",
  15507. image: {
  15508. source: "./media/characters/cafat/side.svg"
  15509. }
  15510. },
  15511. },
  15512. [
  15513. {
  15514. name: "Small",
  15515. height: math.unit(7, "feet"),
  15516. default: true
  15517. },
  15518. {
  15519. name: "Large",
  15520. height: math.unit(15.5, "feet")
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15526. {
  15527. front: {
  15528. height: math.unit(6, "feet"),
  15529. weight: math.unit(150, "lb"),
  15530. name: "Front",
  15531. image: {
  15532. source: "./media/characters/verin-raharra/front.svg",
  15533. extra: 5019 / 4835,
  15534. bottom: 0.023
  15535. }
  15536. },
  15537. },
  15538. [
  15539. {
  15540. name: "Normal",
  15541. height: math.unit(7 + 5 / 12, "feet"),
  15542. default: true
  15543. },
  15544. {
  15545. name: "Upsized",
  15546. height: math.unit(20, "feet")
  15547. },
  15548. ]
  15549. ))
  15550. characterMakers.push(() => makeCharacter(
  15551. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15552. {
  15553. front: {
  15554. height: math.unit(7, "feet"),
  15555. weight: math.unit(230, "lb"),
  15556. name: "Front",
  15557. image: {
  15558. source: "./media/characters/nakata/front.svg",
  15559. extra: 1.005,
  15560. bottom: 0.01
  15561. }
  15562. },
  15563. },
  15564. [
  15565. {
  15566. name: "Normal",
  15567. height: math.unit(7, "feet"),
  15568. default: true
  15569. },
  15570. {
  15571. name: "Big",
  15572. height: math.unit(14, "feet")
  15573. },
  15574. {
  15575. name: "Macro",
  15576. height: math.unit(400, "feet")
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15582. {
  15583. front: {
  15584. height: math.unit(4.91, "feet"),
  15585. weight: math.unit(100, "lb"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/lily/front.svg",
  15589. extra: 1585 / 1415,
  15590. bottom: 0.02
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Normal",
  15597. height: math.unit(4.91, "feet"),
  15598. default: true
  15599. },
  15600. ]
  15601. ))
  15602. characterMakers.push(() => makeCharacter(
  15603. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15604. {
  15605. laying: {
  15606. height: math.unit(4 + 4 / 12, "feet"),
  15607. weight: math.unit(600, "lb"),
  15608. name: "Laying",
  15609. image: {
  15610. source: "./media/characters/sheila/laying.svg",
  15611. extra: 1333 / 1265,
  15612. bottom: 0.16
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Normal",
  15619. height: math.unit(4 + 4 / 12, "feet"),
  15620. default: true
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(6, "feet"),
  15629. weight: math.unit(190, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/sax/front.svg",
  15633. extra: 1187 / 973,
  15634. bottom: 0.042
  15635. }
  15636. },
  15637. },
  15638. [
  15639. {
  15640. name: "Micro",
  15641. height: math.unit(4, "inches"),
  15642. default: true
  15643. },
  15644. ]
  15645. ))
  15646. characterMakers.push(() => makeCharacter(
  15647. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15648. {
  15649. front: {
  15650. height: math.unit(6, "feet"),
  15651. weight: math.unit(150, "lb"),
  15652. name: "Front",
  15653. image: {
  15654. source: "./media/characters/pandora/front.svg",
  15655. extra: 2720 / 2556,
  15656. bottom: 0.015
  15657. }
  15658. },
  15659. back: {
  15660. height: math.unit(6, "feet"),
  15661. weight: math.unit(150, "lb"),
  15662. name: "Back",
  15663. image: {
  15664. source: "./media/characters/pandora/back.svg",
  15665. extra: 2720 / 2556,
  15666. bottom: 0.01
  15667. }
  15668. },
  15669. beans: {
  15670. height: math.unit(6 / 8, "feet"),
  15671. name: "Beans",
  15672. image: {
  15673. source: "./media/characters/pandora/beans.svg"
  15674. }
  15675. },
  15676. skirt: {
  15677. height: math.unit(6, "feet"),
  15678. weight: math.unit(150, "lb"),
  15679. name: "Skirt",
  15680. image: {
  15681. source: "./media/characters/pandora/skirt.svg",
  15682. extra: 1622 / 1525,
  15683. bottom: 0.015
  15684. }
  15685. },
  15686. hoodie: {
  15687. height: math.unit(6, "feet"),
  15688. weight: math.unit(150, "lb"),
  15689. name: "Hoodie",
  15690. image: {
  15691. source: "./media/characters/pandora/hoodie.svg",
  15692. extra: 1622 / 1525,
  15693. bottom: 0.015
  15694. }
  15695. },
  15696. casual: {
  15697. height: math.unit(6, "feet"),
  15698. weight: math.unit(150, "lb"),
  15699. name: "Casual",
  15700. image: {
  15701. source: "./media/characters/pandora/casual.svg",
  15702. extra: 1622 / 1525,
  15703. bottom: 0.015
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Normal",
  15710. height: math.unit(6, "feet")
  15711. },
  15712. {
  15713. name: "Big Steppy",
  15714. height: math.unit(1, "km"),
  15715. default: true
  15716. },
  15717. ]
  15718. ))
  15719. characterMakers.push(() => makeCharacter(
  15720. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15721. {
  15722. side: {
  15723. height: math.unit(10, "feet"),
  15724. weight: math.unit(800, "kg"),
  15725. name: "Side",
  15726. image: {
  15727. source: "./media/characters/venio-darcony/side.svg",
  15728. extra: 1373 / 1003,
  15729. bottom: 0.037
  15730. }
  15731. },
  15732. front: {
  15733. height: math.unit(19, "feet"),
  15734. weight: math.unit(800, "kg"),
  15735. name: "Front",
  15736. image: {
  15737. source: "./media/characters/venio-darcony/front.svg"
  15738. }
  15739. },
  15740. back: {
  15741. height: math.unit(19, "feet"),
  15742. weight: math.unit(800, "kg"),
  15743. name: "Back",
  15744. image: {
  15745. source: "./media/characters/venio-darcony/back.svg"
  15746. }
  15747. },
  15748. sideNsfw: {
  15749. height: math.unit(10, "feet"),
  15750. weight: math.unit(800, "kg"),
  15751. name: "Side (NSFW)",
  15752. image: {
  15753. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15754. extra: 1373 / 1003,
  15755. bottom: 0.037
  15756. }
  15757. },
  15758. frontNsfw: {
  15759. height: math.unit(19, "feet"),
  15760. weight: math.unit(800, "kg"),
  15761. name: "Front (NSFW)",
  15762. image: {
  15763. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15764. }
  15765. },
  15766. backNsfw: {
  15767. height: math.unit(19, "feet"),
  15768. weight: math.unit(800, "kg"),
  15769. name: "Back (NSFW)",
  15770. image: {
  15771. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15772. }
  15773. },
  15774. sideArmored: {
  15775. height: math.unit(10, "feet"),
  15776. weight: math.unit(800, "kg"),
  15777. name: "Side (Armored)",
  15778. image: {
  15779. source: "./media/characters/venio-darcony/side-armored.svg",
  15780. extra: 1373 / 1003,
  15781. bottom: 0.037
  15782. }
  15783. },
  15784. frontArmored: {
  15785. height: math.unit(19, "feet"),
  15786. weight: math.unit(900, "kg"),
  15787. name: "Front (Armored)",
  15788. image: {
  15789. source: "./media/characters/venio-darcony/front-armored.svg"
  15790. }
  15791. },
  15792. backArmored: {
  15793. height: math.unit(19, "feet"),
  15794. weight: math.unit(900, "kg"),
  15795. name: "Back (Armored)",
  15796. image: {
  15797. source: "./media/characters/venio-darcony/back-armored.svg"
  15798. }
  15799. },
  15800. sword: {
  15801. height: math.unit(10, "feet"),
  15802. weight: math.unit(50, "lb"),
  15803. name: "Sword",
  15804. image: {
  15805. source: "./media/characters/venio-darcony/sword.svg"
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Normal",
  15812. height: math.unit(10, "feet")
  15813. },
  15814. {
  15815. name: "Macro",
  15816. height: math.unit(130, "feet"),
  15817. default: true
  15818. },
  15819. {
  15820. name: "Macro+",
  15821. height: math.unit(240, "feet")
  15822. },
  15823. ]
  15824. ))
  15825. characterMakers.push(() => makeCharacter(
  15826. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15827. {
  15828. front: {
  15829. height: math.unit(6, "feet"),
  15830. weight: math.unit(150, "lb"),
  15831. name: "Front",
  15832. image: {
  15833. source: "./media/characters/veski/front.svg",
  15834. extra: 1299 / 1225,
  15835. bottom: 0.04
  15836. }
  15837. },
  15838. back: {
  15839. height: math.unit(6, "feet"),
  15840. weight: math.unit(150, "lb"),
  15841. name: "Back",
  15842. image: {
  15843. source: "./media/characters/veski/back.svg",
  15844. extra: 1299 / 1225,
  15845. bottom: 0.008
  15846. }
  15847. },
  15848. maw: {
  15849. height: math.unit(1.5 * 1.21, "feet"),
  15850. name: "Maw",
  15851. image: {
  15852. source: "./media/characters/veski/maw.svg"
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Macro",
  15859. height: math.unit(2, "km"),
  15860. default: true
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15866. {
  15867. front: {
  15868. height: math.unit(5 + 7 / 12, "feet"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/isabelle/front.svg",
  15872. extra: 2130 / 1976,
  15873. bottom: 0.05
  15874. }
  15875. },
  15876. },
  15877. [
  15878. {
  15879. name: "Supermicro",
  15880. height: math.unit(10, "micrometers")
  15881. },
  15882. {
  15883. name: "Micro",
  15884. height: math.unit(1, "inch")
  15885. },
  15886. {
  15887. name: "Tiny",
  15888. height: math.unit(5, "inches")
  15889. },
  15890. {
  15891. name: "Standard",
  15892. height: math.unit(5 + 7 / 12, "inches")
  15893. },
  15894. {
  15895. name: "Macro",
  15896. height: math.unit(80, "meters"),
  15897. default: true
  15898. },
  15899. {
  15900. name: "Megamacro",
  15901. height: math.unit(250, "meters")
  15902. },
  15903. {
  15904. name: "Gigamacro",
  15905. height: math.unit(5, "km")
  15906. },
  15907. {
  15908. name: "Cosmic",
  15909. height: math.unit(2.5e6, "miles")
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15915. {
  15916. front: {
  15917. height: math.unit(6, "feet"),
  15918. weight: math.unit(150, "lb"),
  15919. name: "Front",
  15920. image: {
  15921. source: "./media/characters/hanzo/front.svg",
  15922. extra: 374 / 344,
  15923. bottom: 0.02
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Normal",
  15930. height: math.unit(8, "feet"),
  15931. default: true
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15937. {
  15938. front: {
  15939. height: math.unit(7, "feet"),
  15940. weight: math.unit(130, "lb"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/anna/front.svg",
  15944. extra: 169 / 145,
  15945. bottom: 0.06
  15946. }
  15947. },
  15948. full: {
  15949. height: math.unit(4.96, "feet"),
  15950. weight: math.unit(220, "lb"),
  15951. name: "Full",
  15952. image: {
  15953. source: "./media/characters/anna/full.svg",
  15954. extra: 138 / 114,
  15955. bottom: 0.15
  15956. }
  15957. },
  15958. tongue: {
  15959. height: math.unit(2.53, "feet"),
  15960. name: "Tongue",
  15961. image: {
  15962. source: "./media/characters/anna/tongue.svg"
  15963. }
  15964. },
  15965. },
  15966. [
  15967. {
  15968. name: "Normal",
  15969. height: math.unit(7, "feet"),
  15970. default: true
  15971. },
  15972. ]
  15973. ))
  15974. characterMakers.push(() => makeCharacter(
  15975. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15976. {
  15977. front: {
  15978. height: math.unit(7, "feet"),
  15979. weight: math.unit(150, "lb"),
  15980. name: "Front",
  15981. image: {
  15982. source: "./media/characters/ian-corvid/front.svg",
  15983. extra: 150 / 142,
  15984. bottom: 0.02
  15985. }
  15986. },
  15987. back: {
  15988. height: math.unit(7, "feet"),
  15989. weight: math.unit(150, "lb"),
  15990. name: "Back",
  15991. image: {
  15992. source: "./media/characters/ian-corvid/back.svg",
  15993. extra: 150 / 143,
  15994. bottom: 0.01
  15995. }
  15996. },
  15997. stomping: {
  15998. height: math.unit(7, "feet"),
  15999. weight: math.unit(150, "lb"),
  16000. name: "Stomping",
  16001. image: {
  16002. source: "./media/characters/ian-corvid/stomping.svg",
  16003. extra: 76 / 72
  16004. }
  16005. },
  16006. sitting: {
  16007. height: math.unit(7 / 1.8, "feet"),
  16008. weight: math.unit(150, "lb"),
  16009. name: "Sitting",
  16010. image: {
  16011. source: "./media/characters/ian-corvid/sitting.svg",
  16012. extra: 1400 / 1269,
  16013. bottom: 0.15
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Tiny Microw",
  16020. height: math.unit(1, "inch")
  16021. },
  16022. {
  16023. name: "Microw",
  16024. height: math.unit(6, "inches")
  16025. },
  16026. {
  16027. name: "Crow",
  16028. height: math.unit(7 + 1 / 12, "feet"),
  16029. default: true
  16030. },
  16031. {
  16032. name: "Macrow",
  16033. height: math.unit(176, "feet")
  16034. },
  16035. ]
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16039. {
  16040. front: {
  16041. height: math.unit(5 + 7 / 12, "feet"),
  16042. weight: math.unit(147, "lb"),
  16043. name: "Front",
  16044. image: {
  16045. source: "./media/characters/natalie-kellon/front.svg",
  16046. extra: 1214 / 1141,
  16047. bottom: 0.02
  16048. }
  16049. },
  16050. },
  16051. [
  16052. {
  16053. name: "Micro",
  16054. height: math.unit(1 / 16, "inch")
  16055. },
  16056. {
  16057. name: "Tiny",
  16058. height: math.unit(4, "inches")
  16059. },
  16060. {
  16061. name: "Normal",
  16062. height: math.unit(5 + 7 / 12, "feet"),
  16063. default: true
  16064. },
  16065. {
  16066. name: "Amazon",
  16067. height: math.unit(12, "feet")
  16068. },
  16069. {
  16070. name: "Giantess",
  16071. height: math.unit(160, "meters")
  16072. },
  16073. {
  16074. name: "Titaness",
  16075. height: math.unit(800, "meters")
  16076. },
  16077. ]
  16078. ))
  16079. characterMakers.push(() => makeCharacter(
  16080. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16081. {
  16082. front: {
  16083. height: math.unit(6, "feet"),
  16084. weight: math.unit(150, "lb"),
  16085. name: "Front",
  16086. image: {
  16087. source: "./media/characters/alluria/front.svg",
  16088. extra: 806 / 738,
  16089. bottom: 0.01
  16090. }
  16091. },
  16092. side: {
  16093. height: math.unit(6, "feet"),
  16094. weight: math.unit(150, "lb"),
  16095. name: "Side",
  16096. image: {
  16097. source: "./media/characters/alluria/side.svg",
  16098. extra: 800 / 750,
  16099. }
  16100. },
  16101. back: {
  16102. height: math.unit(6, "feet"),
  16103. weight: math.unit(150, "lb"),
  16104. name: "Back",
  16105. image: {
  16106. source: "./media/characters/alluria/back.svg",
  16107. extra: 806 / 738,
  16108. }
  16109. },
  16110. frontMaid: {
  16111. height: math.unit(6, "feet"),
  16112. weight: math.unit(150, "lb"),
  16113. name: "Front (Maid)",
  16114. image: {
  16115. source: "./media/characters/alluria/front-maid.svg",
  16116. extra: 806 / 738,
  16117. bottom: 0.01
  16118. }
  16119. },
  16120. sideMaid: {
  16121. height: math.unit(6, "feet"),
  16122. weight: math.unit(150, "lb"),
  16123. name: "Side (Maid)",
  16124. image: {
  16125. source: "./media/characters/alluria/side-maid.svg",
  16126. extra: 800 / 750,
  16127. bottom: 0.005
  16128. }
  16129. },
  16130. backMaid: {
  16131. height: math.unit(6, "feet"),
  16132. weight: math.unit(150, "lb"),
  16133. name: "Back (Maid)",
  16134. image: {
  16135. source: "./media/characters/alluria/back-maid.svg",
  16136. extra: 806 / 738,
  16137. }
  16138. },
  16139. },
  16140. [
  16141. {
  16142. name: "Micro",
  16143. height: math.unit(6, "inches"),
  16144. default: true
  16145. },
  16146. ]
  16147. ))
  16148. characterMakers.push(() => makeCharacter(
  16149. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16150. {
  16151. front: {
  16152. height: math.unit(6, "feet"),
  16153. weight: math.unit(150, "lb"),
  16154. name: "Front",
  16155. image: {
  16156. source: "./media/characters/kyle/front.svg",
  16157. extra: 1069 / 962,
  16158. bottom: 77.228 / 1727.45
  16159. }
  16160. },
  16161. },
  16162. [
  16163. {
  16164. name: "Macro",
  16165. height: math.unit(150, "feet"),
  16166. default: true
  16167. },
  16168. ]
  16169. ))
  16170. characterMakers.push(() => makeCharacter(
  16171. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16172. {
  16173. front: {
  16174. height: math.unit(6, "feet"),
  16175. weight: math.unit(300, "lb"),
  16176. name: "Front",
  16177. image: {
  16178. source: "./media/characters/duncan/front.svg",
  16179. extra: 1650 / 1482,
  16180. bottom: 0.05
  16181. }
  16182. },
  16183. },
  16184. [
  16185. {
  16186. name: "Macro",
  16187. height: math.unit(100, "feet"),
  16188. default: true
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16194. {
  16195. front: {
  16196. height: math.unit(5 + 4 / 12, "feet"),
  16197. weight: math.unit(220, "lb"),
  16198. name: "Front",
  16199. image: {
  16200. source: "./media/characters/memory/front.svg",
  16201. extra: 3641 / 3545,
  16202. bottom: 0.03
  16203. }
  16204. },
  16205. back: {
  16206. height: math.unit(5 + 4 / 12, "feet"),
  16207. weight: math.unit(220, "lb"),
  16208. name: "Back",
  16209. image: {
  16210. source: "./media/characters/memory/back.svg",
  16211. extra: 3641 / 3545,
  16212. bottom: 0.025
  16213. }
  16214. },
  16215. frontSkirt: {
  16216. height: math.unit(5 + 4 / 12, "feet"),
  16217. weight: math.unit(220, "lb"),
  16218. name: "Front (Skirt)",
  16219. image: {
  16220. source: "./media/characters/memory/front-skirt.svg",
  16221. extra: 3641 / 3545,
  16222. bottom: 0.03
  16223. }
  16224. },
  16225. frontDress: {
  16226. height: math.unit(5 + 4 / 12, "feet"),
  16227. weight: math.unit(220, "lb"),
  16228. name: "Front (Dress)",
  16229. image: {
  16230. source: "./media/characters/memory/front-dress.svg",
  16231. extra: 3641 / 3545,
  16232. bottom: 0.03
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Micro",
  16239. height: math.unit(6, "inches"),
  16240. default: true
  16241. },
  16242. {
  16243. name: "Normal",
  16244. height: math.unit(5 + 4 / 12, "feet")
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16250. {
  16251. front: {
  16252. height: math.unit(4 + 11 / 12, "feet"),
  16253. weight: math.unit(100, "lb"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/luno/front.svg",
  16257. extra: 1535 / 1487,
  16258. bottom: 0.03
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Micro",
  16265. height: math.unit(3, "inches")
  16266. },
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(4 + 11 / 12, "feet"),
  16270. default: true
  16271. },
  16272. {
  16273. name: "Macro",
  16274. height: math.unit(300, "feet")
  16275. },
  16276. {
  16277. name: "Megamacro",
  16278. height: math.unit(700, "miles")
  16279. },
  16280. ]
  16281. ))
  16282. characterMakers.push(() => makeCharacter(
  16283. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16284. {
  16285. front: {
  16286. height: math.unit(6 + 2 / 12, "feet"),
  16287. weight: math.unit(170, "lb"),
  16288. name: "Front",
  16289. image: {
  16290. source: "./media/characters/jamesy/front.svg",
  16291. extra: 440 / 382,
  16292. bottom: 0.005
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Micro",
  16299. height: math.unit(3, "inches")
  16300. },
  16301. {
  16302. name: "Normal",
  16303. height: math.unit(6 + 2 / 12, "feet"),
  16304. default: true
  16305. },
  16306. {
  16307. name: "Macro",
  16308. height: math.unit(300, "feet")
  16309. },
  16310. {
  16311. name: "Megamacro",
  16312. height: math.unit(700, "miles")
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16318. {
  16319. front: {
  16320. height: math.unit(6, "feet"),
  16321. weight: math.unit(160, "lb"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/mark/front.svg",
  16325. extra: 3300 / 3100,
  16326. bottom: 136.42 / 3440.47
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Macro",
  16333. height: math.unit(120, "meters")
  16334. },
  16335. {
  16336. name: "Bigger Macro",
  16337. height: math.unit(350, "meters")
  16338. },
  16339. {
  16340. name: "Megamacro",
  16341. height: math.unit(8, "km"),
  16342. default: true
  16343. },
  16344. {
  16345. name: "Continental",
  16346. height: math.unit(4550, "km")
  16347. },
  16348. {
  16349. name: "Planetary",
  16350. height: math.unit(65000, "km")
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(6, "feet"),
  16359. weight: math.unit(400, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/mac/front.svg",
  16363. extra: 1048 / 987.7,
  16364. bottom: 60 / 1107.6,
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Macro",
  16371. height: math.unit(500, "feet"),
  16372. default: true
  16373. },
  16374. ]
  16375. ))
  16376. characterMakers.push(() => makeCharacter(
  16377. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16378. {
  16379. front: {
  16380. height: math.unit(5 + 2 / 12, "feet"),
  16381. weight: math.unit(190, "lb"),
  16382. name: "Front",
  16383. image: {
  16384. source: "./media/characters/bari/front.svg",
  16385. extra: 3156 / 2880,
  16386. bottom: 0.03
  16387. }
  16388. },
  16389. back: {
  16390. height: math.unit(5 + 2 / 12, "feet"),
  16391. weight: math.unit(190, "lb"),
  16392. name: "Back",
  16393. image: {
  16394. source: "./media/characters/bari/back.svg",
  16395. extra: 3260 / 2834,
  16396. bottom: 0.025
  16397. }
  16398. },
  16399. frontPlush: {
  16400. height: math.unit(5 + 2 / 12, "feet"),
  16401. weight: math.unit(190, "lb"),
  16402. name: "Front (Plush)",
  16403. image: {
  16404. source: "./media/characters/bari/front-plush.svg",
  16405. extra: 1112 / 1061,
  16406. bottom: 0.002
  16407. }
  16408. },
  16409. },
  16410. [
  16411. {
  16412. name: "Micro",
  16413. height: math.unit(3, "inches")
  16414. },
  16415. {
  16416. name: "Normal",
  16417. height: math.unit(5 + 2 / 12, "feet"),
  16418. default: true
  16419. },
  16420. {
  16421. name: "Macro",
  16422. height: math.unit(20, "feet")
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16428. {
  16429. front: {
  16430. height: math.unit(6 + 1 / 12, "feet"),
  16431. weight: math.unit(275, "lb"),
  16432. name: "Front",
  16433. image: {
  16434. source: "./media/characters/hunter-misha-raven/front.svg"
  16435. }
  16436. },
  16437. },
  16438. [
  16439. {
  16440. name: "Mortal",
  16441. height: math.unit(6 + 1 / 12, "feet")
  16442. },
  16443. {
  16444. name: "Divine",
  16445. height: math.unit(1.12134e34, "parsecs"),
  16446. default: true
  16447. },
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16452. {
  16453. front: {
  16454. height: math.unit(6 + 3 / 12, "feet"),
  16455. weight: math.unit(220, "lb"),
  16456. name: "Front",
  16457. image: {
  16458. source: "./media/characters/max-calore/front.svg",
  16459. extra: 1700 / 1648,
  16460. bottom: 0.01
  16461. }
  16462. },
  16463. back: {
  16464. height: math.unit(6 + 3 / 12, "feet"),
  16465. weight: math.unit(220, "lb"),
  16466. name: "Back",
  16467. image: {
  16468. source: "./media/characters/max-calore/back.svg",
  16469. extra: 1700 / 1648,
  16470. bottom: 0.01
  16471. }
  16472. },
  16473. },
  16474. [
  16475. {
  16476. name: "Normal",
  16477. height: math.unit(6 + 3 / 12, "feet"),
  16478. default: true
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16484. {
  16485. side: {
  16486. height: math.unit(2 + 8 / 12, "feet"),
  16487. weight: math.unit(99, "lb"),
  16488. name: "Side",
  16489. image: {
  16490. source: "./media/characters/aspen/side.svg",
  16491. extra: 152 / 138,
  16492. bottom: 0.032
  16493. }
  16494. },
  16495. },
  16496. [
  16497. {
  16498. name: "Normal",
  16499. height: math.unit(2 + 8 / 12, "feet"),
  16500. default: true
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16506. {
  16507. side: {
  16508. height: math.unit(3 + 2 / 12, "feet"),
  16509. weight: math.unit(224, "lb"),
  16510. name: "Side",
  16511. image: {
  16512. source: "./media/characters/sheila-feral-wolf/side.svg",
  16513. extra: 179 / 166,
  16514. bottom: 0.03
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(3 + 2 / 12, "feet"),
  16522. default: true
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16528. {
  16529. side: {
  16530. height: math.unit(1 + 9 / 12, "feet"),
  16531. weight: math.unit(38, "lb"),
  16532. name: "Side",
  16533. image: {
  16534. source: "./media/characters/michelle/side.svg",
  16535. extra: 147 / 136.7,
  16536. bottom: 0.03
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Normal",
  16543. height: math.unit(1 + 9 / 12, "feet"),
  16544. default: true
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16550. {
  16551. front: {
  16552. height: math.unit(1 + 1 / 12, "feet"),
  16553. weight: math.unit(18, "lb"),
  16554. name: "Front",
  16555. image: {
  16556. source: "./media/characters/nino/front.svg"
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(1 + 1 / 12, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16570. {
  16571. front: {
  16572. height: math.unit(1, "feet"),
  16573. weight: math.unit(16, "lb"),
  16574. name: "Front",
  16575. image: {
  16576. source: "./media/characters/viola/front.svg"
  16577. }
  16578. },
  16579. },
  16580. [
  16581. {
  16582. name: "Normal",
  16583. height: math.unit(1, "feet"),
  16584. default: true
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16590. {
  16591. front: {
  16592. height: math.unit(6 + 5 / 12, "feet"),
  16593. weight: math.unit(580, "lb"),
  16594. name: "Front",
  16595. image: {
  16596. source: "./media/characters/atlas/front.svg",
  16597. extra: 298.5 / 290,
  16598. bottom: 0.015
  16599. }
  16600. },
  16601. },
  16602. [
  16603. {
  16604. name: "Normal",
  16605. height: math.unit(6 + 5 / 12, "feet"),
  16606. default: true
  16607. },
  16608. ]
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16612. {
  16613. side: {
  16614. height: math.unit(1 + 10 / 12, "feet"),
  16615. weight: math.unit(25, "lb"),
  16616. name: "Side",
  16617. image: {
  16618. source: "./media/characters/davy/side.svg",
  16619. extra: 200 / 170,
  16620. bottom: 0.01
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(1 + 10 / 12, "feet"),
  16628. default: true
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16634. {
  16635. side: {
  16636. height: math.unit(4 + 8 / 12, "feet"),
  16637. weight: math.unit(166, "lb"),
  16638. name: "Side",
  16639. image: {
  16640. source: "./media/characters/fiona/side.svg",
  16641. extra: 232 / 220,
  16642. bottom: 0.03
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(4 + 8 / 12, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16656. {
  16657. front: {
  16658. height: math.unit(2, "feet"),
  16659. weight: math.unit(62, "lb"),
  16660. name: "Front",
  16661. image: {
  16662. source: "./media/characters/lyla/front.svg",
  16663. bottom: 0.1
  16664. }
  16665. },
  16666. },
  16667. [
  16668. {
  16669. name: "Normal",
  16670. height: math.unit(2, "feet"),
  16671. default: true
  16672. },
  16673. ]
  16674. ))
  16675. characterMakers.push(() => makeCharacter(
  16676. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16677. {
  16678. side: {
  16679. height: math.unit(1.8, "feet"),
  16680. weight: math.unit(44, "lb"),
  16681. name: "Side",
  16682. image: {
  16683. source: "./media/characters/perseus/side.svg",
  16684. bottom: 0.21
  16685. }
  16686. },
  16687. },
  16688. [
  16689. {
  16690. name: "Normal",
  16691. height: math.unit(1.8, "feet"),
  16692. default: true
  16693. },
  16694. ]
  16695. ))
  16696. characterMakers.push(() => makeCharacter(
  16697. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16698. {
  16699. side: {
  16700. height: math.unit(4 + 2 / 12, "feet"),
  16701. weight: math.unit(20, "lb"),
  16702. name: "Side",
  16703. image: {
  16704. source: "./media/characters/remus/side.svg"
  16705. }
  16706. },
  16707. },
  16708. [
  16709. {
  16710. name: "Normal",
  16711. height: math.unit(4 + 2 / 12, "feet"),
  16712. default: true
  16713. },
  16714. ]
  16715. ))
  16716. characterMakers.push(() => makeCharacter(
  16717. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16718. {
  16719. front: {
  16720. height: math.unit(4 + 11 / 12, "feet"),
  16721. weight: math.unit(114, "lb"),
  16722. name: "Front",
  16723. image: {
  16724. source: "./media/characters/raf/front.svg",
  16725. bottom: 20.5 / 1863
  16726. }
  16727. },
  16728. side: {
  16729. height: math.unit(4 + 11 / 12, "feet"),
  16730. weight: math.unit(114, "lb"),
  16731. name: "Side",
  16732. image: {
  16733. source: "./media/characters/raf/side.svg",
  16734. bottom: 22 / 1822
  16735. }
  16736. },
  16737. },
  16738. [
  16739. {
  16740. name: "Micro",
  16741. height: math.unit(2, "inches")
  16742. },
  16743. {
  16744. name: "Normal",
  16745. height: math.unit(4 + 11 / 12, "feet"),
  16746. default: true
  16747. },
  16748. {
  16749. name: "Macro",
  16750. height: math.unit(70, "feet")
  16751. },
  16752. ]
  16753. ))
  16754. characterMakers.push(() => makeCharacter(
  16755. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16756. {
  16757. front: {
  16758. height: math.unit(1.5, "meters"),
  16759. weight: math.unit(68, "kg"),
  16760. name: "Front",
  16761. image: {
  16762. source: "./media/characters/liam-einarr/front.svg",
  16763. extra: 2822 / 2666
  16764. }
  16765. },
  16766. back: {
  16767. height: math.unit(1.5, "meters"),
  16768. weight: math.unit(68, "kg"),
  16769. name: "Back",
  16770. image: {
  16771. source: "./media/characters/liam-einarr/back.svg",
  16772. extra: 2822 / 2666,
  16773. bottom: 0.015
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(1.5, "meters"),
  16781. default: true
  16782. },
  16783. {
  16784. name: "Macro",
  16785. height: math.unit(150, "meters")
  16786. },
  16787. {
  16788. name: "Megamacro",
  16789. height: math.unit(35, "km")
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16795. {
  16796. front: {
  16797. height: math.unit(6, "feet"),
  16798. weight: math.unit(75, "kg"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/linda/front.svg",
  16802. extra: 930 / 874,
  16803. bottom: 0.004
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(6, "feet"),
  16811. default: true
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16817. {
  16818. front: {
  16819. height: math.unit(6 + 8 / 12, "feet"),
  16820. weight: math.unit(220, "lb"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/caylex/front.svg",
  16824. extra: 821 / 772,
  16825. bottom: 0.07
  16826. }
  16827. },
  16828. back: {
  16829. height: math.unit(6 + 8 / 12, "feet"),
  16830. weight: math.unit(220, "lb"),
  16831. name: "Back",
  16832. image: {
  16833. source: "./media/characters/caylex/back.svg",
  16834. extra: 821 / 772,
  16835. bottom: 0.022
  16836. }
  16837. },
  16838. hand: {
  16839. height: math.unit(1.25, "feet"),
  16840. name: "Hand",
  16841. image: {
  16842. source: "./media/characters/caylex/hand.svg"
  16843. }
  16844. },
  16845. foot: {
  16846. height: math.unit(1.6, "feet"),
  16847. name: "Foot",
  16848. image: {
  16849. source: "./media/characters/caylex/foot.svg"
  16850. }
  16851. },
  16852. armored: {
  16853. height: math.unit(6 + 8 / 12, "feet"),
  16854. weight: math.unit(250, "lb"),
  16855. name: "Armored",
  16856. image: {
  16857. source: "./media/characters/caylex/armored.svg",
  16858. extra: 1420 / 1310,
  16859. bottom: 0.045
  16860. }
  16861. },
  16862. },
  16863. [
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(6 + 8 / 12, "feet"),
  16867. default: true
  16868. },
  16869. {
  16870. name: "Normal+",
  16871. height: math.unit(12, "feet")
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16877. {
  16878. front: {
  16879. height: math.unit(7 + 6 / 12, "feet"),
  16880. weight: math.unit(288, "lb"),
  16881. name: "Front",
  16882. image: {
  16883. source: "./media/characters/alana/front.svg",
  16884. extra: 679 / 653,
  16885. bottom: 22.5 / 701
  16886. }
  16887. },
  16888. },
  16889. [
  16890. {
  16891. name: "Normal",
  16892. height: math.unit(7 + 6 / 12, "feet")
  16893. },
  16894. {
  16895. name: "Large",
  16896. height: math.unit(50, "feet")
  16897. },
  16898. {
  16899. name: "Macro",
  16900. height: math.unit(100, "feet"),
  16901. default: true
  16902. },
  16903. {
  16904. name: "Macro+",
  16905. height: math.unit(200, "feet")
  16906. },
  16907. ]
  16908. ))
  16909. characterMakers.push(() => makeCharacter(
  16910. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16911. {
  16912. front: {
  16913. height: math.unit(6 + 1 / 12, "feet"),
  16914. weight: math.unit(210, "lb"),
  16915. name: "Front",
  16916. image: {
  16917. source: "./media/characters/hasani/front.svg",
  16918. extra: 244 / 232,
  16919. bottom: 0.01
  16920. }
  16921. },
  16922. back: {
  16923. height: math.unit(6 + 1 / 12, "feet"),
  16924. weight: math.unit(210, "lb"),
  16925. name: "Back",
  16926. image: {
  16927. source: "./media/characters/hasani/back.svg",
  16928. extra: 244 / 232,
  16929. bottom: 0.01
  16930. }
  16931. },
  16932. },
  16933. [
  16934. {
  16935. name: "Normal",
  16936. height: math.unit(6 + 1 / 12, "feet")
  16937. },
  16938. {
  16939. name: "Macro",
  16940. height: math.unit(175, "feet"),
  16941. default: true
  16942. },
  16943. ]
  16944. ))
  16945. characterMakers.push(() => makeCharacter(
  16946. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16947. {
  16948. front: {
  16949. height: math.unit(1.82, "meters"),
  16950. weight: math.unit(140, "lb"),
  16951. name: "Front",
  16952. image: {
  16953. source: "./media/characters/nita/front.svg",
  16954. extra: 2473 / 2363,
  16955. bottom: 0.01
  16956. }
  16957. },
  16958. },
  16959. [
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(1.82, "m")
  16963. },
  16964. {
  16965. name: "Macro",
  16966. height: math.unit(300, "m")
  16967. },
  16968. {
  16969. name: "Mistake Canon",
  16970. height: math.unit(0.5, "miles"),
  16971. default: true
  16972. },
  16973. {
  16974. name: "Big Mistake",
  16975. height: math.unit(13, "miles")
  16976. },
  16977. {
  16978. name: "Playing God",
  16979. height: math.unit(2450, "miles")
  16980. },
  16981. ]
  16982. ))
  16983. characterMakers.push(() => makeCharacter(
  16984. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16985. {
  16986. front: {
  16987. height: math.unit(4, "feet"),
  16988. weight: math.unit(120, "lb"),
  16989. name: "Front",
  16990. image: {
  16991. source: "./media/characters/shiriko/front.svg",
  16992. extra: 195 / 188
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(4, "feet"),
  17000. default: true
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17006. {
  17007. front: {
  17008. height: math.unit(6, "feet"),
  17009. name: "front",
  17010. image: {
  17011. source: "./media/characters/deja/front.svg",
  17012. extra: 926 / 840,
  17013. bottom: 0.07
  17014. }
  17015. },
  17016. },
  17017. [
  17018. {
  17019. name: "Planck Length",
  17020. height: math.unit(1.6e-35, "meters")
  17021. },
  17022. {
  17023. name: "Normal",
  17024. height: math.unit(30.48, "meters"),
  17025. default: true
  17026. },
  17027. {
  17028. name: "Universal",
  17029. height: math.unit(8.8e26, "meters")
  17030. },
  17031. ]
  17032. ))
  17033. characterMakers.push(() => makeCharacter(
  17034. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17035. {
  17036. side: {
  17037. height: math.unit(8, "feet"),
  17038. weight: math.unit(6300, "lb"),
  17039. name: "Side",
  17040. image: {
  17041. source: "./media/characters/anima/side.svg",
  17042. bottom: 0.035
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(8, "feet"),
  17050. default: true
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17056. {
  17057. front: {
  17058. height: math.unit(8, "feet"),
  17059. weight: math.unit(350, "lb"),
  17060. name: "Front",
  17061. image: {
  17062. source: "./media/characters/bianca/front.svg",
  17063. extra: 234 / 225,
  17064. bottom: 0.03
  17065. }
  17066. },
  17067. },
  17068. [
  17069. {
  17070. name: "Normal",
  17071. height: math.unit(8, "feet"),
  17072. default: true
  17073. },
  17074. ]
  17075. ))
  17076. characterMakers.push(() => makeCharacter(
  17077. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17078. {
  17079. front: {
  17080. height: math.unit(6, "feet"),
  17081. weight: math.unit(150, "lb"),
  17082. name: "Front",
  17083. image: {
  17084. source: "./media/characters/adinia/front.svg",
  17085. extra: 1845 / 1672,
  17086. bottom: 0.02
  17087. }
  17088. },
  17089. back: {
  17090. height: math.unit(6, "feet"),
  17091. weight: math.unit(150, "lb"),
  17092. name: "Back",
  17093. image: {
  17094. source: "./media/characters/adinia/back.svg",
  17095. extra: 1845 / 1672,
  17096. bottom: 0.002
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(11 + 5 / 12, "feet"),
  17104. default: true
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17110. {
  17111. front: {
  17112. height: math.unit(3, "meters"),
  17113. weight: math.unit(200, "kg"),
  17114. name: "Front",
  17115. image: {
  17116. source: "./media/characters/lykasa/front.svg",
  17117. extra: 1076 / 976,
  17118. bottom: 0.06
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Normal",
  17125. height: math.unit(3, "meters")
  17126. },
  17127. {
  17128. name: "Kaiju",
  17129. height: math.unit(120, "meters"),
  17130. default: true
  17131. },
  17132. {
  17133. name: "Mega Kaiju",
  17134. height: math.unit(240, "km")
  17135. },
  17136. {
  17137. name: "Giga Kaiju",
  17138. height: math.unit(400, "megameters")
  17139. },
  17140. {
  17141. name: "Tera Kaiju",
  17142. height: math.unit(800, "gigameters")
  17143. },
  17144. {
  17145. name: "Kaiju Dragon Goddess",
  17146. height: math.unit(26, "zettaparsecs")
  17147. },
  17148. ]
  17149. ))
  17150. characterMakers.push(() => makeCharacter(
  17151. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17152. {
  17153. side: {
  17154. height: math.unit(283 / 124 * 6, "feet"),
  17155. weight: math.unit(35000, "lb"),
  17156. name: "Side",
  17157. image: {
  17158. source: "./media/characters/malfaren/side.svg",
  17159. extra: 2500 / 1010,
  17160. bottom: 0.01
  17161. }
  17162. },
  17163. front: {
  17164. height: math.unit(22.36, "feet"),
  17165. weight: math.unit(35000, "lb"),
  17166. name: "Front",
  17167. image: {
  17168. source: "./media/characters/malfaren/front.svg",
  17169. extra: 1631 / 1476,
  17170. bottom: 0.01
  17171. }
  17172. },
  17173. maw: {
  17174. height: math.unit(6.9, "feet"),
  17175. name: "Maw",
  17176. image: {
  17177. source: "./media/characters/malfaren/maw.svg"
  17178. }
  17179. },
  17180. },
  17181. [
  17182. {
  17183. name: "Big",
  17184. height: math.unit(283 / 162 * 6, "feet"),
  17185. },
  17186. {
  17187. name: "Bigger",
  17188. height: math.unit(283 / 124 * 6, "feet")
  17189. },
  17190. {
  17191. name: "Massive",
  17192. height: math.unit(283 / 92 * 6, "feet"),
  17193. default: true
  17194. },
  17195. {
  17196. name: "👀💦",
  17197. height: math.unit(283 / 73 * 6, "feet"),
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17203. {
  17204. front: {
  17205. height: math.unit(1.7, "m"),
  17206. weight: math.unit(70, "kg"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/kernel/front.svg",
  17210. extra: 222 / 210,
  17211. bottom: 0.007
  17212. }
  17213. },
  17214. },
  17215. [
  17216. {
  17217. name: "Nano",
  17218. height: math.unit(17, "micrometers")
  17219. },
  17220. {
  17221. name: "Micro",
  17222. height: math.unit(1.7, "mm")
  17223. },
  17224. {
  17225. name: "Small",
  17226. height: math.unit(1.7, "cm")
  17227. },
  17228. {
  17229. name: "Normal",
  17230. height: math.unit(1.7, "m"),
  17231. default: true
  17232. },
  17233. ]
  17234. ))
  17235. characterMakers.push(() => makeCharacter(
  17236. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17237. {
  17238. front: {
  17239. height: math.unit(1.75, "meters"),
  17240. weight: math.unit(65, "kg"),
  17241. name: "Front",
  17242. image: {
  17243. source: "./media/characters/jayne-folest/front.svg",
  17244. extra: 2115 / 2007,
  17245. bottom: 0.02
  17246. }
  17247. },
  17248. back: {
  17249. height: math.unit(1.75, "meters"),
  17250. weight: math.unit(65, "kg"),
  17251. name: "Back",
  17252. image: {
  17253. source: "./media/characters/jayne-folest/back.svg",
  17254. extra: 2115 / 2007,
  17255. bottom: 0.005
  17256. }
  17257. },
  17258. frontClothed: {
  17259. height: math.unit(1.75, "meters"),
  17260. weight: math.unit(65, "kg"),
  17261. name: "Front (Clothed)",
  17262. image: {
  17263. source: "./media/characters/jayne-folest/front-clothed.svg",
  17264. extra: 2115 / 2007,
  17265. bottom: 0.035
  17266. }
  17267. },
  17268. hand: {
  17269. height: math.unit(1 / 1.260, "feet"),
  17270. name: "Hand",
  17271. image: {
  17272. source: "./media/characters/jayne-folest/hand.svg"
  17273. }
  17274. },
  17275. foot: {
  17276. height: math.unit(1 / 0.918, "feet"),
  17277. name: "Foot",
  17278. image: {
  17279. source: "./media/characters/jayne-folest/foot.svg"
  17280. }
  17281. },
  17282. },
  17283. [
  17284. {
  17285. name: "Micro",
  17286. height: math.unit(4, "cm")
  17287. },
  17288. {
  17289. name: "Normal",
  17290. height: math.unit(1.75, "meters")
  17291. },
  17292. {
  17293. name: "Macro",
  17294. height: math.unit(47.5, "meters"),
  17295. default: true
  17296. },
  17297. ]
  17298. ))
  17299. characterMakers.push(() => makeCharacter(
  17300. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17301. {
  17302. front: {
  17303. height: math.unit(180, "cm"),
  17304. weight: math.unit(70, "kg"),
  17305. name: "Front",
  17306. image: {
  17307. source: "./media/characters/algier/front.svg",
  17308. extra: 596 / 572,
  17309. bottom: 0.04
  17310. }
  17311. },
  17312. back: {
  17313. height: math.unit(180, "cm"),
  17314. weight: math.unit(70, "kg"),
  17315. name: "Back",
  17316. image: {
  17317. source: "./media/characters/algier/back.svg",
  17318. extra: 596 / 572,
  17319. bottom: 0.025
  17320. }
  17321. },
  17322. frontdressed: {
  17323. height: math.unit(180, "cm"),
  17324. weight: math.unit(150, "kg"),
  17325. name: "Front-dressed",
  17326. image: {
  17327. source: "./media/characters/algier/front-dressed.svg",
  17328. extra: 596 / 572,
  17329. bottom: 0.038
  17330. }
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Micro",
  17336. height: math.unit(5, "cm")
  17337. },
  17338. {
  17339. name: "Normal",
  17340. height: math.unit(180, "cm"),
  17341. default: true
  17342. },
  17343. {
  17344. name: "Macro",
  17345. height: math.unit(64, "m")
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17351. {
  17352. upright: {
  17353. height: math.unit(7, "feet"),
  17354. weight: math.unit(300, "lb"),
  17355. name: "Upright",
  17356. image: {
  17357. source: "./media/characters/pretzel/upright.svg",
  17358. extra: 534 / 522,
  17359. bottom: 0.065
  17360. }
  17361. },
  17362. sprawling: {
  17363. height: math.unit(3.75, "feet"),
  17364. weight: math.unit(300, "lb"),
  17365. name: "Sprawling",
  17366. image: {
  17367. source: "./media/characters/pretzel/sprawling.svg",
  17368. extra: 314 / 281,
  17369. bottom: 0.1
  17370. }
  17371. },
  17372. tongue: {
  17373. height: math.unit(2, "feet"),
  17374. name: "Tongue",
  17375. image: {
  17376. source: "./media/characters/pretzel/tongue.svg"
  17377. }
  17378. },
  17379. },
  17380. [
  17381. {
  17382. name: "Normal",
  17383. height: math.unit(7, "feet"),
  17384. default: true
  17385. },
  17386. {
  17387. name: "Oversized",
  17388. height: math.unit(15, "feet")
  17389. },
  17390. {
  17391. name: "Huge",
  17392. height: math.unit(30, "feet")
  17393. },
  17394. {
  17395. name: "Macro",
  17396. height: math.unit(250, "feet")
  17397. },
  17398. ]
  17399. ))
  17400. characterMakers.push(() => makeCharacter(
  17401. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17402. {
  17403. sideFront: {
  17404. height: math.unit(5 + 2 / 12, "feet"),
  17405. weight: math.unit(120, "lb"),
  17406. name: "Front Side",
  17407. image: {
  17408. source: "./media/characters/roxi/side-front.svg",
  17409. extra: 2924 / 2717,
  17410. bottom: 0.08
  17411. }
  17412. },
  17413. sideBack: {
  17414. height: math.unit(5 + 2 / 12, "feet"),
  17415. weight: math.unit(120, "lb"),
  17416. name: "Back Side",
  17417. image: {
  17418. source: "./media/characters/roxi/side-back.svg",
  17419. extra: 2904 / 2693,
  17420. bottom: 0.06
  17421. }
  17422. },
  17423. front: {
  17424. height: math.unit(5 + 2 / 12, "feet"),
  17425. weight: math.unit(120, "lb"),
  17426. name: "Front",
  17427. image: {
  17428. source: "./media/characters/roxi/front.svg",
  17429. extra: 2028 / 1907,
  17430. bottom: 0.01
  17431. }
  17432. },
  17433. frontAlt: {
  17434. height: math.unit(5 + 2 / 12, "feet"),
  17435. weight: math.unit(120, "lb"),
  17436. name: "Front (Alt)",
  17437. image: {
  17438. source: "./media/characters/roxi/front-alt.svg",
  17439. extra: 1828 / 1798,
  17440. bottom: 0.01
  17441. }
  17442. },
  17443. sitting: {
  17444. height: math.unit(2.8, "feet"),
  17445. weight: math.unit(120, "lb"),
  17446. name: "Sitting",
  17447. image: {
  17448. source: "./media/characters/roxi/sitting.svg",
  17449. extra: 2660 / 2462,
  17450. bottom: 0.1
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(5 + 2 / 12, "feet"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17464. {
  17465. side: {
  17466. height: math.unit(55, "feet"),
  17467. weight: math.unit(153, "tons"),
  17468. name: "Side",
  17469. image: {
  17470. source: "./media/characters/shadow/side.svg",
  17471. extra: 701 / 628,
  17472. bottom: 0.02
  17473. }
  17474. },
  17475. flying: {
  17476. height: math.unit(145, "feet"),
  17477. weight: math.unit(153, "tons"),
  17478. name: "Flying",
  17479. image: {
  17480. source: "./media/characters/shadow/flying.svg"
  17481. }
  17482. },
  17483. },
  17484. [
  17485. {
  17486. name: "Normal",
  17487. height: math.unit(55, "feet"),
  17488. default: true
  17489. },
  17490. ]
  17491. ))
  17492. characterMakers.push(() => makeCharacter(
  17493. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17494. {
  17495. front: {
  17496. height: math.unit(6, "feet"),
  17497. weight: math.unit(200, "lb"),
  17498. name: "Front",
  17499. image: {
  17500. source: "./media/characters/marcie/front.svg",
  17501. extra: 960 / 876,
  17502. bottom: 58 / 1017.87
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Macro",
  17509. height: math.unit(1, "mile"),
  17510. default: true
  17511. },
  17512. ]
  17513. ))
  17514. characterMakers.push(() => makeCharacter(
  17515. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17516. {
  17517. front: {
  17518. height: math.unit(7, "feet"),
  17519. weight: math.unit(200, "lb"),
  17520. name: "Front",
  17521. image: {
  17522. source: "./media/characters/kachina/front.svg",
  17523. extra: 1290.68 / 1119,
  17524. bottom: 36.5 / 1327.18
  17525. }
  17526. },
  17527. },
  17528. [
  17529. {
  17530. name: "Normal",
  17531. height: math.unit(7, "feet"),
  17532. default: true
  17533. },
  17534. ]
  17535. ))
  17536. characterMakers.push(() => makeCharacter(
  17537. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17538. {
  17539. looking: {
  17540. height: math.unit(2, "meters"),
  17541. weight: math.unit(300, "kg"),
  17542. name: "Looking",
  17543. image: {
  17544. source: "./media/characters/kash/looking.svg",
  17545. extra: 474 / 344,
  17546. bottom: 0.03
  17547. }
  17548. },
  17549. side: {
  17550. height: math.unit(2, "meters"),
  17551. weight: math.unit(300, "kg"),
  17552. name: "Side",
  17553. image: {
  17554. source: "./media/characters/kash/side.svg",
  17555. extra: 302 / 251,
  17556. bottom: 0.03
  17557. }
  17558. },
  17559. front: {
  17560. height: math.unit(2, "meters"),
  17561. weight: math.unit(300, "kg"),
  17562. name: "Front",
  17563. image: {
  17564. source: "./media/characters/kash/front.svg",
  17565. extra: 495 / 360,
  17566. bottom: 0.015
  17567. }
  17568. },
  17569. },
  17570. [
  17571. {
  17572. name: "Normal",
  17573. height: math.unit(2, "meters"),
  17574. default: true
  17575. },
  17576. {
  17577. name: "Big",
  17578. height: math.unit(3, "meters")
  17579. },
  17580. {
  17581. name: "Large",
  17582. height: math.unit(5, "meters")
  17583. },
  17584. ]
  17585. ))
  17586. characterMakers.push(() => makeCharacter(
  17587. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17588. {
  17589. feeding: {
  17590. height: math.unit(6.7, "feet"),
  17591. weight: math.unit(350, "lb"),
  17592. name: "Feeding",
  17593. image: {
  17594. source: "./media/characters/lalim/feeding.svg",
  17595. }
  17596. },
  17597. },
  17598. [
  17599. {
  17600. name: "Normal",
  17601. height: math.unit(6.7, "feet"),
  17602. default: true
  17603. },
  17604. ]
  17605. ))
  17606. characterMakers.push(() => makeCharacter(
  17607. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17608. {
  17609. front: {
  17610. height: math.unit(9.5, "feet"),
  17611. weight: math.unit(600, "lb"),
  17612. name: "Front",
  17613. image: {
  17614. source: "./media/characters/de'vout/front.svg",
  17615. extra: 1443 / 1328,
  17616. bottom: 0.025
  17617. }
  17618. },
  17619. back: {
  17620. height: math.unit(9.5, "feet"),
  17621. weight: math.unit(600, "lb"),
  17622. name: "Back",
  17623. image: {
  17624. source: "./media/characters/de'vout/back.svg",
  17625. extra: 1443 / 1328
  17626. }
  17627. },
  17628. frontDressed: {
  17629. height: math.unit(9.5, "feet"),
  17630. weight: math.unit(600, "lb"),
  17631. name: "Front (Dressed",
  17632. image: {
  17633. source: "./media/characters/de'vout/front-dressed.svg",
  17634. extra: 1443 / 1328,
  17635. bottom: 0.025
  17636. }
  17637. },
  17638. backDressed: {
  17639. height: math.unit(9.5, "feet"),
  17640. weight: math.unit(600, "lb"),
  17641. name: "Back (Dressed",
  17642. image: {
  17643. source: "./media/characters/de'vout/back-dressed.svg",
  17644. extra: 1443 / 1328
  17645. }
  17646. },
  17647. },
  17648. [
  17649. {
  17650. name: "Normal",
  17651. height: math.unit(9.5, "feet"),
  17652. default: true
  17653. },
  17654. ]
  17655. ))
  17656. characterMakers.push(() => makeCharacter(
  17657. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17658. {
  17659. front: {
  17660. height: math.unit(8, "feet"),
  17661. weight: math.unit(225, "lb"),
  17662. name: "Front",
  17663. image: {
  17664. source: "./media/characters/talana/front.svg",
  17665. extra: 1410 / 1300,
  17666. bottom: 0.015
  17667. }
  17668. },
  17669. frontDressed: {
  17670. height: math.unit(8, "feet"),
  17671. weight: math.unit(225, "lb"),
  17672. name: "Front (Dressed",
  17673. image: {
  17674. source: "./media/characters/talana/front-dressed.svg",
  17675. extra: 1410 / 1300,
  17676. bottom: 0.015
  17677. }
  17678. },
  17679. },
  17680. [
  17681. {
  17682. name: "Normal",
  17683. height: math.unit(8, "feet"),
  17684. default: true
  17685. },
  17686. ]
  17687. ))
  17688. characterMakers.push(() => makeCharacter(
  17689. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17690. {
  17691. side: {
  17692. height: math.unit(7.2, "feet"),
  17693. weight: math.unit(150, "lb"),
  17694. name: "Side",
  17695. image: {
  17696. source: "./media/characters/xeauvok/side.svg",
  17697. extra: 1975 / 1523,
  17698. bottom: 0.07
  17699. }
  17700. },
  17701. },
  17702. [
  17703. {
  17704. name: "Normal",
  17705. height: math.unit(7.2, "feet"),
  17706. default: true
  17707. },
  17708. ]
  17709. ))
  17710. characterMakers.push(() => makeCharacter(
  17711. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17712. {
  17713. side: {
  17714. height: math.unit(10, "feet"),
  17715. weight: math.unit(900, "kg"),
  17716. name: "Side",
  17717. image: {
  17718. source: "./media/characters/zara/side.svg",
  17719. extra: 504 / 498
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(10, "feet"),
  17727. default: true
  17728. },
  17729. ]
  17730. ))
  17731. characterMakers.push(() => makeCharacter(
  17732. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17733. {
  17734. side: {
  17735. height: math.unit(6, "feet"),
  17736. weight: math.unit(150, "lb"),
  17737. name: "Side",
  17738. image: {
  17739. source: "./media/characters/richard-dragon/side.svg",
  17740. extra: 845 / 340,
  17741. bottom: 0.017
  17742. }
  17743. },
  17744. maw: {
  17745. height: math.unit(2.97, "feet"),
  17746. name: "Maw",
  17747. image: {
  17748. source: "./media/characters/richard-dragon/maw.svg"
  17749. }
  17750. },
  17751. },
  17752. [
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17757. {
  17758. front: {
  17759. height: math.unit(4, "feet"),
  17760. weight: math.unit(100, "lb"),
  17761. name: "Front",
  17762. image: {
  17763. source: "./media/characters/richard-smeargle/front.svg",
  17764. extra: 2952 / 2820,
  17765. bottom: 0.028
  17766. }
  17767. },
  17768. },
  17769. [
  17770. {
  17771. name: "Normal",
  17772. height: math.unit(4, "feet"),
  17773. default: true
  17774. },
  17775. {
  17776. name: "Dynamax",
  17777. height: math.unit(20, "meters")
  17778. },
  17779. ]
  17780. ))
  17781. characterMakers.push(() => makeCharacter(
  17782. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17783. {
  17784. front: {
  17785. height: math.unit(6, "feet"),
  17786. weight: math.unit(110, "lb"),
  17787. name: "Front",
  17788. image: {
  17789. source: "./media/characters/klay/front.svg",
  17790. extra: 962 / 883,
  17791. bottom: 0.04
  17792. }
  17793. },
  17794. back: {
  17795. height: math.unit(6, "feet"),
  17796. weight: math.unit(110, "lb"),
  17797. name: "Back",
  17798. image: {
  17799. source: "./media/characters/klay/back.svg",
  17800. extra: 962 / 883
  17801. }
  17802. },
  17803. beans: {
  17804. height: math.unit(1.15, "feet"),
  17805. name: "Beans",
  17806. image: {
  17807. source: "./media/characters/klay/beans.svg"
  17808. }
  17809. },
  17810. },
  17811. [
  17812. {
  17813. name: "Micro",
  17814. height: math.unit(6, "inches")
  17815. },
  17816. {
  17817. name: "Mini",
  17818. height: math.unit(3, "feet")
  17819. },
  17820. {
  17821. name: "Normal",
  17822. height: math.unit(6, "feet"),
  17823. default: true
  17824. },
  17825. {
  17826. name: "Big",
  17827. height: math.unit(25, "feet")
  17828. },
  17829. {
  17830. name: "Macro",
  17831. height: math.unit(100, "feet")
  17832. },
  17833. {
  17834. name: "Megamacro",
  17835. height: math.unit(400, "feet")
  17836. },
  17837. ]
  17838. ))
  17839. characterMakers.push(() => makeCharacter(
  17840. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17841. {
  17842. front: {
  17843. height: math.unit(6, "feet"),
  17844. weight: math.unit(160, "lb"),
  17845. name: "Front",
  17846. image: {
  17847. source: "./media/characters/marcus/front.svg",
  17848. extra: 734 / 676,
  17849. bottom: 0.03
  17850. }
  17851. },
  17852. },
  17853. [
  17854. {
  17855. name: "Little",
  17856. height: math.unit(6, "feet")
  17857. },
  17858. {
  17859. name: "Normal",
  17860. height: math.unit(110, "feet"),
  17861. default: true
  17862. },
  17863. {
  17864. name: "Macro",
  17865. height: math.unit(250, "feet")
  17866. },
  17867. {
  17868. name: "Megamacro",
  17869. height: math.unit(1000, "feet")
  17870. },
  17871. ]
  17872. ))
  17873. characterMakers.push(() => makeCharacter(
  17874. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17875. {
  17876. front: {
  17877. height: math.unit(7, "feet"),
  17878. weight: math.unit(275, "lb"),
  17879. name: "Front",
  17880. image: {
  17881. source: "./media/characters/claude-delroute/front.svg",
  17882. extra: 230 / 214,
  17883. bottom: 0.007
  17884. }
  17885. },
  17886. side: {
  17887. height: math.unit(7, "feet"),
  17888. weight: math.unit(275, "lb"),
  17889. name: "Side",
  17890. image: {
  17891. source: "./media/characters/claude-delroute/side.svg",
  17892. extra: 222 / 214,
  17893. bottom: 0.01
  17894. }
  17895. },
  17896. back: {
  17897. height: math.unit(7, "feet"),
  17898. weight: math.unit(275, "lb"),
  17899. name: "Back",
  17900. image: {
  17901. source: "./media/characters/claude-delroute/back.svg",
  17902. extra: 230 / 214,
  17903. bottom: 0.015
  17904. }
  17905. },
  17906. maw: {
  17907. height: math.unit(0.6407, "meters"),
  17908. name: "Maw",
  17909. image: {
  17910. source: "./media/characters/claude-delroute/maw.svg"
  17911. }
  17912. },
  17913. },
  17914. [
  17915. {
  17916. name: "Normal",
  17917. height: math.unit(7, "feet"),
  17918. default: true
  17919. },
  17920. {
  17921. name: "Lorge",
  17922. height: math.unit(20, "feet")
  17923. },
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17928. {
  17929. front: {
  17930. height: math.unit(8 + 4 / 12, "feet"),
  17931. weight: math.unit(600, "lb"),
  17932. name: "Front",
  17933. image: {
  17934. source: "./media/characters/dragonien/front.svg",
  17935. extra: 100 / 94,
  17936. bottom: 3.3 / 103.3445
  17937. }
  17938. },
  17939. back: {
  17940. height: math.unit(8 + 4 / 12, "feet"),
  17941. weight: math.unit(600, "lb"),
  17942. name: "Back",
  17943. image: {
  17944. source: "./media/characters/dragonien/back.svg",
  17945. extra: 776 / 746,
  17946. bottom: 6.4 / 782.0616
  17947. }
  17948. },
  17949. foot: {
  17950. height: math.unit(1.54, "feet"),
  17951. name: "Foot",
  17952. image: {
  17953. source: "./media/characters/dragonien/foot.svg",
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(8 + 4 / 12, "feet"),
  17961. default: true
  17962. },
  17963. {
  17964. name: "Macro",
  17965. height: math.unit(200, "feet")
  17966. },
  17967. {
  17968. name: "Megamacro",
  17969. height: math.unit(1, "mile")
  17970. },
  17971. {
  17972. name: "Gigamacro",
  17973. height: math.unit(1000, "miles")
  17974. },
  17975. ]
  17976. ))
  17977. characterMakers.push(() => makeCharacter(
  17978. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17979. {
  17980. front: {
  17981. height: math.unit(5 + 2 / 12, "feet"),
  17982. weight: math.unit(110, "lb"),
  17983. name: "Front",
  17984. image: {
  17985. source: "./media/characters/desta/front.svg",
  17986. extra: 767 / 726,
  17987. bottom: 11.7 / 779
  17988. }
  17989. },
  17990. back: {
  17991. height: math.unit(5 + 2 / 12, "feet"),
  17992. weight: math.unit(110, "lb"),
  17993. name: "Back",
  17994. image: {
  17995. source: "./media/characters/desta/back.svg",
  17996. extra: 777 / 728,
  17997. bottom: 6 / 784
  17998. }
  17999. },
  18000. frontAlt: {
  18001. height: math.unit(5 + 2 / 12, "feet"),
  18002. weight: math.unit(110, "lb"),
  18003. name: "Front",
  18004. image: {
  18005. source: "./media/characters/desta/front-alt.svg",
  18006. extra: 1482 / 1417
  18007. }
  18008. },
  18009. side: {
  18010. height: math.unit(5 + 2 / 12, "feet"),
  18011. weight: math.unit(110, "lb"),
  18012. name: "Side",
  18013. image: {
  18014. source: "./media/characters/desta/side.svg",
  18015. extra: 2579 / 2491,
  18016. bottom: 0.053
  18017. }
  18018. },
  18019. },
  18020. [
  18021. {
  18022. name: "Micro",
  18023. height: math.unit(6, "inches")
  18024. },
  18025. {
  18026. name: "Normal",
  18027. height: math.unit(5 + 2 / 12, "feet"),
  18028. default: true
  18029. },
  18030. {
  18031. name: "Macro",
  18032. height: math.unit(62, "feet")
  18033. },
  18034. {
  18035. name: "Megamacro",
  18036. height: math.unit(1800, "feet")
  18037. },
  18038. ]
  18039. ))
  18040. characterMakers.push(() => makeCharacter(
  18041. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18042. {
  18043. front: {
  18044. height: math.unit(10, "feet"),
  18045. weight: math.unit(700, "lb"),
  18046. name: "Front",
  18047. image: {
  18048. source: "./media/characters/storm-alystar/front.svg",
  18049. extra: 2112 / 1898,
  18050. bottom: 0.034
  18051. }
  18052. },
  18053. },
  18054. [
  18055. {
  18056. name: "Micro",
  18057. height: math.unit(3.5, "inches")
  18058. },
  18059. {
  18060. name: "Normal",
  18061. height: math.unit(10, "feet"),
  18062. default: true
  18063. },
  18064. {
  18065. name: "Macro",
  18066. height: math.unit(400, "feet")
  18067. },
  18068. {
  18069. name: "Deific",
  18070. height: math.unit(60, "miles")
  18071. },
  18072. ]
  18073. ))
  18074. characterMakers.push(() => makeCharacter(
  18075. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18076. {
  18077. front: {
  18078. height: math.unit(2.35, "meters"),
  18079. weight: math.unit(119, "kg"),
  18080. name: "Front",
  18081. image: {
  18082. source: "./media/characters/ilia/front.svg",
  18083. extra: 1285 / 1255,
  18084. bottom: 0.06
  18085. }
  18086. },
  18087. },
  18088. [
  18089. {
  18090. name: "Normal",
  18091. height: math.unit(2.35, "meters")
  18092. },
  18093. {
  18094. name: "Macro",
  18095. height: math.unit(140, "meters"),
  18096. default: true
  18097. },
  18098. {
  18099. name: "Megamacro",
  18100. height: math.unit(100, "miles")
  18101. },
  18102. ]
  18103. ))
  18104. characterMakers.push(() => makeCharacter(
  18105. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18106. {
  18107. front: {
  18108. height: math.unit(6 + 5 / 12, "feet"),
  18109. weight: math.unit(190, "lb"),
  18110. name: "Front",
  18111. image: {
  18112. source: "./media/characters/kingdead/front.svg",
  18113. extra: 1228 / 1177
  18114. }
  18115. },
  18116. },
  18117. [
  18118. {
  18119. name: "Micro",
  18120. height: math.unit(7, "inches")
  18121. },
  18122. {
  18123. name: "Normal",
  18124. height: math.unit(6 + 5 / 12, "feet")
  18125. },
  18126. {
  18127. name: "Macro",
  18128. height: math.unit(150, "feet"),
  18129. default: true
  18130. },
  18131. {
  18132. name: "Megamacro",
  18133. height: math.unit(200, "miles")
  18134. },
  18135. ]
  18136. ))
  18137. characterMakers.push(() => makeCharacter(
  18138. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18139. {
  18140. front: {
  18141. height: math.unit(8, "feet"),
  18142. weight: math.unit(600, "lb"),
  18143. name: "Front",
  18144. image: {
  18145. source: "./media/characters/kyrehx/front.svg",
  18146. extra: 1195 / 1095,
  18147. bottom: 0.034
  18148. }
  18149. },
  18150. },
  18151. [
  18152. {
  18153. name: "Micro",
  18154. height: math.unit(2, "inches")
  18155. },
  18156. {
  18157. name: "Normal",
  18158. height: math.unit(8, "feet"),
  18159. default: true
  18160. },
  18161. {
  18162. name: "Macro",
  18163. height: math.unit(255, "feet")
  18164. },
  18165. ]
  18166. ))
  18167. characterMakers.push(() => makeCharacter(
  18168. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18169. {
  18170. front: {
  18171. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18172. weight: math.unit(184, "lb"),
  18173. name: "Front",
  18174. image: {
  18175. source: "./media/characters/xang/front.svg",
  18176. extra: 845 / 755
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18184. default: true
  18185. },
  18186. {
  18187. name: "Macro",
  18188. height: math.unit(0.935 * 146, "feet")
  18189. },
  18190. {
  18191. name: "Megamacro",
  18192. height: math.unit(0.935 * 3, "miles")
  18193. },
  18194. ]
  18195. ))
  18196. characterMakers.push(() => makeCharacter(
  18197. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18198. {
  18199. frontDressed: {
  18200. height: math.unit(5 + 7 / 12, "feet"),
  18201. weight: math.unit(140, "lb"),
  18202. name: "Front (Dressed)",
  18203. image: {
  18204. source: "./media/characters/doc-weardno/front-dressed.svg",
  18205. extra: 263 / 234
  18206. }
  18207. },
  18208. backDressed: {
  18209. height: math.unit(5 + 7 / 12, "feet"),
  18210. weight: math.unit(140, "lb"),
  18211. name: "Back (Dressed)",
  18212. image: {
  18213. source: "./media/characters/doc-weardno/back-dressed.svg",
  18214. extra: 266 / 238
  18215. }
  18216. },
  18217. front: {
  18218. height: math.unit(5 + 7 / 12, "feet"),
  18219. weight: math.unit(140, "lb"),
  18220. name: "Front",
  18221. image: {
  18222. source: "./media/characters/doc-weardno/front.svg",
  18223. extra: 254 / 233
  18224. }
  18225. },
  18226. },
  18227. [
  18228. {
  18229. name: "Micro",
  18230. height: math.unit(3, "inches")
  18231. },
  18232. {
  18233. name: "Normal",
  18234. height: math.unit(5 + 7 / 12, "feet"),
  18235. default: true
  18236. },
  18237. {
  18238. name: "Macro",
  18239. height: math.unit(25, "feet")
  18240. },
  18241. {
  18242. name: "Megamacro",
  18243. height: math.unit(2, "miles")
  18244. },
  18245. ]
  18246. ))
  18247. characterMakers.push(() => makeCharacter(
  18248. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18249. {
  18250. front: {
  18251. height: math.unit(6 + 2 / 12, "feet"),
  18252. weight: math.unit(153, "lb"),
  18253. name: "Front",
  18254. image: {
  18255. source: "./media/characters/seth-whilst/front.svg",
  18256. bottom: 0.07
  18257. }
  18258. },
  18259. },
  18260. [
  18261. {
  18262. name: "Micro",
  18263. height: math.unit(5, "inches")
  18264. },
  18265. {
  18266. name: "Normal",
  18267. height: math.unit(6 + 2 / 12, "feet"),
  18268. default: true
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(3, "inches"),
  18277. weight: math.unit(8, "grams"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/pocket-jabari/front.svg",
  18281. extra: 1024 / 974,
  18282. bottom: 0.039
  18283. }
  18284. },
  18285. },
  18286. [
  18287. {
  18288. name: "Minimicro",
  18289. height: math.unit(8, "mm")
  18290. },
  18291. {
  18292. name: "Micro",
  18293. height: math.unit(3, "inches"),
  18294. default: true
  18295. },
  18296. {
  18297. name: "Normal",
  18298. height: math.unit(3, "feet")
  18299. },
  18300. ]
  18301. ))
  18302. characterMakers.push(() => makeCharacter(
  18303. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18304. {
  18305. front: {
  18306. height: math.unit(15, "feet"),
  18307. weight: math.unit(3280, "lb"),
  18308. name: "Front",
  18309. image: {
  18310. source: "./media/characters/sapphy/front.svg",
  18311. extra: 671 / 577,
  18312. bottom: 0.085
  18313. }
  18314. },
  18315. back: {
  18316. height: math.unit(15, "feet"),
  18317. weight: math.unit(3280, "lb"),
  18318. name: "Back",
  18319. image: {
  18320. source: "./media/characters/sapphy/back.svg",
  18321. extra: 631 / 607,
  18322. bottom: 0.045
  18323. }
  18324. },
  18325. },
  18326. [
  18327. {
  18328. name: "Normal",
  18329. height: math.unit(15, "feet")
  18330. },
  18331. {
  18332. name: "Casual Macro",
  18333. height: math.unit(120, "feet")
  18334. },
  18335. {
  18336. name: "Macro",
  18337. height: math.unit(2150, "feet"),
  18338. default: true
  18339. },
  18340. {
  18341. name: "Megamacro",
  18342. height: math.unit(8, "miles")
  18343. },
  18344. {
  18345. name: "Galaxy Mom",
  18346. height: math.unit(6, "megalightyears")
  18347. },
  18348. ]
  18349. ))
  18350. characterMakers.push(() => makeCharacter(
  18351. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18352. {
  18353. front: {
  18354. height: math.unit(6, "feet"),
  18355. weight: math.unit(170, "lb"),
  18356. name: "Front",
  18357. image: {
  18358. source: "./media/characters/kiro/front.svg",
  18359. extra: 1064 / 1012,
  18360. bottom: 0.052
  18361. }
  18362. },
  18363. },
  18364. [
  18365. {
  18366. name: "Micro",
  18367. height: math.unit(6, "inches")
  18368. },
  18369. {
  18370. name: "Normal",
  18371. height: math.unit(6, "feet"),
  18372. default: true
  18373. },
  18374. {
  18375. name: "Macro",
  18376. height: math.unit(72, "feet")
  18377. },
  18378. ]
  18379. ))
  18380. characterMakers.push(() => makeCharacter(
  18381. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18382. {
  18383. front: {
  18384. height: math.unit(5 + 9 / 12, "feet"),
  18385. weight: math.unit(175, "lb"),
  18386. name: "Front",
  18387. image: {
  18388. source: "./media/characters/irishfox/front.svg",
  18389. extra: 1912 / 1680,
  18390. bottom: 0.02
  18391. }
  18392. },
  18393. },
  18394. [
  18395. {
  18396. name: "Nano",
  18397. height: math.unit(1, "mm")
  18398. },
  18399. {
  18400. name: "Micro",
  18401. height: math.unit(2, "inches")
  18402. },
  18403. {
  18404. name: "Normal",
  18405. height: math.unit(5 + 9 / 12, "feet"),
  18406. default: true
  18407. },
  18408. {
  18409. name: "Macro",
  18410. height: math.unit(45, "feet")
  18411. },
  18412. ]
  18413. ))
  18414. characterMakers.push(() => makeCharacter(
  18415. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18416. {
  18417. front: {
  18418. height: math.unit(6 + 1 / 12, "feet"),
  18419. weight: math.unit(75, "lb"),
  18420. name: "Front",
  18421. image: {
  18422. source: "./media/characters/aronai-sieyes/front.svg",
  18423. extra: 1556 / 1480,
  18424. bottom: 0.015
  18425. }
  18426. },
  18427. side: {
  18428. height: math.unit(6 + 1 / 12, "feet"),
  18429. weight: math.unit(75, "lb"),
  18430. name: "Side",
  18431. image: {
  18432. source: "./media/characters/aronai-sieyes/side.svg",
  18433. extra: 1433 / 1390,
  18434. bottom: 0.0393
  18435. }
  18436. },
  18437. back: {
  18438. height: math.unit(6 + 1 / 12, "feet"),
  18439. weight: math.unit(75, "lb"),
  18440. name: "Back",
  18441. image: {
  18442. source: "./media/characters/aronai-sieyes/back.svg",
  18443. extra: 1544 / 1494,
  18444. bottom: 0.02
  18445. }
  18446. },
  18447. frontClothed: {
  18448. height: math.unit(6 + 1 / 12, "feet"),
  18449. weight: math.unit(75, "lb"),
  18450. name: "Front (Clothed)",
  18451. image: {
  18452. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18453. extra: 1582 / 1527
  18454. }
  18455. },
  18456. feral: {
  18457. height: math.unit(18, "feet"),
  18458. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18459. name: "Feral",
  18460. image: {
  18461. source: "./media/characters/aronai-sieyes/feral.svg",
  18462. extra: 1530 / 1240,
  18463. bottom: 0.035
  18464. }
  18465. },
  18466. },
  18467. [
  18468. {
  18469. name: "Micro",
  18470. height: math.unit(2, "inches")
  18471. },
  18472. {
  18473. name: "Normal",
  18474. height: math.unit(6 + 1 / 12, "feet"),
  18475. default: true
  18476. }
  18477. ]
  18478. ))
  18479. characterMakers.push(() => makeCharacter(
  18480. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18481. {
  18482. front: {
  18483. height: math.unit(12, "feet"),
  18484. weight: math.unit(410, "kg"),
  18485. name: "Front",
  18486. image: {
  18487. source: "./media/characters/xuna/front.svg",
  18488. extra: 2184 / 1980
  18489. }
  18490. },
  18491. side: {
  18492. height: math.unit(12, "feet"),
  18493. weight: math.unit(410, "kg"),
  18494. name: "Side",
  18495. image: {
  18496. source: "./media/characters/xuna/side.svg",
  18497. extra: 2184 / 1980
  18498. }
  18499. },
  18500. back: {
  18501. height: math.unit(12, "feet"),
  18502. weight: math.unit(410, "kg"),
  18503. name: "Back",
  18504. image: {
  18505. source: "./media/characters/xuna/back.svg",
  18506. extra: 2184 / 1980
  18507. }
  18508. },
  18509. },
  18510. [
  18511. {
  18512. name: "Nano glow",
  18513. height: math.unit(10, "nm")
  18514. },
  18515. {
  18516. name: "Micro floof",
  18517. height: math.unit(0.3, "m")
  18518. },
  18519. {
  18520. name: "Huggable softy boi",
  18521. height: math.unit(3.6576, "m"),
  18522. default: true
  18523. },
  18524. {
  18525. name: "Admirable floof",
  18526. height: math.unit(80, "meters")
  18527. },
  18528. {
  18529. name: "Gentle macro",
  18530. height: math.unit(300, "meters")
  18531. },
  18532. {
  18533. name: "Very careful floof",
  18534. height: math.unit(3200, "meters")
  18535. },
  18536. {
  18537. name: "The mega floof",
  18538. height: math.unit(36000, "meters")
  18539. },
  18540. {
  18541. name: "Giga-fur-Wicker",
  18542. height: math.unit(4800000, "meters")
  18543. },
  18544. {
  18545. name: "Licky world",
  18546. height: math.unit(20000000, "meters")
  18547. },
  18548. {
  18549. name: "Floofy cyan sun",
  18550. height: math.unit(1500000000, "meters")
  18551. },
  18552. {
  18553. name: "Milky Wicker",
  18554. height: math.unit(1000000000000000000000, "meters")
  18555. },
  18556. {
  18557. name: "The observing Wicker",
  18558. height: math.unit(999999999999999999999999999, "meters")
  18559. },
  18560. ]
  18561. ))
  18562. characterMakers.push(() => makeCharacter(
  18563. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18564. {
  18565. front: {
  18566. height: math.unit(5 + 9 / 12, "feet"),
  18567. weight: math.unit(150, "lb"),
  18568. name: "Front",
  18569. image: {
  18570. source: "./media/characters/arokha-sieyes/front.svg",
  18571. extra: 1425 / 1284,
  18572. bottom: 0.05
  18573. }
  18574. },
  18575. },
  18576. [
  18577. {
  18578. name: "Normal",
  18579. height: math.unit(5 + 9 / 12, "feet")
  18580. },
  18581. {
  18582. name: "Macro",
  18583. height: math.unit(30, "meters"),
  18584. default: true
  18585. },
  18586. ]
  18587. ))
  18588. characterMakers.push(() => makeCharacter(
  18589. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18590. {
  18591. front: {
  18592. height: math.unit(6, "feet"),
  18593. weight: math.unit(180, "lb"),
  18594. name: "Front",
  18595. image: {
  18596. source: "./media/characters/arokh-sieyes/front.svg",
  18597. extra: 1830 / 1769,
  18598. bottom: 0.01
  18599. }
  18600. },
  18601. },
  18602. [
  18603. {
  18604. name: "Normal",
  18605. height: math.unit(6, "feet")
  18606. },
  18607. {
  18608. name: "Macro",
  18609. height: math.unit(30, "meters"),
  18610. default: true
  18611. },
  18612. ]
  18613. ))
  18614. characterMakers.push(() => makeCharacter(
  18615. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18616. {
  18617. side: {
  18618. height: math.unit(13 + 1 / 12, "feet"),
  18619. weight: math.unit(8.5, "tonnes"),
  18620. name: "Side",
  18621. image: {
  18622. source: "./media/characters/goldeneye/side.svg",
  18623. extra: 1182 / 778,
  18624. bottom: 0.067
  18625. }
  18626. },
  18627. paw: {
  18628. height: math.unit(3.4, "feet"),
  18629. name: "Paw",
  18630. image: {
  18631. source: "./media/characters/goldeneye/paw.svg"
  18632. }
  18633. },
  18634. },
  18635. [
  18636. {
  18637. name: "Normal",
  18638. height: math.unit(13 + 1 / 12, "feet"),
  18639. default: true
  18640. },
  18641. ]
  18642. ))
  18643. characterMakers.push(() => makeCharacter(
  18644. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18645. {
  18646. front: {
  18647. height: math.unit(6 + 1 / 12, "feet"),
  18648. weight: math.unit(210, "lb"),
  18649. name: "Front",
  18650. image: {
  18651. source: "./media/characters/leonardo-lycheborne/front.svg",
  18652. extra: 390 / 365,
  18653. bottom: 0.032
  18654. }
  18655. },
  18656. side: {
  18657. height: math.unit(6 + 1 / 12, "feet"),
  18658. weight: math.unit(210, "lb"),
  18659. name: "Side",
  18660. image: {
  18661. source: "./media/characters/leonardo-lycheborne/side.svg",
  18662. extra: 390 / 365,
  18663. bottom: 0.005
  18664. }
  18665. },
  18666. back: {
  18667. height: math.unit(6 + 1 / 12, "feet"),
  18668. weight: math.unit(210, "lb"),
  18669. name: "Back",
  18670. image: {
  18671. source: "./media/characters/leonardo-lycheborne/back.svg",
  18672. extra: 392 / 366,
  18673. bottom: 0.01
  18674. }
  18675. },
  18676. hand: {
  18677. height: math.unit(1.08, "feet"),
  18678. name: "Hand",
  18679. image: {
  18680. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18681. }
  18682. },
  18683. foot: {
  18684. height: math.unit(1.32, "feet"),
  18685. name: "Foot",
  18686. image: {
  18687. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18688. }
  18689. },
  18690. were: {
  18691. height: math.unit(20, "feet"),
  18692. weight: math.unit(7800, "lb"),
  18693. name: "Were",
  18694. image: {
  18695. source: "./media/characters/leonardo-lycheborne/were.svg",
  18696. extra: 308 / 294,
  18697. bottom: 0.048
  18698. }
  18699. },
  18700. feral: {
  18701. height: math.unit(7.5, "feet"),
  18702. weight: math.unit(600, "lb"),
  18703. name: "Feral",
  18704. image: {
  18705. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18706. extra: 210 / 186,
  18707. bottom: 0.108
  18708. }
  18709. },
  18710. taur: {
  18711. height: math.unit(11, "feet"),
  18712. weight: math.unit(3300, "lb"),
  18713. name: "Taur",
  18714. image: {
  18715. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18716. extra: 320 / 303,
  18717. bottom: 0.025
  18718. }
  18719. },
  18720. barghest: {
  18721. height: math.unit(11, "feet"),
  18722. weight: math.unit(1300, "lb"),
  18723. name: "Barghest",
  18724. image: {
  18725. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18726. extra: 323 / 302,
  18727. bottom: 0.027
  18728. }
  18729. },
  18730. dick: {
  18731. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18732. name: "Dick",
  18733. image: {
  18734. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18735. }
  18736. },
  18737. dickWere: {
  18738. height: math.unit((20) / 3.8, "feet"),
  18739. name: "Dick (Were)",
  18740. image: {
  18741. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18742. }
  18743. },
  18744. },
  18745. [
  18746. {
  18747. name: "Normal",
  18748. height: math.unit(6 + 1 / 12, "feet"),
  18749. default: true
  18750. },
  18751. ]
  18752. ))
  18753. characterMakers.push(() => makeCharacter(
  18754. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18755. {
  18756. front: {
  18757. height: math.unit(10, "feet"),
  18758. weight: math.unit(350, "lb"),
  18759. name: "Front",
  18760. image: {
  18761. source: "./media/characters/jet/front.svg",
  18762. extra: 2050 / 1980,
  18763. bottom: 0.013
  18764. }
  18765. },
  18766. back: {
  18767. height: math.unit(10, "feet"),
  18768. weight: math.unit(350, "lb"),
  18769. name: "Back",
  18770. image: {
  18771. source: "./media/characters/jet/back.svg",
  18772. extra: 2050 / 1980,
  18773. bottom: 0.013
  18774. }
  18775. },
  18776. },
  18777. [
  18778. {
  18779. name: "Micro",
  18780. height: math.unit(6, "inches")
  18781. },
  18782. {
  18783. name: "Normal",
  18784. height: math.unit(10, "feet"),
  18785. default: true
  18786. },
  18787. {
  18788. name: "Macro",
  18789. height: math.unit(100, "feet")
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18795. {
  18796. front: {
  18797. height: math.unit(15, "feet"),
  18798. weight: math.unit(2800, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/tanarath/front.svg",
  18802. extra: 2392 / 2220,
  18803. bottom: 0.03
  18804. }
  18805. },
  18806. back: {
  18807. height: math.unit(15, "feet"),
  18808. weight: math.unit(2800, "lb"),
  18809. name: "Back",
  18810. image: {
  18811. source: "./media/characters/tanarath/back.svg",
  18812. extra: 2392 / 2220,
  18813. bottom: 0.03
  18814. }
  18815. },
  18816. },
  18817. [
  18818. {
  18819. name: "Normal",
  18820. height: math.unit(15, "feet"),
  18821. default: true
  18822. },
  18823. ]
  18824. ))
  18825. characterMakers.push(() => makeCharacter(
  18826. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18827. {
  18828. front: {
  18829. height: math.unit(7 + 1 / 12, "feet"),
  18830. weight: math.unit(175, "lb"),
  18831. name: "Front",
  18832. image: {
  18833. source: "./media/characters/patty-cattybatty/front.svg",
  18834. extra: 908 / 874,
  18835. bottom: 0.025
  18836. }
  18837. },
  18838. },
  18839. [
  18840. {
  18841. name: "Micro",
  18842. height: math.unit(1, "inch")
  18843. },
  18844. {
  18845. name: "Normal",
  18846. height: math.unit(7 + 1 / 12, "feet")
  18847. },
  18848. {
  18849. name: "Mini Macro",
  18850. height: math.unit(155, "feet")
  18851. },
  18852. {
  18853. name: "Macro",
  18854. height: math.unit(1077, "feet")
  18855. },
  18856. {
  18857. name: "Mega Macro",
  18858. height: math.unit(47650, "feet"),
  18859. default: true
  18860. },
  18861. {
  18862. name: "Giga Macro",
  18863. height: math.unit(440, "miles")
  18864. },
  18865. {
  18866. name: "Tera Macro",
  18867. height: math.unit(8700, "miles")
  18868. },
  18869. {
  18870. name: "Planetary Macro",
  18871. height: math.unit(32700, "miles")
  18872. },
  18873. {
  18874. name: "Solar Macro",
  18875. height: math.unit(550000, "miles")
  18876. },
  18877. {
  18878. name: "Celestial Macro",
  18879. height: math.unit(2.5, "AU")
  18880. },
  18881. ]
  18882. ))
  18883. characterMakers.push(() => makeCharacter(
  18884. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18885. {
  18886. front: {
  18887. height: math.unit(4 + 5 / 12, "feet"),
  18888. weight: math.unit(90, "lb"),
  18889. name: "Front",
  18890. image: {
  18891. source: "./media/characters/cappu/front.svg",
  18892. extra: 1247 / 1152,
  18893. bottom: 0.012
  18894. }
  18895. },
  18896. },
  18897. [
  18898. {
  18899. name: "Normal",
  18900. height: math.unit(4 + 5 / 12, "feet"),
  18901. default: true
  18902. },
  18903. ]
  18904. ))
  18905. characterMakers.push(() => makeCharacter(
  18906. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18907. {
  18908. frontDressed: {
  18909. height: math.unit(70, "cm"),
  18910. weight: math.unit(6, "kg"),
  18911. name: "Front (Dressed)",
  18912. image: {
  18913. source: "./media/characters/sebi/front-dressed.svg",
  18914. extra: 713.5 / 686.5,
  18915. bottom: 0.003
  18916. }
  18917. },
  18918. front: {
  18919. height: math.unit(70, "cm"),
  18920. weight: math.unit(5, "kg"),
  18921. name: "Front",
  18922. image: {
  18923. source: "./media/characters/sebi/front.svg",
  18924. extra: 713.5 / 686.5,
  18925. bottom: 0.003
  18926. }
  18927. }
  18928. },
  18929. [
  18930. {
  18931. name: "Normal",
  18932. height: math.unit(70, "cm"),
  18933. default: true
  18934. },
  18935. {
  18936. name: "Macro",
  18937. height: math.unit(8, "meters")
  18938. },
  18939. ]
  18940. ))
  18941. characterMakers.push(() => makeCharacter(
  18942. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18943. {
  18944. front: {
  18945. height: math.unit(6, "feet"),
  18946. weight: math.unit(150, "lb"),
  18947. name: "Front",
  18948. image: {
  18949. source: "./media/characters/typhek/front.svg",
  18950. extra: 1948 / 1929,
  18951. bottom: 0.025
  18952. }
  18953. },
  18954. side: {
  18955. height: math.unit(6, "feet"),
  18956. weight: math.unit(150, "lb"),
  18957. name: "Side",
  18958. image: {
  18959. source: "./media/characters/typhek/side.svg",
  18960. extra: 2034 / 2010,
  18961. bottom: 0.003
  18962. }
  18963. },
  18964. back: {
  18965. height: math.unit(6, "feet"),
  18966. weight: math.unit(150, "lb"),
  18967. name: "Back",
  18968. image: {
  18969. source: "./media/characters/typhek/back.svg",
  18970. extra: 2005 / 1978,
  18971. bottom: 0.004
  18972. }
  18973. },
  18974. palm: {
  18975. height: math.unit(1.2, "feet"),
  18976. name: "Palm",
  18977. image: {
  18978. source: "./media/characters/typhek/palm.svg"
  18979. }
  18980. },
  18981. fist: {
  18982. height: math.unit(1.1, "feet"),
  18983. name: "Fist",
  18984. image: {
  18985. source: "./media/characters/typhek/fist.svg"
  18986. }
  18987. },
  18988. foot: {
  18989. height: math.unit(1.57, "feet"),
  18990. name: "Foot",
  18991. image: {
  18992. source: "./media/characters/typhek/foot.svg"
  18993. }
  18994. },
  18995. sole: {
  18996. height: math.unit(2.05, "feet"),
  18997. name: "Sole",
  18998. image: {
  18999. source: "./media/characters/typhek/sole.svg"
  19000. }
  19001. },
  19002. },
  19003. [
  19004. {
  19005. name: "Macro",
  19006. height: math.unit(40, "stories"),
  19007. default: true
  19008. },
  19009. {
  19010. name: "Megamacro",
  19011. height: math.unit(1, "mile")
  19012. },
  19013. {
  19014. name: "Gigamacro",
  19015. height: math.unit(4000, "solarradii")
  19016. },
  19017. {
  19018. name: "Universal",
  19019. height: math.unit(1.1, "universes")
  19020. }
  19021. ]
  19022. ))
  19023. characterMakers.push(() => makeCharacter(
  19024. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19025. {
  19026. side: {
  19027. height: math.unit(5 + 7 / 12, "feet"),
  19028. weight: math.unit(150, "lb"),
  19029. name: "Side",
  19030. image: {
  19031. source: "./media/characters/kassy/side.svg",
  19032. extra: 1280 / 1225,
  19033. bottom: 0.002
  19034. }
  19035. },
  19036. front: {
  19037. height: math.unit(5 + 7 / 12, "feet"),
  19038. weight: math.unit(150, "lb"),
  19039. name: "Front",
  19040. image: {
  19041. source: "./media/characters/kassy/front.svg",
  19042. extra: 1280 / 1225,
  19043. bottom: 0.025
  19044. }
  19045. },
  19046. back: {
  19047. height: math.unit(5 + 7 / 12, "feet"),
  19048. weight: math.unit(150, "lb"),
  19049. name: "Back",
  19050. image: {
  19051. source: "./media/characters/kassy/back.svg",
  19052. extra: 1280 / 1225,
  19053. bottom: 0.002
  19054. }
  19055. },
  19056. foot: {
  19057. height: math.unit(1.266, "feet"),
  19058. name: "Foot",
  19059. image: {
  19060. source: "./media/characters/kassy/foot.svg"
  19061. }
  19062. },
  19063. },
  19064. [
  19065. {
  19066. name: "Normal",
  19067. height: math.unit(5 + 7 / 12, "feet")
  19068. },
  19069. {
  19070. name: "Macro",
  19071. height: math.unit(137, "feet"),
  19072. default: true
  19073. },
  19074. {
  19075. name: "Megamacro",
  19076. height: math.unit(1, "mile")
  19077. },
  19078. ]
  19079. ))
  19080. characterMakers.push(() => makeCharacter(
  19081. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19082. {
  19083. front: {
  19084. height: math.unit(6 + 1 / 12, "feet"),
  19085. weight: math.unit(200, "lb"),
  19086. name: "Front",
  19087. image: {
  19088. source: "./media/characters/neil/front.svg",
  19089. extra: 1326 / 1250,
  19090. bottom: 0.023
  19091. }
  19092. },
  19093. },
  19094. [
  19095. {
  19096. name: "Normal",
  19097. height: math.unit(6 + 1 / 12, "feet"),
  19098. default: true
  19099. },
  19100. {
  19101. name: "Macro",
  19102. height: math.unit(200, "feet")
  19103. },
  19104. ]
  19105. ))
  19106. characterMakers.push(() => makeCharacter(
  19107. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19108. {
  19109. front: {
  19110. height: math.unit(5 + 9 / 12, "feet"),
  19111. weight: math.unit(190, "lb"),
  19112. name: "Front",
  19113. image: {
  19114. source: "./media/characters/atticus/front.svg",
  19115. extra: 2934 / 2785,
  19116. bottom: 0.025
  19117. }
  19118. },
  19119. },
  19120. [
  19121. {
  19122. name: "Normal",
  19123. height: math.unit(5 + 9 / 12, "feet"),
  19124. default: true
  19125. },
  19126. {
  19127. name: "Macro",
  19128. height: math.unit(180, "feet")
  19129. },
  19130. ]
  19131. ))
  19132. characterMakers.push(() => makeCharacter(
  19133. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19134. {
  19135. side: {
  19136. height: math.unit(9, "feet"),
  19137. weight: math.unit(650, "lb"),
  19138. name: "Side",
  19139. image: {
  19140. source: "./media/characters/milo/side.svg",
  19141. extra: 2644 / 2310,
  19142. bottom: 0.032
  19143. }
  19144. },
  19145. },
  19146. [
  19147. {
  19148. name: "Normal",
  19149. height: math.unit(9, "feet"),
  19150. default: true
  19151. },
  19152. {
  19153. name: "Macro",
  19154. height: math.unit(300, "feet")
  19155. },
  19156. ]
  19157. ))
  19158. characterMakers.push(() => makeCharacter(
  19159. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19160. {
  19161. side: {
  19162. height: math.unit(8, "meters"),
  19163. weight: math.unit(90000, "kg"),
  19164. name: "Side",
  19165. image: {
  19166. source: "./media/characters/ijzer/side.svg",
  19167. extra: 2756 / 1600,
  19168. bottom: 0.01
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Small",
  19175. height: math.unit(3, "meters")
  19176. },
  19177. {
  19178. name: "Normal",
  19179. height: math.unit(8, "meters"),
  19180. default: true
  19181. },
  19182. {
  19183. name: "Normal+",
  19184. height: math.unit(10, "meters")
  19185. },
  19186. {
  19187. name: "Bigger",
  19188. height: math.unit(24, "meters")
  19189. },
  19190. {
  19191. name: "Huge",
  19192. height: math.unit(80, "meters")
  19193. },
  19194. ]
  19195. ))
  19196. characterMakers.push(() => makeCharacter(
  19197. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19198. {
  19199. front: {
  19200. height: math.unit(6 + 2 / 12, "feet"),
  19201. weight: math.unit(153, "lb"),
  19202. name: "Front",
  19203. image: {
  19204. source: "./media/characters/luca-cervicum/front.svg",
  19205. extra: 370 / 327,
  19206. bottom: 0.015
  19207. }
  19208. },
  19209. back: {
  19210. height: math.unit(6 + 2 / 12, "feet"),
  19211. weight: math.unit(153, "lb"),
  19212. name: "Back",
  19213. image: {
  19214. source: "./media/characters/luca-cervicum/back.svg",
  19215. extra: 367 / 333,
  19216. bottom: 0.005
  19217. }
  19218. },
  19219. frontGear: {
  19220. height: math.unit(6 + 2 / 12, "feet"),
  19221. weight: math.unit(173, "lb"),
  19222. name: "Front (Gear)",
  19223. image: {
  19224. source: "./media/characters/luca-cervicum/front-gear.svg",
  19225. extra: 377 / 333,
  19226. bottom: 0.006
  19227. }
  19228. },
  19229. },
  19230. [
  19231. {
  19232. name: "Normal",
  19233. height: math.unit(6 + 2 / 12, "feet"),
  19234. default: true
  19235. },
  19236. ]
  19237. ))
  19238. characterMakers.push(() => makeCharacter(
  19239. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19240. {
  19241. front: {
  19242. height: math.unit(6 + 1 / 12, "feet"),
  19243. weight: math.unit(304, "lb"),
  19244. name: "Front",
  19245. image: {
  19246. source: "./media/characters/oliver/front.svg",
  19247. extra: 157 / 143,
  19248. bottom: 0.08
  19249. }
  19250. },
  19251. },
  19252. [
  19253. {
  19254. name: "Normal",
  19255. height: math.unit(6 + 1 / 12, "feet"),
  19256. default: true
  19257. },
  19258. ]
  19259. ))
  19260. characterMakers.push(() => makeCharacter(
  19261. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19262. {
  19263. front: {
  19264. height: math.unit(5 + 7 / 12, "feet"),
  19265. weight: math.unit(140, "lb"),
  19266. name: "Front",
  19267. image: {
  19268. source: "./media/characters/shane/front.svg",
  19269. extra: 304 / 289,
  19270. bottom: 0.005
  19271. }
  19272. },
  19273. },
  19274. [
  19275. {
  19276. name: "Normal",
  19277. height: math.unit(5 + 7 / 12, "feet"),
  19278. default: true
  19279. },
  19280. ]
  19281. ))
  19282. characterMakers.push(() => makeCharacter(
  19283. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19284. {
  19285. front: {
  19286. height: math.unit(5 + 9 / 12, "feet"),
  19287. weight: math.unit(178, "lb"),
  19288. name: "Front",
  19289. image: {
  19290. source: "./media/characters/shin/front.svg",
  19291. extra: 159 / 151,
  19292. bottom: 0.015
  19293. }
  19294. },
  19295. },
  19296. [
  19297. {
  19298. name: "Normal",
  19299. height: math.unit(5 + 9 / 12, "feet"),
  19300. default: true
  19301. },
  19302. ]
  19303. ))
  19304. characterMakers.push(() => makeCharacter(
  19305. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19306. {
  19307. front: {
  19308. height: math.unit(5 + 10 / 12, "feet"),
  19309. weight: math.unit(168, "lb"),
  19310. name: "Front",
  19311. image: {
  19312. source: "./media/characters/xerxes/front.svg",
  19313. extra: 282 / 260,
  19314. bottom: 0.045
  19315. }
  19316. },
  19317. },
  19318. [
  19319. {
  19320. name: "Normal",
  19321. height: math.unit(5 + 10 / 12, "feet"),
  19322. default: true
  19323. },
  19324. ]
  19325. ))
  19326. characterMakers.push(() => makeCharacter(
  19327. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19328. {
  19329. front: {
  19330. height: math.unit(6 + 7 / 12, "feet"),
  19331. weight: math.unit(208, "lb"),
  19332. name: "Front",
  19333. image: {
  19334. source: "./media/characters/chaska/front.svg",
  19335. extra: 332 / 319,
  19336. bottom: 0.015
  19337. }
  19338. },
  19339. },
  19340. [
  19341. {
  19342. name: "Normal",
  19343. height: math.unit(6 + 7 / 12, "feet"),
  19344. default: true
  19345. },
  19346. ]
  19347. ))
  19348. characterMakers.push(() => makeCharacter(
  19349. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19350. {
  19351. front: {
  19352. height: math.unit(5 + 8 / 12, "feet"),
  19353. weight: math.unit(208, "lb"),
  19354. name: "Front",
  19355. image: {
  19356. source: "./media/characters/enuk/front.svg",
  19357. extra: 437 / 406,
  19358. bottom: 0.02
  19359. }
  19360. },
  19361. },
  19362. [
  19363. {
  19364. name: "Normal",
  19365. height: math.unit(5 + 8 / 12, "feet"),
  19366. default: true
  19367. },
  19368. ]
  19369. ))
  19370. characterMakers.push(() => makeCharacter(
  19371. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19372. {
  19373. front: {
  19374. height: math.unit(5 + 10 / 12, "feet"),
  19375. weight: math.unit(252, "lb"),
  19376. name: "Front",
  19377. image: {
  19378. source: "./media/characters/bruun/front.svg",
  19379. extra: 197 / 187,
  19380. bottom: 0.012
  19381. }
  19382. },
  19383. },
  19384. [
  19385. {
  19386. name: "Normal",
  19387. height: math.unit(5 + 10 / 12, "feet"),
  19388. default: true
  19389. },
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19394. {
  19395. front: {
  19396. height: math.unit(6 + 10 / 12, "feet"),
  19397. weight: math.unit(255, "lb"),
  19398. name: "Front",
  19399. image: {
  19400. source: "./media/characters/alexeev/front.svg",
  19401. extra: 213 / 200,
  19402. bottom: 0.05
  19403. }
  19404. },
  19405. },
  19406. [
  19407. {
  19408. name: "Normal",
  19409. height: math.unit(6 + 10 / 12, "feet"),
  19410. default: true
  19411. },
  19412. ]
  19413. ))
  19414. characterMakers.push(() => makeCharacter(
  19415. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19416. {
  19417. front: {
  19418. height: math.unit(2 + 8 / 12, "feet"),
  19419. weight: math.unit(22, "lb"),
  19420. name: "Front",
  19421. image: {
  19422. source: "./media/characters/evelyn/front.svg",
  19423. extra: 208 / 180
  19424. }
  19425. },
  19426. },
  19427. [
  19428. {
  19429. name: "Normal",
  19430. height: math.unit(2 + 8 / 12, "feet"),
  19431. default: true
  19432. },
  19433. ]
  19434. ))
  19435. characterMakers.push(() => makeCharacter(
  19436. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19437. {
  19438. front: {
  19439. height: math.unit(5 + 9 / 12, "feet"),
  19440. weight: math.unit(139, "lb"),
  19441. name: "Front",
  19442. image: {
  19443. source: "./media/characters/inca/front.svg",
  19444. extra: 294 / 291,
  19445. bottom: 0.03
  19446. }
  19447. },
  19448. },
  19449. [
  19450. {
  19451. name: "Normal",
  19452. height: math.unit(5 + 9 / 12, "feet"),
  19453. default: true
  19454. },
  19455. ]
  19456. ))
  19457. characterMakers.push(() => makeCharacter(
  19458. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19459. {
  19460. front: {
  19461. height: math.unit(5 + 1 / 12, "feet"),
  19462. weight: math.unit(84, "lb"),
  19463. name: "Front",
  19464. image: {
  19465. source: "./media/characters/magdalene/front.svg",
  19466. extra: 293 / 273
  19467. }
  19468. },
  19469. },
  19470. [
  19471. {
  19472. name: "Normal",
  19473. height: math.unit(5 + 1 / 12, "feet"),
  19474. default: true
  19475. },
  19476. ]
  19477. ))
  19478. characterMakers.push(() => makeCharacter(
  19479. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19480. {
  19481. front: {
  19482. height: math.unit(6 + 3 / 12, "feet"),
  19483. weight: math.unit(185, "lb"),
  19484. name: "Front",
  19485. image: {
  19486. source: "./media/characters/mera/front.svg",
  19487. extra: 291 / 277,
  19488. bottom: 0.03
  19489. }
  19490. },
  19491. },
  19492. [
  19493. {
  19494. name: "Normal",
  19495. height: math.unit(6 + 3 / 12, "feet"),
  19496. default: true
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19502. {
  19503. front: {
  19504. height: math.unit(6 + 7 / 12, "feet"),
  19505. weight: math.unit(160, "lb"),
  19506. name: "Front",
  19507. image: {
  19508. source: "./media/characters/ceres/front.svg",
  19509. extra: 1023 / 950,
  19510. bottom: 0.027
  19511. }
  19512. },
  19513. back: {
  19514. height: math.unit(6 + 7 / 12, "feet"),
  19515. weight: math.unit(160, "lb"),
  19516. name: "Back",
  19517. image: {
  19518. source: "./media/characters/ceres/back.svg",
  19519. extra: 1023 / 950
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Normal",
  19526. height: math.unit(6 + 7 / 12, "feet"),
  19527. default: true
  19528. },
  19529. ]
  19530. ))
  19531. characterMakers.push(() => makeCharacter(
  19532. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19533. {
  19534. front: {
  19535. height: math.unit(5 + 10 / 12, "feet"),
  19536. weight: math.unit(150, "lb"),
  19537. name: "Front",
  19538. image: {
  19539. source: "./media/characters/kris/front.svg",
  19540. extra: 885 / 803,
  19541. bottom: 0.03
  19542. }
  19543. },
  19544. },
  19545. [
  19546. {
  19547. name: "Normal",
  19548. height: math.unit(5 + 10 / 12, "feet"),
  19549. default: true
  19550. },
  19551. ]
  19552. ))
  19553. characterMakers.push(() => makeCharacter(
  19554. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19555. {
  19556. front: {
  19557. height: math.unit(7, "feet"),
  19558. weight: math.unit(120, "kg"),
  19559. name: "Front",
  19560. image: {
  19561. source: "./media/characters/taluthus/front.svg",
  19562. extra: 903 / 833,
  19563. bottom: 0.015
  19564. }
  19565. },
  19566. },
  19567. [
  19568. {
  19569. name: "Normal",
  19570. height: math.unit(7, "feet"),
  19571. default: true
  19572. },
  19573. {
  19574. name: "Macro",
  19575. height: math.unit(300, "feet")
  19576. },
  19577. ]
  19578. ))
  19579. characterMakers.push(() => makeCharacter(
  19580. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19581. {
  19582. front: {
  19583. height: math.unit(5 + 9 / 12, "feet"),
  19584. weight: math.unit(145, "lb"),
  19585. name: "Front",
  19586. image: {
  19587. source: "./media/characters/dawn/front.svg",
  19588. extra: 2094 / 2016,
  19589. bottom: 0.025
  19590. }
  19591. },
  19592. back: {
  19593. height: math.unit(5 + 9 / 12, "feet"),
  19594. weight: math.unit(160, "lb"),
  19595. name: "Back",
  19596. image: {
  19597. source: "./media/characters/dawn/back.svg",
  19598. extra: 2112 / 2080,
  19599. bottom: 0.005
  19600. }
  19601. },
  19602. },
  19603. [
  19604. {
  19605. name: "Normal",
  19606. height: math.unit(6 + 7 / 12, "feet"),
  19607. default: true
  19608. },
  19609. ]
  19610. ))
  19611. characterMakers.push(() => makeCharacter(
  19612. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19613. {
  19614. anthro: {
  19615. height: math.unit(8 + 3 / 12, "feet"),
  19616. weight: math.unit(450, "lb"),
  19617. name: "Anthro",
  19618. image: {
  19619. source: "./media/characters/arador/anthro.svg",
  19620. extra: 1835 / 1718,
  19621. bottom: 0.025
  19622. }
  19623. },
  19624. feral: {
  19625. height: math.unit(4, "feet"),
  19626. weight: math.unit(200, "lb"),
  19627. name: "Feral",
  19628. image: {
  19629. source: "./media/characters/arador/feral.svg",
  19630. extra: 1683 / 1514,
  19631. bottom: 0.07
  19632. }
  19633. },
  19634. },
  19635. [
  19636. {
  19637. name: "Normal",
  19638. height: math.unit(8 + 3 / 12, "feet")
  19639. },
  19640. {
  19641. name: "Macro",
  19642. height: math.unit(82.5, "feet"),
  19643. default: true
  19644. },
  19645. ]
  19646. ))
  19647. characterMakers.push(() => makeCharacter(
  19648. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19649. {
  19650. front: {
  19651. height: math.unit(5 + 10 / 12, "feet"),
  19652. weight: math.unit(125, "lb"),
  19653. name: "Front",
  19654. image: {
  19655. source: "./media/characters/dharsi/front.svg",
  19656. extra: 716 / 630,
  19657. bottom: 0.035
  19658. }
  19659. },
  19660. },
  19661. [
  19662. {
  19663. name: "Nano",
  19664. height: math.unit(100, "nm")
  19665. },
  19666. {
  19667. name: "Micro",
  19668. height: math.unit(2, "inches")
  19669. },
  19670. {
  19671. name: "Normal",
  19672. height: math.unit(5 + 10 / 12, "feet"),
  19673. default: true
  19674. },
  19675. {
  19676. name: "Macro",
  19677. height: math.unit(1000, "feet")
  19678. },
  19679. {
  19680. name: "Megamacro",
  19681. height: math.unit(10, "miles")
  19682. },
  19683. {
  19684. name: "Gigamacro",
  19685. height: math.unit(3000, "miles")
  19686. },
  19687. {
  19688. name: "Teramacro",
  19689. height: math.unit(500000, "miles")
  19690. },
  19691. {
  19692. name: "Teramacro+",
  19693. height: math.unit(30, "galaxies")
  19694. },
  19695. ]
  19696. ))
  19697. characterMakers.push(() => makeCharacter(
  19698. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19699. {
  19700. front: {
  19701. height: math.unit(6, "feet"),
  19702. weight: math.unit(150, "lb"),
  19703. name: "Front",
  19704. image: {
  19705. source: "./media/characters/deathy/front.svg",
  19706. extra: 1552 / 1463,
  19707. bottom: 0.025
  19708. }
  19709. },
  19710. side: {
  19711. height: math.unit(6, "feet"),
  19712. weight: math.unit(150, "lb"),
  19713. name: "Side",
  19714. image: {
  19715. source: "./media/characters/deathy/side.svg",
  19716. extra: 1604 / 1455,
  19717. bottom: 0.025
  19718. }
  19719. },
  19720. back: {
  19721. height: math.unit(6, "feet"),
  19722. weight: math.unit(150, "lb"),
  19723. name: "Back",
  19724. image: {
  19725. source: "./media/characters/deathy/back.svg",
  19726. extra: 1580 / 1463,
  19727. bottom: 0.005
  19728. }
  19729. },
  19730. },
  19731. [
  19732. {
  19733. name: "Micro",
  19734. height: math.unit(5, "millimeters")
  19735. },
  19736. {
  19737. name: "Normal",
  19738. height: math.unit(6 + 5 / 12, "feet"),
  19739. default: true
  19740. },
  19741. ]
  19742. ))
  19743. characterMakers.push(() => makeCharacter(
  19744. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19745. {
  19746. front: {
  19747. height: math.unit(16, "feet"),
  19748. weight: math.unit(4000, "lb"),
  19749. name: "Front",
  19750. image: {
  19751. source: "./media/characters/juniper/front.svg",
  19752. bottom: 0.04
  19753. }
  19754. },
  19755. },
  19756. [
  19757. {
  19758. name: "Normal",
  19759. height: math.unit(16, "feet"),
  19760. default: true
  19761. },
  19762. ]
  19763. ))
  19764. characterMakers.push(() => makeCharacter(
  19765. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19766. {
  19767. front: {
  19768. height: math.unit(6, "feet"),
  19769. weight: math.unit(150, "lb"),
  19770. name: "Front",
  19771. image: {
  19772. source: "./media/characters/hipster/front.svg",
  19773. extra: 1312 / 1209,
  19774. bottom: 0.025
  19775. }
  19776. },
  19777. back: {
  19778. height: math.unit(6, "feet"),
  19779. weight: math.unit(150, "lb"),
  19780. name: "Back",
  19781. image: {
  19782. source: "./media/characters/hipster/back.svg",
  19783. extra: 1281 / 1196,
  19784. bottom: 0.01
  19785. }
  19786. },
  19787. },
  19788. [
  19789. {
  19790. name: "Micro",
  19791. height: math.unit(1, "mm")
  19792. },
  19793. {
  19794. name: "Normal",
  19795. height: math.unit(4, "inches"),
  19796. default: true
  19797. },
  19798. {
  19799. name: "Macro",
  19800. height: math.unit(500, "feet")
  19801. },
  19802. {
  19803. name: "Megamacro",
  19804. height: math.unit(1000, "miles")
  19805. },
  19806. ]
  19807. ))
  19808. characterMakers.push(() => makeCharacter(
  19809. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19810. {
  19811. front: {
  19812. height: math.unit(6, "feet"),
  19813. weight: math.unit(150, "lb"),
  19814. name: "Front",
  19815. image: {
  19816. source: "./media/characters/tendirmuldr/front.svg",
  19817. extra: 1878 / 1772,
  19818. bottom: 0.015
  19819. }
  19820. },
  19821. },
  19822. [
  19823. {
  19824. name: "Megamacro",
  19825. height: math.unit(1500, "miles"),
  19826. default: true
  19827. },
  19828. ]
  19829. ))
  19830. characterMakers.push(() => makeCharacter(
  19831. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19832. {
  19833. front: {
  19834. height: math.unit(14, "feet"),
  19835. weight: math.unit(12000, "lb"),
  19836. name: "Front",
  19837. image: {
  19838. source: "./media/characters/mort/front.svg",
  19839. extra: 365 / 318,
  19840. bottom: 0.01
  19841. }
  19842. },
  19843. side: {
  19844. height: math.unit(14, "feet"),
  19845. weight: math.unit(12000, "lb"),
  19846. name: "Side",
  19847. image: {
  19848. source: "./media/characters/mort/side.svg",
  19849. extra: 365 / 318,
  19850. bottom: 0.052
  19851. },
  19852. default: true
  19853. },
  19854. back: {
  19855. height: math.unit(14, "feet"),
  19856. weight: math.unit(12000, "lb"),
  19857. name: "Back",
  19858. image: {
  19859. source: "./media/characters/mort/back.svg",
  19860. extra: 371 / 332,
  19861. bottom: 0.18
  19862. }
  19863. },
  19864. },
  19865. [
  19866. {
  19867. name: "Normal",
  19868. height: math.unit(14, "feet"),
  19869. default: true
  19870. },
  19871. ]
  19872. ))
  19873. characterMakers.push(() => makeCharacter(
  19874. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19875. {
  19876. front: {
  19877. height: math.unit(8, "feet"),
  19878. weight: math.unit(1, "ton"),
  19879. name: "Front",
  19880. image: {
  19881. source: "./media/characters/lycoa/front.svg",
  19882. extra: 1875 / 1789,
  19883. bottom: 0.022
  19884. }
  19885. },
  19886. back: {
  19887. height: math.unit(8, "feet"),
  19888. weight: math.unit(1, "ton"),
  19889. name: "Back",
  19890. image: {
  19891. source: "./media/characters/lycoa/back.svg",
  19892. extra: 1835 / 1781,
  19893. bottom: 0.03
  19894. }
  19895. },
  19896. head: {
  19897. height: math.unit(2.1, "feet"),
  19898. name: "Head",
  19899. image: {
  19900. source: "./media/characters/lycoa/head.svg"
  19901. }
  19902. },
  19903. tailmaw: {
  19904. height: math.unit(1.9, "feet"),
  19905. name: "Tailmaw",
  19906. image: {
  19907. source: "./media/characters/lycoa/tailmaw.svg"
  19908. }
  19909. },
  19910. tentacles: {
  19911. height: math.unit(2.1, "feet"),
  19912. name: "Tentacles",
  19913. image: {
  19914. source: "./media/characters/lycoa/tentacles.svg"
  19915. }
  19916. },
  19917. dick: {
  19918. height: math.unit(1.73, "feet"),
  19919. name: "Dick",
  19920. image: {
  19921. source: "./media/characters/lycoa/dick.svg"
  19922. }
  19923. },
  19924. },
  19925. [
  19926. {
  19927. name: "Normal",
  19928. height: math.unit(8, "feet"),
  19929. default: true
  19930. },
  19931. {
  19932. name: "Macro",
  19933. height: math.unit(30, "feet")
  19934. },
  19935. ]
  19936. ))
  19937. characterMakers.push(() => makeCharacter(
  19938. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19939. {
  19940. front: {
  19941. height: math.unit(4 + 2 / 12, "feet"),
  19942. weight: math.unit(70, "lb"),
  19943. name: "Front",
  19944. image: {
  19945. source: "./media/characters/naldara/front.svg",
  19946. extra: 841 / 720,
  19947. bottom: 0.04
  19948. }
  19949. },
  19950. naga: {
  19951. height: math.unit(23, "feet"),
  19952. weight: math.unit(15000, "kg"),
  19953. name: "Naga",
  19954. image: {
  19955. source: "./media/characters/naldara/naga.svg",
  19956. extra: 3290 / 2959,
  19957. bottom: 124 / 3432
  19958. }
  19959. },
  19960. },
  19961. [
  19962. {
  19963. name: "Normal",
  19964. height: math.unit(4 + 2 / 12, "feet"),
  19965. default: true
  19966. },
  19967. ]
  19968. ))
  19969. characterMakers.push(() => makeCharacter(
  19970. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19971. {
  19972. front: {
  19973. height: math.unit(13 + 7 / 12, "feet"),
  19974. weight: math.unit(1500, "lb"),
  19975. name: "Front",
  19976. image: {
  19977. source: "./media/characters/briar/front.svg",
  19978. extra: 626 / 596,
  19979. bottom: 0.08
  19980. }
  19981. },
  19982. },
  19983. [
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(13 + 7 / 12, "feet"),
  19987. default: true
  19988. },
  19989. ]
  19990. ))
  19991. characterMakers.push(() => makeCharacter(
  19992. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19993. {
  19994. side: {
  19995. height: math.unit(10, "feet"),
  19996. weight: math.unit(500, "lb"),
  19997. name: "Side",
  19998. image: {
  19999. source: "./media/characters/vanguard/side.svg",
  20000. extra: 502 / 425,
  20001. bottom: 0.087
  20002. }
  20003. },
  20004. },
  20005. [
  20006. {
  20007. name: "Normal",
  20008. height: math.unit(10, "feet"),
  20009. default: true
  20010. },
  20011. ]
  20012. ))
  20013. characterMakers.push(() => makeCharacter(
  20014. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20015. {
  20016. front: {
  20017. height: math.unit(7.5, "feet"),
  20018. weight: math.unit(2, "lb"),
  20019. name: "Front",
  20020. image: {
  20021. source: "./media/characters/artemis/front.svg",
  20022. extra: 1192 / 1075,
  20023. bottom: 0.07
  20024. }
  20025. },
  20026. frontNsfw: {
  20027. height: math.unit(7.5, "feet"),
  20028. weight: math.unit(2, "lb"),
  20029. name: "Front (NSFW)",
  20030. image: {
  20031. source: "./media/characters/artemis/front-nsfw.svg",
  20032. extra: 1192 / 1075,
  20033. bottom: 0.07
  20034. }
  20035. },
  20036. frontNsfwer: {
  20037. height: math.unit(7.5, "feet"),
  20038. weight: math.unit(2, "lb"),
  20039. name: "Front (NSFW-er)",
  20040. image: {
  20041. source: "./media/characters/artemis/front-nsfwer.svg",
  20042. extra: 1192 / 1075,
  20043. bottom: 0.07
  20044. }
  20045. },
  20046. side: {
  20047. height: math.unit(7.5, "feet"),
  20048. weight: math.unit(2, "lb"),
  20049. name: "Side",
  20050. image: {
  20051. source: "./media/characters/artemis/side.svg",
  20052. extra: 1192 / 1075,
  20053. bottom: 0.07
  20054. }
  20055. },
  20056. sideNsfw: {
  20057. height: math.unit(7.5, "feet"),
  20058. weight: math.unit(2, "lb"),
  20059. name: "Side (NSFW)",
  20060. image: {
  20061. source: "./media/characters/artemis/side-nsfw.svg",
  20062. extra: 1192 / 1075,
  20063. bottom: 0.07
  20064. }
  20065. },
  20066. sideNsfwer: {
  20067. height: math.unit(7.5, "feet"),
  20068. weight: math.unit(2, "lb"),
  20069. name: "Side (NSFW-er)",
  20070. image: {
  20071. source: "./media/characters/artemis/side-nsfwer.svg",
  20072. extra: 1192 / 1075,
  20073. bottom: 0.07
  20074. }
  20075. },
  20076. maw: {
  20077. height: math.unit(1.1, "feet"),
  20078. name: "Maw",
  20079. image: {
  20080. source: "./media/characters/artemis/maw.svg"
  20081. }
  20082. },
  20083. stomach: {
  20084. height: math.unit(0.95, "feet"),
  20085. name: "Stomach",
  20086. image: {
  20087. source: "./media/characters/artemis/stomach.svg"
  20088. }
  20089. },
  20090. dickCanine: {
  20091. height: math.unit(1, "feet"),
  20092. name: "Dick (Canine)",
  20093. image: {
  20094. source: "./media/characters/artemis/dick-canine.svg"
  20095. }
  20096. },
  20097. dickEquine: {
  20098. height: math.unit(0.85, "feet"),
  20099. name: "Dick (Equine)",
  20100. image: {
  20101. source: "./media/characters/artemis/dick-equine.svg"
  20102. }
  20103. },
  20104. dickExotic: {
  20105. height: math.unit(0.85, "feet"),
  20106. name: "Dick (Exotic)",
  20107. image: {
  20108. source: "./media/characters/artemis/dick-exotic.svg"
  20109. }
  20110. },
  20111. },
  20112. [
  20113. {
  20114. name: "Normal",
  20115. height: math.unit(7.5, "feet"),
  20116. default: true
  20117. },
  20118. {
  20119. name: "Enlarged",
  20120. height: math.unit(12, "feet")
  20121. },
  20122. ]
  20123. ))
  20124. characterMakers.push(() => makeCharacter(
  20125. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20126. {
  20127. front: {
  20128. height: math.unit(5 + 3 / 12, "feet"),
  20129. weight: math.unit(160, "lb"),
  20130. name: "Front",
  20131. image: {
  20132. source: "./media/characters/kira/front.svg",
  20133. extra: 906 / 786,
  20134. bottom: 0.01
  20135. }
  20136. },
  20137. back: {
  20138. height: math.unit(5 + 3 / 12, "feet"),
  20139. weight: math.unit(160, "lb"),
  20140. name: "Back",
  20141. image: {
  20142. source: "./media/characters/kira/back.svg",
  20143. extra: 882 / 757,
  20144. bottom: 0.005
  20145. }
  20146. },
  20147. frontDressed: {
  20148. height: math.unit(5 + 3 / 12, "feet"),
  20149. weight: math.unit(160, "lb"),
  20150. name: "Front (Dressed)",
  20151. image: {
  20152. source: "./media/characters/kira/front-dressed.svg",
  20153. extra: 906 / 786,
  20154. bottom: 0.01
  20155. }
  20156. },
  20157. beans: {
  20158. height: math.unit(0.92, "feet"),
  20159. name: "Beans",
  20160. image: {
  20161. source: "./media/characters/kira/beans.svg"
  20162. }
  20163. },
  20164. },
  20165. [
  20166. {
  20167. name: "Normal",
  20168. height: math.unit(5 + 3 / 12, "feet"),
  20169. default: true
  20170. },
  20171. ]
  20172. ))
  20173. characterMakers.push(() => makeCharacter(
  20174. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20175. {
  20176. front: {
  20177. height: math.unit(5 + 4 / 12, "feet"),
  20178. weight: math.unit(145, "lb"),
  20179. name: "Front",
  20180. image: {
  20181. source: "./media/characters/scramble/front.svg",
  20182. extra: 763 / 727,
  20183. bottom: 0.05
  20184. }
  20185. },
  20186. back: {
  20187. height: math.unit(5 + 4 / 12, "feet"),
  20188. weight: math.unit(145, "lb"),
  20189. name: "Back",
  20190. image: {
  20191. source: "./media/characters/scramble/back.svg",
  20192. extra: 826 / 737,
  20193. bottom: 0.002
  20194. }
  20195. },
  20196. },
  20197. [
  20198. {
  20199. name: "Normal",
  20200. height: math.unit(5 + 4 / 12, "feet"),
  20201. default: true
  20202. },
  20203. ]
  20204. ))
  20205. characterMakers.push(() => makeCharacter(
  20206. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20207. {
  20208. side: {
  20209. height: math.unit(6 + 2 / 12, "feet"),
  20210. weight: math.unit(190, "lb"),
  20211. name: "Side",
  20212. image: {
  20213. source: "./media/characters/biscuit/side.svg",
  20214. extra: 858 / 791,
  20215. bottom: 0.044
  20216. }
  20217. },
  20218. },
  20219. [
  20220. {
  20221. name: "Normal",
  20222. height: math.unit(6 + 2 / 12, "feet"),
  20223. default: true
  20224. },
  20225. ]
  20226. ))
  20227. characterMakers.push(() => makeCharacter(
  20228. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20229. {
  20230. front: {
  20231. height: math.unit(5 + 2 / 12, "feet"),
  20232. weight: math.unit(120, "lb"),
  20233. name: "Front",
  20234. image: {
  20235. source: "./media/characters/poffin/front.svg",
  20236. extra: 786 / 680,
  20237. bottom: 0.005
  20238. }
  20239. },
  20240. },
  20241. [
  20242. {
  20243. name: "Normal",
  20244. height: math.unit(5 + 2 / 12, "feet"),
  20245. default: true
  20246. },
  20247. ]
  20248. ))
  20249. characterMakers.push(() => makeCharacter(
  20250. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20251. {
  20252. front: {
  20253. height: math.unit(6 + 3 / 12, "feet"),
  20254. weight: math.unit(519, "lb"),
  20255. name: "Front",
  20256. image: {
  20257. source: "./media/characters/dhari/front.svg",
  20258. extra: 1048 / 946,
  20259. bottom: 0.015
  20260. }
  20261. },
  20262. back: {
  20263. height: math.unit(6 + 3 / 12, "feet"),
  20264. weight: math.unit(519, "lb"),
  20265. name: "Back",
  20266. image: {
  20267. source: "./media/characters/dhari/back.svg",
  20268. extra: 1048 / 931,
  20269. bottom: 0.005
  20270. }
  20271. },
  20272. frontDressed: {
  20273. height: math.unit(6 + 3 / 12, "feet"),
  20274. weight: math.unit(519, "lb"),
  20275. name: "Front (Dressed)",
  20276. image: {
  20277. source: "./media/characters/dhari/front-dressed.svg",
  20278. extra: 1713 / 1546,
  20279. bottom: 0.02
  20280. }
  20281. },
  20282. backDressed: {
  20283. height: math.unit(6 + 3 / 12, "feet"),
  20284. weight: math.unit(519, "lb"),
  20285. name: "Back (Dressed)",
  20286. image: {
  20287. source: "./media/characters/dhari/back-dressed.svg",
  20288. extra: 1699 / 1537,
  20289. bottom: 0.01
  20290. }
  20291. },
  20292. maw: {
  20293. height: math.unit(0.95, "feet"),
  20294. name: "Maw",
  20295. image: {
  20296. source: "./media/characters/dhari/maw.svg"
  20297. }
  20298. },
  20299. wereFront: {
  20300. height: math.unit(12 + 8 / 12, "feet"),
  20301. weight: math.unit(4000, "lb"),
  20302. name: "Front (Were)",
  20303. image: {
  20304. source: "./media/characters/dhari/were-front.svg",
  20305. extra: 1065 / 969,
  20306. bottom: 0.015
  20307. }
  20308. },
  20309. wereBack: {
  20310. height: math.unit(12 + 8 / 12, "feet"),
  20311. weight: math.unit(4000, "lb"),
  20312. name: "Back (Were)",
  20313. image: {
  20314. source: "./media/characters/dhari/were-back.svg",
  20315. extra: 1065 / 969,
  20316. bottom: 0.012
  20317. }
  20318. },
  20319. wereMaw: {
  20320. height: math.unit(0.625, "meters"),
  20321. name: "Maw (Were)",
  20322. image: {
  20323. source: "./media/characters/dhari/were-maw.svg"
  20324. }
  20325. },
  20326. },
  20327. [
  20328. {
  20329. name: "Normal",
  20330. height: math.unit(6 + 3 / 12, "feet"),
  20331. default: true
  20332. },
  20333. ]
  20334. ))
  20335. characterMakers.push(() => makeCharacter(
  20336. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20337. {
  20338. anthro: {
  20339. height: math.unit(5 + 7 / 12, "feet"),
  20340. weight: math.unit(175, "lb"),
  20341. name: "Anthro",
  20342. image: {
  20343. source: "./media/characters/rena-dyne/anthro.svg",
  20344. extra: 1849 / 1785,
  20345. bottom: 0.005
  20346. }
  20347. },
  20348. taur: {
  20349. height: math.unit(15 + 6 / 12, "feet"),
  20350. weight: math.unit(8000, "lb"),
  20351. name: "Taur",
  20352. image: {
  20353. source: "./media/characters/rena-dyne/taur.svg",
  20354. extra: 2315 / 2234,
  20355. bottom: 0.033
  20356. }
  20357. },
  20358. },
  20359. [
  20360. {
  20361. name: "Normal",
  20362. height: math.unit(5 + 7 / 12, "feet"),
  20363. default: true
  20364. },
  20365. ]
  20366. ))
  20367. characterMakers.push(() => makeCharacter(
  20368. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20369. {
  20370. front: {
  20371. height: math.unit(8, "feet"),
  20372. weight: math.unit(600, "lb"),
  20373. name: "Front",
  20374. image: {
  20375. source: "./media/characters/weremeep/front.svg",
  20376. extra: 967 / 862,
  20377. bottom: 0.01
  20378. }
  20379. },
  20380. },
  20381. [
  20382. {
  20383. name: "Normal",
  20384. height: math.unit(8, "feet"),
  20385. default: true
  20386. },
  20387. {
  20388. name: "Lorg",
  20389. height: math.unit(12, "feet")
  20390. },
  20391. {
  20392. name: "Oh Lawd She Comin'",
  20393. height: math.unit(20, "feet")
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20399. {
  20400. front: {
  20401. height: math.unit(4, "feet"),
  20402. weight: math.unit(90, "lb"),
  20403. name: "Front",
  20404. image: {
  20405. source: "./media/characters/reza/front.svg",
  20406. extra: 1183 / 1111,
  20407. bottom: 0.017
  20408. }
  20409. },
  20410. back: {
  20411. height: math.unit(4, "feet"),
  20412. weight: math.unit(90, "lb"),
  20413. name: "Back",
  20414. image: {
  20415. source: "./media/characters/reza/back.svg",
  20416. extra: 1183 / 1111,
  20417. bottom: 0.01
  20418. }
  20419. },
  20420. drake: {
  20421. height: math.unit(30, "feet"),
  20422. weight: math.unit(246960, "lb"),
  20423. name: "Drake",
  20424. image: {
  20425. source: "./media/characters/reza/drake.svg",
  20426. extra: 2350 / 2024,
  20427. bottom: 60.7 / 2403
  20428. }
  20429. },
  20430. },
  20431. [
  20432. {
  20433. name: "Normal",
  20434. height: math.unit(4, "feet"),
  20435. default: true
  20436. },
  20437. ]
  20438. ))
  20439. characterMakers.push(() => makeCharacter(
  20440. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20441. {
  20442. side: {
  20443. height: math.unit(15, "feet"),
  20444. weight: math.unit(14, "tons"),
  20445. name: "Side",
  20446. image: {
  20447. source: "./media/characters/athea/side.svg",
  20448. extra: 960 / 540,
  20449. bottom: 0.003
  20450. }
  20451. },
  20452. sitting: {
  20453. height: math.unit(6 * 2.85, "feet"),
  20454. weight: math.unit(14, "tons"),
  20455. name: "Sitting",
  20456. image: {
  20457. source: "./media/characters/athea/sitting.svg",
  20458. extra: 621 / 581,
  20459. bottom: 0.075
  20460. }
  20461. },
  20462. maw: {
  20463. height: math.unit(7.59498031496063, "feet"),
  20464. name: "Maw",
  20465. image: {
  20466. source: "./media/characters/athea/maw.svg"
  20467. }
  20468. },
  20469. },
  20470. [
  20471. {
  20472. name: "Lap Cat",
  20473. height: math.unit(2.5, "feet")
  20474. },
  20475. {
  20476. name: "Minimacro",
  20477. height: math.unit(15, "feet"),
  20478. default: true
  20479. },
  20480. {
  20481. name: "Macro",
  20482. height: math.unit(120, "feet")
  20483. },
  20484. {
  20485. name: "Macro+",
  20486. height: math.unit(640, "feet")
  20487. },
  20488. {
  20489. name: "Colossus",
  20490. height: math.unit(2.2, "miles")
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20496. {
  20497. front: {
  20498. height: math.unit(8 + 8 / 12, "feet"),
  20499. weight: math.unit(130, "kg"),
  20500. name: "Front",
  20501. image: {
  20502. source: "./media/characters/seroko/front.svg",
  20503. extra: 1385 / 1280,
  20504. bottom: 0.025
  20505. }
  20506. },
  20507. back: {
  20508. height: math.unit(8 + 8 / 12, "feet"),
  20509. weight: math.unit(130, "kg"),
  20510. name: "Back",
  20511. image: {
  20512. source: "./media/characters/seroko/back.svg",
  20513. extra: 1369 / 1238,
  20514. bottom: 0.018
  20515. }
  20516. },
  20517. frontDressed: {
  20518. height: math.unit(8 + 8 / 12, "feet"),
  20519. weight: math.unit(130, "kg"),
  20520. name: "Front (Dressed)",
  20521. image: {
  20522. source: "./media/characters/seroko/front-dressed.svg",
  20523. extra: 1366 / 1275,
  20524. bottom: 0.03
  20525. }
  20526. },
  20527. },
  20528. [
  20529. {
  20530. name: "Normal",
  20531. height: math.unit(8 + 8 / 12, "feet"),
  20532. default: true
  20533. },
  20534. ]
  20535. ))
  20536. characterMakers.push(() => makeCharacter(
  20537. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20538. {
  20539. front: {
  20540. height: math.unit(5.5, "feet"),
  20541. weight: math.unit(160, "lb"),
  20542. name: "Front",
  20543. image: {
  20544. source: "./media/characters/quatzi/front.svg",
  20545. extra: 2346 / 2242,
  20546. bottom: 0.015
  20547. }
  20548. },
  20549. },
  20550. [
  20551. {
  20552. name: "Normal",
  20553. height: math.unit(5.5, "feet"),
  20554. default: true
  20555. },
  20556. {
  20557. name: "Big",
  20558. height: math.unit(7.7, "feet")
  20559. },
  20560. ]
  20561. ))
  20562. characterMakers.push(() => makeCharacter(
  20563. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20564. {
  20565. front: {
  20566. height: math.unit(5 + 11 / 12, "feet"),
  20567. weight: math.unit(180, "lb"),
  20568. name: "Front",
  20569. image: {
  20570. source: "./media/characters/sen/front.svg",
  20571. extra: 1321 / 1254,
  20572. bottom: 0.015
  20573. }
  20574. },
  20575. side: {
  20576. height: math.unit(5 + 11 / 12, "feet"),
  20577. weight: math.unit(180, "lb"),
  20578. name: "Side",
  20579. image: {
  20580. source: "./media/characters/sen/side.svg",
  20581. extra: 1321 / 1254,
  20582. bottom: 0.007
  20583. }
  20584. },
  20585. back: {
  20586. height: math.unit(5 + 11 / 12, "feet"),
  20587. weight: math.unit(180, "lb"),
  20588. name: "Back",
  20589. image: {
  20590. source: "./media/characters/sen/back.svg",
  20591. extra: 1321 / 1254
  20592. }
  20593. },
  20594. },
  20595. [
  20596. {
  20597. name: "Normal",
  20598. height: math.unit(5 + 11 / 12, "feet"),
  20599. default: true
  20600. },
  20601. ]
  20602. ))
  20603. characterMakers.push(() => makeCharacter(
  20604. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20605. {
  20606. front: {
  20607. height: math.unit(166.6, "cm"),
  20608. weight: math.unit(66.6, "kg"),
  20609. name: "Front",
  20610. image: {
  20611. source: "./media/characters/fruity/front.svg",
  20612. extra: 1510 / 1386,
  20613. bottom: 0.04
  20614. }
  20615. },
  20616. back: {
  20617. height: math.unit(166.6, "cm"),
  20618. weight: math.unit(66.6, "lb"),
  20619. name: "Back",
  20620. image: {
  20621. source: "./media/characters/fruity/back.svg",
  20622. extra: 1563 / 1435,
  20623. bottom: 0.005
  20624. }
  20625. },
  20626. },
  20627. [
  20628. {
  20629. name: "Normal",
  20630. height: math.unit(166.6, "cm"),
  20631. default: true
  20632. },
  20633. {
  20634. name: "Demonic",
  20635. height: math.unit(166.6, "feet")
  20636. },
  20637. ]
  20638. ))
  20639. characterMakers.push(() => makeCharacter(
  20640. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20641. {
  20642. side: {
  20643. height: math.unit(10, "feet"),
  20644. weight: math.unit(500, "lb"),
  20645. name: "Side",
  20646. image: {
  20647. source: "./media/characters/zost/side.svg",
  20648. extra: 966 / 880,
  20649. bottom: 0.075
  20650. }
  20651. },
  20652. mawFront: {
  20653. height: math.unit(1.08, "meters"),
  20654. name: "Maw (Front)",
  20655. image: {
  20656. source: "./media/characters/zost/maw-front.svg"
  20657. }
  20658. },
  20659. mawSide: {
  20660. height: math.unit(2.66, "feet"),
  20661. name: "Maw (Side)",
  20662. image: {
  20663. source: "./media/characters/zost/maw-side.svg"
  20664. }
  20665. },
  20666. },
  20667. [
  20668. {
  20669. name: "Normal",
  20670. height: math.unit(10, "feet"),
  20671. default: true
  20672. },
  20673. ]
  20674. ))
  20675. characterMakers.push(() => makeCharacter(
  20676. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20677. {
  20678. front: {
  20679. height: math.unit(5 + 4 / 12, "feet"),
  20680. weight: math.unit(120, "lb"),
  20681. name: "Front",
  20682. image: {
  20683. source: "./media/characters/luci/front.svg",
  20684. extra: 1985 / 1884,
  20685. bottom: 0.04
  20686. }
  20687. },
  20688. back: {
  20689. height: math.unit(5 + 4 / 12, "feet"),
  20690. weight: math.unit(120, "lb"),
  20691. name: "Back",
  20692. image: {
  20693. source: "./media/characters/luci/back.svg",
  20694. extra: 1892 / 1791,
  20695. bottom: 0.002
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(5 + 4 / 12, "feet"),
  20703. default: true
  20704. },
  20705. ]
  20706. ))
  20707. characterMakers.push(() => makeCharacter(
  20708. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20709. {
  20710. front: {
  20711. height: math.unit(1500, "feet"),
  20712. weight: math.unit(3.8e6, "tons"),
  20713. name: "Front",
  20714. image: {
  20715. source: "./media/characters/2th/front.svg",
  20716. extra: 3489 / 3350,
  20717. bottom: 0.1
  20718. }
  20719. },
  20720. foot: {
  20721. height: math.unit(461, "feet"),
  20722. name: "Foot",
  20723. image: {
  20724. source: "./media/characters/2th/foot.svg"
  20725. }
  20726. },
  20727. },
  20728. [
  20729. {
  20730. name: "\"Micro\"",
  20731. height: math.unit(15 + 7 / 12, "feet")
  20732. },
  20733. {
  20734. name: "Normal",
  20735. height: math.unit(1500, "feet"),
  20736. default: true
  20737. },
  20738. {
  20739. name: "Macro",
  20740. height: math.unit(5000, "feet")
  20741. },
  20742. {
  20743. name: "Megamacro",
  20744. height: math.unit(15, "miles")
  20745. },
  20746. {
  20747. name: "Gigamacro",
  20748. height: math.unit(4000, "miles")
  20749. },
  20750. {
  20751. name: "Galactic",
  20752. height: math.unit(50, "AU")
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20758. {
  20759. front: {
  20760. height: math.unit(5 + 6 / 12, "feet"),
  20761. weight: math.unit(220, "lb"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/amethyst/front.svg",
  20765. extra: 2078 / 2040,
  20766. bottom: 0.045
  20767. }
  20768. },
  20769. back: {
  20770. height: math.unit(5 + 6 / 12, "feet"),
  20771. weight: math.unit(220, "lb"),
  20772. name: "Back",
  20773. image: {
  20774. source: "./media/characters/amethyst/back.svg",
  20775. extra: 2021 / 1989,
  20776. bottom: 0.02
  20777. }
  20778. },
  20779. },
  20780. [
  20781. {
  20782. name: "Normal",
  20783. height: math.unit(5 + 6 / 12, "feet"),
  20784. default: true
  20785. },
  20786. ]
  20787. ))
  20788. characterMakers.push(() => makeCharacter(
  20789. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20790. {
  20791. front: {
  20792. height: math.unit(4 + 11 / 12, "feet"),
  20793. weight: math.unit(120, "lb"),
  20794. name: "Front",
  20795. image: {
  20796. source: "./media/characters/yumi-akiyama/front.svg",
  20797. extra: 1327 / 1235,
  20798. bottom: 0.02
  20799. }
  20800. },
  20801. back: {
  20802. height: math.unit(4 + 11 / 12, "feet"),
  20803. weight: math.unit(120, "lb"),
  20804. name: "Back",
  20805. image: {
  20806. source: "./media/characters/yumi-akiyama/back.svg",
  20807. extra: 1287 / 1245,
  20808. bottom: 0.002
  20809. }
  20810. },
  20811. },
  20812. [
  20813. {
  20814. name: "Galactic",
  20815. height: math.unit(50, "galaxies"),
  20816. default: true
  20817. },
  20818. {
  20819. name: "Universal",
  20820. height: math.unit(100, "universes")
  20821. },
  20822. ]
  20823. ))
  20824. characterMakers.push(() => makeCharacter(
  20825. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20826. {
  20827. front: {
  20828. height: math.unit(8, "feet"),
  20829. weight: math.unit(500, "lb"),
  20830. name: "Front",
  20831. image: {
  20832. source: "./media/characters/rifter-yrmori/front.svg",
  20833. extra: 1180 / 1125,
  20834. bottom: 0.02
  20835. }
  20836. },
  20837. back: {
  20838. height: math.unit(8, "feet"),
  20839. weight: math.unit(500, "lb"),
  20840. name: "Back",
  20841. image: {
  20842. source: "./media/characters/rifter-yrmori/back.svg",
  20843. extra: 1190 / 1145,
  20844. bottom: 0.001
  20845. }
  20846. },
  20847. wings: {
  20848. height: math.unit(7.75, "feet"),
  20849. weight: math.unit(500, "lb"),
  20850. name: "Wings",
  20851. image: {
  20852. source: "./media/characters/rifter-yrmori/wings.svg",
  20853. extra: 1357 / 1285
  20854. }
  20855. },
  20856. maw: {
  20857. height: math.unit(0.8, "feet"),
  20858. name: "Maw",
  20859. image: {
  20860. source: "./media/characters/rifter-yrmori/maw.svg"
  20861. }
  20862. },
  20863. mawfront: {
  20864. height: math.unit(1.45, "feet"),
  20865. name: "Maw (Front)",
  20866. image: {
  20867. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20868. }
  20869. },
  20870. },
  20871. [
  20872. {
  20873. name: "Normal",
  20874. height: math.unit(8, "feet"),
  20875. default: true
  20876. },
  20877. {
  20878. name: "Macro",
  20879. height: math.unit(42, "meters")
  20880. },
  20881. ]
  20882. ))
  20883. characterMakers.push(() => makeCharacter(
  20884. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20885. {
  20886. were: {
  20887. height: math.unit(25 + 6 / 12, "feet"),
  20888. weight: math.unit(10000, "lb"),
  20889. name: "Were",
  20890. image: {
  20891. source: "./media/characters/tahajin/were.svg",
  20892. extra: 801 / 770,
  20893. bottom: 0.042
  20894. }
  20895. },
  20896. aquatic: {
  20897. height: math.unit(6 + 4 / 12, "feet"),
  20898. weight: math.unit(160, "lb"),
  20899. name: "Aquatic",
  20900. image: {
  20901. source: "./media/characters/tahajin/aquatic.svg",
  20902. extra: 572 / 542,
  20903. bottom: 0.04
  20904. }
  20905. },
  20906. chow: {
  20907. height: math.unit(8 + 11 / 12, "feet"),
  20908. weight: math.unit(450, "lb"),
  20909. name: "Chow",
  20910. image: {
  20911. source: "./media/characters/tahajin/chow.svg",
  20912. extra: 660 / 640,
  20913. bottom: 0.015
  20914. }
  20915. },
  20916. demiNaga: {
  20917. height: math.unit(6 + 8 / 12, "feet"),
  20918. weight: math.unit(300, "lb"),
  20919. name: "Demi Naga",
  20920. image: {
  20921. source: "./media/characters/tahajin/demi-naga.svg",
  20922. extra: 643 / 615,
  20923. bottom: 0.1
  20924. }
  20925. },
  20926. data: {
  20927. height: math.unit(5, "inches"),
  20928. weight: math.unit(0.1, "lb"),
  20929. name: "Data",
  20930. image: {
  20931. source: "./media/characters/tahajin/data.svg"
  20932. }
  20933. },
  20934. fluu: {
  20935. height: math.unit(5 + 7 / 12, "feet"),
  20936. weight: math.unit(140, "lb"),
  20937. name: "Fluu",
  20938. image: {
  20939. source: "./media/characters/tahajin/fluu.svg",
  20940. extra: 628 / 592,
  20941. bottom: 0.02
  20942. }
  20943. },
  20944. starWarrior: {
  20945. height: math.unit(4 + 5 / 12, "feet"),
  20946. weight: math.unit(50, "lb"),
  20947. name: "Star Warrior",
  20948. image: {
  20949. source: "./media/characters/tahajin/star-warrior.svg"
  20950. }
  20951. },
  20952. },
  20953. [
  20954. {
  20955. name: "Normal",
  20956. height: math.unit(25 + 6 / 12, "feet"),
  20957. default: true
  20958. },
  20959. ]
  20960. ))
  20961. characterMakers.push(() => makeCharacter(
  20962. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20963. {
  20964. front: {
  20965. height: math.unit(8, "feet"),
  20966. weight: math.unit(350, "lb"),
  20967. name: "Front",
  20968. image: {
  20969. source: "./media/characters/gabira/front.svg",
  20970. extra: 608 / 580,
  20971. bottom: 0.03
  20972. }
  20973. },
  20974. back: {
  20975. height: math.unit(8, "feet"),
  20976. weight: math.unit(350, "lb"),
  20977. name: "Back",
  20978. image: {
  20979. source: "./media/characters/gabira/back.svg",
  20980. extra: 608 / 580,
  20981. bottom: 0.03
  20982. }
  20983. },
  20984. },
  20985. [
  20986. {
  20987. name: "Normal",
  20988. height: math.unit(8, "feet"),
  20989. default: true
  20990. },
  20991. ]
  20992. ))
  20993. characterMakers.push(() => makeCharacter(
  20994. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20995. {
  20996. front: {
  20997. height: math.unit(5 + 3 / 12, "feet"),
  20998. weight: math.unit(137, "lb"),
  20999. name: "Front",
  21000. image: {
  21001. source: "./media/characters/sasha-katraine/front.svg",
  21002. bottom: 0.045
  21003. }
  21004. },
  21005. },
  21006. [
  21007. {
  21008. name: "Micro",
  21009. height: math.unit(5, "inches")
  21010. },
  21011. {
  21012. name: "Normal",
  21013. height: math.unit(5 + 3 / 12, "feet"),
  21014. default: true
  21015. },
  21016. ]
  21017. ))
  21018. characterMakers.push(() => makeCharacter(
  21019. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21020. {
  21021. side: {
  21022. height: math.unit(4, "inches"),
  21023. weight: math.unit(200, "grams"),
  21024. name: "Side",
  21025. image: {
  21026. source: "./media/characters/der/side.svg",
  21027. extra: 719 / 400,
  21028. bottom: 30.6 / 749.9187
  21029. }
  21030. },
  21031. },
  21032. [
  21033. {
  21034. name: "Micro",
  21035. height: math.unit(4, "inches"),
  21036. default: true
  21037. },
  21038. ]
  21039. ))
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21042. {
  21043. side: {
  21044. height: math.unit(30, "meters"),
  21045. weight: math.unit(700, "tonnes"),
  21046. name: "Side",
  21047. image: {
  21048. source: "./media/characters/fixerdragon/side.svg",
  21049. extra: (1293.0514 - 116.03) / 1106.86,
  21050. bottom: 116.03 / 1293.0514
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Planck",
  21057. height: math.unit(1.6e-35, "meters")
  21058. },
  21059. {
  21060. name: "Micro",
  21061. height: math.unit(0.4, "meters")
  21062. },
  21063. {
  21064. name: "Normal",
  21065. height: math.unit(30, "meters"),
  21066. default: true
  21067. },
  21068. {
  21069. name: "Megamacro",
  21070. height: math.unit(1.2, "megameters")
  21071. },
  21072. {
  21073. name: "Teramacro",
  21074. height: math.unit(130, "terameters")
  21075. },
  21076. {
  21077. name: "Yottamacro",
  21078. height: math.unit(6200, "yottameters")
  21079. },
  21080. ]
  21081. ));
  21082. characterMakers.push(() => makeCharacter(
  21083. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21084. {
  21085. front: {
  21086. height: math.unit(8, "feet"),
  21087. weight: math.unit(250, "lb"),
  21088. name: "Front",
  21089. image: {
  21090. source: "./media/characters/kite/front.svg",
  21091. extra: 2796 / 2659,
  21092. bottom: 0.002
  21093. }
  21094. },
  21095. },
  21096. [
  21097. {
  21098. name: "Normal",
  21099. height: math.unit(8, "feet"),
  21100. default: true
  21101. },
  21102. {
  21103. name: "Macro",
  21104. height: math.unit(360, "feet")
  21105. },
  21106. {
  21107. name: "Megamacro",
  21108. height: math.unit(1500, "feet")
  21109. },
  21110. ]
  21111. ))
  21112. characterMakers.push(() => makeCharacter(
  21113. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21114. {
  21115. front: {
  21116. height: math.unit(5 + 10 / 12, "feet"),
  21117. weight: math.unit(150, "lb"),
  21118. name: "Front",
  21119. image: {
  21120. source: "./media/characters/poojawa-vynar/front.svg",
  21121. extra: (1506.1547 - 55) / 1356.6,
  21122. bottom: 55 / 1506.1547
  21123. }
  21124. },
  21125. frontTailless: {
  21126. height: math.unit(5 + 10 / 12, "feet"),
  21127. weight: math.unit(150, "lb"),
  21128. name: "Front (Tailless)",
  21129. image: {
  21130. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21131. extra: (1506.1547 - 55) / 1356.6,
  21132. bottom: 55 / 1506.1547
  21133. }
  21134. },
  21135. },
  21136. [
  21137. {
  21138. name: "Normal",
  21139. height: math.unit(5 + 10 / 12, "feet"),
  21140. default: true
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21146. {
  21147. front: {
  21148. height: math.unit(293, "meters"),
  21149. weight: math.unit(70400, "tons"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/violette/front.svg",
  21153. extra: 1227 / 1180,
  21154. bottom: 0.005
  21155. }
  21156. },
  21157. back: {
  21158. height: math.unit(293, "meters"),
  21159. weight: math.unit(70400, "tons"),
  21160. name: "Back",
  21161. image: {
  21162. source: "./media/characters/violette/back.svg",
  21163. extra: 1227 / 1180,
  21164. bottom: 0.005
  21165. }
  21166. },
  21167. },
  21168. [
  21169. {
  21170. name: "Macro",
  21171. height: math.unit(293, "meters"),
  21172. default: true
  21173. },
  21174. ]
  21175. ))
  21176. characterMakers.push(() => makeCharacter(
  21177. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21178. {
  21179. front: {
  21180. height: math.unit(1050, "feet"),
  21181. weight: math.unit(200000, "tons"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/alessandra/front.svg",
  21185. extra: 960 / 912,
  21186. bottom: 0.06
  21187. }
  21188. },
  21189. },
  21190. [
  21191. {
  21192. name: "Macro",
  21193. height: math.unit(1050, "feet")
  21194. },
  21195. {
  21196. name: "Macro+",
  21197. height: math.unit(900, "meters"),
  21198. default: true
  21199. },
  21200. ]
  21201. ))
  21202. characterMakers.push(() => makeCharacter(
  21203. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21204. {
  21205. front: {
  21206. height: math.unit(5, "feet"),
  21207. weight: math.unit(187, "lb"),
  21208. name: "Front",
  21209. image: {
  21210. source: "./media/characters/person/front.svg",
  21211. extra: 3087 / 2945,
  21212. bottom: 91 / 3181
  21213. }
  21214. },
  21215. },
  21216. [
  21217. {
  21218. name: "Micro",
  21219. height: math.unit(3, "inches")
  21220. },
  21221. {
  21222. name: "Normal",
  21223. height: math.unit(5, "feet"),
  21224. default: true
  21225. },
  21226. {
  21227. name: "Macro",
  21228. height: math.unit(90, "feet")
  21229. },
  21230. {
  21231. name: "Max Size",
  21232. height: math.unit(280, "feet")
  21233. },
  21234. ]
  21235. ))
  21236. characterMakers.push(() => makeCharacter(
  21237. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21238. {
  21239. front: {
  21240. height: math.unit(4.5, "meters"),
  21241. weight: math.unit(3200, "lb"),
  21242. name: "Front",
  21243. image: {
  21244. source: "./media/characters/ty/front.svg",
  21245. extra: 1038 / 960,
  21246. bottom: 31.156 / 1068
  21247. }
  21248. },
  21249. back: {
  21250. height: math.unit(4.5, "meters"),
  21251. weight: math.unit(3200, "lb"),
  21252. name: "Back",
  21253. image: {
  21254. source: "./media/characters/ty/back.svg",
  21255. extra: 1044 / 966,
  21256. bottom: 7.48 / 1049
  21257. }
  21258. },
  21259. },
  21260. [
  21261. {
  21262. name: "Normal",
  21263. height: math.unit(4.5, "meters"),
  21264. default: true
  21265. },
  21266. ]
  21267. ))
  21268. characterMakers.push(() => makeCharacter(
  21269. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21270. {
  21271. front: {
  21272. height: math.unit(5 + 4 / 12, "feet"),
  21273. weight: math.unit(115, "lb"),
  21274. name: "Front",
  21275. image: {
  21276. source: "./media/characters/rocky/front.svg",
  21277. extra: 1012 / 975,
  21278. bottom: 54 / 1066
  21279. }
  21280. },
  21281. },
  21282. [
  21283. {
  21284. name: "Normal",
  21285. height: math.unit(5 + 4 / 12, "feet"),
  21286. default: true
  21287. },
  21288. ]
  21289. ))
  21290. characterMakers.push(() => makeCharacter(
  21291. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21292. {
  21293. upright: {
  21294. height: math.unit(6, "meters"),
  21295. weight: math.unit(4000, "kg"),
  21296. name: "Upright",
  21297. image: {
  21298. source: "./media/characters/ruin/upright.svg",
  21299. extra: 668 / 661,
  21300. bottom: 42 / 799.8396
  21301. }
  21302. },
  21303. },
  21304. [
  21305. {
  21306. name: "Normal",
  21307. height: math.unit(6, "meters"),
  21308. default: true
  21309. },
  21310. ]
  21311. ))
  21312. characterMakers.push(() => makeCharacter(
  21313. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21314. {
  21315. front: {
  21316. height: math.unit(5, "feet"),
  21317. weight: math.unit(106, "lb"),
  21318. name: "Front",
  21319. image: {
  21320. source: "./media/characters/robin/front.svg",
  21321. extra: 862 / 799,
  21322. bottom: 42.4 / 914.8856
  21323. }
  21324. },
  21325. },
  21326. [
  21327. {
  21328. name: "Normal",
  21329. height: math.unit(5, "feet"),
  21330. default: true
  21331. },
  21332. ]
  21333. ))
  21334. characterMakers.push(() => makeCharacter(
  21335. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21336. {
  21337. side: {
  21338. height: math.unit(3, "feet"),
  21339. weight: math.unit(225, "lb"),
  21340. name: "Side",
  21341. image: {
  21342. source: "./media/characters/saian/side.svg",
  21343. extra: 566 / 356,
  21344. bottom: 79.7 / 643
  21345. }
  21346. },
  21347. maw: {
  21348. height: math.unit(2.85, "feet"),
  21349. name: "Maw",
  21350. image: {
  21351. source: "./media/characters/saian/maw.svg"
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(3, "feet"),
  21359. default: true
  21360. },
  21361. ]
  21362. ))
  21363. characterMakers.push(() => makeCharacter(
  21364. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21365. {
  21366. side: {
  21367. height: math.unit(8, "feet"),
  21368. weight: math.unit(300, "lb"),
  21369. name: "Side",
  21370. image: {
  21371. source: "./media/characters/equus-silvermane/side.svg",
  21372. extra: 2176 / 2050,
  21373. bottom: 65.7 / 2245
  21374. }
  21375. },
  21376. front: {
  21377. height: math.unit(8, "feet"),
  21378. weight: math.unit(300, "lb"),
  21379. name: "Front",
  21380. image: {
  21381. source: "./media/characters/equus-silvermane/front.svg",
  21382. extra: 4633 / 4400,
  21383. bottom: 71.3 / 4706.915
  21384. }
  21385. },
  21386. sideStepping: {
  21387. height: math.unit(8, "feet"),
  21388. weight: math.unit(300, "lb"),
  21389. name: "Side (Stepping)",
  21390. image: {
  21391. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21392. extra: 1968 / 1860,
  21393. bottom: 16.4 / 1989
  21394. }
  21395. },
  21396. },
  21397. [
  21398. {
  21399. name: "Normal",
  21400. height: math.unit(8, "feet")
  21401. },
  21402. {
  21403. name: "Minimacro",
  21404. height: math.unit(75, "feet"),
  21405. default: true
  21406. },
  21407. {
  21408. name: "Macro",
  21409. height: math.unit(150, "feet")
  21410. },
  21411. {
  21412. name: "Macro+",
  21413. height: math.unit(1000, "feet")
  21414. },
  21415. {
  21416. name: "Megamacro",
  21417. height: math.unit(1, "mile")
  21418. },
  21419. ]
  21420. ))
  21421. characterMakers.push(() => makeCharacter(
  21422. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21423. {
  21424. side: {
  21425. height: math.unit(20, "feet"),
  21426. weight: math.unit(30000, "kg"),
  21427. name: "Side",
  21428. image: {
  21429. source: "./media/characters/windar/side.svg",
  21430. extra: 1491 / 1248,
  21431. bottom: 82.56 / 1568
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Normal",
  21438. height: math.unit(20, "feet"),
  21439. default: true
  21440. },
  21441. ]
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21445. {
  21446. side: {
  21447. height: math.unit(15.66, "feet"),
  21448. weight: math.unit(150, "lb"),
  21449. name: "Side",
  21450. image: {
  21451. source: "./media/characters/melody/side.svg",
  21452. extra: 1097 / 944,
  21453. bottom: 11.8 / 1109
  21454. }
  21455. },
  21456. sideOutfit: {
  21457. height: math.unit(15.66, "feet"),
  21458. weight: math.unit(150, "lb"),
  21459. name: "Side (Outfit)",
  21460. image: {
  21461. source: "./media/characters/melody/side-outfit.svg",
  21462. extra: 1097 / 944,
  21463. bottom: 11.8 / 1109
  21464. }
  21465. },
  21466. },
  21467. [
  21468. {
  21469. name: "Normal",
  21470. height: math.unit(15.66, "feet"),
  21471. default: true
  21472. },
  21473. ]
  21474. ))
  21475. characterMakers.push(() => makeCharacter(
  21476. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21477. {
  21478. front: {
  21479. height: math.unit(8, "feet"),
  21480. weight: math.unit(325, "lb"),
  21481. name: "Front",
  21482. image: {
  21483. source: "./media/characters/windera/front.svg",
  21484. extra: 3180 / 2845,
  21485. bottom: 178 / 3365
  21486. }
  21487. },
  21488. },
  21489. [
  21490. {
  21491. name: "Normal",
  21492. height: math.unit(8, "feet"),
  21493. default: true
  21494. },
  21495. ]
  21496. ))
  21497. characterMakers.push(() => makeCharacter(
  21498. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21499. {
  21500. front: {
  21501. height: math.unit(28.75, "feet"),
  21502. weight: math.unit(2000, "kg"),
  21503. name: "Front",
  21504. image: {
  21505. source: "./media/characters/sonear/front.svg",
  21506. extra: 1041.1 / 964.9,
  21507. bottom: 53.7 / 1096.6
  21508. }
  21509. },
  21510. },
  21511. [
  21512. {
  21513. name: "Normal",
  21514. height: math.unit(28.75, "feet"),
  21515. default: true
  21516. },
  21517. ]
  21518. ))
  21519. characterMakers.push(() => makeCharacter(
  21520. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21521. {
  21522. side: {
  21523. height: math.unit(25.5, "feet"),
  21524. weight: math.unit(23000, "kg"),
  21525. name: "Side",
  21526. image: {
  21527. source: "./media/characters/kanara/side.svg"
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Normal",
  21534. height: math.unit(25.5, "feet"),
  21535. default: true
  21536. },
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21541. {
  21542. side: {
  21543. height: math.unit(10, "feet"),
  21544. weight: math.unit(1000, "kg"),
  21545. name: "Side",
  21546. image: {
  21547. source: "./media/characters/ereus/side.svg",
  21548. extra: 1157 / 959,
  21549. bottom: 153 / 1312.5
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(10, "feet"),
  21557. default: true
  21558. },
  21559. ]
  21560. ))
  21561. characterMakers.push(() => makeCharacter(
  21562. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21563. {
  21564. side: {
  21565. height: math.unit(4.5, "feet"),
  21566. weight: math.unit(500, "lb"),
  21567. name: "Side",
  21568. image: {
  21569. source: "./media/characters/e-ter/side.svg",
  21570. extra: 1550 / 1248,
  21571. bottom: 146 / 1694
  21572. }
  21573. },
  21574. },
  21575. [
  21576. {
  21577. name: "Normal",
  21578. height: math.unit(4.5, "feet"),
  21579. default: true
  21580. },
  21581. ]
  21582. ))
  21583. characterMakers.push(() => makeCharacter(
  21584. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21585. {
  21586. side: {
  21587. height: math.unit(9.7, "feet"),
  21588. weight: math.unit(4000, "kg"),
  21589. name: "Side",
  21590. image: {
  21591. source: "./media/characters/yamie/side.svg"
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Normal",
  21598. height: math.unit(9.7, "feet"),
  21599. default: true
  21600. },
  21601. ]
  21602. ))
  21603. characterMakers.push(() => makeCharacter(
  21604. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21605. {
  21606. front: {
  21607. height: math.unit(50, "feet"),
  21608. weight: math.unit(50000, "kg"),
  21609. name: "Front",
  21610. image: {
  21611. source: "./media/characters/anders/front.svg",
  21612. extra: 570 / 539,
  21613. bottom: 14.7 / 586.7
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Large",
  21620. height: math.unit(50, "feet")
  21621. },
  21622. {
  21623. name: "Macro",
  21624. height: math.unit(2000, "feet"),
  21625. default: true
  21626. },
  21627. {
  21628. name: "Megamacro",
  21629. height: math.unit(12, "miles")
  21630. },
  21631. ]
  21632. ))
  21633. characterMakers.push(() => makeCharacter(
  21634. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21635. {
  21636. front: {
  21637. height: math.unit(7 + 2 / 12, "feet"),
  21638. weight: math.unit(300, "lb"),
  21639. name: "Front",
  21640. image: {
  21641. source: "./media/characters/reban/front.svg",
  21642. extra: 516 / 487,
  21643. bottom: 42.82 / 558.356
  21644. }
  21645. },
  21646. dick: {
  21647. height: math.unit(7 / 5, "feet"),
  21648. name: "Dick",
  21649. image: {
  21650. source: "./media/characters/reban/dick.svg"
  21651. }
  21652. },
  21653. },
  21654. [
  21655. {
  21656. name: "Natural Height",
  21657. height: math.unit(7 + 2 / 12, "feet")
  21658. },
  21659. {
  21660. name: "Macro",
  21661. height: math.unit(500, "feet"),
  21662. default: true
  21663. },
  21664. {
  21665. name: "Canon Height",
  21666. height: math.unit(50, "AU")
  21667. },
  21668. ]
  21669. ))
  21670. characterMakers.push(() => makeCharacter(
  21671. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21672. {
  21673. front: {
  21674. height: math.unit(6, "feet"),
  21675. weight: math.unit(150, "lb"),
  21676. name: "Front",
  21677. image: {
  21678. source: "./media/characters/terrance-keayes/front.svg",
  21679. extra: 1.005,
  21680. bottom: 151 / 1615
  21681. }
  21682. },
  21683. side: {
  21684. height: math.unit(6, "feet"),
  21685. weight: math.unit(150, "lb"),
  21686. name: "Side",
  21687. image: {
  21688. source: "./media/characters/terrance-keayes/side.svg",
  21689. extra: 1.005,
  21690. bottom: 129.4 / 1544
  21691. }
  21692. },
  21693. back: {
  21694. height: math.unit(6, "feet"),
  21695. weight: math.unit(150, "lb"),
  21696. name: "Back",
  21697. image: {
  21698. source: "./media/characters/terrance-keayes/back.svg",
  21699. extra: 1.005,
  21700. bottom: 58.4 / 1557.3
  21701. }
  21702. },
  21703. dick: {
  21704. height: math.unit(6 * 0.208, "feet"),
  21705. name: "Dick",
  21706. image: {
  21707. source: "./media/characters/terrance-keayes/dick.svg"
  21708. }
  21709. },
  21710. },
  21711. [
  21712. {
  21713. name: "Canon Height",
  21714. height: math.unit(35, "miles"),
  21715. default: true
  21716. },
  21717. ]
  21718. ))
  21719. characterMakers.push(() => makeCharacter(
  21720. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21721. {
  21722. front: {
  21723. height: math.unit(6, "feet"),
  21724. weight: math.unit(150, "lb"),
  21725. name: "Front",
  21726. image: {
  21727. source: "./media/characters/ofelia/front.svg",
  21728. extra: 546 / 541,
  21729. bottom: 39 / 583
  21730. }
  21731. },
  21732. back: {
  21733. height: math.unit(6, "feet"),
  21734. weight: math.unit(150, "lb"),
  21735. name: "Back",
  21736. image: {
  21737. source: "./media/characters/ofelia/back.svg",
  21738. extra: 564 / 559.5,
  21739. bottom: 8.69 / 573.02
  21740. }
  21741. },
  21742. maw: {
  21743. height: math.unit(1, "feet"),
  21744. name: "Maw",
  21745. image: {
  21746. source: "./media/characters/ofelia/maw.svg"
  21747. }
  21748. },
  21749. foot: {
  21750. height: math.unit(1.949, "feet"),
  21751. name: "Foot",
  21752. image: {
  21753. source: "./media/characters/ofelia/foot.svg"
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Canon Height",
  21760. height: math.unit(2000, "miles"),
  21761. default: true
  21762. },
  21763. ]
  21764. ))
  21765. characterMakers.push(() => makeCharacter(
  21766. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21767. {
  21768. front: {
  21769. height: math.unit(6, "feet"),
  21770. weight: math.unit(150, "lb"),
  21771. name: "Front",
  21772. image: {
  21773. source: "./media/characters/samuel/front.svg",
  21774. extra: 265 / 258,
  21775. bottom: 2 / 266.1566
  21776. }
  21777. },
  21778. },
  21779. [
  21780. {
  21781. name: "Macro",
  21782. height: math.unit(100, "feet"),
  21783. default: true
  21784. },
  21785. {
  21786. name: "Full Size",
  21787. height: math.unit(1000, "miles")
  21788. },
  21789. ]
  21790. ))
  21791. characterMakers.push(() => makeCharacter(
  21792. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21793. {
  21794. front: {
  21795. height: math.unit(6, "feet"),
  21796. weight: math.unit(300, "lb"),
  21797. name: "Front",
  21798. image: {
  21799. source: "./media/characters/beishir-kiel/front.svg",
  21800. extra: 569 / 547,
  21801. bottom: 41.9 / 609
  21802. }
  21803. },
  21804. maw: {
  21805. height: math.unit(6 * 0.202, "feet"),
  21806. name: "Maw",
  21807. image: {
  21808. source: "./media/characters/beishir-kiel/maw.svg"
  21809. }
  21810. },
  21811. },
  21812. [
  21813. {
  21814. name: "Macro",
  21815. height: math.unit(300, "feet"),
  21816. default: true
  21817. },
  21818. ]
  21819. ))
  21820. characterMakers.push(() => makeCharacter(
  21821. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21822. {
  21823. front: {
  21824. height: math.unit(5 + 8 / 12, "feet"),
  21825. weight: math.unit(120, "lb"),
  21826. name: "Front",
  21827. image: {
  21828. source: "./media/characters/logan-grey/front.svg",
  21829. extra: 2539 / 2393,
  21830. bottom: 97.6 / 2636.37
  21831. }
  21832. },
  21833. frontAlt: {
  21834. height: math.unit(5 + 8 / 12, "feet"),
  21835. weight: math.unit(120, "lb"),
  21836. name: "Front (Alt)",
  21837. image: {
  21838. source: "./media/characters/logan-grey/front-alt.svg",
  21839. extra: 958 / 893,
  21840. bottom: 15 / 970.768
  21841. }
  21842. },
  21843. back: {
  21844. height: math.unit(5 + 8 / 12, "feet"),
  21845. weight: math.unit(120, "lb"),
  21846. name: "Back",
  21847. image: {
  21848. source: "./media/characters/logan-grey/back.svg",
  21849. extra: 958 / 893,
  21850. bottom: 2.1881 / 970.9788
  21851. }
  21852. },
  21853. dick: {
  21854. height: math.unit(1.437, "feet"),
  21855. name: "Dick",
  21856. image: {
  21857. source: "./media/characters/logan-grey/dick.svg"
  21858. }
  21859. },
  21860. },
  21861. [
  21862. {
  21863. name: "Normal",
  21864. height: math.unit(5 + 8 / 12, "feet")
  21865. },
  21866. {
  21867. name: "The 500 Foot Femboy",
  21868. height: math.unit(500, "feet"),
  21869. default: true
  21870. },
  21871. {
  21872. name: "Megmacro",
  21873. height: math.unit(20, "miles")
  21874. },
  21875. ]
  21876. ))
  21877. characterMakers.push(() => makeCharacter(
  21878. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21879. {
  21880. front: {
  21881. height: math.unit(8 + 2 / 12, "feet"),
  21882. weight: math.unit(275, "lb"),
  21883. name: "Front",
  21884. image: {
  21885. source: "./media/characters/draganta/front.svg",
  21886. extra: 1177 / 1135,
  21887. bottom: 33.46 / 1212.1
  21888. }
  21889. },
  21890. },
  21891. [
  21892. {
  21893. name: "Normal",
  21894. height: math.unit(8 + 6 / 12, "feet"),
  21895. default: true
  21896. },
  21897. {
  21898. name: "Macro",
  21899. height: math.unit(150, "feet")
  21900. },
  21901. {
  21902. name: "Megamacro",
  21903. height: math.unit(1000, "miles")
  21904. },
  21905. ]
  21906. ))
  21907. characterMakers.push(() => makeCharacter(
  21908. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21909. {
  21910. front: {
  21911. height: math.unit(1.72, "m"),
  21912. weight: math.unit(80, "lb"),
  21913. name: "Front",
  21914. image: {
  21915. source: "./media/characters/voski/front.svg",
  21916. extra: 2076.22 / 2022.4,
  21917. bottom: 102.7 / 2177.3866
  21918. }
  21919. },
  21920. frontNsfw: {
  21921. height: math.unit(1.72, "m"),
  21922. weight: math.unit(80, "lb"),
  21923. name: "Front (NSFW)",
  21924. image: {
  21925. source: "./media/characters/voski/front-nsfw.svg",
  21926. extra: 2076.22 / 2022.4,
  21927. bottom: 102.7 / 2177.3866
  21928. }
  21929. },
  21930. back: {
  21931. height: math.unit(1.72, "m"),
  21932. weight: math.unit(80, "lb"),
  21933. name: "Back",
  21934. image: {
  21935. source: "./media/characters/voski/back.svg",
  21936. extra: 2104 / 2051,
  21937. bottom: 10.45 / 2113.63
  21938. }
  21939. },
  21940. },
  21941. [
  21942. {
  21943. name: "Normal",
  21944. height: math.unit(1.72, "m")
  21945. },
  21946. {
  21947. name: "Macro",
  21948. height: math.unit(55, "m"),
  21949. default: true
  21950. },
  21951. {
  21952. name: "Macro+",
  21953. height: math.unit(300, "m")
  21954. },
  21955. {
  21956. name: "Macro++",
  21957. height: math.unit(700, "m")
  21958. },
  21959. {
  21960. name: "Macro+++",
  21961. height: math.unit(4500, "m")
  21962. },
  21963. {
  21964. name: "Macro++++",
  21965. height: math.unit(45, "km")
  21966. },
  21967. {
  21968. name: "Macro+++++",
  21969. height: math.unit(1220, "km")
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21975. {
  21976. front: {
  21977. height: math.unit(2.3, "m"),
  21978. weight: math.unit(304, "kg"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/icowom-lee/front.svg",
  21982. extra: 985 / 955,
  21983. bottom: 25.4 / 1012
  21984. }
  21985. },
  21986. fronttentacles: {
  21987. height: math.unit(2.3, "m"),
  21988. weight: math.unit(304, "kg"),
  21989. name: "Front-tentacles",
  21990. image: {
  21991. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21992. extra: 985 / 955,
  21993. bottom: 25.4 / 1012
  21994. }
  21995. },
  21996. back: {
  21997. height: math.unit(2.3, "m"),
  21998. weight: math.unit(304, "kg"),
  21999. name: "Back",
  22000. image: {
  22001. source: "./media/characters/icowom-lee/back.svg",
  22002. extra: 975 / 954,
  22003. bottom: 9.5 / 985
  22004. }
  22005. },
  22006. backtentacles: {
  22007. height: math.unit(2.3, "m"),
  22008. weight: math.unit(304, "kg"),
  22009. name: "Back-tentacles",
  22010. image: {
  22011. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22012. extra: 975 / 954,
  22013. bottom: 9.5 / 985
  22014. }
  22015. },
  22016. frontDressed: {
  22017. height: math.unit(2.3, "m"),
  22018. weight: math.unit(304, "kg"),
  22019. name: "Front (Dressed)",
  22020. image: {
  22021. source: "./media/characters/icowom-lee/front-dressed.svg",
  22022. extra: 3076 / 2933,
  22023. bottom: 51.4 / 3125.1889
  22024. }
  22025. },
  22026. rump: {
  22027. height: math.unit(0.776, "meters"),
  22028. name: "Rump",
  22029. image: {
  22030. source: "./media/characters/icowom-lee/rump.svg"
  22031. }
  22032. },
  22033. genitals: {
  22034. height: math.unit(0.78, "meters"),
  22035. name: "Genitals",
  22036. image: {
  22037. source: "./media/characters/icowom-lee/genitals.svg"
  22038. }
  22039. },
  22040. },
  22041. [
  22042. {
  22043. name: "Normal",
  22044. height: math.unit(2.3, "meters"),
  22045. default: true
  22046. },
  22047. {
  22048. name: "Macro",
  22049. height: math.unit(94, "meters"),
  22050. default: true
  22051. },
  22052. ]
  22053. ))
  22054. characterMakers.push(() => makeCharacter(
  22055. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22056. {
  22057. front: {
  22058. height: math.unit(22, "meters"),
  22059. weight: math.unit(21000, "kg"),
  22060. name: "Front",
  22061. image: {
  22062. source: "./media/characters/shock-diamond/front.svg",
  22063. extra: 2204 / 2053,
  22064. bottom: 65 / 2239.47
  22065. }
  22066. },
  22067. frontNude: {
  22068. height: math.unit(22, "meters"),
  22069. weight: math.unit(21000, "kg"),
  22070. name: "Front (Nude)",
  22071. image: {
  22072. source: "./media/characters/shock-diamond/front-nude.svg",
  22073. extra: 2514 / 2285,
  22074. bottom: 13 / 2527.56
  22075. }
  22076. },
  22077. },
  22078. [
  22079. {
  22080. name: "Normal",
  22081. height: math.unit(3, "meters")
  22082. },
  22083. {
  22084. name: "Macro",
  22085. height: math.unit(22, "meters"),
  22086. default: true
  22087. },
  22088. ]
  22089. ))
  22090. characterMakers.push(() => makeCharacter(
  22091. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22092. {
  22093. front: {
  22094. height: math.unit(5 + 4 / 12, "feet"),
  22095. weight: math.unit(120, "lb"),
  22096. name: "Front",
  22097. image: {
  22098. source: "./media/characters/rory/front.svg",
  22099. extra: 589 / 556,
  22100. bottom: 45.7 / 635.76
  22101. }
  22102. },
  22103. frontNude: {
  22104. height: math.unit(5 + 4 / 12, "feet"),
  22105. weight: math.unit(120, "lb"),
  22106. name: "Front (Nude)",
  22107. image: {
  22108. source: "./media/characters/rory/front-nude.svg",
  22109. extra: 589 / 556,
  22110. bottom: 45.7 / 635.76
  22111. }
  22112. },
  22113. side: {
  22114. height: math.unit(5 + 4 / 12, "feet"),
  22115. weight: math.unit(120, "lb"),
  22116. name: "Side",
  22117. image: {
  22118. source: "./media/characters/rory/side.svg",
  22119. extra: 597 / 564,
  22120. bottom: 55 / 653
  22121. }
  22122. },
  22123. back: {
  22124. height: math.unit(5 + 4 / 12, "feet"),
  22125. weight: math.unit(120, "lb"),
  22126. name: "Back",
  22127. image: {
  22128. source: "./media/characters/rory/back.svg",
  22129. extra: 620 / 585,
  22130. bottom: 8.86 / 630.43
  22131. }
  22132. },
  22133. dick: {
  22134. height: math.unit(0.86, "feet"),
  22135. name: "Dick",
  22136. image: {
  22137. source: "./media/characters/rory/dick.svg"
  22138. }
  22139. },
  22140. },
  22141. [
  22142. {
  22143. name: "Normal",
  22144. height: math.unit(5 + 4 / 12, "feet"),
  22145. default: true
  22146. },
  22147. {
  22148. name: "Macro",
  22149. height: math.unit(100, "feet")
  22150. },
  22151. {
  22152. name: "Macro+",
  22153. height: math.unit(140, "feet")
  22154. },
  22155. {
  22156. name: "Macro++",
  22157. height: math.unit(300, "feet")
  22158. },
  22159. ]
  22160. ))
  22161. characterMakers.push(() => makeCharacter(
  22162. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22163. {
  22164. front: {
  22165. height: math.unit(5 + 9 / 12, "feet"),
  22166. weight: math.unit(190, "lb"),
  22167. name: "Front",
  22168. image: {
  22169. source: "./media/characters/sprisk/front.svg",
  22170. extra: 1225 / 1180,
  22171. bottom: 42.7 / 1266.4
  22172. }
  22173. },
  22174. frontNsfw: {
  22175. height: math.unit(5 + 9 / 12, "feet"),
  22176. weight: math.unit(190, "lb"),
  22177. name: "Front (NSFW)",
  22178. image: {
  22179. source: "./media/characters/sprisk/front-nsfw.svg",
  22180. extra: 1225 / 1180,
  22181. bottom: 42.7 / 1266.4
  22182. }
  22183. },
  22184. back: {
  22185. height: math.unit(5 + 9 / 12, "feet"),
  22186. weight: math.unit(190, "lb"),
  22187. name: "Back",
  22188. image: {
  22189. source: "./media/characters/sprisk/back.svg",
  22190. extra: 1247 / 1200,
  22191. bottom: 5.6 / 1253.04
  22192. }
  22193. },
  22194. },
  22195. [
  22196. {
  22197. name: "Tiny",
  22198. height: math.unit(2, "inches")
  22199. },
  22200. {
  22201. name: "Normal",
  22202. height: math.unit(5 + 9 / 12, "feet"),
  22203. default: true
  22204. },
  22205. {
  22206. name: "Mini Macro",
  22207. height: math.unit(18, "feet")
  22208. },
  22209. {
  22210. name: "Macro",
  22211. height: math.unit(100, "feet")
  22212. },
  22213. {
  22214. name: "MACRO",
  22215. height: math.unit(50, "miles")
  22216. },
  22217. {
  22218. name: "M A C R O",
  22219. height: math.unit(300, "miles")
  22220. },
  22221. ]
  22222. ))
  22223. characterMakers.push(() => makeCharacter(
  22224. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22225. {
  22226. side: {
  22227. height: math.unit(15.6, "meters"),
  22228. weight: math.unit(700000, "kg"),
  22229. name: "Side",
  22230. image: {
  22231. source: "./media/characters/bunsen/side.svg",
  22232. extra: 1644 / 358
  22233. }
  22234. },
  22235. foot: {
  22236. height: math.unit(1.611 * 1644 / 358, "meter"),
  22237. name: "Foot",
  22238. image: {
  22239. source: "./media/characters/bunsen/foot.svg"
  22240. }
  22241. },
  22242. },
  22243. [
  22244. {
  22245. name: "Small",
  22246. height: math.unit(10, "feet")
  22247. },
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(15.6, "meters"),
  22251. default: true
  22252. },
  22253. ]
  22254. ))
  22255. characterMakers.push(() => makeCharacter(
  22256. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22257. {
  22258. front: {
  22259. height: math.unit(4 + 11 / 12, "feet"),
  22260. weight: math.unit(140, "lb"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/sesh/front.svg",
  22264. extra: 3420 / 3231,
  22265. bottom: 72 / 3949.5
  22266. }
  22267. },
  22268. },
  22269. [
  22270. {
  22271. name: "Normal",
  22272. height: math.unit(4 + 11 / 12, "feet")
  22273. },
  22274. {
  22275. name: "Grown",
  22276. height: math.unit(15, "feet"),
  22277. default: true
  22278. },
  22279. {
  22280. name: "Macro",
  22281. height: math.unit(1500, "feet")
  22282. },
  22283. {
  22284. name: "Megamacro",
  22285. height: math.unit(30, "miles")
  22286. },
  22287. {
  22288. name: "Continental",
  22289. height: math.unit(3000, "miles")
  22290. },
  22291. {
  22292. name: "Gravity Mass",
  22293. height: math.unit(300000, "miles")
  22294. },
  22295. {
  22296. name: "Planet Buster",
  22297. height: math.unit(30000000, "miles")
  22298. },
  22299. {
  22300. name: "Big",
  22301. height: math.unit(3000000000, "miles")
  22302. },
  22303. ]
  22304. ))
  22305. characterMakers.push(() => makeCharacter(
  22306. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22307. {
  22308. front: {
  22309. height: math.unit(9, "feet"),
  22310. weight: math.unit(350, "lb"),
  22311. name: "Front",
  22312. image: {
  22313. source: "./media/characters/pepper/front.svg",
  22314. extra: 1448 / 1312,
  22315. bottom: 9.4 / 1457.88
  22316. }
  22317. },
  22318. back: {
  22319. height: math.unit(9, "feet"),
  22320. weight: math.unit(350, "lb"),
  22321. name: "Back",
  22322. image: {
  22323. source: "./media/characters/pepper/back.svg",
  22324. extra: 1423 / 1300,
  22325. bottom: 4.6 / 1429
  22326. }
  22327. },
  22328. maw: {
  22329. height: math.unit(0.932, "feet"),
  22330. name: "Maw",
  22331. image: {
  22332. source: "./media/characters/pepper/maw.svg"
  22333. }
  22334. },
  22335. },
  22336. [
  22337. {
  22338. name: "Normal",
  22339. height: math.unit(9, "feet"),
  22340. default: true
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22346. {
  22347. front: {
  22348. height: math.unit(6, "feet"),
  22349. weight: math.unit(150, "lb"),
  22350. name: "Front",
  22351. image: {
  22352. source: "./media/characters/maelstrom/front.svg",
  22353. extra: 2100 / 1883,
  22354. bottom: 94 / 2196.7
  22355. }
  22356. },
  22357. },
  22358. [
  22359. {
  22360. name: "Less Kaiju",
  22361. height: math.unit(200, "feet")
  22362. },
  22363. {
  22364. name: "Kaiju",
  22365. height: math.unit(400, "feet"),
  22366. default: true
  22367. },
  22368. {
  22369. name: "Kaiju-er",
  22370. height: math.unit(600, "feet")
  22371. },
  22372. ]
  22373. ))
  22374. characterMakers.push(() => makeCharacter(
  22375. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22376. {
  22377. front: {
  22378. height: math.unit(6 + 5 / 12, "feet"),
  22379. weight: math.unit(180, "lb"),
  22380. name: "Front",
  22381. image: {
  22382. source: "./media/characters/lexir/front.svg",
  22383. extra: 180 / 172,
  22384. bottom: 12 / 192
  22385. }
  22386. },
  22387. back: {
  22388. height: math.unit(6 + 5 / 12, "feet"),
  22389. weight: math.unit(180, "lb"),
  22390. name: "Back",
  22391. image: {
  22392. source: "./media/characters/lexir/back.svg",
  22393. extra: 183.84 / 175.5,
  22394. bottom: 3.1 / 187
  22395. }
  22396. },
  22397. },
  22398. [
  22399. {
  22400. name: "Very Smal",
  22401. height: math.unit(1, "nm")
  22402. },
  22403. {
  22404. name: "Normal",
  22405. height: math.unit(6 + 5 / 12, "feet"),
  22406. default: true
  22407. },
  22408. {
  22409. name: "Macro",
  22410. height: math.unit(1, "mile")
  22411. },
  22412. {
  22413. name: "Megamacro",
  22414. height: math.unit(50, "miles")
  22415. },
  22416. ]
  22417. ))
  22418. characterMakers.push(() => makeCharacter(
  22419. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22420. {
  22421. front: {
  22422. height: math.unit(1.5, "meters"),
  22423. weight: math.unit(100, "lb"),
  22424. name: "Front",
  22425. image: {
  22426. source: "./media/characters/maksio/front.svg",
  22427. extra: 1549 / 1531,
  22428. bottom: 123.7 / 1674.5429
  22429. }
  22430. },
  22431. back: {
  22432. height: math.unit(1.5, "meters"),
  22433. weight: math.unit(100, "lb"),
  22434. name: "Back",
  22435. image: {
  22436. source: "./media/characters/maksio/back.svg",
  22437. extra: 1541 / 1509,
  22438. bottom: 97 / 1639
  22439. }
  22440. },
  22441. hand: {
  22442. height: math.unit(0.621, "feet"),
  22443. name: "Hand",
  22444. image: {
  22445. source: "./media/characters/maksio/hand.svg"
  22446. }
  22447. },
  22448. foot: {
  22449. height: math.unit(1.611, "feet"),
  22450. name: "Foot",
  22451. image: {
  22452. source: "./media/characters/maksio/foot.svg"
  22453. }
  22454. },
  22455. },
  22456. [
  22457. {
  22458. name: "Shrunken",
  22459. height: math.unit(10, "cm")
  22460. },
  22461. {
  22462. name: "Normal",
  22463. height: math.unit(150, "cm"),
  22464. default: true
  22465. },
  22466. ]
  22467. ))
  22468. characterMakers.push(() => makeCharacter(
  22469. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22470. {
  22471. front: {
  22472. height: math.unit(100, "feet"),
  22473. name: "Front",
  22474. image: {
  22475. source: "./media/characters/erza-bear/front.svg",
  22476. extra: 2449 / 2390,
  22477. bottom: 46 / 2494
  22478. }
  22479. },
  22480. back: {
  22481. height: math.unit(100, "feet"),
  22482. name: "Back",
  22483. image: {
  22484. source: "./media/characters/erza-bear/back.svg",
  22485. extra: 2489 / 2430,
  22486. bottom: 85.4 / 2480
  22487. }
  22488. },
  22489. tail: {
  22490. height: math.unit(42, "feet"),
  22491. name: "Tail",
  22492. image: {
  22493. source: "./media/characters/erza-bear/tail.svg"
  22494. }
  22495. },
  22496. tongue: {
  22497. height: math.unit(8, "feet"),
  22498. name: "Tongue",
  22499. image: {
  22500. source: "./media/characters/erza-bear/tongue.svg"
  22501. }
  22502. },
  22503. dick: {
  22504. height: math.unit(10.5, "feet"),
  22505. name: "Dick",
  22506. image: {
  22507. source: "./media/characters/erza-bear/dick.svg"
  22508. }
  22509. },
  22510. dickVertical: {
  22511. height: math.unit(16.9, "feet"),
  22512. name: "Dick (Vertical)",
  22513. image: {
  22514. source: "./media/characters/erza-bear/dick-vertical.svg"
  22515. }
  22516. },
  22517. },
  22518. [
  22519. {
  22520. name: "Macro",
  22521. height: math.unit(100, "feet"),
  22522. default: true
  22523. },
  22524. ]
  22525. ))
  22526. characterMakers.push(() => makeCharacter(
  22527. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22528. {
  22529. front: {
  22530. height: math.unit(172, "cm"),
  22531. weight: math.unit(73, "kg"),
  22532. name: "Front",
  22533. image: {
  22534. source: "./media/characters/violet-flor/front.svg",
  22535. extra: 1530 / 1442,
  22536. bottom: 61.9 / 1588.8
  22537. }
  22538. },
  22539. back: {
  22540. height: math.unit(180, "cm"),
  22541. weight: math.unit(73, "kg"),
  22542. name: "Back",
  22543. image: {
  22544. source: "./media/characters/violet-flor/back.svg",
  22545. extra: 1692 / 1630,
  22546. bottom: 20 / 1712
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Normal",
  22553. height: math.unit(172, "cm"),
  22554. default: true
  22555. },
  22556. ]
  22557. ))
  22558. characterMakers.push(() => makeCharacter(
  22559. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22560. {
  22561. front: {
  22562. height: math.unit(6, "feet"),
  22563. weight: math.unit(220, "lb"),
  22564. name: "Front",
  22565. image: {
  22566. source: "./media/characters/lynn-rhea/front.svg",
  22567. extra: 310 / 273
  22568. }
  22569. },
  22570. back: {
  22571. height: math.unit(6, "feet"),
  22572. weight: math.unit(220, "lb"),
  22573. name: "Back",
  22574. image: {
  22575. source: "./media/characters/lynn-rhea/back.svg",
  22576. extra: 310 / 273
  22577. }
  22578. },
  22579. dicks: {
  22580. height: math.unit(0.9, "feet"),
  22581. name: "Dicks",
  22582. image: {
  22583. source: "./media/characters/lynn-rhea/dicks.svg"
  22584. }
  22585. },
  22586. slit: {
  22587. height: math.unit(0.4, "feet"),
  22588. name: "Slit",
  22589. image: {
  22590. source: "./media/characters/lynn-rhea/slit.svg"
  22591. }
  22592. },
  22593. },
  22594. [
  22595. {
  22596. name: "Micro",
  22597. height: math.unit(1, "inch")
  22598. },
  22599. {
  22600. name: "Macro",
  22601. height: math.unit(60, "feet"),
  22602. default: true
  22603. },
  22604. {
  22605. name: "Megamacro",
  22606. height: math.unit(2, "miles")
  22607. },
  22608. {
  22609. name: "Gigamacro",
  22610. height: math.unit(3, "earths")
  22611. },
  22612. {
  22613. name: "Galactic",
  22614. height: math.unit(0.8, "galaxies")
  22615. },
  22616. ]
  22617. ))
  22618. characterMakers.push(() => makeCharacter(
  22619. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22620. {
  22621. front: {
  22622. height: math.unit(1600, "feet"),
  22623. weight: math.unit(85758785169, "kg"),
  22624. name: "Front",
  22625. image: {
  22626. source: "./media/characters/valathos/front.svg",
  22627. extra: 1451 / 1339
  22628. }
  22629. },
  22630. },
  22631. [
  22632. {
  22633. name: "Macro",
  22634. height: math.unit(1600, "feet"),
  22635. default: true
  22636. },
  22637. ]
  22638. ))
  22639. characterMakers.push(() => makeCharacter(
  22640. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22641. {
  22642. front: {
  22643. height: math.unit(7 + 5 / 12, "feet"),
  22644. weight: math.unit(300, "lb"),
  22645. name: "Front",
  22646. image: {
  22647. source: "./media/characters/azula/front.svg",
  22648. extra: 3208 / 2880,
  22649. bottom: 80.2 / 3277
  22650. }
  22651. },
  22652. back: {
  22653. height: math.unit(7 + 5 / 12, "feet"),
  22654. weight: math.unit(300, "lb"),
  22655. name: "Back",
  22656. image: {
  22657. source: "./media/characters/azula/back.svg",
  22658. extra: 3169 / 2822,
  22659. bottom: 150.6 / 3321
  22660. }
  22661. },
  22662. },
  22663. [
  22664. {
  22665. name: "Normal",
  22666. height: math.unit(7 + 5 / 12, "feet"),
  22667. default: true
  22668. },
  22669. {
  22670. name: "Big",
  22671. height: math.unit(20, "feet")
  22672. },
  22673. ]
  22674. ))
  22675. characterMakers.push(() => makeCharacter(
  22676. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22677. {
  22678. front: {
  22679. height: math.unit(5 + 1 / 12, "feet"),
  22680. weight: math.unit(110, "lb"),
  22681. name: "Front",
  22682. image: {
  22683. source: "./media/characters/rupert/front.svg",
  22684. extra: 1549 / 1495,
  22685. bottom: 54.2 / 1604.4
  22686. }
  22687. },
  22688. },
  22689. [
  22690. {
  22691. name: "Normal",
  22692. height: math.unit(5 + 1 / 12, "feet"),
  22693. default: true
  22694. },
  22695. ]
  22696. ))
  22697. characterMakers.push(() => makeCharacter(
  22698. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22699. {
  22700. front: {
  22701. height: math.unit(8 + 4 / 12, "feet"),
  22702. weight: math.unit(350, "lb"),
  22703. name: "Front",
  22704. image: {
  22705. source: "./media/characters/sheera-castellar/front.svg",
  22706. extra: 1957 / 1894,
  22707. bottom: 26.97 / 1975.017
  22708. }
  22709. },
  22710. side: {
  22711. height: math.unit(8 + 4 / 12, "feet"),
  22712. weight: math.unit(350, "lb"),
  22713. name: "Side",
  22714. image: {
  22715. source: "./media/characters/sheera-castellar/side.svg",
  22716. extra: 1957 / 1894
  22717. }
  22718. },
  22719. back: {
  22720. height: math.unit(8 + 4 / 12, "feet"),
  22721. weight: math.unit(350, "lb"),
  22722. name: "Back",
  22723. image: {
  22724. source: "./media/characters/sheera-castellar/back.svg",
  22725. extra: 1957 / 1894
  22726. }
  22727. },
  22728. angled: {
  22729. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22730. weight: math.unit(350, "lb"),
  22731. name: "Angled",
  22732. image: {
  22733. source: "./media/characters/sheera-castellar/angled.svg",
  22734. extra: 1807 / 1707,
  22735. bottom: 68 / 1875
  22736. }
  22737. },
  22738. genitals: {
  22739. height: math.unit(2.2, "feet"),
  22740. name: "Genitals",
  22741. image: {
  22742. source: "./media/characters/sheera-castellar/genitals.svg"
  22743. }
  22744. },
  22745. taur: {
  22746. height: math.unit(10 + 6/12, "feet"),
  22747. name: "Taur",
  22748. image: {
  22749. source: "./media/characters/sheera-castellar/taur.svg",
  22750. extra: 2017/1909,
  22751. bottom: 185/2202
  22752. }
  22753. },
  22754. },
  22755. [
  22756. {
  22757. name: "Normal",
  22758. height: math.unit(8 + 4 / 12, "feet")
  22759. },
  22760. {
  22761. name: "Macro",
  22762. height: math.unit(150, "feet"),
  22763. default: true
  22764. },
  22765. {
  22766. name: "Macro+",
  22767. height: math.unit(800, "feet")
  22768. },
  22769. ]
  22770. ))
  22771. characterMakers.push(() => makeCharacter(
  22772. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22773. {
  22774. front: {
  22775. height: math.unit(6, "feet"),
  22776. weight: math.unit(150, "lb"),
  22777. name: "Front",
  22778. image: {
  22779. source: "./media/characters/jaipur/front.svg",
  22780. extra: 3860 / 3731,
  22781. bottom: 287 / 4140
  22782. }
  22783. },
  22784. back: {
  22785. height: math.unit(6, "feet"),
  22786. weight: math.unit(150, "lb"),
  22787. name: "Back",
  22788. image: {
  22789. source: "./media/characters/jaipur/back.svg",
  22790. extra: 4060 / 3930,
  22791. bottom: 151 / 4200
  22792. }
  22793. },
  22794. },
  22795. [
  22796. {
  22797. name: "Normal",
  22798. height: math.unit(1.85, "meters"),
  22799. default: true
  22800. },
  22801. {
  22802. name: "Macro",
  22803. height: math.unit(150, "meters")
  22804. },
  22805. {
  22806. name: "Macro+",
  22807. height: math.unit(0.5, "miles")
  22808. },
  22809. {
  22810. name: "Macro++",
  22811. height: math.unit(2.5, "miles")
  22812. },
  22813. {
  22814. name: "Macro+++",
  22815. height: math.unit(12, "miles")
  22816. },
  22817. {
  22818. name: "Macro++++",
  22819. height: math.unit(120, "miles")
  22820. },
  22821. {
  22822. name: "Macro+++++",
  22823. height: math.unit(1200, "miles")
  22824. },
  22825. ]
  22826. ))
  22827. characterMakers.push(() => makeCharacter(
  22828. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22829. {
  22830. front: {
  22831. height: math.unit(6, "feet"),
  22832. weight: math.unit(150, "lb"),
  22833. name: "Front",
  22834. image: {
  22835. source: "./media/characters/sheila-wolf/front.svg",
  22836. extra: 1931 / 1808,
  22837. bottom: 29.5 / 1960
  22838. }
  22839. },
  22840. dick: {
  22841. height: math.unit(1.464, "feet"),
  22842. name: "Dick",
  22843. image: {
  22844. source: "./media/characters/sheila-wolf/dick.svg"
  22845. }
  22846. },
  22847. muzzle: {
  22848. height: math.unit(0.513, "feet"),
  22849. name: "Muzzle",
  22850. image: {
  22851. source: "./media/characters/sheila-wolf/muzzle.svg"
  22852. }
  22853. },
  22854. },
  22855. [
  22856. {
  22857. name: "Macro",
  22858. height: math.unit(70, "feet"),
  22859. default: true
  22860. },
  22861. ]
  22862. ))
  22863. characterMakers.push(() => makeCharacter(
  22864. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22865. {
  22866. front: {
  22867. height: math.unit(32, "meters"),
  22868. weight: math.unit(300000, "kg"),
  22869. name: "Front",
  22870. image: {
  22871. source: "./media/characters/almor/front.svg",
  22872. extra: 1408 / 1322,
  22873. bottom: 94.6 / 1506.5
  22874. }
  22875. },
  22876. },
  22877. [
  22878. {
  22879. name: "Macro",
  22880. height: math.unit(32, "meters"),
  22881. default: true
  22882. },
  22883. ]
  22884. ))
  22885. characterMakers.push(() => makeCharacter(
  22886. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22887. {
  22888. front: {
  22889. height: math.unit(7, "feet"),
  22890. weight: math.unit(200, "lb"),
  22891. name: "Front",
  22892. image: {
  22893. source: "./media/characters/silver/front.svg",
  22894. extra: 472.1 / 450.5,
  22895. bottom: 26.5 / 499.424
  22896. }
  22897. },
  22898. },
  22899. [
  22900. {
  22901. name: "Normal",
  22902. height: math.unit(7, "feet"),
  22903. default: true
  22904. },
  22905. {
  22906. name: "Macro",
  22907. height: math.unit(800, "feet")
  22908. },
  22909. {
  22910. name: "Megamacro",
  22911. height: math.unit(250, "miles")
  22912. },
  22913. ]
  22914. ))
  22915. characterMakers.push(() => makeCharacter(
  22916. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22917. {
  22918. front: {
  22919. height: math.unit(6, "feet"),
  22920. weight: math.unit(150, "lb"),
  22921. name: "Front",
  22922. image: {
  22923. source: "./media/characters/pliskin/front.svg",
  22924. extra: 1469 / 1359,
  22925. bottom: 70 / 1540
  22926. }
  22927. },
  22928. },
  22929. [
  22930. {
  22931. name: "Micro",
  22932. height: math.unit(3, "inches")
  22933. },
  22934. {
  22935. name: "Normal",
  22936. height: math.unit(5 + 11 / 12, "feet"),
  22937. default: true
  22938. },
  22939. {
  22940. name: "Macro",
  22941. height: math.unit(120, "feet")
  22942. },
  22943. ]
  22944. ))
  22945. characterMakers.push(() => makeCharacter(
  22946. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22947. {
  22948. front: {
  22949. height: math.unit(6, "feet"),
  22950. weight: math.unit(150, "lb"),
  22951. name: "Front",
  22952. image: {
  22953. source: "./media/characters/sammy/front.svg",
  22954. extra: 1193 / 1089,
  22955. bottom: 30.5 / 1226
  22956. }
  22957. },
  22958. },
  22959. [
  22960. {
  22961. name: "Macro",
  22962. height: math.unit(1700, "feet"),
  22963. default: true
  22964. },
  22965. {
  22966. name: "Examacro",
  22967. height: math.unit(2.5e9, "lightyears")
  22968. },
  22969. ]
  22970. ))
  22971. characterMakers.push(() => makeCharacter(
  22972. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22973. {
  22974. front: {
  22975. height: math.unit(21, "meters"),
  22976. weight: math.unit(12, "tonnes"),
  22977. name: "Front",
  22978. image: {
  22979. source: "./media/characters/kuru/front.svg",
  22980. extra: 4301 / 3785,
  22981. bottom: 371.3 / 4691
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Macro",
  22988. height: math.unit(21, "meters"),
  22989. default: true
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22995. {
  22996. front: {
  22997. height: math.unit(23, "meters"),
  22998. weight: math.unit(12.2, "tonnes"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/rakka/front.svg",
  23002. extra: 4670 / 4169,
  23003. bottom: 301 / 4968.7
  23004. }
  23005. },
  23006. },
  23007. [
  23008. {
  23009. name: "Macro",
  23010. height: math.unit(23, "meters"),
  23011. default: true
  23012. },
  23013. ]
  23014. ))
  23015. characterMakers.push(() => makeCharacter(
  23016. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23017. {
  23018. front: {
  23019. height: math.unit(6, "feet"),
  23020. weight: math.unit(150, "lb"),
  23021. name: "Front",
  23022. image: {
  23023. source: "./media/characters/rhys-feline/front.svg",
  23024. extra: 2488 / 2308,
  23025. bottom: 35.67 / 2519.19
  23026. }
  23027. },
  23028. },
  23029. [
  23030. {
  23031. name: "Really Small",
  23032. height: math.unit(1, "nm")
  23033. },
  23034. {
  23035. name: "Micro",
  23036. height: math.unit(4, "inches")
  23037. },
  23038. {
  23039. name: "Normal",
  23040. height: math.unit(4 + 10 / 12, "feet"),
  23041. default: true
  23042. },
  23043. {
  23044. name: "Macro",
  23045. height: math.unit(100, "feet")
  23046. },
  23047. {
  23048. name: "Megamacto",
  23049. height: math.unit(50, "miles")
  23050. },
  23051. ]
  23052. ))
  23053. characterMakers.push(() => makeCharacter(
  23054. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23055. {
  23056. side: {
  23057. height: math.unit(30, "feet"),
  23058. weight: math.unit(35000, "kg"),
  23059. name: "Side",
  23060. image: {
  23061. source: "./media/characters/alydar/side.svg",
  23062. extra: 234 / 222,
  23063. bottom: 6.5 / 241
  23064. }
  23065. },
  23066. front: {
  23067. height: math.unit(30, "feet"),
  23068. weight: math.unit(35000, "kg"),
  23069. name: "Front",
  23070. image: {
  23071. source: "./media/characters/alydar/front.svg",
  23072. extra: 223.37 / 210.2,
  23073. bottom: 22.3 / 246.76
  23074. }
  23075. },
  23076. top: {
  23077. height: math.unit(64.54, "feet"),
  23078. weight: math.unit(35000, "kg"),
  23079. name: "Top",
  23080. image: {
  23081. source: "./media/characters/alydar/top.svg"
  23082. }
  23083. },
  23084. anthro: {
  23085. height: math.unit(30, "feet"),
  23086. weight: math.unit(9000, "kg"),
  23087. name: "Anthro",
  23088. image: {
  23089. source: "./media/characters/alydar/anthro.svg",
  23090. extra: 432 / 421,
  23091. bottom: 7.18 / 440
  23092. }
  23093. },
  23094. maw: {
  23095. height: math.unit(11.693, "feet"),
  23096. name: "Maw",
  23097. image: {
  23098. source: "./media/characters/alydar/maw.svg"
  23099. }
  23100. },
  23101. head: {
  23102. height: math.unit(11.693, "feet"),
  23103. name: "Head",
  23104. image: {
  23105. source: "./media/characters/alydar/head.svg"
  23106. }
  23107. },
  23108. headAlt: {
  23109. height: math.unit(12.861, "feet"),
  23110. name: "Head (Alt)",
  23111. image: {
  23112. source: "./media/characters/alydar/head-alt.svg"
  23113. }
  23114. },
  23115. wing: {
  23116. height: math.unit(20.712, "feet"),
  23117. name: "Wing",
  23118. image: {
  23119. source: "./media/characters/alydar/wing.svg"
  23120. }
  23121. },
  23122. wingFeather: {
  23123. height: math.unit(9.662, "feet"),
  23124. name: "Wing Feather",
  23125. image: {
  23126. source: "./media/characters/alydar/wing-feather.svg"
  23127. }
  23128. },
  23129. countourFeather: {
  23130. height: math.unit(4.154, "feet"),
  23131. name: "Contour Feather",
  23132. image: {
  23133. source: "./media/characters/alydar/contour-feather.svg"
  23134. }
  23135. },
  23136. },
  23137. [
  23138. {
  23139. name: "Diplomatic",
  23140. height: math.unit(13, "feet"),
  23141. default: true
  23142. },
  23143. {
  23144. name: "Small",
  23145. height: math.unit(30, "feet")
  23146. },
  23147. {
  23148. name: "Normal",
  23149. height: math.unit(95, "feet"),
  23150. default: true
  23151. },
  23152. {
  23153. name: "Large",
  23154. height: math.unit(285, "feet")
  23155. },
  23156. {
  23157. name: "Incomprehensible",
  23158. height: math.unit(450, "megameters")
  23159. },
  23160. ]
  23161. ))
  23162. characterMakers.push(() => makeCharacter(
  23163. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23164. {
  23165. side: {
  23166. height: math.unit(11, "feet"),
  23167. weight: math.unit(1750, "kg"),
  23168. name: "Side",
  23169. image: {
  23170. source: "./media/characters/selicia/side.svg",
  23171. extra: 440 / 396,
  23172. bottom: 24.8 / 465.979
  23173. }
  23174. },
  23175. maw: {
  23176. height: math.unit(4.665, "feet"),
  23177. name: "Maw",
  23178. image: {
  23179. source: "./media/characters/selicia/maw.svg"
  23180. }
  23181. },
  23182. },
  23183. [
  23184. {
  23185. name: "Normal",
  23186. height: math.unit(11, "feet"),
  23187. default: true
  23188. },
  23189. ]
  23190. ))
  23191. characterMakers.push(() => makeCharacter(
  23192. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23193. {
  23194. side: {
  23195. height: math.unit(2 + 6 / 12, "feet"),
  23196. weight: math.unit(30, "lb"),
  23197. name: "Side",
  23198. image: {
  23199. source: "./media/characters/layla/side.svg",
  23200. extra: 244 / 188,
  23201. bottom: 18.2 / 262.1
  23202. }
  23203. },
  23204. back: {
  23205. height: math.unit(2 + 6 / 12, "feet"),
  23206. weight: math.unit(30, "lb"),
  23207. name: "Back",
  23208. image: {
  23209. source: "./media/characters/layla/back.svg",
  23210. extra: 308 / 241.5,
  23211. bottom: 8.9 / 316.8
  23212. }
  23213. },
  23214. cumming: {
  23215. height: math.unit(2 + 6 / 12, "feet"),
  23216. weight: math.unit(30, "lb"),
  23217. name: "Cumming",
  23218. image: {
  23219. source: "./media/characters/layla/cumming.svg",
  23220. extra: 342 / 279,
  23221. bottom: 595 / 938
  23222. }
  23223. },
  23224. dickFlaccid: {
  23225. height: math.unit(2.595, "feet"),
  23226. name: "Flaccid Genitals",
  23227. image: {
  23228. source: "./media/characters/layla/dick-flaccid.svg"
  23229. }
  23230. },
  23231. dickErect: {
  23232. height: math.unit(2.359, "feet"),
  23233. name: "Erect Genitals",
  23234. image: {
  23235. source: "./media/characters/layla/dick-erect.svg"
  23236. }
  23237. },
  23238. dragon: {
  23239. height: math.unit(40, "feet"),
  23240. name: "Dragon",
  23241. image: {
  23242. source: "./media/characters/layla/dragon.svg",
  23243. extra: 610/535,
  23244. bottom: 367/977
  23245. }
  23246. },
  23247. taur: {
  23248. height: math.unit(30, "feet"),
  23249. name: "Taur",
  23250. image: {
  23251. source: "./media/characters/layla/taur.svg",
  23252. extra: 1268/1199,
  23253. bottom: 112/1380
  23254. }
  23255. },
  23256. },
  23257. [
  23258. {
  23259. name: "Micro",
  23260. height: math.unit(1, "inch")
  23261. },
  23262. {
  23263. name: "Small",
  23264. height: math.unit(1, "foot")
  23265. },
  23266. {
  23267. name: "Normal",
  23268. height: math.unit(2 + 6 / 12, "feet"),
  23269. default: true
  23270. },
  23271. {
  23272. name: "Macro",
  23273. height: math.unit(200, "feet")
  23274. },
  23275. {
  23276. name: "Megamacro",
  23277. height: math.unit(1000, "miles")
  23278. },
  23279. {
  23280. name: "Planetary",
  23281. height: math.unit(8000, "miles")
  23282. },
  23283. {
  23284. name: "True Layla",
  23285. height: math.unit(200000 * 7, "multiverses")
  23286. },
  23287. ]
  23288. ))
  23289. characterMakers.push(() => makeCharacter(
  23290. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23291. {
  23292. back: {
  23293. height: math.unit(10.5, "feet"),
  23294. weight: math.unit(800, "lb"),
  23295. name: "Back",
  23296. image: {
  23297. source: "./media/characters/knox/back.svg",
  23298. extra: 1486 / 1089,
  23299. bottom: 107 / 1601.4
  23300. }
  23301. },
  23302. side: {
  23303. height: math.unit(10.5, "feet"),
  23304. weight: math.unit(800, "lb"),
  23305. name: "Side",
  23306. image: {
  23307. source: "./media/characters/knox/side.svg",
  23308. extra: 244 / 218,
  23309. bottom: 14 / 260
  23310. }
  23311. },
  23312. },
  23313. [
  23314. {
  23315. name: "Compact",
  23316. height: math.unit(10.5, "feet"),
  23317. default: true
  23318. },
  23319. {
  23320. name: "Dynamax",
  23321. height: math.unit(210, "feet")
  23322. },
  23323. {
  23324. name: "Full Macro",
  23325. height: math.unit(850, "feet")
  23326. },
  23327. ]
  23328. ))
  23329. characterMakers.push(() => makeCharacter(
  23330. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23331. {
  23332. front: {
  23333. height: math.unit(6, "feet"),
  23334. weight: math.unit(152, "lb"),
  23335. name: "Front",
  23336. image: {
  23337. source: "./media/characters/shin-pikachu/front.svg",
  23338. extra: 1574 / 1480,
  23339. bottom: 53.3 / 1626
  23340. }
  23341. },
  23342. hand: {
  23343. height: math.unit(1.055, "feet"),
  23344. name: "Hand",
  23345. image: {
  23346. source: "./media/characters/shin-pikachu/hand.svg"
  23347. }
  23348. },
  23349. foot: {
  23350. height: math.unit(1.1, "feet"),
  23351. name: "Foot",
  23352. image: {
  23353. source: "./media/characters/shin-pikachu/foot.svg"
  23354. }
  23355. },
  23356. collar: {
  23357. height: math.unit(0.386, "feet"),
  23358. name: "Collar",
  23359. image: {
  23360. source: "./media/characters/shin-pikachu/collar.svg"
  23361. }
  23362. },
  23363. },
  23364. [
  23365. {
  23366. name: "Smallest",
  23367. height: math.unit(0.5, "inches")
  23368. },
  23369. {
  23370. name: "Micro",
  23371. height: math.unit(6, "inches")
  23372. },
  23373. {
  23374. name: "Normal",
  23375. height: math.unit(6, "feet"),
  23376. default: true
  23377. },
  23378. {
  23379. name: "Macro",
  23380. height: math.unit(150, "feet")
  23381. },
  23382. ]
  23383. ))
  23384. characterMakers.push(() => makeCharacter(
  23385. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23386. {
  23387. front: {
  23388. height: math.unit(28, "feet"),
  23389. weight: math.unit(10500, "lb"),
  23390. name: "Front",
  23391. image: {
  23392. source: "./media/characters/kayda/front.svg",
  23393. extra: 1536 / 1428,
  23394. bottom: 68.7 / 1603
  23395. }
  23396. },
  23397. back: {
  23398. height: math.unit(28, "feet"),
  23399. weight: math.unit(10500, "lb"),
  23400. name: "Back",
  23401. image: {
  23402. source: "./media/characters/kayda/back.svg",
  23403. extra: 1557 / 1464,
  23404. bottom: 39.5 / 1597.49
  23405. }
  23406. },
  23407. dick: {
  23408. height: math.unit(3.858, "feet"),
  23409. name: "Dick",
  23410. image: {
  23411. source: "./media/characters/kayda/dick.svg"
  23412. }
  23413. },
  23414. },
  23415. [
  23416. {
  23417. name: "Macro",
  23418. height: math.unit(28, "feet"),
  23419. default: true
  23420. },
  23421. ]
  23422. ))
  23423. characterMakers.push(() => makeCharacter(
  23424. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23425. {
  23426. front: {
  23427. height: math.unit(10 + 11 / 12, "feet"),
  23428. weight: math.unit(1400, "lb"),
  23429. name: "Front",
  23430. image: {
  23431. source: "./media/characters/brian/front.svg",
  23432. extra: 737 / 692,
  23433. bottom: 55.4 / 785
  23434. }
  23435. },
  23436. },
  23437. [
  23438. {
  23439. name: "Normal",
  23440. height: math.unit(10 + 11 / 12, "feet"),
  23441. default: true
  23442. },
  23443. ]
  23444. ))
  23445. characterMakers.push(() => makeCharacter(
  23446. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23447. {
  23448. front: {
  23449. height: math.unit(5 + 8 / 12, "feet"),
  23450. weight: math.unit(140, "lb"),
  23451. name: "Front",
  23452. image: {
  23453. source: "./media/characters/khemri/front.svg",
  23454. extra: 4780 / 4059,
  23455. bottom: 80.1 / 4859.25
  23456. }
  23457. },
  23458. },
  23459. [
  23460. {
  23461. name: "Micro",
  23462. height: math.unit(6, "inches")
  23463. },
  23464. {
  23465. name: "Normal",
  23466. height: math.unit(5 + 8 / 12, "feet"),
  23467. default: true
  23468. },
  23469. ]
  23470. ))
  23471. characterMakers.push(() => makeCharacter(
  23472. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23473. {
  23474. front: {
  23475. height: math.unit(13, "feet"),
  23476. weight: math.unit(1700, "lb"),
  23477. name: "Front",
  23478. image: {
  23479. source: "./media/characters/felix-braveheart/front.svg",
  23480. extra: 1222 / 1157,
  23481. bottom: 53.2 / 1280
  23482. }
  23483. },
  23484. back: {
  23485. height: math.unit(13, "feet"),
  23486. weight: math.unit(1700, "lb"),
  23487. name: "Back",
  23488. image: {
  23489. source: "./media/characters/felix-braveheart/back.svg",
  23490. extra: 1277 / 1203,
  23491. bottom: 50.2 / 1327
  23492. }
  23493. },
  23494. feral: {
  23495. height: math.unit(6, "feet"),
  23496. weight: math.unit(400, "lb"),
  23497. name: "Feral",
  23498. image: {
  23499. source: "./media/characters/felix-braveheart/feral.svg",
  23500. extra: 682 / 625,
  23501. bottom: 6.9 / 688
  23502. }
  23503. },
  23504. },
  23505. [
  23506. {
  23507. name: "Normal",
  23508. height: math.unit(13, "feet"),
  23509. default: true
  23510. },
  23511. ]
  23512. ))
  23513. characterMakers.push(() => makeCharacter(
  23514. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23515. {
  23516. side: {
  23517. height: math.unit(5 + 11 / 12, "feet"),
  23518. weight: math.unit(1400, "lb"),
  23519. name: "Side",
  23520. image: {
  23521. source: "./media/characters/shadow-blade/side.svg",
  23522. extra: 1726 / 1267,
  23523. bottom: 58.4 / 1785
  23524. }
  23525. },
  23526. },
  23527. [
  23528. {
  23529. name: "Normal",
  23530. height: math.unit(5 + 11 / 12, "feet"),
  23531. default: true
  23532. },
  23533. ]
  23534. ))
  23535. characterMakers.push(() => makeCharacter(
  23536. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23537. {
  23538. front: {
  23539. height: math.unit(1 + 6 / 12, "feet"),
  23540. weight: math.unit(25, "lb"),
  23541. name: "Front",
  23542. image: {
  23543. source: "./media/characters/karla-halldor/front.svg",
  23544. extra: 1459 / 1383,
  23545. bottom: 12 / 1472
  23546. }
  23547. },
  23548. },
  23549. [
  23550. {
  23551. name: "Normal",
  23552. height: math.unit(1 + 6 / 12, "feet"),
  23553. default: true
  23554. },
  23555. ]
  23556. ))
  23557. characterMakers.push(() => makeCharacter(
  23558. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23559. {
  23560. front: {
  23561. height: math.unit(6 + 2 / 12, "feet"),
  23562. weight: math.unit(160, "lb"),
  23563. name: "Front",
  23564. image: {
  23565. source: "./media/characters/ariam/front.svg",
  23566. extra: 714 / 617,
  23567. bottom: 23.4 / 737,
  23568. }
  23569. },
  23570. squatting: {
  23571. height: math.unit(4.1, "feet"),
  23572. weight: math.unit(160, "lb"),
  23573. name: "Squatting",
  23574. image: {
  23575. source: "./media/characters/ariam/squatting.svg",
  23576. extra: 2617 / 2112,
  23577. bottom: 61.2 / 2681,
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Normal",
  23584. height: math.unit(6 + 2 / 12, "feet"),
  23585. default: true
  23586. },
  23587. {
  23588. name: "Normal+",
  23589. height: math.unit(4, "meters")
  23590. },
  23591. {
  23592. name: "Macro",
  23593. height: math.unit(50, "meters")
  23594. },
  23595. {
  23596. name: "Macro+",
  23597. height: math.unit(100, "meters")
  23598. },
  23599. {
  23600. name: "Megamacro",
  23601. height: math.unit(20, "km")
  23602. },
  23603. ]
  23604. ))
  23605. characterMakers.push(() => makeCharacter(
  23606. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23607. {
  23608. front: {
  23609. height: math.unit(1.67, "meters"),
  23610. weight: math.unit(140, "lb"),
  23611. name: "Front",
  23612. image: {
  23613. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23614. extra: 438 / 410,
  23615. bottom: 0.75 / 439
  23616. }
  23617. },
  23618. },
  23619. [
  23620. {
  23621. name: "Shrunken",
  23622. height: math.unit(7.6, "cm")
  23623. },
  23624. {
  23625. name: "Human Scale",
  23626. height: math.unit(1.67, "meters")
  23627. },
  23628. {
  23629. name: "Wolxi Scale",
  23630. height: math.unit(36.7, "meters"),
  23631. default: true
  23632. },
  23633. ]
  23634. ))
  23635. characterMakers.push(() => makeCharacter(
  23636. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23637. {
  23638. front: {
  23639. height: math.unit(1.73, "meters"),
  23640. weight: math.unit(240, "lb"),
  23641. name: "Front",
  23642. image: {
  23643. source: "./media/characters/izue-two-mothers/front.svg",
  23644. extra: 469 / 437,
  23645. bottom: 1.24 / 470.6
  23646. }
  23647. },
  23648. },
  23649. [
  23650. {
  23651. name: "Shrunken",
  23652. height: math.unit(7.86, "cm")
  23653. },
  23654. {
  23655. name: "Human Scale",
  23656. height: math.unit(1.73, "meters")
  23657. },
  23658. {
  23659. name: "Wolxi Scale",
  23660. height: math.unit(38, "meters"),
  23661. default: true
  23662. },
  23663. ]
  23664. ))
  23665. characterMakers.push(() => makeCharacter(
  23666. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23667. {
  23668. front: {
  23669. height: math.unit(1.55, "meters"),
  23670. weight: math.unit(120, "lb"),
  23671. name: "Front",
  23672. image: {
  23673. source: "./media/characters/teeku-love-shack/front.svg",
  23674. extra: 387 / 362,
  23675. bottom: 1.51 / 388
  23676. }
  23677. },
  23678. },
  23679. [
  23680. {
  23681. name: "Shrunken",
  23682. height: math.unit(7, "cm")
  23683. },
  23684. {
  23685. name: "Human Scale",
  23686. height: math.unit(1.55, "meters")
  23687. },
  23688. {
  23689. name: "Wolxi Scale",
  23690. height: math.unit(34.1, "meters"),
  23691. default: true
  23692. },
  23693. ]
  23694. ))
  23695. characterMakers.push(() => makeCharacter(
  23696. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23697. {
  23698. front: {
  23699. height: math.unit(1.83, "meters"),
  23700. weight: math.unit(135, "lb"),
  23701. name: "Front",
  23702. image: {
  23703. source: "./media/characters/dejma-the-red/front.svg",
  23704. extra: 480 / 458,
  23705. bottom: 1.8 / 482
  23706. }
  23707. },
  23708. },
  23709. [
  23710. {
  23711. name: "Shrunken",
  23712. height: math.unit(8.3, "cm")
  23713. },
  23714. {
  23715. name: "Human Scale",
  23716. height: math.unit(1.83, "meters")
  23717. },
  23718. {
  23719. name: "Wolxi Scale",
  23720. height: math.unit(40, "meters"),
  23721. default: true
  23722. },
  23723. ]
  23724. ))
  23725. characterMakers.push(() => makeCharacter(
  23726. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23727. {
  23728. front: {
  23729. height: math.unit(1.78, "meters"),
  23730. weight: math.unit(65, "kg"),
  23731. name: "Front",
  23732. image: {
  23733. source: "./media/characters/aki/front.svg",
  23734. extra: 452 / 415
  23735. }
  23736. },
  23737. frontNsfw: {
  23738. height: math.unit(1.78, "meters"),
  23739. weight: math.unit(65, "kg"),
  23740. name: "Front (NSFW)",
  23741. image: {
  23742. source: "./media/characters/aki/front-nsfw.svg",
  23743. extra: 452 / 415
  23744. }
  23745. },
  23746. back: {
  23747. height: math.unit(1.78, "meters"),
  23748. weight: math.unit(65, "kg"),
  23749. name: "Back",
  23750. image: {
  23751. source: "./media/characters/aki/back.svg",
  23752. extra: 452 / 415
  23753. }
  23754. },
  23755. rump: {
  23756. height: math.unit(2.05, "feet"),
  23757. name: "Rump",
  23758. image: {
  23759. source: "./media/characters/aki/rump.svg"
  23760. }
  23761. },
  23762. dick: {
  23763. height: math.unit(0.95, "feet"),
  23764. name: "Dick",
  23765. image: {
  23766. source: "./media/characters/aki/dick.svg"
  23767. }
  23768. },
  23769. },
  23770. [
  23771. {
  23772. name: "Micro",
  23773. height: math.unit(15, "cm")
  23774. },
  23775. {
  23776. name: "Normal",
  23777. height: math.unit(178, "cm"),
  23778. default: true
  23779. },
  23780. {
  23781. name: "Macro",
  23782. height: math.unit(214, "m")
  23783. },
  23784. {
  23785. name: "Macro+",
  23786. height: math.unit(534, "m")
  23787. },
  23788. ]
  23789. ))
  23790. characterMakers.push(() => makeCharacter(
  23791. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23792. {
  23793. front: {
  23794. height: math.unit(5 + 5 / 12, "feet"),
  23795. weight: math.unit(120, "lb"),
  23796. name: "Front",
  23797. image: {
  23798. source: "./media/characters/ari/front.svg",
  23799. extra: 714.5 / 682,
  23800. bottom: 8 / 722.5
  23801. }
  23802. },
  23803. },
  23804. [
  23805. {
  23806. name: "Normal",
  23807. height: math.unit(5 + 5 / 12, "feet")
  23808. },
  23809. {
  23810. name: "Macro",
  23811. height: math.unit(100, "feet"),
  23812. default: true
  23813. },
  23814. {
  23815. name: "Megamacro",
  23816. height: math.unit(100, "miles")
  23817. },
  23818. {
  23819. name: "Gigamacro",
  23820. height: math.unit(80000, "miles")
  23821. },
  23822. ]
  23823. ))
  23824. characterMakers.push(() => makeCharacter(
  23825. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23826. {
  23827. side: {
  23828. height: math.unit(9, "feet"),
  23829. weight: math.unit(400, "kg"),
  23830. name: "Side",
  23831. image: {
  23832. source: "./media/characters/bolt/side.svg",
  23833. extra: 1126 / 896,
  23834. bottom: 60 / 1187.3,
  23835. }
  23836. },
  23837. },
  23838. [
  23839. {
  23840. name: "Micro",
  23841. height: math.unit(5, "inches")
  23842. },
  23843. {
  23844. name: "Normal",
  23845. height: math.unit(9, "feet"),
  23846. default: true
  23847. },
  23848. {
  23849. name: "Macro",
  23850. height: math.unit(700, "feet")
  23851. },
  23852. {
  23853. name: "Max Size",
  23854. height: math.unit(1.52e22, "yottameters")
  23855. },
  23856. ]
  23857. ))
  23858. characterMakers.push(() => makeCharacter(
  23859. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23860. {
  23861. front: {
  23862. height: math.unit(4.53, "meters"),
  23863. weight: math.unit(3, "tons"),
  23864. name: "Front",
  23865. image: {
  23866. source: "./media/characters/draekon-sylviar/front.svg",
  23867. extra: 1228 / 1068,
  23868. bottom: 41 / 1270
  23869. }
  23870. },
  23871. tail: {
  23872. height: math.unit(1.772, "meter"),
  23873. name: "Tail",
  23874. image: {
  23875. source: "./media/characters/draekon-sylviar/tail.svg"
  23876. }
  23877. },
  23878. head: {
  23879. height: math.unit(1.331, "meter"),
  23880. name: "Head",
  23881. image: {
  23882. source: "./media/characters/draekon-sylviar/head.svg"
  23883. }
  23884. },
  23885. hand: {
  23886. height: math.unit(0.564, "meter"),
  23887. name: "Hand",
  23888. image: {
  23889. source: "./media/characters/draekon-sylviar/hand.svg"
  23890. }
  23891. },
  23892. foot: {
  23893. height: math.unit(0.621, "meter"),
  23894. name: "Foot",
  23895. image: {
  23896. source: "./media/characters/draekon-sylviar/foot.svg",
  23897. bottom: 32 / 324
  23898. }
  23899. },
  23900. dick: {
  23901. height: math.unit(61, "cm"),
  23902. name: "Dick",
  23903. image: {
  23904. source: "./media/characters/draekon-sylviar/dick.svg"
  23905. }
  23906. },
  23907. dickseparated: {
  23908. height: math.unit(61, "cm"),
  23909. name: "Dick-separated",
  23910. image: {
  23911. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23912. }
  23913. },
  23914. },
  23915. [
  23916. {
  23917. name: "Small",
  23918. height: math.unit(4.53 / 2, "meters"),
  23919. default: true
  23920. },
  23921. {
  23922. name: "Normal",
  23923. height: math.unit(4.53, "meters"),
  23924. default: true
  23925. },
  23926. {
  23927. name: "Large",
  23928. height: math.unit(4.53 * 2, "meters"),
  23929. },
  23930. ]
  23931. ))
  23932. characterMakers.push(() => makeCharacter(
  23933. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23934. {
  23935. front: {
  23936. height: math.unit(6 + 2 / 12, "feet"),
  23937. weight: math.unit(180, "lb"),
  23938. name: "Front",
  23939. image: {
  23940. source: "./media/characters/brawler/front.svg",
  23941. extra: 3301 / 3027,
  23942. bottom: 138 / 3439
  23943. }
  23944. },
  23945. },
  23946. [
  23947. {
  23948. name: "Normal",
  23949. height: math.unit(6 + 2 / 12, "feet"),
  23950. default: true
  23951. },
  23952. ]
  23953. ))
  23954. characterMakers.push(() => makeCharacter(
  23955. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23956. {
  23957. front: {
  23958. height: math.unit(11, "feet"),
  23959. weight: math.unit(1000, "lb"),
  23960. name: "Front",
  23961. image: {
  23962. source: "./media/characters/alex/front.svg",
  23963. bottom: 44.5 / 620
  23964. }
  23965. },
  23966. },
  23967. [
  23968. {
  23969. name: "Micro",
  23970. height: math.unit(5, "inches")
  23971. },
  23972. {
  23973. name: "Normal",
  23974. height: math.unit(11, "feet"),
  23975. default: true
  23976. },
  23977. {
  23978. name: "Macro",
  23979. height: math.unit(9.5e9, "feet")
  23980. },
  23981. {
  23982. name: "Max Size",
  23983. height: math.unit(1.4e283, "yottameters")
  23984. },
  23985. ]
  23986. ))
  23987. characterMakers.push(() => makeCharacter(
  23988. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23989. {
  23990. female: {
  23991. height: math.unit(29.9, "m"),
  23992. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23993. name: "Female",
  23994. image: {
  23995. source: "./media/characters/zenari/female.svg",
  23996. extra: 3281.6 / 3217,
  23997. bottom: 72.2 / 3353
  23998. }
  23999. },
  24000. male: {
  24001. height: math.unit(27.7, "m"),
  24002. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24003. name: "Male",
  24004. image: {
  24005. source: "./media/characters/zenari/male.svg",
  24006. extra: 3008 / 2991,
  24007. bottom: 54.6 / 3069
  24008. }
  24009. },
  24010. },
  24011. [
  24012. {
  24013. name: "Macro",
  24014. height: math.unit(29.7, "meters"),
  24015. default: true
  24016. },
  24017. ]
  24018. ))
  24019. characterMakers.push(() => makeCharacter(
  24020. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24021. {
  24022. female: {
  24023. height: math.unit(23.8, "m"),
  24024. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24025. name: "Female",
  24026. image: {
  24027. source: "./media/characters/mactarian/female.svg",
  24028. extra: 2662 / 2569,
  24029. bottom: 73 / 2736
  24030. }
  24031. },
  24032. male: {
  24033. height: math.unit(23.8, "m"),
  24034. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24035. name: "Male",
  24036. image: {
  24037. source: "./media/characters/mactarian/male.svg",
  24038. extra: 2673 / 2600,
  24039. bottom: 76 / 2750
  24040. }
  24041. },
  24042. },
  24043. [
  24044. {
  24045. name: "Macro",
  24046. height: math.unit(23.8, "meters"),
  24047. default: true
  24048. },
  24049. ]
  24050. ))
  24051. characterMakers.push(() => makeCharacter(
  24052. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24053. {
  24054. female: {
  24055. height: math.unit(19.3, "m"),
  24056. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24057. name: "Female",
  24058. image: {
  24059. source: "./media/characters/umok/female.svg",
  24060. extra: 2186 / 2078,
  24061. bottom: 87 / 2277
  24062. }
  24063. },
  24064. male: {
  24065. height: math.unit(19.5, "m"),
  24066. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24067. name: "Male",
  24068. image: {
  24069. source: "./media/characters/umok/male.svg",
  24070. extra: 2233 / 2140,
  24071. bottom: 24.4 / 2258
  24072. }
  24073. },
  24074. },
  24075. [
  24076. {
  24077. name: "Macro",
  24078. height: math.unit(19.3, "meters"),
  24079. default: true
  24080. },
  24081. ]
  24082. ))
  24083. characterMakers.push(() => makeCharacter(
  24084. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24085. {
  24086. female: {
  24087. height: math.unit(26.15, "m"),
  24088. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24089. name: "Female",
  24090. image: {
  24091. source: "./media/characters/joraxian/female.svg",
  24092. extra: 2912 / 2824,
  24093. bottom: 36 / 2956
  24094. }
  24095. },
  24096. male: {
  24097. height: math.unit(25.4, "m"),
  24098. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24099. name: "Male",
  24100. image: {
  24101. source: "./media/characters/joraxian/male.svg",
  24102. extra: 2877 / 2721,
  24103. bottom: 82 / 2967
  24104. }
  24105. },
  24106. },
  24107. [
  24108. {
  24109. name: "Macro",
  24110. height: math.unit(26.15, "meters"),
  24111. default: true
  24112. },
  24113. ]
  24114. ))
  24115. characterMakers.push(() => makeCharacter(
  24116. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24117. {
  24118. female: {
  24119. height: math.unit(21.6, "m"),
  24120. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24121. name: "Female",
  24122. image: {
  24123. source: "./media/characters/sthara/female.svg",
  24124. extra: 2516 / 2347,
  24125. bottom: 21.5 / 2537
  24126. }
  24127. },
  24128. male: {
  24129. height: math.unit(24, "m"),
  24130. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24131. name: "Male",
  24132. image: {
  24133. source: "./media/characters/sthara/male.svg",
  24134. extra: 2732 / 2607,
  24135. bottom: 23 / 2732
  24136. }
  24137. },
  24138. },
  24139. [
  24140. {
  24141. name: "Macro",
  24142. height: math.unit(21.6, "meters"),
  24143. default: true
  24144. },
  24145. ]
  24146. ))
  24147. characterMakers.push(() => makeCharacter(
  24148. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24149. {
  24150. front: {
  24151. height: math.unit(6 + 4 / 12, "feet"),
  24152. weight: math.unit(175, "lb"),
  24153. name: "Front",
  24154. image: {
  24155. source: "./media/characters/luka-bryzant/front.svg",
  24156. extra: 311 / 289,
  24157. bottom: 4 / 315
  24158. }
  24159. },
  24160. back: {
  24161. height: math.unit(6 + 4 / 12, "feet"),
  24162. weight: math.unit(175, "lb"),
  24163. name: "Back",
  24164. image: {
  24165. source: "./media/characters/luka-bryzant/back.svg",
  24166. extra: 311 / 289,
  24167. bottom: 3.8 / 313.7
  24168. }
  24169. },
  24170. },
  24171. [
  24172. {
  24173. name: "Micro",
  24174. height: math.unit(10, "inches")
  24175. },
  24176. {
  24177. name: "Normal",
  24178. height: math.unit(6 + 4 / 12, "feet"),
  24179. default: true
  24180. },
  24181. {
  24182. name: "Large",
  24183. height: math.unit(12, "feet")
  24184. },
  24185. ]
  24186. ))
  24187. characterMakers.push(() => makeCharacter(
  24188. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24189. {
  24190. front: {
  24191. height: math.unit(5 + 7 / 12, "feet"),
  24192. weight: math.unit(185, "lb"),
  24193. name: "Front",
  24194. image: {
  24195. source: "./media/characters/aman-aquila/front.svg",
  24196. extra: 1013 / 976,
  24197. bottom: 45.6 / 1057
  24198. }
  24199. },
  24200. side: {
  24201. height: math.unit(5 + 7 / 12, "feet"),
  24202. weight: math.unit(185, "lb"),
  24203. name: "Side",
  24204. image: {
  24205. source: "./media/characters/aman-aquila/side.svg",
  24206. extra: 1054 / 1011,
  24207. bottom: 15 / 1070
  24208. }
  24209. },
  24210. back: {
  24211. height: math.unit(5 + 7 / 12, "feet"),
  24212. weight: math.unit(185, "lb"),
  24213. name: "Back",
  24214. image: {
  24215. source: "./media/characters/aman-aquila/back.svg",
  24216. extra: 1026 / 970,
  24217. bottom: 12 / 1039
  24218. }
  24219. },
  24220. head: {
  24221. height: math.unit(1.211, "feet"),
  24222. name: "Head",
  24223. image: {
  24224. source: "./media/characters/aman-aquila/head.svg",
  24225. }
  24226. },
  24227. },
  24228. [
  24229. {
  24230. name: "Minimicro",
  24231. height: math.unit(0.057, "inches")
  24232. },
  24233. {
  24234. name: "Micro",
  24235. height: math.unit(7, "inches")
  24236. },
  24237. {
  24238. name: "Mini",
  24239. height: math.unit(3 + 7 / 12, "feet")
  24240. },
  24241. {
  24242. name: "Normal",
  24243. height: math.unit(5 + 7 / 12, "feet"),
  24244. default: true
  24245. },
  24246. {
  24247. name: "Macro",
  24248. height: math.unit(157 + 7 / 12, "feet")
  24249. },
  24250. {
  24251. name: "Megamacro",
  24252. height: math.unit(1557 + 7 / 12, "feet")
  24253. },
  24254. {
  24255. name: "Gigamacro",
  24256. height: math.unit(15557 + 7 / 12, "feet")
  24257. },
  24258. ]
  24259. ))
  24260. characterMakers.push(() => makeCharacter(
  24261. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24262. {
  24263. front: {
  24264. height: math.unit(3 + 2 / 12, "inches"),
  24265. weight: math.unit(0.3, "ounces"),
  24266. name: "Front",
  24267. image: {
  24268. source: "./media/characters/hiphae/front.svg",
  24269. extra: 1931 / 1683,
  24270. bottom: 24 / 1955
  24271. }
  24272. },
  24273. },
  24274. [
  24275. {
  24276. name: "Normal",
  24277. height: math.unit(3 + 1 / 2, "inches"),
  24278. default: true
  24279. },
  24280. ]
  24281. ))
  24282. characterMakers.push(() => makeCharacter(
  24283. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24284. {
  24285. front: {
  24286. height: math.unit(5 + 10 / 12, "feet"),
  24287. weight: math.unit(165, "lb"),
  24288. name: "Front",
  24289. image: {
  24290. source: "./media/characters/nicky/front.svg",
  24291. extra: 3144 / 2886,
  24292. bottom: 45.6 / 3192
  24293. }
  24294. },
  24295. back: {
  24296. height: math.unit(5 + 10 / 12, "feet"),
  24297. weight: math.unit(165, "lb"),
  24298. name: "Back",
  24299. image: {
  24300. source: "./media/characters/nicky/back.svg",
  24301. extra: 3055 / 2804,
  24302. bottom: 28.4 / 3087
  24303. }
  24304. },
  24305. frontclothed: {
  24306. height: math.unit(5 + 10 / 12, "feet"),
  24307. weight: math.unit(165, "lb"),
  24308. name: "Front-clothed",
  24309. image: {
  24310. source: "./media/characters/nicky/front-clothed.svg",
  24311. extra: 3184.9 / 2926.9,
  24312. bottom: 86.5 / 3239.9
  24313. }
  24314. },
  24315. foot: {
  24316. height: math.unit(1.16, "feet"),
  24317. name: "Foot",
  24318. image: {
  24319. source: "./media/characters/nicky/foot.svg"
  24320. }
  24321. },
  24322. feet: {
  24323. height: math.unit(1.34, "feet"),
  24324. name: "Feet",
  24325. image: {
  24326. source: "./media/characters/nicky/feet.svg"
  24327. }
  24328. },
  24329. maw: {
  24330. height: math.unit(0.9, "feet"),
  24331. name: "Maw",
  24332. image: {
  24333. source: "./media/characters/nicky/maw.svg"
  24334. }
  24335. },
  24336. },
  24337. [
  24338. {
  24339. name: "Normal",
  24340. height: math.unit(5 + 10 / 12, "feet"),
  24341. default: true
  24342. },
  24343. {
  24344. name: "Macro",
  24345. height: math.unit(60, "feet")
  24346. },
  24347. {
  24348. name: "Megamacro",
  24349. height: math.unit(1, "mile")
  24350. },
  24351. ]
  24352. ))
  24353. characterMakers.push(() => makeCharacter(
  24354. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24355. {
  24356. side: {
  24357. height: math.unit(10, "feet"),
  24358. weight: math.unit(600, "lb"),
  24359. name: "Side",
  24360. image: {
  24361. source: "./media/characters/blair/side.svg",
  24362. bottom: 16.6 / 475,
  24363. extra: 458 / 431
  24364. }
  24365. },
  24366. },
  24367. [
  24368. {
  24369. name: "Micro",
  24370. height: math.unit(8, "inches")
  24371. },
  24372. {
  24373. name: "Normal",
  24374. height: math.unit(10, "feet"),
  24375. default: true
  24376. },
  24377. {
  24378. name: "Macro",
  24379. height: math.unit(180, "feet")
  24380. },
  24381. ]
  24382. ))
  24383. characterMakers.push(() => makeCharacter(
  24384. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24385. {
  24386. front: {
  24387. height: math.unit(5 + 4 / 12, "feet"),
  24388. weight: math.unit(125, "lb"),
  24389. name: "Front",
  24390. image: {
  24391. source: "./media/characters/fisher/front.svg",
  24392. extra: 444 / 390,
  24393. bottom: 2 / 444.8
  24394. }
  24395. },
  24396. },
  24397. [
  24398. {
  24399. name: "Micro",
  24400. height: math.unit(4, "inches")
  24401. },
  24402. {
  24403. name: "Normal",
  24404. height: math.unit(5 + 4 / 12, "feet"),
  24405. default: true
  24406. },
  24407. {
  24408. name: "Macro",
  24409. height: math.unit(100, "feet")
  24410. },
  24411. ]
  24412. ))
  24413. characterMakers.push(() => makeCharacter(
  24414. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24415. {
  24416. front: {
  24417. height: math.unit(6.71, "feet"),
  24418. weight: math.unit(200, "lb"),
  24419. capacity: math.unit(1000000, "people"),
  24420. name: "Front",
  24421. image: {
  24422. source: "./media/characters/gliss/front.svg",
  24423. extra: 2347 / 2231,
  24424. bottom: 113 / 2462
  24425. }
  24426. },
  24427. hammerspaceSize: {
  24428. height: math.unit(6.71 * 717, "feet"),
  24429. weight: math.unit(200, "lb"),
  24430. capacity: math.unit(1000000, "people"),
  24431. name: "Hammerspace Size",
  24432. image: {
  24433. source: "./media/characters/gliss/front.svg",
  24434. extra: 2347 / 2231,
  24435. bottom: 113 / 2462
  24436. }
  24437. },
  24438. },
  24439. [
  24440. {
  24441. name: "Normal",
  24442. height: math.unit(6.71, "feet"),
  24443. default: true
  24444. },
  24445. ]
  24446. ))
  24447. characterMakers.push(() => makeCharacter(
  24448. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24449. {
  24450. side: {
  24451. height: math.unit(1.44, "m"),
  24452. weight: math.unit(80, "kg"),
  24453. name: "Side",
  24454. image: {
  24455. source: "./media/characters/dune-anderson/side.svg",
  24456. bottom: 49 / 1426
  24457. }
  24458. },
  24459. },
  24460. [
  24461. {
  24462. name: "Wolf-sized",
  24463. height: math.unit(1.44, "meters")
  24464. },
  24465. {
  24466. name: "Normal",
  24467. height: math.unit(5.05, "meters"),
  24468. default: true
  24469. },
  24470. {
  24471. name: "Big",
  24472. height: math.unit(14.4, "meters")
  24473. },
  24474. {
  24475. name: "Huge",
  24476. height: math.unit(144, "meters")
  24477. },
  24478. ]
  24479. ))
  24480. characterMakers.push(() => makeCharacter(
  24481. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24482. {
  24483. front: {
  24484. height: math.unit(7, "feet"),
  24485. weight: math.unit(425, "lb"),
  24486. name: "Front",
  24487. image: {
  24488. source: "./media/characters/hind/front.svg",
  24489. extra: 2091 / 1860,
  24490. bottom: 129 / 2220
  24491. }
  24492. },
  24493. back: {
  24494. height: math.unit(7, "feet"),
  24495. weight: math.unit(425, "lb"),
  24496. name: "Back",
  24497. image: {
  24498. source: "./media/characters/hind/back.svg",
  24499. extra: 2091 / 1860,
  24500. bottom: 24.6 / 2309
  24501. }
  24502. },
  24503. tail: {
  24504. height: math.unit(2.8, "feet"),
  24505. name: "Tail",
  24506. image: {
  24507. source: "./media/characters/hind/tail.svg"
  24508. }
  24509. },
  24510. head: {
  24511. height: math.unit(2.55, "feet"),
  24512. name: "Head",
  24513. image: {
  24514. source: "./media/characters/hind/head.svg"
  24515. }
  24516. },
  24517. },
  24518. [
  24519. {
  24520. name: "XS",
  24521. height: math.unit(0.7, "feet")
  24522. },
  24523. {
  24524. name: "Normal",
  24525. height: math.unit(7, "feet"),
  24526. default: true
  24527. },
  24528. {
  24529. name: "XL",
  24530. height: math.unit(70, "feet")
  24531. },
  24532. ]
  24533. ))
  24534. characterMakers.push(() => makeCharacter(
  24535. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24536. {
  24537. front: {
  24538. height: math.unit(6, "feet"),
  24539. weight: math.unit(150, "lb"),
  24540. name: "Front",
  24541. image: {
  24542. source: "./media/characters/dylan-skaven/front.svg",
  24543. extra: 2318 / 2063,
  24544. bottom: 93.4 / 2410
  24545. }
  24546. },
  24547. },
  24548. [
  24549. {
  24550. name: "Nano",
  24551. height: math.unit(1, "mm")
  24552. },
  24553. {
  24554. name: "Micro",
  24555. height: math.unit(1, "cm")
  24556. },
  24557. {
  24558. name: "Normal",
  24559. height: math.unit(2.1, "meters"),
  24560. default: true
  24561. },
  24562. ]
  24563. ))
  24564. characterMakers.push(() => makeCharacter(
  24565. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24566. {
  24567. front: {
  24568. height: math.unit(7 + 5 / 12, "feet"),
  24569. weight: math.unit(357, "lb"),
  24570. name: "Front",
  24571. image: {
  24572. source: "./media/characters/solex-draconov/front.svg",
  24573. extra: 1993 / 1865,
  24574. bottom: 117 / 2111
  24575. }
  24576. },
  24577. },
  24578. [
  24579. {
  24580. name: "Natural Height",
  24581. height: math.unit(7 + 5 / 12, "feet"),
  24582. default: true
  24583. },
  24584. {
  24585. name: "Macro",
  24586. height: math.unit(350, "feet")
  24587. },
  24588. {
  24589. name: "Macro+",
  24590. height: math.unit(1000, "feet")
  24591. },
  24592. {
  24593. name: "Megamacro",
  24594. height: math.unit(20, "km")
  24595. },
  24596. {
  24597. name: "Megamacro+",
  24598. height: math.unit(1000, "km")
  24599. },
  24600. {
  24601. name: "Gigamacro",
  24602. height: math.unit(2.5, "Gm")
  24603. },
  24604. {
  24605. name: "Teramacro",
  24606. height: math.unit(15, "Tm")
  24607. },
  24608. {
  24609. name: "Galactic",
  24610. height: math.unit(30, "Zm")
  24611. },
  24612. {
  24613. name: "Universal",
  24614. height: math.unit(21000, "Ym")
  24615. },
  24616. {
  24617. name: "Omniversal",
  24618. height: math.unit(9.861e50, "Ym")
  24619. },
  24620. {
  24621. name: "Existential",
  24622. height: math.unit(1e300, "meters")
  24623. },
  24624. ]
  24625. ))
  24626. characterMakers.push(() => makeCharacter(
  24627. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24628. {
  24629. side: {
  24630. height: math.unit(25, "feet"),
  24631. weight: math.unit(90000, "lb"),
  24632. name: "Side",
  24633. image: {
  24634. source: "./media/characters/mandarax/side.svg",
  24635. extra: 614 / 332,
  24636. bottom: 55 / 630
  24637. }
  24638. },
  24639. head: {
  24640. height: math.unit(11.4, "feet"),
  24641. name: "Head",
  24642. image: {
  24643. source: "./media/characters/mandarax/head.svg"
  24644. }
  24645. },
  24646. belly: {
  24647. height: math.unit(33, "feet"),
  24648. name: "Belly",
  24649. capacity: math.unit(500, "people"),
  24650. image: {
  24651. source: "./media/characters/mandarax/belly.svg"
  24652. }
  24653. },
  24654. dick: {
  24655. height: math.unit(8.46, "feet"),
  24656. name: "Dick",
  24657. image: {
  24658. source: "./media/characters/mandarax/dick.svg"
  24659. }
  24660. },
  24661. top: {
  24662. height: math.unit(28, "meters"),
  24663. name: "Top",
  24664. image: {
  24665. source: "./media/characters/mandarax/top.svg"
  24666. }
  24667. },
  24668. },
  24669. [
  24670. {
  24671. name: "Normal",
  24672. height: math.unit(25, "feet"),
  24673. default: true
  24674. },
  24675. ]
  24676. ))
  24677. characterMakers.push(() => makeCharacter(
  24678. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24679. {
  24680. front: {
  24681. height: math.unit(5, "feet"),
  24682. weight: math.unit(90, "lb"),
  24683. name: "Front",
  24684. image: {
  24685. source: "./media/characters/pixil/front.svg",
  24686. extra: 2000 / 1618,
  24687. bottom: 12.3 / 2011
  24688. }
  24689. },
  24690. },
  24691. [
  24692. {
  24693. name: "Normal",
  24694. height: math.unit(5, "feet"),
  24695. default: true
  24696. },
  24697. {
  24698. name: "Megamacro",
  24699. height: math.unit(10, "miles"),
  24700. },
  24701. ]
  24702. ))
  24703. characterMakers.push(() => makeCharacter(
  24704. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24705. {
  24706. front: {
  24707. height: math.unit(7 + 2 / 12, "feet"),
  24708. weight: math.unit(200, "lb"),
  24709. name: "Front",
  24710. image: {
  24711. source: "./media/characters/angel/front.svg",
  24712. extra: 1830 / 1737,
  24713. bottom: 22.6 / 1854,
  24714. }
  24715. },
  24716. },
  24717. [
  24718. {
  24719. name: "Normal",
  24720. height: math.unit(7 + 2 / 12, "feet"),
  24721. default: true
  24722. },
  24723. {
  24724. name: "Macro",
  24725. height: math.unit(1000, "feet")
  24726. },
  24727. {
  24728. name: "Megamacro",
  24729. height: math.unit(2, "miles")
  24730. },
  24731. {
  24732. name: "Gigamacro",
  24733. height: math.unit(20, "earths")
  24734. },
  24735. ]
  24736. ))
  24737. characterMakers.push(() => makeCharacter(
  24738. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24739. {
  24740. front: {
  24741. height: math.unit(5, "feet"),
  24742. weight: math.unit(180, "lb"),
  24743. name: "Front",
  24744. image: {
  24745. source: "./media/characters/mekana/front.svg",
  24746. extra: 1671 / 1605,
  24747. bottom: 3.5 / 1691
  24748. }
  24749. },
  24750. side: {
  24751. height: math.unit(5, "feet"),
  24752. weight: math.unit(180, "lb"),
  24753. name: "Side",
  24754. image: {
  24755. source: "./media/characters/mekana/side.svg",
  24756. extra: 1671 / 1605,
  24757. bottom: 3.5 / 1691
  24758. }
  24759. },
  24760. back: {
  24761. height: math.unit(5, "feet"),
  24762. weight: math.unit(180, "lb"),
  24763. name: "Back",
  24764. image: {
  24765. source: "./media/characters/mekana/back.svg",
  24766. extra: 1671 / 1605,
  24767. bottom: 3.5 / 1691
  24768. }
  24769. },
  24770. },
  24771. [
  24772. {
  24773. name: "Normal",
  24774. height: math.unit(5, "feet"),
  24775. default: true
  24776. },
  24777. ]
  24778. ))
  24779. characterMakers.push(() => makeCharacter(
  24780. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24781. {
  24782. front: {
  24783. height: math.unit(4 + 6 / 12, "feet"),
  24784. weight: math.unit(80, "lb"),
  24785. name: "Front",
  24786. image: {
  24787. source: "./media/characters/pixie/front.svg",
  24788. extra: 1924 / 1825,
  24789. bottom: 22.4 / 1946
  24790. }
  24791. },
  24792. },
  24793. [
  24794. {
  24795. name: "Normal",
  24796. height: math.unit(4 + 6 / 12, "feet"),
  24797. default: true
  24798. },
  24799. {
  24800. name: "Macro",
  24801. height: math.unit(40, "feet")
  24802. },
  24803. ]
  24804. ))
  24805. characterMakers.push(() => makeCharacter(
  24806. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24807. {
  24808. front: {
  24809. height: math.unit(2.1, "meters"),
  24810. weight: math.unit(200, "lb"),
  24811. name: "Front",
  24812. image: {
  24813. source: "./media/characters/the-lascivious/front.svg",
  24814. extra: 1 / 0.893,
  24815. bottom: 3.5 / 573.7
  24816. }
  24817. },
  24818. },
  24819. [
  24820. {
  24821. name: "Human Scale",
  24822. height: math.unit(2.1, "meters")
  24823. },
  24824. {
  24825. name: "Wolxi Scale",
  24826. height: math.unit(46.2, "m"),
  24827. default: true
  24828. },
  24829. {
  24830. name: "Boinker of Buildings",
  24831. height: math.unit(10, "km")
  24832. },
  24833. {
  24834. name: "Shagger of Skyscrapers",
  24835. height: math.unit(40, "km")
  24836. },
  24837. {
  24838. name: "Banger of Boroughs",
  24839. height: math.unit(4000, "km")
  24840. },
  24841. {
  24842. name: "Screwer of States",
  24843. height: math.unit(100000, "km")
  24844. },
  24845. {
  24846. name: "Pounder of Planets",
  24847. height: math.unit(2000000, "km")
  24848. },
  24849. ]
  24850. ))
  24851. characterMakers.push(() => makeCharacter(
  24852. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24853. {
  24854. front: {
  24855. height: math.unit(6, "feet"),
  24856. weight: math.unit(150, "lb"),
  24857. name: "Front",
  24858. image: {
  24859. source: "./media/characters/aj/front.svg",
  24860. extra: 2039 / 1562,
  24861. bottom: 40 / 2079
  24862. }
  24863. },
  24864. },
  24865. [
  24866. {
  24867. name: "Normal",
  24868. height: math.unit(11 + 6 / 12, "feet"),
  24869. default: true
  24870. },
  24871. {
  24872. name: "Megamacro",
  24873. height: math.unit(60, "megameters")
  24874. },
  24875. ]
  24876. ))
  24877. characterMakers.push(() => makeCharacter(
  24878. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24879. {
  24880. side: {
  24881. height: math.unit(31 + 8 / 12, "feet"),
  24882. weight: math.unit(75000, "kg"),
  24883. name: "Side",
  24884. image: {
  24885. source: "./media/characters/koros/side.svg",
  24886. extra: 1442 / 1297,
  24887. bottom: 122.7 / 1562
  24888. }
  24889. },
  24890. dicksKingsCrown: {
  24891. height: math.unit(6, "feet"),
  24892. name: "Dicks (King's Crown)",
  24893. image: {
  24894. source: "./media/characters/koros/dicks-kings-crown.svg"
  24895. }
  24896. },
  24897. dicksTailSet: {
  24898. height: math.unit(3, "feet"),
  24899. name: "Dicks (Tail Set)",
  24900. image: {
  24901. source: "./media/characters/koros/dicks-tail-set.svg"
  24902. }
  24903. },
  24904. dickCumming: {
  24905. height: math.unit(7.98, "feet"),
  24906. name: "Dick (Cumming)",
  24907. image: {
  24908. source: "./media/characters/koros/dick-cumming.svg"
  24909. }
  24910. },
  24911. dicksBack: {
  24912. height: math.unit(5.9, "feet"),
  24913. name: "Dicks (Back)",
  24914. image: {
  24915. source: "./media/characters/koros/dicks-back.svg"
  24916. }
  24917. },
  24918. dicksFront: {
  24919. height: math.unit(3.72, "feet"),
  24920. name: "Dicks (Front)",
  24921. image: {
  24922. source: "./media/characters/koros/dicks-front.svg"
  24923. }
  24924. },
  24925. dicksPeeking: {
  24926. height: math.unit(3.0, "feet"),
  24927. name: "Dicks (Peeking)",
  24928. image: {
  24929. source: "./media/characters/koros/dicks-peeking.svg"
  24930. }
  24931. },
  24932. eye: {
  24933. height: math.unit(1.7, "feet"),
  24934. name: "Eye",
  24935. image: {
  24936. source: "./media/characters/koros/eye.svg"
  24937. }
  24938. },
  24939. headFront: {
  24940. height: math.unit(11.69, "feet"),
  24941. name: "Head (Front)",
  24942. image: {
  24943. source: "./media/characters/koros/head-front.svg"
  24944. }
  24945. },
  24946. headSide: {
  24947. height: math.unit(14, "feet"),
  24948. name: "Head (Side)",
  24949. image: {
  24950. source: "./media/characters/koros/head-side.svg"
  24951. }
  24952. },
  24953. leg: {
  24954. height: math.unit(17, "feet"),
  24955. name: "Leg",
  24956. image: {
  24957. source: "./media/characters/koros/leg.svg"
  24958. }
  24959. },
  24960. mawSide: {
  24961. height: math.unit(12.8, "feet"),
  24962. name: "Maw (Side)",
  24963. image: {
  24964. source: "./media/characters/koros/maw-side.svg"
  24965. }
  24966. },
  24967. mawSpitting: {
  24968. height: math.unit(17, "feet"),
  24969. name: "Maw (Spitting)",
  24970. image: {
  24971. source: "./media/characters/koros/maw-spitting.svg"
  24972. }
  24973. },
  24974. slit: {
  24975. height: math.unit(2.8, "feet"),
  24976. name: "Slit",
  24977. image: {
  24978. source: "./media/characters/koros/slit.svg"
  24979. }
  24980. },
  24981. stomach: {
  24982. height: math.unit(6.8, "feet"),
  24983. capacity: math.unit(20, "people"),
  24984. name: "Stomach",
  24985. image: {
  24986. source: "./media/characters/koros/stomach.svg"
  24987. }
  24988. },
  24989. wingspanBottom: {
  24990. height: math.unit(114, "feet"),
  24991. name: "Wingspan (Bottom)",
  24992. image: {
  24993. source: "./media/characters/koros/wingspan-bottom.svg"
  24994. }
  24995. },
  24996. wingspanTop: {
  24997. height: math.unit(104, "feet"),
  24998. name: "Wingspan (Top)",
  24999. image: {
  25000. source: "./media/characters/koros/wingspan-top.svg"
  25001. }
  25002. },
  25003. },
  25004. [
  25005. {
  25006. name: "Normal",
  25007. height: math.unit(31 + 8 / 12, "feet"),
  25008. default: true
  25009. },
  25010. ]
  25011. ))
  25012. characterMakers.push(() => makeCharacter(
  25013. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25014. {
  25015. front: {
  25016. height: math.unit(18 + 5 / 12, "feet"),
  25017. weight: math.unit(3750, "kg"),
  25018. name: "Front",
  25019. image: {
  25020. source: "./media/characters/vexx/front.svg",
  25021. extra: 426 / 396,
  25022. bottom: 31.5 / 458
  25023. }
  25024. },
  25025. maw: {
  25026. height: math.unit(6, "feet"),
  25027. name: "Maw",
  25028. image: {
  25029. source: "./media/characters/vexx/maw.svg"
  25030. }
  25031. },
  25032. },
  25033. [
  25034. {
  25035. name: "Normal",
  25036. height: math.unit(18 + 5 / 12, "feet"),
  25037. default: true
  25038. },
  25039. ]
  25040. ))
  25041. characterMakers.push(() => makeCharacter(
  25042. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25043. {
  25044. front: {
  25045. height: math.unit(17 + 6 / 12, "feet"),
  25046. weight: math.unit(150, "lb"),
  25047. name: "Front",
  25048. image: {
  25049. source: "./media/characters/baadra/front.svg",
  25050. extra: 3137 / 2890,
  25051. bottom: 168.4 / 3305
  25052. }
  25053. },
  25054. back: {
  25055. height: math.unit(17 + 6 / 12, "feet"),
  25056. weight: math.unit(150, "lb"),
  25057. name: "Back",
  25058. image: {
  25059. source: "./media/characters/baadra/back.svg",
  25060. extra: 3142 / 2890,
  25061. bottom: 220 / 3371
  25062. }
  25063. },
  25064. head: {
  25065. height: math.unit(5.45, "feet"),
  25066. name: "Head",
  25067. image: {
  25068. source: "./media/characters/baadra/head.svg"
  25069. }
  25070. },
  25071. headAngry: {
  25072. height: math.unit(4.95, "feet"),
  25073. name: "Head (Angry)",
  25074. image: {
  25075. source: "./media/characters/baadra/head-angry.svg"
  25076. }
  25077. },
  25078. headOpen: {
  25079. height: math.unit(6, "feet"),
  25080. name: "Head (Open)",
  25081. image: {
  25082. source: "./media/characters/baadra/head-open.svg"
  25083. }
  25084. },
  25085. },
  25086. [
  25087. {
  25088. name: "Normal",
  25089. height: math.unit(17 + 6 / 12, "feet"),
  25090. default: true
  25091. },
  25092. ]
  25093. ))
  25094. characterMakers.push(() => makeCharacter(
  25095. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25096. {
  25097. front: {
  25098. height: math.unit(7 + 3 / 12, "feet"),
  25099. weight: math.unit(180, "lb"),
  25100. name: "Front",
  25101. image: {
  25102. source: "./media/characters/juri/front.svg",
  25103. extra: 1401 / 1237,
  25104. bottom: 18.5 / 1418
  25105. }
  25106. },
  25107. side: {
  25108. height: math.unit(7 + 3 / 12, "feet"),
  25109. weight: math.unit(180, "lb"),
  25110. name: "Side",
  25111. image: {
  25112. source: "./media/characters/juri/side.svg",
  25113. extra: 1424 / 1242,
  25114. bottom: 18.5 / 1447
  25115. }
  25116. },
  25117. sitting: {
  25118. height: math.unit(6, "feet"),
  25119. weight: math.unit(180, "lb"),
  25120. name: "Sitting",
  25121. image: {
  25122. source: "./media/characters/juri/sitting.svg",
  25123. extra: 1270 / 1143,
  25124. bottom: 100 / 1343
  25125. }
  25126. },
  25127. back: {
  25128. height: math.unit(7 + 3 / 12, "feet"),
  25129. weight: math.unit(180, "lb"),
  25130. name: "Back",
  25131. image: {
  25132. source: "./media/characters/juri/back.svg",
  25133. extra: 1377 / 1240,
  25134. bottom: 23.7 / 1405
  25135. }
  25136. },
  25137. maw: {
  25138. height: math.unit(2.8, "feet"),
  25139. name: "Maw",
  25140. image: {
  25141. source: "./media/characters/juri/maw.svg"
  25142. }
  25143. },
  25144. stomach: {
  25145. height: math.unit(0.89, "feet"),
  25146. capacity: math.unit(4, "liters"),
  25147. name: "Stomach",
  25148. image: {
  25149. source: "./media/characters/juri/stomach.svg"
  25150. }
  25151. },
  25152. },
  25153. [
  25154. {
  25155. name: "Normal",
  25156. height: math.unit(7 + 3 / 12, "feet"),
  25157. default: true
  25158. },
  25159. ]
  25160. ))
  25161. characterMakers.push(() => makeCharacter(
  25162. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25163. {
  25164. fox: {
  25165. height: math.unit(5 + 6 / 12, "feet"),
  25166. weight: math.unit(140, "lb"),
  25167. name: "Fox",
  25168. image: {
  25169. source: "./media/characters/maxene-sita/fox.svg",
  25170. extra: 146 / 138,
  25171. bottom: 2.1 / 148.19
  25172. }
  25173. },
  25174. foxLaying: {
  25175. height: math.unit(1.70, "feet"),
  25176. weight: math.unit(140, "lb"),
  25177. name: "Fox (Laying)",
  25178. image: {
  25179. source: "./media/characters/maxene-sita/fox-laying.svg",
  25180. extra: 910 / 572,
  25181. bottom: 71 / 981
  25182. }
  25183. },
  25184. kitsune: {
  25185. height: math.unit(10, "feet"),
  25186. weight: math.unit(800, "lb"),
  25187. name: "Kitsune",
  25188. image: {
  25189. source: "./media/characters/maxene-sita/kitsune.svg",
  25190. extra: 185 / 176,
  25191. bottom: 4.7 / 189.9
  25192. }
  25193. },
  25194. hellhound: {
  25195. height: math.unit(10, "feet"),
  25196. weight: math.unit(700, "lb"),
  25197. name: "Hellhound",
  25198. image: {
  25199. source: "./media/characters/maxene-sita/hellhound.svg",
  25200. extra: 1600 / 1545,
  25201. bottom: 81 / 1681
  25202. }
  25203. },
  25204. },
  25205. [
  25206. {
  25207. name: "Normal",
  25208. height: math.unit(5 + 6 / 12, "feet"),
  25209. default: true
  25210. },
  25211. ]
  25212. ))
  25213. characterMakers.push(() => makeCharacter(
  25214. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25215. {
  25216. front: {
  25217. height: math.unit(3 + 4 / 12, "feet"),
  25218. weight: math.unit(70, "lb"),
  25219. name: "Front",
  25220. image: {
  25221. source: "./media/characters/maia/front.svg",
  25222. extra: 227 / 219.5,
  25223. bottom: 40 / 267
  25224. }
  25225. },
  25226. back: {
  25227. height: math.unit(3 + 4 / 12, "feet"),
  25228. weight: math.unit(70, "lb"),
  25229. name: "Back",
  25230. image: {
  25231. source: "./media/characters/maia/back.svg",
  25232. extra: 237 / 225
  25233. }
  25234. },
  25235. },
  25236. [
  25237. {
  25238. name: "Normal",
  25239. height: math.unit(3 + 4 / 12, "feet"),
  25240. default: true
  25241. },
  25242. ]
  25243. ))
  25244. characterMakers.push(() => makeCharacter(
  25245. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25246. {
  25247. front: {
  25248. height: math.unit(5 + 10 / 12, "feet"),
  25249. weight: math.unit(197, "lb"),
  25250. name: "Front",
  25251. image: {
  25252. source: "./media/characters/jabaro/front.svg",
  25253. extra: 225 / 216,
  25254. bottom: 5.06 / 230
  25255. }
  25256. },
  25257. back: {
  25258. height: math.unit(5 + 10 / 12, "feet"),
  25259. weight: math.unit(197, "lb"),
  25260. name: "Back",
  25261. image: {
  25262. source: "./media/characters/jabaro/back.svg",
  25263. extra: 225 / 219,
  25264. bottom: 1.9 / 227
  25265. }
  25266. },
  25267. },
  25268. [
  25269. {
  25270. name: "Normal",
  25271. height: math.unit(5 + 10 / 12, "feet"),
  25272. default: true
  25273. },
  25274. ]
  25275. ))
  25276. characterMakers.push(() => makeCharacter(
  25277. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25278. {
  25279. front: {
  25280. height: math.unit(5 + 8 / 12, "feet"),
  25281. weight: math.unit(139, "lb"),
  25282. name: "Front",
  25283. image: {
  25284. source: "./media/characters/risa/front.svg",
  25285. extra: 270 / 260,
  25286. bottom: 11.2 / 282
  25287. }
  25288. },
  25289. back: {
  25290. height: math.unit(5 + 8 / 12, "feet"),
  25291. weight: math.unit(139, "lb"),
  25292. name: "Back",
  25293. image: {
  25294. source: "./media/characters/risa/back.svg",
  25295. extra: 264 / 255,
  25296. bottom: 4 / 268
  25297. }
  25298. },
  25299. },
  25300. [
  25301. {
  25302. name: "Normal",
  25303. height: math.unit(5 + 8 / 12, "feet"),
  25304. default: true
  25305. },
  25306. ]
  25307. ))
  25308. characterMakers.push(() => makeCharacter(
  25309. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25310. {
  25311. front: {
  25312. height: math.unit(2 + 11 / 12, "feet"),
  25313. weight: math.unit(30, "lb"),
  25314. name: "Front",
  25315. image: {
  25316. source: "./media/characters/weatley/front.svg",
  25317. bottom: 10.7 / 414,
  25318. extra: 403.5 / 362
  25319. }
  25320. },
  25321. back: {
  25322. height: math.unit(2 + 11 / 12, "feet"),
  25323. weight: math.unit(30, "lb"),
  25324. name: "Back",
  25325. image: {
  25326. source: "./media/characters/weatley/back.svg",
  25327. bottom: 10.7 / 414,
  25328. extra: 403.5 / 362
  25329. }
  25330. },
  25331. },
  25332. [
  25333. {
  25334. name: "Normal",
  25335. height: math.unit(2 + 11 / 12, "feet"),
  25336. default: true
  25337. },
  25338. ]
  25339. ))
  25340. characterMakers.push(() => makeCharacter(
  25341. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25342. {
  25343. front: {
  25344. height: math.unit(5 + 2 / 12, "feet"),
  25345. weight: math.unit(50, "kg"),
  25346. name: "Front",
  25347. image: {
  25348. source: "./media/characters/mercury-crescent/front.svg",
  25349. extra: 1088 / 1033,
  25350. bottom: 18.9 / 1109
  25351. }
  25352. },
  25353. },
  25354. [
  25355. {
  25356. name: "Normal",
  25357. height: math.unit(5 + 2 / 12, "feet"),
  25358. default: true
  25359. },
  25360. ]
  25361. ))
  25362. characterMakers.push(() => makeCharacter(
  25363. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25364. {
  25365. front: {
  25366. height: math.unit(2, "feet"),
  25367. weight: math.unit(15, "kg"),
  25368. name: "Front",
  25369. image: {
  25370. source: "./media/characters/diamond-jones/front.svg",
  25371. bottom: 16 / 568
  25372. }
  25373. },
  25374. },
  25375. [
  25376. {
  25377. name: "Normal",
  25378. height: math.unit(2, "feet"),
  25379. default: true
  25380. },
  25381. ]
  25382. ))
  25383. characterMakers.push(() => makeCharacter(
  25384. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25385. {
  25386. front: {
  25387. height: math.unit(3, "feet"),
  25388. weight: math.unit(30, "kg"),
  25389. name: "Front",
  25390. image: {
  25391. source: "./media/characters/sweet-bit/front.svg",
  25392. extra: 675 / 567,
  25393. bottom: 27.7 / 703
  25394. }
  25395. },
  25396. },
  25397. [
  25398. {
  25399. name: "Normal",
  25400. height: math.unit(3, "feet"),
  25401. default: true
  25402. },
  25403. ]
  25404. ))
  25405. characterMakers.push(() => makeCharacter(
  25406. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25407. {
  25408. side: {
  25409. height: math.unit(9.178, "feet"),
  25410. weight: math.unit(500, "lb"),
  25411. name: "Side",
  25412. image: {
  25413. source: "./media/characters/umbrazen/side.svg",
  25414. extra: 1730 / 1473,
  25415. bottom: 34.6 / 1765
  25416. }
  25417. },
  25418. },
  25419. [
  25420. {
  25421. name: "Normal",
  25422. height: math.unit(9.178, "feet"),
  25423. default: true
  25424. },
  25425. ]
  25426. ))
  25427. characterMakers.push(() => makeCharacter(
  25428. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25429. {
  25430. front: {
  25431. height: math.unit(10, "feet"),
  25432. weight: math.unit(750, "lb"),
  25433. name: "Front",
  25434. image: {
  25435. source: "./media/characters/arlist/front.svg",
  25436. extra: 961 / 778,
  25437. bottom: 6.2 / 986
  25438. }
  25439. },
  25440. },
  25441. [
  25442. {
  25443. name: "Normal",
  25444. height: math.unit(10, "feet"),
  25445. default: true
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25451. {
  25452. front: {
  25453. height: math.unit(5 + 1 / 12, "feet"),
  25454. weight: math.unit(110, "lb"),
  25455. name: "Front",
  25456. image: {
  25457. source: "./media/characters/aradel/front.svg",
  25458. extra: 324 / 303,
  25459. bottom: 3.6 / 329.4
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Normal",
  25466. height: math.unit(5 + 1 / 12, "feet"),
  25467. default: true
  25468. },
  25469. ]
  25470. ))
  25471. characterMakers.push(() => makeCharacter(
  25472. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25473. {
  25474. front: {
  25475. height: math.unit(3 + 8 / 12, "feet"),
  25476. weight: math.unit(50, "lb"),
  25477. name: "Front",
  25478. image: {
  25479. source: "./media/characters/serryn/front.svg",
  25480. extra: 1792 / 1656,
  25481. bottom: 43.5 / 1840
  25482. }
  25483. },
  25484. },
  25485. [
  25486. {
  25487. name: "Normal",
  25488. height: math.unit(3 + 8 / 12, "feet"),
  25489. default: true
  25490. },
  25491. ]
  25492. ))
  25493. characterMakers.push(() => makeCharacter(
  25494. { name: "Xavier Thyme" },
  25495. {
  25496. front: {
  25497. height: math.unit(7 + 10 / 12, "feet"),
  25498. weight: math.unit(255, "lb"),
  25499. name: "Front",
  25500. image: {
  25501. source: "./media/characters/xavier-thyme/front.svg",
  25502. extra: 3733 / 3642,
  25503. bottom: 131 / 3869
  25504. }
  25505. },
  25506. frontRaven: {
  25507. height: math.unit(7 + 10 / 12, "feet"),
  25508. weight: math.unit(255, "lb"),
  25509. name: "Front (Raven)",
  25510. image: {
  25511. source: "./media/characters/xavier-thyme/front-raven.svg",
  25512. extra: 4385 / 3642,
  25513. bottom: 131 / 4517
  25514. }
  25515. },
  25516. },
  25517. [
  25518. {
  25519. name: "Normal",
  25520. height: math.unit(7 + 10 / 12, "feet"),
  25521. default: true
  25522. },
  25523. ]
  25524. ))
  25525. characterMakers.push(() => makeCharacter(
  25526. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25527. {
  25528. front: {
  25529. height: math.unit(1.6, "m"),
  25530. weight: math.unit(50, "kg"),
  25531. name: "Front",
  25532. image: {
  25533. source: "./media/characters/kiki/front.svg",
  25534. extra: 4682 / 3610,
  25535. bottom: 115 / 4777
  25536. }
  25537. },
  25538. },
  25539. [
  25540. {
  25541. name: "Normal",
  25542. height: math.unit(1.6, "meters"),
  25543. default: true
  25544. },
  25545. ]
  25546. ))
  25547. characterMakers.push(() => makeCharacter(
  25548. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25549. {
  25550. front: {
  25551. height: math.unit(50, "m"),
  25552. weight: math.unit(500, "tonnes"),
  25553. name: "Front",
  25554. image: {
  25555. source: "./media/characters/ryoko/front.svg",
  25556. extra: 4632 / 3926,
  25557. bottom: 193 / 4823
  25558. }
  25559. },
  25560. },
  25561. [
  25562. {
  25563. name: "Normal",
  25564. height: math.unit(50, "meters"),
  25565. default: true
  25566. },
  25567. ]
  25568. ))
  25569. characterMakers.push(() => makeCharacter(
  25570. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25571. {
  25572. front: {
  25573. height: math.unit(30, "m"),
  25574. weight: math.unit(22, "tonnes"),
  25575. name: "Front",
  25576. image: {
  25577. source: "./media/characters/elio/front.svg",
  25578. extra: 4582 / 3720,
  25579. bottom: 236 / 4828
  25580. }
  25581. },
  25582. },
  25583. [
  25584. {
  25585. name: "Normal",
  25586. height: math.unit(30, "meters"),
  25587. default: true
  25588. },
  25589. ]
  25590. ))
  25591. characterMakers.push(() => makeCharacter(
  25592. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25593. {
  25594. front: {
  25595. height: math.unit(6 + 3 / 12, "feet"),
  25596. weight: math.unit(120, "lb"),
  25597. name: "Front",
  25598. image: {
  25599. source: "./media/characters/azura/front.svg",
  25600. extra: 1149 / 1135,
  25601. bottom: 45 / 1194
  25602. }
  25603. },
  25604. frontClothed: {
  25605. height: math.unit(6 + 3 / 12, "feet"),
  25606. weight: math.unit(120, "lb"),
  25607. name: "Front (Clothed)",
  25608. image: {
  25609. source: "./media/characters/azura/front-clothed.svg",
  25610. extra: 1149 / 1135,
  25611. bottom: 45 / 1194
  25612. }
  25613. },
  25614. },
  25615. [
  25616. {
  25617. name: "Normal",
  25618. height: math.unit(6 + 3 / 12, "feet"),
  25619. default: true
  25620. },
  25621. {
  25622. name: "Macro",
  25623. height: math.unit(20 + 6 / 12, "feet")
  25624. },
  25625. {
  25626. name: "Megamacro",
  25627. height: math.unit(12, "miles")
  25628. },
  25629. {
  25630. name: "Gigamacro",
  25631. height: math.unit(10000, "miles")
  25632. },
  25633. {
  25634. name: "Teramacro",
  25635. height: math.unit(900000, "miles")
  25636. },
  25637. ]
  25638. ))
  25639. characterMakers.push(() => makeCharacter(
  25640. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25641. {
  25642. front: {
  25643. height: math.unit(12, "feet"),
  25644. weight: math.unit(1, "ton"),
  25645. capacity: math.unit(660000, "gallons"),
  25646. name: "Front",
  25647. image: {
  25648. source: "./media/characters/zeus/front.svg",
  25649. extra: 5005 / 4717,
  25650. bottom: 363 / 5388
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "Normal",
  25657. height: math.unit(12, "feet")
  25658. },
  25659. {
  25660. name: "Preferred Size",
  25661. height: math.unit(0.5, "miles"),
  25662. default: true
  25663. },
  25664. {
  25665. name: "Giga Horse",
  25666. height: math.unit(300, "miles")
  25667. },
  25668. {
  25669. name: "Riding Planets",
  25670. height: math.unit(30, "megameters")
  25671. },
  25672. {
  25673. name: "Cosmic Giant",
  25674. height: math.unit(3, "zettameters")
  25675. },
  25676. {
  25677. name: "Breeding God",
  25678. height: math.unit(9.92e22, "yottameters")
  25679. },
  25680. ]
  25681. ))
  25682. characterMakers.push(() => makeCharacter(
  25683. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25684. {
  25685. side: {
  25686. height: math.unit(9, "feet"),
  25687. weight: math.unit(1500, "kg"),
  25688. name: "Side",
  25689. image: {
  25690. source: "./media/characters/fang/side.svg",
  25691. extra: 924 / 866,
  25692. bottom: 47.5 / 972.3
  25693. }
  25694. },
  25695. },
  25696. [
  25697. {
  25698. name: "Normal",
  25699. height: math.unit(9, "feet"),
  25700. default: true
  25701. },
  25702. {
  25703. name: "Macro",
  25704. height: math.unit(75 + 6 / 12, "feet")
  25705. },
  25706. {
  25707. name: "Teramacro",
  25708. height: math.unit(50000, "miles")
  25709. },
  25710. ]
  25711. ))
  25712. characterMakers.push(() => makeCharacter(
  25713. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25714. {
  25715. front: {
  25716. height: math.unit(10, "feet"),
  25717. weight: math.unit(2, "tons"),
  25718. name: "Front",
  25719. image: {
  25720. source: "./media/characters/rekhit/front.svg",
  25721. extra: 2796 / 2590,
  25722. bottom: 225 / 3022
  25723. }
  25724. },
  25725. },
  25726. [
  25727. {
  25728. name: "Normal",
  25729. height: math.unit(10, "feet"),
  25730. default: true
  25731. },
  25732. {
  25733. name: "Macro",
  25734. height: math.unit(500, "feet")
  25735. },
  25736. ]
  25737. ))
  25738. characterMakers.push(() => makeCharacter(
  25739. { name: "Dahlia Verrick" },
  25740. {
  25741. front: {
  25742. height: math.unit(7 + 6.451 / 12, "feet"),
  25743. weight: math.unit(310, "lb"),
  25744. name: "Front",
  25745. image: {
  25746. source: "./media/characters/dahlia-verrick/front.svg",
  25747. extra: 1488 / 1365,
  25748. bottom: 6.2 / 1495
  25749. }
  25750. },
  25751. back: {
  25752. height: math.unit(7 + 6.451 / 12, "feet"),
  25753. weight: math.unit(310, "lb"),
  25754. name: "Back",
  25755. image: {
  25756. source: "./media/characters/dahlia-verrick/back.svg",
  25757. extra: 1472 / 1351,
  25758. bottom: 5.28 / 1477
  25759. }
  25760. },
  25761. frontBusiness: {
  25762. height: math.unit(7 + 6.451 / 12, "feet"),
  25763. weight: math.unit(200, "lb"),
  25764. name: "Front (Business)",
  25765. image: {
  25766. source: "./media/characters/dahlia-verrick/front-business.svg",
  25767. extra: 1478 / 1381,
  25768. bottom: 5.5 / 1484
  25769. }
  25770. },
  25771. frontCasual: {
  25772. height: math.unit(7 + 6.451 / 12, "feet"),
  25773. weight: math.unit(200, "lb"),
  25774. name: "Front (Casual)",
  25775. image: {
  25776. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25777. extra: 1478 / 1381,
  25778. bottom: 5.5 / 1484
  25779. }
  25780. },
  25781. },
  25782. [
  25783. {
  25784. name: "Travel-Sized",
  25785. height: math.unit(7.45, "inches")
  25786. },
  25787. {
  25788. name: "Normal",
  25789. height: math.unit(7 + 6.451 / 12, "feet"),
  25790. default: true
  25791. },
  25792. {
  25793. name: "Hitting the Town",
  25794. height: math.unit(37 + 8 / 12, "feet")
  25795. },
  25796. {
  25797. name: "Stomp in the Suburbs",
  25798. height: math.unit(964 + 9.728 / 12, "feet")
  25799. },
  25800. {
  25801. name: "Sit on the City",
  25802. height: math.unit(61747 + 10.592 / 12, "feet")
  25803. },
  25804. {
  25805. name: "Glomp the Globe",
  25806. height: math.unit(252919327 + 4.832 / 12, "feet")
  25807. },
  25808. ]
  25809. ))
  25810. characterMakers.push(() => makeCharacter(
  25811. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25812. {
  25813. front: {
  25814. height: math.unit(6 + 4 / 12, "feet"),
  25815. weight: math.unit(320, "lb"),
  25816. name: "Front",
  25817. image: {
  25818. source: "./media/characters/balina-mahigan/front.svg",
  25819. extra: 447 / 428,
  25820. bottom: 18 / 466
  25821. }
  25822. },
  25823. back: {
  25824. height: math.unit(6 + 4 / 12, "feet"),
  25825. weight: math.unit(320, "lb"),
  25826. name: "Back",
  25827. image: {
  25828. source: "./media/characters/balina-mahigan/back.svg",
  25829. extra: 445 / 428,
  25830. bottom: 4.07 / 448
  25831. }
  25832. },
  25833. arm: {
  25834. height: math.unit(1.88, "feet"),
  25835. name: "Arm",
  25836. image: {
  25837. source: "./media/characters/balina-mahigan/arm.svg"
  25838. }
  25839. },
  25840. backPort: {
  25841. height: math.unit(0.685, "feet"),
  25842. name: "Back Port",
  25843. image: {
  25844. source: "./media/characters/balina-mahigan/back-port.svg"
  25845. }
  25846. },
  25847. hoofpaw: {
  25848. height: math.unit(1.41, "feet"),
  25849. name: "Hoofpaw",
  25850. image: {
  25851. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25852. }
  25853. },
  25854. leftHandBack: {
  25855. height: math.unit(0.938, "feet"),
  25856. name: "Left Hand (Back)",
  25857. image: {
  25858. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25859. }
  25860. },
  25861. leftHandFront: {
  25862. height: math.unit(0.938, "feet"),
  25863. name: "Left Hand (Front)",
  25864. image: {
  25865. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25866. }
  25867. },
  25868. rightHandBack: {
  25869. height: math.unit(0.95, "feet"),
  25870. name: "Right Hand (Back)",
  25871. image: {
  25872. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25873. }
  25874. },
  25875. rightHandFront: {
  25876. height: math.unit(0.95, "feet"),
  25877. name: "Right Hand (Front)",
  25878. image: {
  25879. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25880. }
  25881. },
  25882. },
  25883. [
  25884. {
  25885. name: "Normal",
  25886. height: math.unit(6 + 4 / 12, "feet"),
  25887. default: true
  25888. },
  25889. ]
  25890. ))
  25891. characterMakers.push(() => makeCharacter(
  25892. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25893. {
  25894. front: {
  25895. height: math.unit(6, "feet"),
  25896. weight: math.unit(320, "lb"),
  25897. name: "Front",
  25898. image: {
  25899. source: "./media/characters/balina-mejeri/front.svg",
  25900. extra: 517 / 488,
  25901. bottom: 44.2 / 561
  25902. }
  25903. },
  25904. },
  25905. [
  25906. {
  25907. name: "Normal",
  25908. height: math.unit(6 + 4 / 12, "feet")
  25909. },
  25910. {
  25911. name: "Business",
  25912. height: math.unit(155, "feet"),
  25913. default: true
  25914. },
  25915. ]
  25916. ))
  25917. characterMakers.push(() => makeCharacter(
  25918. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25919. {
  25920. kneeling: {
  25921. height: math.unit(6 + 4 / 12, "feet"),
  25922. weight: math.unit(300 * 20, "lb"),
  25923. name: "Kneeling",
  25924. image: {
  25925. source: "./media/characters/balbarian/kneeling.svg",
  25926. extra: 922 / 862,
  25927. bottom: 42.4 / 965
  25928. }
  25929. },
  25930. },
  25931. [
  25932. {
  25933. name: "Normal",
  25934. height: math.unit(6 + 4 / 12, "feet")
  25935. },
  25936. {
  25937. name: "Treasured",
  25938. height: math.unit(18 + 9 / 12, "feet"),
  25939. default: true
  25940. },
  25941. {
  25942. name: "Macro",
  25943. height: math.unit(900, "feet")
  25944. },
  25945. ]
  25946. ))
  25947. characterMakers.push(() => makeCharacter(
  25948. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25949. {
  25950. front: {
  25951. height: math.unit(6 + 4 / 12, "feet"),
  25952. weight: math.unit(325, "lb"),
  25953. name: "Front",
  25954. image: {
  25955. source: "./media/characters/balina-amarini/front.svg",
  25956. extra: 415 / 403,
  25957. bottom: 19 / 433.4
  25958. }
  25959. },
  25960. back: {
  25961. height: math.unit(6 + 4 / 12, "feet"),
  25962. weight: math.unit(325, "lb"),
  25963. name: "Back",
  25964. image: {
  25965. source: "./media/characters/balina-amarini/back.svg",
  25966. extra: 415 / 403,
  25967. bottom: 13.5 / 432
  25968. }
  25969. },
  25970. overdrive: {
  25971. height: math.unit(6 + 4 / 12, "feet"),
  25972. weight: math.unit(400, "lb"),
  25973. name: "Overdrive",
  25974. image: {
  25975. source: "./media/characters/balina-amarini/overdrive.svg",
  25976. extra: 269 / 259,
  25977. bottom: 12 / 282
  25978. }
  25979. },
  25980. },
  25981. [
  25982. {
  25983. name: "Boom",
  25984. height: math.unit(9 + 10 / 12, "feet"),
  25985. default: true
  25986. },
  25987. {
  25988. name: "Macro",
  25989. height: math.unit(280, "feet")
  25990. },
  25991. ]
  25992. ))
  25993. characterMakers.push(() => makeCharacter(
  25994. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25995. {
  25996. goddess: {
  25997. height: math.unit(600, "feet"),
  25998. weight: math.unit(2000000, "tons"),
  25999. name: "Goddess",
  26000. image: {
  26001. source: "./media/characters/lady-kubwa/goddess.svg",
  26002. extra: 1240.5 / 1223,
  26003. bottom: 22 / 1263
  26004. }
  26005. },
  26006. goddesser: {
  26007. height: math.unit(900, "feet"),
  26008. weight: math.unit(20000000, "lb"),
  26009. name: "Goddess-er",
  26010. image: {
  26011. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26012. extra: 899 / 888,
  26013. bottom: 12.6 / 912
  26014. }
  26015. },
  26016. },
  26017. [
  26018. {
  26019. name: "Macro",
  26020. height: math.unit(600, "feet"),
  26021. default: true
  26022. },
  26023. {
  26024. name: "Megamacro",
  26025. height: math.unit(250, "miles")
  26026. },
  26027. ]
  26028. ))
  26029. characterMakers.push(() => makeCharacter(
  26030. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26031. {
  26032. front: {
  26033. height: math.unit(7 + 7 / 12, "feet"),
  26034. weight: math.unit(250, "lb"),
  26035. name: "Front",
  26036. image: {
  26037. source: "./media/characters/tala-grovehorn/front.svg",
  26038. extra: 2636 / 2525,
  26039. bottom: 147 / 2781
  26040. }
  26041. },
  26042. back: {
  26043. height: math.unit(7 + 7 / 12, "feet"),
  26044. weight: math.unit(250, "lb"),
  26045. name: "Back",
  26046. image: {
  26047. source: "./media/characters/tala-grovehorn/back.svg",
  26048. extra: 2635 / 2539,
  26049. bottom: 100 / 2732.8
  26050. }
  26051. },
  26052. mouth: {
  26053. height: math.unit(1.15, "feet"),
  26054. name: "Mouth",
  26055. image: {
  26056. source: "./media/characters/tala-grovehorn/mouth.svg"
  26057. }
  26058. },
  26059. dick: {
  26060. height: math.unit(2.36, "feet"),
  26061. name: "Dick",
  26062. image: {
  26063. source: "./media/characters/tala-grovehorn/dick.svg"
  26064. }
  26065. },
  26066. slit: {
  26067. height: math.unit(0.61, "feet"),
  26068. name: "Slit",
  26069. image: {
  26070. source: "./media/characters/tala-grovehorn/slit.svg"
  26071. }
  26072. },
  26073. },
  26074. [
  26075. ]
  26076. ))
  26077. characterMakers.push(() => makeCharacter(
  26078. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26079. {
  26080. front: {
  26081. height: math.unit(7 + 7 / 12, "feet"),
  26082. weight: math.unit(225, "lb"),
  26083. name: "Front",
  26084. image: {
  26085. source: "./media/characters/epona/front.svg",
  26086. extra: 2445 / 2290,
  26087. bottom: 251 / 2696
  26088. }
  26089. },
  26090. back: {
  26091. height: math.unit(7 + 7 / 12, "feet"),
  26092. weight: math.unit(225, "lb"),
  26093. name: "Back",
  26094. image: {
  26095. source: "./media/characters/epona/back.svg",
  26096. extra: 2546 / 2408,
  26097. bottom: 44 / 2589
  26098. }
  26099. },
  26100. genitals: {
  26101. height: math.unit(1.5, "feet"),
  26102. name: "Genitals",
  26103. image: {
  26104. source: "./media/characters/epona/genitals.svg"
  26105. }
  26106. },
  26107. },
  26108. [
  26109. {
  26110. name: "Normal",
  26111. height: math.unit(7 + 7 / 12, "feet"),
  26112. default: true
  26113. },
  26114. ]
  26115. ))
  26116. characterMakers.push(() => makeCharacter(
  26117. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26118. {
  26119. front: {
  26120. height: math.unit(7, "feet"),
  26121. weight: math.unit(518, "lb"),
  26122. name: "Front",
  26123. image: {
  26124. source: "./media/characters/avia-bloodbourn/front.svg",
  26125. extra: 1466 / 1350,
  26126. bottom: 65 / 1527
  26127. }
  26128. },
  26129. },
  26130. [
  26131. ]
  26132. ))
  26133. characterMakers.push(() => makeCharacter(
  26134. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26135. {
  26136. front: {
  26137. height: math.unit(9.35, "feet"),
  26138. weight: math.unit(600, "lb"),
  26139. name: "Front",
  26140. image: {
  26141. source: "./media/characters/amera/front.svg",
  26142. extra: 891 / 818,
  26143. bottom: 30 / 922.7
  26144. }
  26145. },
  26146. back: {
  26147. height: math.unit(9.35, "feet"),
  26148. weight: math.unit(600, "lb"),
  26149. name: "Back",
  26150. image: {
  26151. source: "./media/characters/amera/back.svg",
  26152. extra: 876 / 824,
  26153. bottom: 6.8 / 884
  26154. }
  26155. },
  26156. dick: {
  26157. height: math.unit(2.14, "feet"),
  26158. name: "Dick",
  26159. image: {
  26160. source: "./media/characters/amera/dick.svg"
  26161. }
  26162. },
  26163. },
  26164. [
  26165. {
  26166. name: "Normal",
  26167. height: math.unit(9.35, "feet"),
  26168. default: true
  26169. },
  26170. ]
  26171. ))
  26172. characterMakers.push(() => makeCharacter(
  26173. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26174. {
  26175. kneeling: {
  26176. height: math.unit(3 + 4 / 12, "feet"),
  26177. weight: math.unit(90, "lb"),
  26178. name: "Kneeling",
  26179. image: {
  26180. source: "./media/characters/rosewen/kneeling.svg",
  26181. extra: 1835 / 1571,
  26182. bottom: 27.7 / 1862
  26183. }
  26184. },
  26185. },
  26186. [
  26187. {
  26188. name: "Normal",
  26189. height: math.unit(3 + 4 / 12, "feet"),
  26190. default: true
  26191. },
  26192. ]
  26193. ))
  26194. characterMakers.push(() => makeCharacter(
  26195. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26196. {
  26197. front: {
  26198. height: math.unit(5 + 10 / 12, "feet"),
  26199. weight: math.unit(200, "lb"),
  26200. name: "Front",
  26201. image: {
  26202. source: "./media/characters/sabah/front.svg",
  26203. extra: 849 / 763,
  26204. bottom: 33.9 / 881
  26205. }
  26206. },
  26207. },
  26208. [
  26209. {
  26210. name: "Normal",
  26211. height: math.unit(5 + 10 / 12, "feet"),
  26212. default: true
  26213. },
  26214. ]
  26215. ))
  26216. characterMakers.push(() => makeCharacter(
  26217. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26218. {
  26219. front: {
  26220. height: math.unit(3 + 5 / 12, "feet"),
  26221. weight: math.unit(40, "kg"),
  26222. name: "Front",
  26223. image: {
  26224. source: "./media/characters/purple-flame/front.svg",
  26225. extra: 1577 / 1412,
  26226. bottom: 97 / 1694
  26227. }
  26228. },
  26229. frontDressed: {
  26230. height: math.unit(3 + 5 / 12, "feet"),
  26231. weight: math.unit(40, "kg"),
  26232. name: "Front (Dressed)",
  26233. image: {
  26234. source: "./media/characters/purple-flame/front-dressed.svg",
  26235. extra: 1577 / 1412,
  26236. bottom: 97 / 1694
  26237. }
  26238. },
  26239. headphones: {
  26240. height: math.unit(0.85, "feet"),
  26241. name: "Headphones",
  26242. image: {
  26243. source: "./media/characters/purple-flame/headphones.svg"
  26244. }
  26245. },
  26246. },
  26247. [
  26248. {
  26249. name: "Really Small",
  26250. height: math.unit(5, "cm")
  26251. },
  26252. {
  26253. name: "Micro",
  26254. height: math.unit(1 + 5 / 12, "feet")
  26255. },
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(3 + 5 / 12, "feet"),
  26259. default: true
  26260. },
  26261. {
  26262. name: "Minimacro",
  26263. height: math.unit(125, "feet")
  26264. },
  26265. {
  26266. name: "Macro",
  26267. height: math.unit(0.5, "miles")
  26268. },
  26269. {
  26270. name: "Megamacro",
  26271. height: math.unit(50, "miles")
  26272. },
  26273. {
  26274. name: "Gigantic",
  26275. height: math.unit(750, "miles")
  26276. },
  26277. {
  26278. name: "Planetary",
  26279. height: math.unit(15000, "miles")
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26285. {
  26286. front: {
  26287. height: math.unit(14, "feet"),
  26288. weight: math.unit(959, "lb"),
  26289. name: "Front",
  26290. image: {
  26291. source: "./media/characters/arsenal/front.svg",
  26292. extra: 2357 / 2157,
  26293. bottom: 93 / 2458
  26294. }
  26295. },
  26296. },
  26297. [
  26298. {
  26299. name: "Normal",
  26300. height: math.unit(14, "feet"),
  26301. default: true
  26302. },
  26303. ]
  26304. ))
  26305. characterMakers.push(() => makeCharacter(
  26306. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26307. {
  26308. front: {
  26309. height: math.unit(6, "feet"),
  26310. weight: math.unit(150, "lb"),
  26311. name: "Front",
  26312. image: {
  26313. source: "./media/characters/adira/front.svg",
  26314. extra: 1078 / 1029,
  26315. bottom: 87 / 1166
  26316. }
  26317. },
  26318. },
  26319. [
  26320. {
  26321. name: "Micro",
  26322. height: math.unit(4, "inches"),
  26323. default: true
  26324. },
  26325. {
  26326. name: "Macro",
  26327. height: math.unit(50, "feet")
  26328. },
  26329. ]
  26330. ))
  26331. characterMakers.push(() => makeCharacter(
  26332. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26333. {
  26334. front: {
  26335. height: math.unit(16, "feet"),
  26336. weight: math.unit(1000, "lb"),
  26337. name: "Front",
  26338. image: {
  26339. source: "./media/characters/grim/front.svg",
  26340. extra: 622 / 614,
  26341. bottom: 18.1 / 642
  26342. }
  26343. },
  26344. back: {
  26345. height: math.unit(16, "feet"),
  26346. weight: math.unit(1000, "lb"),
  26347. name: "Back",
  26348. image: {
  26349. source: "./media/characters/grim/back.svg",
  26350. extra: 610.6 / 602,
  26351. bottom: 40.8 / 652
  26352. }
  26353. },
  26354. hunched: {
  26355. height: math.unit(9.75, "feet"),
  26356. weight: math.unit(1000, "lb"),
  26357. name: "Hunched",
  26358. image: {
  26359. source: "./media/characters/grim/hunched.svg",
  26360. extra: 304 / 297,
  26361. bottom: 35.4 / 394
  26362. }
  26363. },
  26364. },
  26365. [
  26366. {
  26367. name: "Normal",
  26368. height: math.unit(16, "feet"),
  26369. default: true
  26370. },
  26371. ]
  26372. ))
  26373. characterMakers.push(() => makeCharacter(
  26374. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26375. {
  26376. front: {
  26377. height: math.unit(2.3, "meters"),
  26378. weight: math.unit(300, "lb"),
  26379. name: "Front",
  26380. image: {
  26381. source: "./media/characters/sinja/front-sfw.svg",
  26382. extra: 1393 / 1294,
  26383. bottom: 70 / 1463
  26384. }
  26385. },
  26386. frontNsfw: {
  26387. height: math.unit(2.3, "meters"),
  26388. weight: math.unit(300, "lb"),
  26389. name: "Front (NSFW)",
  26390. image: {
  26391. source: "./media/characters/sinja/front-nsfw.svg",
  26392. extra: 1393 / 1294,
  26393. bottom: 70 / 1463
  26394. }
  26395. },
  26396. back: {
  26397. height: math.unit(2.3, "meters"),
  26398. weight: math.unit(300, "lb"),
  26399. name: "Back",
  26400. image: {
  26401. source: "./media/characters/sinja/back.svg",
  26402. extra: 1393 / 1294,
  26403. bottom: 70 / 1463
  26404. }
  26405. },
  26406. head: {
  26407. height: math.unit(1.771, "feet"),
  26408. name: "Head",
  26409. image: {
  26410. source: "./media/characters/sinja/head.svg"
  26411. }
  26412. },
  26413. slit: {
  26414. height: math.unit(0.8, "feet"),
  26415. name: "Slit",
  26416. image: {
  26417. source: "./media/characters/sinja/slit.svg"
  26418. }
  26419. },
  26420. },
  26421. [
  26422. {
  26423. name: "Normal",
  26424. height: math.unit(2.3, "meters")
  26425. },
  26426. {
  26427. name: "Macro",
  26428. height: math.unit(91, "meters"),
  26429. default: true
  26430. },
  26431. {
  26432. name: "Megamacro",
  26433. height: math.unit(91440, "meters")
  26434. },
  26435. {
  26436. name: "Gigamacro",
  26437. height: math.unit(60960000, "meters")
  26438. },
  26439. {
  26440. name: "Teramacro",
  26441. height: math.unit(9144000000, "meters")
  26442. },
  26443. ]
  26444. ))
  26445. characterMakers.push(() => makeCharacter(
  26446. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26447. {
  26448. front: {
  26449. height: math.unit(1.7, "meters"),
  26450. weight: math.unit(130, "lb"),
  26451. name: "Front",
  26452. image: {
  26453. source: "./media/characters/kyu/front.svg",
  26454. extra: 415 / 395,
  26455. bottom: 5 / 420
  26456. }
  26457. },
  26458. head: {
  26459. height: math.unit(1.75, "feet"),
  26460. name: "Head",
  26461. image: {
  26462. source: "./media/characters/kyu/head.svg"
  26463. }
  26464. },
  26465. foot: {
  26466. height: math.unit(0.81, "feet"),
  26467. name: "Foot",
  26468. image: {
  26469. source: "./media/characters/kyu/foot.svg"
  26470. }
  26471. },
  26472. },
  26473. [
  26474. {
  26475. name: "Normal",
  26476. height: math.unit(1.7, "meters")
  26477. },
  26478. {
  26479. name: "Macro",
  26480. height: math.unit(131, "feet"),
  26481. default: true
  26482. },
  26483. {
  26484. name: "Megamacro",
  26485. height: math.unit(91440, "meters")
  26486. },
  26487. {
  26488. name: "Gigamacro",
  26489. height: math.unit(60960000, "meters")
  26490. },
  26491. {
  26492. name: "Teramacro",
  26493. height: math.unit(9144000000, "meters")
  26494. },
  26495. ]
  26496. ))
  26497. characterMakers.push(() => makeCharacter(
  26498. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26499. {
  26500. front: {
  26501. height: math.unit(7 + 1 / 12, "feet"),
  26502. weight: math.unit(250, "lb"),
  26503. name: "Front",
  26504. image: {
  26505. source: "./media/characters/joey/front.svg",
  26506. extra: 1791 / 1537,
  26507. bottom: 28 / 1816
  26508. }
  26509. },
  26510. },
  26511. [
  26512. {
  26513. name: "Micro",
  26514. height: math.unit(3, "inches")
  26515. },
  26516. {
  26517. name: "Normal",
  26518. height: math.unit(7 + 1 / 12, "feet"),
  26519. default: true
  26520. },
  26521. ]
  26522. ))
  26523. characterMakers.push(() => makeCharacter(
  26524. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26525. {
  26526. front: {
  26527. height: math.unit(165, "cm"),
  26528. weight: math.unit(140, "lb"),
  26529. name: "Front",
  26530. image: {
  26531. source: "./media/characters/sam-evans/front.svg",
  26532. extra: 3417 / 3230,
  26533. bottom: 41.3 / 3417
  26534. }
  26535. },
  26536. frontSixTails: {
  26537. height: math.unit(165, "cm"),
  26538. weight: math.unit(140, "lb"),
  26539. name: "Front-six-tails",
  26540. image: {
  26541. source: "./media/characters/sam-evans/front-six-tails.svg",
  26542. extra: 3417 / 3230,
  26543. bottom: 41.3 / 3417
  26544. }
  26545. },
  26546. back: {
  26547. height: math.unit(165, "cm"),
  26548. weight: math.unit(140, "lb"),
  26549. name: "Back",
  26550. image: {
  26551. source: "./media/characters/sam-evans/back.svg",
  26552. extra: 3227 / 3032,
  26553. bottom: 6.8 / 3234
  26554. }
  26555. },
  26556. face: {
  26557. height: math.unit(0.68, "feet"),
  26558. name: "Face",
  26559. image: {
  26560. source: "./media/characters/sam-evans/face.svg"
  26561. }
  26562. },
  26563. },
  26564. [
  26565. {
  26566. name: "Normal",
  26567. height: math.unit(165, "cm"),
  26568. default: true
  26569. },
  26570. {
  26571. name: "Macro",
  26572. height: math.unit(100, "meters")
  26573. },
  26574. {
  26575. name: "Macro+",
  26576. height: math.unit(800, "meters")
  26577. },
  26578. {
  26579. name: "Macro++",
  26580. height: math.unit(3, "km")
  26581. },
  26582. {
  26583. name: "Macro+++",
  26584. height: math.unit(30, "km")
  26585. },
  26586. ]
  26587. ))
  26588. characterMakers.push(() => makeCharacter(
  26589. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26590. {
  26591. front: {
  26592. height: math.unit(10, "feet"),
  26593. weight: math.unit(750, "lb"),
  26594. name: "Front",
  26595. image: {
  26596. source: "./media/characters/juliet-a/front.svg",
  26597. extra: 1766 / 1720,
  26598. bottom: 43 / 1809
  26599. }
  26600. },
  26601. back: {
  26602. height: math.unit(10, "feet"),
  26603. weight: math.unit(750, "lb"),
  26604. name: "Back",
  26605. image: {
  26606. source: "./media/characters/juliet-a/back.svg",
  26607. extra: 1781 / 1734,
  26608. bottom: 35 / 1810,
  26609. }
  26610. },
  26611. },
  26612. [
  26613. {
  26614. name: "Normal",
  26615. height: math.unit(10, "feet"),
  26616. default: true
  26617. },
  26618. {
  26619. name: "Dragon Form",
  26620. height: math.unit(250, "feet")
  26621. },
  26622. {
  26623. name: "Macro",
  26624. height: math.unit(1000, "feet")
  26625. },
  26626. {
  26627. name: "Megamacro",
  26628. height: math.unit(10000, "feet")
  26629. }
  26630. ]
  26631. ))
  26632. characterMakers.push(() => makeCharacter(
  26633. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26634. {
  26635. regular: {
  26636. height: math.unit(7 + 3 / 12, "feet"),
  26637. weight: math.unit(260, "lb"),
  26638. name: "Regular",
  26639. image: {
  26640. source: "./media/characters/wild/regular.svg",
  26641. extra: 97.45 / 92,
  26642. bottom: 6.8 / 104.3
  26643. }
  26644. },
  26645. biggums: {
  26646. height: math.unit(8 + 6 / 12, "feet"),
  26647. weight: math.unit(425, "lb"),
  26648. name: "Biggums",
  26649. image: {
  26650. source: "./media/characters/wild/biggums.svg",
  26651. extra: 97.45 / 92,
  26652. bottom: 7.5 / 132.34
  26653. }
  26654. },
  26655. mawRegular: {
  26656. height: math.unit(1.24, "feet"),
  26657. name: "Maw (Regular)",
  26658. image: {
  26659. source: "./media/characters/wild/maw.svg"
  26660. }
  26661. },
  26662. mawBiggums: {
  26663. height: math.unit(1.47, "feet"),
  26664. name: "Maw (Biggums)",
  26665. image: {
  26666. source: "./media/characters/wild/maw.svg"
  26667. }
  26668. },
  26669. },
  26670. [
  26671. {
  26672. name: "Normal",
  26673. height: math.unit(7 + 3 / 12, "feet"),
  26674. default: true
  26675. },
  26676. ]
  26677. ))
  26678. characterMakers.push(() => makeCharacter(
  26679. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26680. {
  26681. front: {
  26682. height: math.unit(2.5, "meters"),
  26683. weight: math.unit(200, "kg"),
  26684. name: "Front",
  26685. image: {
  26686. source: "./media/characters/vidar/front.svg",
  26687. extra: 2994 / 2795,
  26688. bottom: 56 / 3061
  26689. }
  26690. },
  26691. back: {
  26692. height: math.unit(2.5, "meters"),
  26693. weight: math.unit(200, "kg"),
  26694. name: "Back",
  26695. image: {
  26696. source: "./media/characters/vidar/back.svg",
  26697. extra: 3131 / 2928,
  26698. bottom: 13.5 / 3141.5
  26699. }
  26700. },
  26701. feral: {
  26702. height: math.unit(2.5, "meters"),
  26703. weight: math.unit(2000, "kg"),
  26704. name: "Feral",
  26705. image: {
  26706. source: "./media/characters/vidar/feral.svg",
  26707. extra: 2790 / 1765,
  26708. bottom: 6 / 2796
  26709. }
  26710. },
  26711. },
  26712. [
  26713. {
  26714. name: "Normal",
  26715. height: math.unit(2.5, "meters"),
  26716. default: true
  26717. },
  26718. {
  26719. name: "Macro",
  26720. height: math.unit(100, "meters")
  26721. },
  26722. ]
  26723. ))
  26724. characterMakers.push(() => makeCharacter(
  26725. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26726. {
  26727. front: {
  26728. height: math.unit(5 + 9 / 12, "feet"),
  26729. weight: math.unit(120, "lb"),
  26730. name: "Front",
  26731. image: {
  26732. source: "./media/characters/ash/front.svg",
  26733. extra: 2189 / 1961,
  26734. bottom: 5.2 / 2194
  26735. }
  26736. },
  26737. },
  26738. [
  26739. {
  26740. name: "Normal",
  26741. height: math.unit(5 + 9 / 12, "feet"),
  26742. default: true
  26743. },
  26744. ]
  26745. ))
  26746. characterMakers.push(() => makeCharacter(
  26747. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26748. {
  26749. front: {
  26750. height: math.unit(9, "feet"),
  26751. weight: math.unit(10000, "lb"),
  26752. name: "Front",
  26753. image: {
  26754. source: "./media/characters/gygabite/front.svg",
  26755. bottom: 31.7 / 537.8,
  26756. extra: 505 / 370
  26757. }
  26758. },
  26759. },
  26760. [
  26761. {
  26762. name: "Normal",
  26763. height: math.unit(9, "feet"),
  26764. default: true
  26765. },
  26766. ]
  26767. ))
  26768. characterMakers.push(() => makeCharacter(
  26769. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26770. {
  26771. front: {
  26772. height: math.unit(12, "feet"),
  26773. weight: math.unit(35000, "lb"),
  26774. name: "Front",
  26775. image: {
  26776. source: "./media/characters/p0tat0/front.svg",
  26777. extra: 1065 / 921,
  26778. bottom: 55.7 / 1121.25
  26779. }
  26780. },
  26781. },
  26782. [
  26783. {
  26784. name: "Normal",
  26785. height: math.unit(12, "feet"),
  26786. default: true
  26787. },
  26788. ]
  26789. ))
  26790. characterMakers.push(() => makeCharacter(
  26791. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26792. {
  26793. side: {
  26794. height: math.unit(6.5, "feet"),
  26795. weight: math.unit(800, "lb"),
  26796. name: "Side",
  26797. image: {
  26798. source: "./media/characters/dusk/side.svg",
  26799. extra: 615 / 373,
  26800. bottom: 53 / 664
  26801. }
  26802. },
  26803. sitting: {
  26804. height: math.unit(7, "feet"),
  26805. weight: math.unit(800, "lb"),
  26806. name: "Sitting",
  26807. image: {
  26808. source: "./media/characters/dusk/sitting.svg",
  26809. extra: 753 / 425,
  26810. bottom: 33 / 774
  26811. }
  26812. },
  26813. head: {
  26814. height: math.unit(6.1, "feet"),
  26815. name: "Head",
  26816. image: {
  26817. source: "./media/characters/dusk/head.svg"
  26818. }
  26819. },
  26820. },
  26821. [
  26822. {
  26823. name: "Normal",
  26824. height: math.unit(7, "feet"),
  26825. default: true
  26826. },
  26827. ]
  26828. ))
  26829. characterMakers.push(() => makeCharacter(
  26830. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26831. {
  26832. front: {
  26833. height: math.unit(15, "feet"),
  26834. weight: math.unit(7000, "lb"),
  26835. name: "Front",
  26836. image: {
  26837. source: "./media/characters/jay-direwolf/front.svg",
  26838. extra: 1810 / 1732,
  26839. bottom: 66 / 1892
  26840. }
  26841. },
  26842. },
  26843. [
  26844. {
  26845. name: "Normal",
  26846. height: math.unit(15, "feet"),
  26847. default: true
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26853. {
  26854. front: {
  26855. height: math.unit(4 + 9 / 12, "feet"),
  26856. weight: math.unit(130, "lb"),
  26857. name: "Front",
  26858. image: {
  26859. source: "./media/characters/anchovie/front.svg",
  26860. extra: 382 / 350,
  26861. bottom: 25 / 409
  26862. }
  26863. },
  26864. back: {
  26865. height: math.unit(4 + 9 / 12, "feet"),
  26866. weight: math.unit(130, "lb"),
  26867. name: "Back",
  26868. image: {
  26869. source: "./media/characters/anchovie/back.svg",
  26870. extra: 385 / 352,
  26871. bottom: 16.6 / 402
  26872. }
  26873. },
  26874. frontDressed: {
  26875. height: math.unit(4 + 9 / 12, "feet"),
  26876. weight: math.unit(130, "lb"),
  26877. name: "Front (Dressed)",
  26878. image: {
  26879. source: "./media/characters/anchovie/front-dressed.svg",
  26880. extra: 382 / 350,
  26881. bottom: 25 / 409
  26882. }
  26883. },
  26884. backDressed: {
  26885. height: math.unit(4 + 9 / 12, "feet"),
  26886. weight: math.unit(130, "lb"),
  26887. name: "Back (Dressed)",
  26888. image: {
  26889. source: "./media/characters/anchovie/back-dressed.svg",
  26890. extra: 385 / 352,
  26891. bottom: 16.6 / 402
  26892. }
  26893. },
  26894. },
  26895. [
  26896. {
  26897. name: "Micro",
  26898. height: math.unit(6.4, "inches")
  26899. },
  26900. {
  26901. name: "Normal",
  26902. height: math.unit(4 + 9 / 12, "feet"),
  26903. default: true
  26904. },
  26905. ]
  26906. ))
  26907. characterMakers.push(() => makeCharacter(
  26908. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26909. {
  26910. front: {
  26911. height: math.unit(2, "meters"),
  26912. weight: math.unit(180, "lb"),
  26913. name: "Front",
  26914. image: {
  26915. source: "./media/characters/acidrenamon/front.svg",
  26916. extra: 987 / 890,
  26917. bottom: 22.8 / 1009
  26918. }
  26919. },
  26920. back: {
  26921. height: math.unit(2, "meters"),
  26922. weight: math.unit(180, "lb"),
  26923. name: "Back",
  26924. image: {
  26925. source: "./media/characters/acidrenamon/back.svg",
  26926. extra: 983 / 891,
  26927. bottom: 8.4 / 992
  26928. }
  26929. },
  26930. head: {
  26931. height: math.unit(1.92, "feet"),
  26932. name: "Head",
  26933. image: {
  26934. source: "./media/characters/acidrenamon/head.svg"
  26935. }
  26936. },
  26937. rump: {
  26938. height: math.unit(1.72, "feet"),
  26939. name: "Rump",
  26940. image: {
  26941. source: "./media/characters/acidrenamon/rump.svg"
  26942. }
  26943. },
  26944. tail: {
  26945. height: math.unit(4.2, "feet"),
  26946. name: "Tail",
  26947. image: {
  26948. source: "./media/characters/acidrenamon/tail.svg"
  26949. }
  26950. },
  26951. },
  26952. [
  26953. {
  26954. name: "Normal",
  26955. height: math.unit(2, "meters"),
  26956. default: true
  26957. },
  26958. {
  26959. name: "Minimacro",
  26960. height: math.unit(7, "meters")
  26961. },
  26962. {
  26963. name: "Macro",
  26964. height: math.unit(200, "meters")
  26965. },
  26966. {
  26967. name: "Gigamacro",
  26968. height: math.unit(0.2, "earths")
  26969. },
  26970. ]
  26971. ))
  26972. characterMakers.push(() => makeCharacter(
  26973. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26974. {
  26975. front: {
  26976. height: math.unit(6, "feet"),
  26977. weight: math.unit(150, "lb"),
  26978. name: "Front",
  26979. image: {
  26980. source: "./media/characters/kenzie-lee/front.svg",
  26981. extra: 1525 / 1465,
  26982. bottom: 45 / 1570
  26983. }
  26984. },
  26985. side: {
  26986. height: math.unit(6, "feet"),
  26987. weight: math.unit(150, "lb"),
  26988. name: "Side",
  26989. image: {
  26990. source: "./media/characters/kenzie-lee/side.svg",
  26991. extra: 5505 / 5383,
  26992. bottom: 60 / 5573
  26993. }
  26994. },
  26995. paw: {
  26996. height: math.unit(0.57, "feet"),
  26997. name: "Paw",
  26998. image: {
  26999. source: "./media/characters/kenzie-lee/paw.svg"
  27000. }
  27001. },
  27002. },
  27003. [
  27004. {
  27005. name: "Normal",
  27006. height: math.unit(152, "feet"),
  27007. default: true
  27008. },
  27009. {
  27010. name: "Megamacro",
  27011. height: math.unit(7, "miles")
  27012. },
  27013. {
  27014. name: "Gigamacro",
  27015. height: math.unit(8000, "miles")
  27016. },
  27017. ]
  27018. ))
  27019. characterMakers.push(() => makeCharacter(
  27020. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27021. {
  27022. side: {
  27023. height: math.unit(6, "feet"),
  27024. weight: math.unit(150, "lb"),
  27025. name: "Side",
  27026. image: {
  27027. source: "./media/characters/withers/side.svg",
  27028. extra: 1830 / 1728,
  27029. bottom: 96 / 1927
  27030. }
  27031. },
  27032. front: {
  27033. height: math.unit(6, "feet"),
  27034. weight: math.unit(150, "lb"),
  27035. name: "Front",
  27036. image: {
  27037. source: "./media/characters/withers/front.svg",
  27038. extra: 1514 / 1438,
  27039. bottom: 118 / 1632
  27040. }
  27041. },
  27042. },
  27043. [
  27044. {
  27045. name: "Macro",
  27046. height: math.unit(168, "feet"),
  27047. default: true
  27048. },
  27049. {
  27050. name: "Megamacro",
  27051. height: math.unit(15, "miles")
  27052. }
  27053. ]
  27054. ))
  27055. characterMakers.push(() => makeCharacter(
  27056. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27057. {
  27058. front: {
  27059. height: math.unit(6 + 7 / 12, "feet"),
  27060. weight: math.unit(250, "lb"),
  27061. name: "Front",
  27062. image: {
  27063. source: "./media/characters/nemoskii/front.svg",
  27064. extra: 2270 / 1734,
  27065. bottom: 86 / 2354
  27066. }
  27067. },
  27068. back: {
  27069. height: math.unit(6 + 7 / 12, "feet"),
  27070. weight: math.unit(250, "lb"),
  27071. name: "Back",
  27072. image: {
  27073. source: "./media/characters/nemoskii/back.svg",
  27074. extra: 1845 / 1788,
  27075. bottom: 10.5 / 1852
  27076. }
  27077. },
  27078. head: {
  27079. height: math.unit(1.31, "feet"),
  27080. name: "Head",
  27081. image: {
  27082. source: "./media/characters/nemoskii/head.svg"
  27083. }
  27084. },
  27085. },
  27086. [
  27087. {
  27088. name: "Micro",
  27089. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27090. },
  27091. {
  27092. name: "Normal",
  27093. height: math.unit(6 + 7 / 12, "feet"),
  27094. default: true
  27095. },
  27096. {
  27097. name: "Macro",
  27098. height: math.unit((6 + 7 / 12) * 150, "feet")
  27099. },
  27100. {
  27101. name: "Macro+",
  27102. height: math.unit((6 + 7 / 12) * 500, "feet")
  27103. },
  27104. {
  27105. name: "Megamacro",
  27106. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27107. },
  27108. ]
  27109. ))
  27110. characterMakers.push(() => makeCharacter(
  27111. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27112. {
  27113. front: {
  27114. height: math.unit(1, "mile"),
  27115. weight: math.unit(265261.9, "lb"),
  27116. name: "Front",
  27117. image: {
  27118. source: "./media/characters/shui/front.svg",
  27119. extra: 1633 / 1564,
  27120. bottom: 91.5 / 1726
  27121. }
  27122. },
  27123. },
  27124. [
  27125. {
  27126. name: "Macro",
  27127. height: math.unit(1, "mile"),
  27128. default: true
  27129. },
  27130. ]
  27131. ))
  27132. characterMakers.push(() => makeCharacter(
  27133. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27134. {
  27135. front: {
  27136. height: math.unit(12 + 6 / 12, "feet"),
  27137. weight: math.unit(1342, "lb"),
  27138. name: "Front",
  27139. image: {
  27140. source: "./media/characters/arokh-takakura/front.svg",
  27141. extra: 1089 / 1043,
  27142. bottom: 77.4 / 1176.7
  27143. }
  27144. },
  27145. back: {
  27146. height: math.unit(12 + 6 / 12, "feet"),
  27147. weight: math.unit(1342, "lb"),
  27148. name: "Back",
  27149. image: {
  27150. source: "./media/characters/arokh-takakura/back.svg",
  27151. extra: 1046 / 1019,
  27152. bottom: 102 / 1150
  27153. }
  27154. },
  27155. },
  27156. [
  27157. {
  27158. name: "Big",
  27159. height: math.unit(12 + 6 / 12, "feet"),
  27160. default: true
  27161. },
  27162. ]
  27163. ))
  27164. characterMakers.push(() => makeCharacter(
  27165. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27166. {
  27167. front: {
  27168. height: math.unit(5 + 6 / 12, "feet"),
  27169. weight: math.unit(150, "lb"),
  27170. name: "Front",
  27171. image: {
  27172. source: "./media/characters/theo/front.svg",
  27173. extra: 1184 / 1131,
  27174. bottom: 7.4 / 1191
  27175. }
  27176. },
  27177. },
  27178. [
  27179. {
  27180. name: "Micro",
  27181. height: math.unit(5, "inches")
  27182. },
  27183. {
  27184. name: "Normal",
  27185. height: math.unit(5 + 6 / 12, "feet"),
  27186. default: true
  27187. },
  27188. ]
  27189. ))
  27190. characterMakers.push(() => makeCharacter(
  27191. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27192. {
  27193. front: {
  27194. height: math.unit(5 + 9 / 12, "feet"),
  27195. weight: math.unit(130, "lb"),
  27196. name: "Front",
  27197. image: {
  27198. source: "./media/characters/cecelia-swift/front.svg",
  27199. extra: 502 / 484,
  27200. bottom: 23 / 523
  27201. }
  27202. },
  27203. back: {
  27204. height: math.unit(5 + 9 / 12, "feet"),
  27205. weight: math.unit(130, "lb"),
  27206. name: "Back",
  27207. image: {
  27208. source: "./media/characters/cecelia-swift/back.svg",
  27209. extra: 499 / 485,
  27210. bottom: 12 / 511
  27211. }
  27212. },
  27213. head: {
  27214. height: math.unit(0.90, "feet"),
  27215. name: "Head",
  27216. image: {
  27217. source: "./media/characters/cecelia-swift/head.svg"
  27218. }
  27219. },
  27220. rump: {
  27221. height: math.unit(1.75, "feet"),
  27222. name: "Rump",
  27223. image: {
  27224. source: "./media/characters/cecelia-swift/rump.svg"
  27225. }
  27226. },
  27227. },
  27228. [
  27229. {
  27230. name: "Normal",
  27231. height: math.unit(5 + 9 / 12, "feet"),
  27232. default: true
  27233. },
  27234. {
  27235. name: "Big",
  27236. height: math.unit(50, "feet")
  27237. },
  27238. {
  27239. name: "Macro",
  27240. height: math.unit(100, "feet")
  27241. },
  27242. {
  27243. name: "Macro+",
  27244. height: math.unit(500, "feet")
  27245. },
  27246. {
  27247. name: "Macro++",
  27248. height: math.unit(1000, "feet")
  27249. },
  27250. ]
  27251. ))
  27252. characterMakers.push(() => makeCharacter(
  27253. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27254. {
  27255. front: {
  27256. height: math.unit(6, "feet"),
  27257. weight: math.unit(150, "lb"),
  27258. name: "Front",
  27259. image: {
  27260. source: "./media/characters/kaunan/front.svg",
  27261. extra: 2890 / 2523,
  27262. bottom: 49 / 2939
  27263. }
  27264. },
  27265. },
  27266. [
  27267. {
  27268. name: "Macro",
  27269. height: math.unit(150, "feet"),
  27270. default: true
  27271. },
  27272. ]
  27273. ))
  27274. characterMakers.push(() => makeCharacter(
  27275. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27276. {
  27277. front: {
  27278. height: math.unit(175, "cm"),
  27279. weight: math.unit(60, "kg"),
  27280. name: "Front",
  27281. image: {
  27282. source: "./media/characters/fei/front.svg",
  27283. extra: 2581 / 2400,
  27284. bottom: 82.2 / 2663
  27285. }
  27286. },
  27287. },
  27288. [
  27289. {
  27290. name: "Mortal",
  27291. height: math.unit(175, "cm")
  27292. },
  27293. {
  27294. name: "Normal",
  27295. height: math.unit(3500, "m"),
  27296. default: true
  27297. },
  27298. {
  27299. name: "Stroll",
  27300. height: math.unit(17.5, "km")
  27301. },
  27302. {
  27303. name: "Showoff",
  27304. height: math.unit(175, "km")
  27305. },
  27306. ]
  27307. ))
  27308. characterMakers.push(() => makeCharacter(
  27309. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27310. {
  27311. front: {
  27312. height: math.unit(7, "feet"),
  27313. weight: math.unit(1000, "kg"),
  27314. name: "Front",
  27315. image: {
  27316. source: "./media/characters/edrax/front.svg",
  27317. extra: 2838 / 2550,
  27318. bottom: 130 / 2968
  27319. }
  27320. },
  27321. },
  27322. [
  27323. {
  27324. name: "Small",
  27325. height: math.unit(7, "feet")
  27326. },
  27327. {
  27328. name: "Normal",
  27329. height: math.unit(1500, "meters")
  27330. },
  27331. {
  27332. name: "Mega",
  27333. height: math.unit(12000000, "km"),
  27334. default: true
  27335. },
  27336. {
  27337. name: "Megamacro",
  27338. height: math.unit(10600000, "lightyears")
  27339. },
  27340. {
  27341. name: "Hypermacro",
  27342. height: math.unit(256, "yottameters")
  27343. },
  27344. ]
  27345. ))
  27346. characterMakers.push(() => makeCharacter(
  27347. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27348. {
  27349. front: {
  27350. height: math.unit(10, "feet"),
  27351. weight: math.unit(750, "lb"),
  27352. name: "Front",
  27353. image: {
  27354. source: "./media/characters/clove/front.svg",
  27355. extra: 2031 / 1860,
  27356. bottom: 47.8 / 2080
  27357. }
  27358. },
  27359. back: {
  27360. height: math.unit(10, "feet"),
  27361. weight: math.unit(750, "lb"),
  27362. name: "Back",
  27363. image: {
  27364. source: "./media/characters/clove/back.svg",
  27365. extra: 2025 / 1859,
  27366. bottom: 46 / 2071
  27367. }
  27368. },
  27369. },
  27370. [
  27371. {
  27372. name: "Normal",
  27373. height: math.unit(10, "feet"),
  27374. default: true
  27375. },
  27376. ]
  27377. ))
  27378. characterMakers.push(() => makeCharacter(
  27379. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27380. {
  27381. front: {
  27382. height: math.unit(4, "feet"),
  27383. weight: math.unit(50, "lb"),
  27384. name: "Front",
  27385. image: {
  27386. source: "./media/characters/alex-rabbit/front.svg",
  27387. extra: 507 / 458,
  27388. bottom: 18.5 / 527
  27389. }
  27390. },
  27391. back: {
  27392. height: math.unit(4, "feet"),
  27393. weight: math.unit(50, "lb"),
  27394. name: "Back",
  27395. image: {
  27396. source: "./media/characters/alex-rabbit/back.svg",
  27397. extra: 502 / 460,
  27398. bottom: 18.9 / 521
  27399. }
  27400. },
  27401. },
  27402. [
  27403. {
  27404. name: "Normal",
  27405. height: math.unit(4, "feet"),
  27406. default: true
  27407. },
  27408. ]
  27409. ))
  27410. characterMakers.push(() => makeCharacter(
  27411. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27412. {
  27413. front: {
  27414. height: math.unit(1 + 3 / 12, "feet"),
  27415. weight: math.unit(80, "lb"),
  27416. name: "Front",
  27417. image: {
  27418. source: "./media/characters/zander-rose/front.svg",
  27419. extra: 916 / 797,
  27420. bottom: 17 / 933
  27421. }
  27422. },
  27423. back: {
  27424. height: math.unit(1 + 3 / 12, "feet"),
  27425. weight: math.unit(80, "lb"),
  27426. name: "Back",
  27427. image: {
  27428. source: "./media/characters/zander-rose/back.svg",
  27429. extra: 903 / 779,
  27430. bottom: 31 / 934
  27431. }
  27432. },
  27433. },
  27434. [
  27435. {
  27436. name: "Normal",
  27437. height: math.unit(1 + 3 / 12, "feet"),
  27438. default: true
  27439. },
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27444. {
  27445. anthro: {
  27446. height: math.unit(6, "feet"),
  27447. weight: math.unit(150, "lb"),
  27448. name: "Anthro",
  27449. image: {
  27450. source: "./media/characters/razz/anthro.svg",
  27451. extra: 1437 / 1343,
  27452. bottom: 48 / 1485
  27453. }
  27454. },
  27455. feral: {
  27456. height: math.unit(6, "feet"),
  27457. weight: math.unit(150, "lb"),
  27458. name: "Feral",
  27459. image: {
  27460. source: "./media/characters/razz/feral.svg",
  27461. extra: 2569 / 1385,
  27462. bottom: 95 / 2664
  27463. }
  27464. },
  27465. },
  27466. [
  27467. {
  27468. name: "Normal",
  27469. height: math.unit(6, "feet"),
  27470. default: true
  27471. },
  27472. ]
  27473. ))
  27474. characterMakers.push(() => makeCharacter(
  27475. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27476. {
  27477. front: {
  27478. height: math.unit(9 + 4 / 12, "feet"),
  27479. weight: math.unit(500, "lb"),
  27480. name: "Front",
  27481. image: {
  27482. source: "./media/characters/morrigan/front.svg",
  27483. extra: 2707 / 2579,
  27484. bottom: 156 / 2863
  27485. }
  27486. },
  27487. },
  27488. [
  27489. {
  27490. name: "Normal",
  27491. height: math.unit(9 + 4 / 12, "feet"),
  27492. default: true
  27493. },
  27494. ]
  27495. ))
  27496. characterMakers.push(() => makeCharacter(
  27497. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27498. {
  27499. front: {
  27500. height: math.unit(5, "stories"),
  27501. weight: math.unit(4000, "lb"),
  27502. name: "Front",
  27503. image: {
  27504. source: "./media/characters/jenene/front.svg",
  27505. extra: 1780 / 1710,
  27506. bottom: 57 / 1837
  27507. }
  27508. },
  27509. },
  27510. [
  27511. {
  27512. name: "Normal",
  27513. height: math.unit(5, "stories"),
  27514. default: true
  27515. },
  27516. ]
  27517. ))
  27518. characterMakers.push(() => makeCharacter(
  27519. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27520. {
  27521. front: {
  27522. height: math.unit(6, "feet"),
  27523. weight: math.unit(150, "lb"),
  27524. name: "Front",
  27525. image: {
  27526. source: "./media/characters/vix-archaser/front.svg",
  27527. extra: 2767 / 2562,
  27528. bottom: 36 / 2803
  27529. }
  27530. },
  27531. },
  27532. [
  27533. {
  27534. name: "Micro",
  27535. height: math.unit(1, "foot")
  27536. },
  27537. {
  27538. name: "Normal",
  27539. height: math.unit(6 + 5 / 12, "feet")
  27540. },
  27541. {
  27542. name: "Minimacro",
  27543. height: math.unit(500, "feet")
  27544. },
  27545. {
  27546. name: "Macro",
  27547. height: math.unit(4, "miles")
  27548. },
  27549. {
  27550. name: "Megamacro",
  27551. height: math.unit(250, "miles"),
  27552. default: true
  27553. },
  27554. {
  27555. name: "Gigamacro",
  27556. height: math.unit(1, "universe")
  27557. },
  27558. {
  27559. name: "Endgame",
  27560. height: math.unit(100, "multiverses")
  27561. }
  27562. ]
  27563. ))
  27564. characterMakers.push(() => makeCharacter(
  27565. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27566. {
  27567. taurSfw: {
  27568. height: math.unit(10, "meters"),
  27569. weight: math.unit(17500, "kg"),
  27570. name: "Taur",
  27571. image: {
  27572. source: "./media/characters/faey/taur-sfw.svg",
  27573. extra: 1200 / 968,
  27574. bottom: 41 / 1241
  27575. }
  27576. },
  27577. chestmaw: {
  27578. height: math.unit(2.01, "meters"),
  27579. name: "Chestmaw",
  27580. image: {
  27581. source: "./media/characters/faey/chestmaw.svg"
  27582. }
  27583. },
  27584. foot: {
  27585. height: math.unit(2.43, "meters"),
  27586. name: "Foot",
  27587. image: {
  27588. source: "./media/characters/faey/foot.svg"
  27589. }
  27590. },
  27591. jaws: {
  27592. height: math.unit(1.66, "meters"),
  27593. name: "Jaws",
  27594. image: {
  27595. source: "./media/characters/faey/jaws.svg"
  27596. }
  27597. },
  27598. tongues: {
  27599. height: math.unit(2.01, "meters"),
  27600. name: "Tongues",
  27601. image: {
  27602. source: "./media/characters/faey/tongues.svg"
  27603. }
  27604. },
  27605. },
  27606. [
  27607. {
  27608. name: "Small",
  27609. height: math.unit(10, "meters"),
  27610. default: true
  27611. },
  27612. {
  27613. name: "Big",
  27614. height: math.unit(500000, "km")
  27615. },
  27616. ]
  27617. ))
  27618. characterMakers.push(() => makeCharacter(
  27619. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27620. {
  27621. front: {
  27622. height: math.unit(7, "feet"),
  27623. weight: math.unit(275, "lb"),
  27624. name: "Front",
  27625. image: {
  27626. source: "./media/characters/roku/front.svg",
  27627. extra: 903 / 878,
  27628. bottom: 37 / 940
  27629. }
  27630. },
  27631. },
  27632. [
  27633. {
  27634. name: "Normal",
  27635. height: math.unit(7, "feet"),
  27636. default: true
  27637. },
  27638. {
  27639. name: "Macro",
  27640. height: math.unit(500, "feet")
  27641. },
  27642. {
  27643. name: "Megamacro",
  27644. height: math.unit(200, "miles")
  27645. },
  27646. ]
  27647. ))
  27648. characterMakers.push(() => makeCharacter(
  27649. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27650. {
  27651. front: {
  27652. height: math.unit(6 + 2 / 12, "feet"),
  27653. weight: math.unit(150, "lb"),
  27654. name: "Front",
  27655. image: {
  27656. source: "./media/characters/lira/front.svg",
  27657. extra: 1727 / 1605,
  27658. bottom: 26 / 1753
  27659. }
  27660. },
  27661. back: {
  27662. height: math.unit(6 + 2 / 12, "feet"),
  27663. weight: math.unit(150, "lb"),
  27664. name: "Back",
  27665. image: {
  27666. source: "./media/characters/lira/back.svg",
  27667. extra: 1713/1621,
  27668. bottom: 20/1733
  27669. }
  27670. },
  27671. hand: {
  27672. height: math.unit(0.75, "feet"),
  27673. name: "Hand",
  27674. image: {
  27675. source: "./media/characters/lira/hand.svg"
  27676. }
  27677. },
  27678. maw: {
  27679. height: math.unit(0.65, "feet"),
  27680. name: "Maw",
  27681. image: {
  27682. source: "./media/characters/lira/maw.svg"
  27683. }
  27684. },
  27685. pawDigi: {
  27686. height: math.unit(1.6, "feet"),
  27687. name: "Paw Digi",
  27688. image: {
  27689. source: "./media/characters/lira/paw-digi.svg"
  27690. }
  27691. },
  27692. pawPlanti: {
  27693. height: math.unit(1.4, "feet"),
  27694. name: "Paw Planti",
  27695. image: {
  27696. source: "./media/characters/lira/paw-planti.svg"
  27697. }
  27698. },
  27699. },
  27700. [
  27701. {
  27702. name: "Normal",
  27703. height: math.unit(6 + 2 / 12, "feet"),
  27704. default: true
  27705. },
  27706. {
  27707. name: "Macro",
  27708. height: math.unit(100, "feet")
  27709. },
  27710. {
  27711. name: "Macro²",
  27712. height: math.unit(1600, "feet")
  27713. },
  27714. {
  27715. name: "Planetary",
  27716. height: math.unit(20, "earths")
  27717. },
  27718. ]
  27719. ))
  27720. characterMakers.push(() => makeCharacter(
  27721. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27722. {
  27723. front: {
  27724. height: math.unit(6, "feet"),
  27725. weight: math.unit(150, "lb"),
  27726. name: "Front",
  27727. image: {
  27728. source: "./media/characters/hadjet/front.svg",
  27729. extra: 1480 / 1346,
  27730. bottom: 26 / 1506
  27731. }
  27732. },
  27733. frontNsfw: {
  27734. height: math.unit(6, "feet"),
  27735. weight: math.unit(150, "lb"),
  27736. name: "Front (NSFW)",
  27737. image: {
  27738. source: "./media/characters/hadjet/front-nsfw.svg",
  27739. extra: 1440 / 1358,
  27740. bottom: 52 / 1492
  27741. }
  27742. },
  27743. },
  27744. [
  27745. {
  27746. name: "Macro",
  27747. height: math.unit(10, "stories"),
  27748. default: true
  27749. },
  27750. {
  27751. name: "Megamacro",
  27752. height: math.unit(1.5, "miles")
  27753. },
  27754. {
  27755. name: "Megamacro+",
  27756. height: math.unit(5, "miles")
  27757. },
  27758. ]
  27759. ))
  27760. characterMakers.push(() => makeCharacter(
  27761. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27762. {
  27763. side: {
  27764. height: math.unit(106, "feet"),
  27765. weight: math.unit(500, "tonnes"),
  27766. name: "Side",
  27767. image: {
  27768. source: "./media/characters/kodran/side.svg",
  27769. extra: 553 / 480,
  27770. bottom: 33 / 586
  27771. }
  27772. },
  27773. front: {
  27774. height: math.unit(132, "feet"),
  27775. weight: math.unit(500, "tonnes"),
  27776. name: "Front",
  27777. image: {
  27778. source: "./media/characters/kodran/front.svg",
  27779. extra: 667 / 643,
  27780. bottom: 42 / 709
  27781. }
  27782. },
  27783. flying: {
  27784. height: math.unit(350, "feet"),
  27785. weight: math.unit(500, "tonnes"),
  27786. name: "Flying",
  27787. image: {
  27788. source: "./media/characters/kodran/flying.svg"
  27789. }
  27790. },
  27791. foot: {
  27792. height: math.unit(33, "feet"),
  27793. name: "Foot",
  27794. image: {
  27795. source: "./media/characters/kodran/foot.svg"
  27796. }
  27797. },
  27798. footFront: {
  27799. height: math.unit(19, "feet"),
  27800. name: "Foot (Front)",
  27801. image: {
  27802. source: "./media/characters/kodran/foot-front.svg",
  27803. extra: 261 / 261,
  27804. bottom: 91 / 352
  27805. }
  27806. },
  27807. headFront: {
  27808. height: math.unit(53, "feet"),
  27809. name: "Head (Front)",
  27810. image: {
  27811. source: "./media/characters/kodran/head-front.svg"
  27812. }
  27813. },
  27814. headSide: {
  27815. height: math.unit(65, "feet"),
  27816. name: "Head (Side)",
  27817. image: {
  27818. source: "./media/characters/kodran/head-side.svg"
  27819. }
  27820. },
  27821. throat: {
  27822. height: math.unit(79, "feet"),
  27823. name: "Throat",
  27824. image: {
  27825. source: "./media/characters/kodran/throat.svg"
  27826. }
  27827. },
  27828. },
  27829. [
  27830. {
  27831. name: "Large",
  27832. height: math.unit(106, "feet"),
  27833. default: true
  27834. },
  27835. ]
  27836. ))
  27837. characterMakers.push(() => makeCharacter(
  27838. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27839. {
  27840. side: {
  27841. height: math.unit(11, "feet"),
  27842. weight: math.unit(150, "lb"),
  27843. name: "Side",
  27844. image: {
  27845. source: "./media/characters/pyxaron/side.svg",
  27846. extra: 305 / 195,
  27847. bottom: 17 / 322
  27848. }
  27849. },
  27850. },
  27851. [
  27852. {
  27853. name: "Normal",
  27854. height: math.unit(11, "feet"),
  27855. default: true
  27856. },
  27857. ]
  27858. ))
  27859. characterMakers.push(() => makeCharacter(
  27860. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27861. {
  27862. front: {
  27863. height: math.unit(6, "feet"),
  27864. weight: math.unit(150, "lb"),
  27865. name: "Front",
  27866. image: {
  27867. source: "./media/characters/meep/front.svg",
  27868. extra: 88 / 80,
  27869. bottom: 6 / 94
  27870. }
  27871. },
  27872. },
  27873. [
  27874. {
  27875. name: "Fun Sized",
  27876. height: math.unit(2, "inches"),
  27877. default: true
  27878. },
  27879. {
  27880. name: "Friend Sized",
  27881. height: math.unit(8, "inches")
  27882. },
  27883. ]
  27884. ))
  27885. characterMakers.push(() => makeCharacter(
  27886. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27887. {
  27888. front: {
  27889. height: math.unit(15, "feet"),
  27890. weight: math.unit(2500, "lb"),
  27891. name: "Front",
  27892. image: {
  27893. source: "./media/characters/holly-rabbit/front.svg",
  27894. extra: 1433 / 1233,
  27895. bottom: 125 / 1558
  27896. }
  27897. },
  27898. dick: {
  27899. height: math.unit(4.6, "feet"),
  27900. name: "Dick",
  27901. image: {
  27902. source: "./media/characters/holly-rabbit/dick.svg"
  27903. }
  27904. },
  27905. },
  27906. [
  27907. {
  27908. name: "Normal",
  27909. height: math.unit(15, "feet"),
  27910. default: true
  27911. },
  27912. {
  27913. name: "Macro",
  27914. height: math.unit(250, "feet")
  27915. },
  27916. {
  27917. name: "Macro+",
  27918. height: math.unit(2500, "feet")
  27919. },
  27920. ]
  27921. ))
  27922. characterMakers.push(() => makeCharacter(
  27923. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27924. {
  27925. front: {
  27926. height: math.unit(3.02, "meters"),
  27927. weight: math.unit(500, "kg"),
  27928. name: "Front",
  27929. image: {
  27930. source: "./media/characters/drena/front.svg",
  27931. extra: 282 / 243,
  27932. bottom: 8 / 290
  27933. }
  27934. },
  27935. side: {
  27936. height: math.unit(3.02, "meters"),
  27937. weight: math.unit(500, "kg"),
  27938. name: "Side",
  27939. image: {
  27940. source: "./media/characters/drena/side.svg",
  27941. extra: 280 / 245,
  27942. bottom: 10 / 290
  27943. }
  27944. },
  27945. back: {
  27946. height: math.unit(3.02, "meters"),
  27947. weight: math.unit(500, "kg"),
  27948. name: "Back",
  27949. image: {
  27950. source: "./media/characters/drena/back.svg",
  27951. extra: 278 / 243,
  27952. bottom: 2 / 280
  27953. }
  27954. },
  27955. foot: {
  27956. height: math.unit(0.75, "meters"),
  27957. name: "Foot",
  27958. image: {
  27959. source: "./media/characters/drena/foot.svg"
  27960. }
  27961. },
  27962. maw: {
  27963. height: math.unit(0.82, "meters"),
  27964. name: "Maw",
  27965. image: {
  27966. source: "./media/characters/drena/maw.svg"
  27967. }
  27968. },
  27969. rump: {
  27970. height: math.unit(0.93, "meters"),
  27971. name: "Rump",
  27972. image: {
  27973. source: "./media/characters/drena/rump.svg"
  27974. }
  27975. },
  27976. },
  27977. [
  27978. {
  27979. name: "Normal",
  27980. height: math.unit(3.02, "meters"),
  27981. default: true
  27982. },
  27983. ]
  27984. ))
  27985. characterMakers.push(() => makeCharacter(
  27986. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27987. {
  27988. front: {
  27989. height: math.unit(6 + 4 / 12, "feet"),
  27990. weight: math.unit(250, "lb"),
  27991. name: "Front",
  27992. image: {
  27993. source: "./media/characters/remmyzilla/front.svg",
  27994. extra: 4033 / 3588,
  27995. bottom: 123 / 4156
  27996. }
  27997. },
  27998. back: {
  27999. height: math.unit(6 + 4 / 12, "feet"),
  28000. weight: math.unit(250, "lb"),
  28001. name: "Back",
  28002. image: {
  28003. source: "./media/characters/remmyzilla/back.svg",
  28004. extra: 2687 / 2555,
  28005. bottom: 48 / 2735
  28006. }
  28007. },
  28008. frontFancy: {
  28009. height: math.unit(6 + 4 / 12, "feet"),
  28010. weight: math.unit(250, "lb"),
  28011. name: "Front (Fancy)",
  28012. image: {
  28013. source: "./media/characters/remmyzilla/front-fancy.svg",
  28014. extra: 4119 / 3419,
  28015. bottom: 237 / 4356
  28016. }
  28017. },
  28018. paw: {
  28019. height: math.unit(1.73, "feet"),
  28020. name: "Paw",
  28021. image: {
  28022. source: "./media/characters/remmyzilla/paw.svg"
  28023. }
  28024. },
  28025. maw: {
  28026. height: math.unit(1.73, "feet"),
  28027. name: "Maw",
  28028. image: {
  28029. source: "./media/characters/remmyzilla/maw.svg"
  28030. }
  28031. },
  28032. },
  28033. [
  28034. {
  28035. name: "Normal",
  28036. height: math.unit(6 + 4 / 12, "feet")
  28037. },
  28038. {
  28039. name: "Minimacro",
  28040. height: math.unit(12 + 8 / 12, "feet")
  28041. },
  28042. {
  28043. name: "Normal",
  28044. height: math.unit(640, "feet"),
  28045. default: true
  28046. },
  28047. {
  28048. name: "Megamacro",
  28049. height: math.unit(6400, "feet")
  28050. },
  28051. {
  28052. name: "Gigamacro",
  28053. height: math.unit(64000, "miles")
  28054. },
  28055. ]
  28056. ))
  28057. characterMakers.push(() => makeCharacter(
  28058. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28059. {
  28060. front: {
  28061. height: math.unit(2.5, "meters"),
  28062. weight: math.unit(300, "lb"),
  28063. name: "Front",
  28064. image: {
  28065. source: "./media/characters/lawrence/front.svg",
  28066. extra: 357 / 335,
  28067. bottom: 30 / 387
  28068. }
  28069. },
  28070. back: {
  28071. height: math.unit(2.5, "meters"),
  28072. weight: math.unit(300, "lb"),
  28073. name: "Back",
  28074. image: {
  28075. source: "./media/characters/lawrence/back.svg",
  28076. extra: 357 / 338,
  28077. bottom: 16 / 373
  28078. }
  28079. },
  28080. head: {
  28081. height: math.unit(0.9, "meter"),
  28082. name: "Head",
  28083. image: {
  28084. source: "./media/characters/lawrence/head.svg"
  28085. }
  28086. },
  28087. maw: {
  28088. height: math.unit(0.7, "meter"),
  28089. name: "Maw",
  28090. image: {
  28091. source: "./media/characters/lawrence/maw.svg"
  28092. }
  28093. },
  28094. footBottom: {
  28095. height: math.unit(0.5, "meter"),
  28096. name: "Foot (Bottom)",
  28097. image: {
  28098. source: "./media/characters/lawrence/foot-bottom.svg"
  28099. }
  28100. },
  28101. footTop: {
  28102. height: math.unit(0.5, "meter"),
  28103. name: "Foot (Top)",
  28104. image: {
  28105. source: "./media/characters/lawrence/foot-top.svg"
  28106. }
  28107. },
  28108. },
  28109. [
  28110. {
  28111. name: "Normal",
  28112. height: math.unit(2.5, "meters"),
  28113. default: true
  28114. },
  28115. {
  28116. name: "Macro",
  28117. height: math.unit(95, "meters")
  28118. },
  28119. {
  28120. name: "Megamacro",
  28121. height: math.unit(150, "km")
  28122. },
  28123. ]
  28124. ))
  28125. characterMakers.push(() => makeCharacter(
  28126. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28127. {
  28128. front: {
  28129. height: math.unit(4.2, "meters"),
  28130. name: "Front",
  28131. image: {
  28132. source: "./media/characters/sydney/front.svg",
  28133. extra: 1323 / 1277,
  28134. bottom: 111 / 1434
  28135. }
  28136. },
  28137. },
  28138. [
  28139. {
  28140. name: "Normal",
  28141. height: math.unit(4.2, "meters"),
  28142. default: true
  28143. },
  28144. ]
  28145. ))
  28146. characterMakers.push(() => makeCharacter(
  28147. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28148. {
  28149. back: {
  28150. height: math.unit(201, "feet"),
  28151. name: "Back",
  28152. image: {
  28153. source: "./media/characters/jessica/back.svg",
  28154. extra: 273 / 259,
  28155. bottom: 7 / 280
  28156. }
  28157. },
  28158. },
  28159. [
  28160. {
  28161. name: "Normal",
  28162. height: math.unit(201, "feet"),
  28163. default: true
  28164. },
  28165. {
  28166. name: "Megamacro",
  28167. height: math.unit(8, "miles")
  28168. },
  28169. ]
  28170. ))
  28171. characterMakers.push(() => makeCharacter(
  28172. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28173. {
  28174. side: {
  28175. height: math.unit(320, "cm"),
  28176. name: "Side",
  28177. image: {
  28178. source: "./media/characters/victoria/side.svg",
  28179. extra: 778 / 346,
  28180. bottom: 56 / 834
  28181. }
  28182. },
  28183. maw: {
  28184. height: math.unit(5.9, "feet"),
  28185. name: "Maw",
  28186. image: {
  28187. source: "./media/characters/victoria/maw.svg"
  28188. }
  28189. },
  28190. },
  28191. [
  28192. {
  28193. name: "Normal",
  28194. height: math.unit(320, "cm"),
  28195. default: true
  28196. },
  28197. ]
  28198. ))
  28199. characterMakers.push(() => makeCharacter(
  28200. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28201. {
  28202. front: {
  28203. height: math.unit(5 + 6 / 12, "feet"),
  28204. name: "Front",
  28205. image: {
  28206. source: "./media/characters/cat/front.svg",
  28207. extra: 1374 / 1257,
  28208. bottom: 59 / 1433
  28209. }
  28210. },
  28211. back: {
  28212. height: math.unit(5 + 6 / 12, "feet"),
  28213. name: "Back",
  28214. image: {
  28215. source: "./media/characters/cat/back.svg",
  28216. extra: 1337 / 1226,
  28217. bottom: 34 / 1371
  28218. }
  28219. },
  28220. taur: {
  28221. height: math.unit(7, "feet"),
  28222. name: "Taur",
  28223. image: {
  28224. source: "./media/characters/cat/taur.svg",
  28225. extra: 1345 / 1231,
  28226. bottom: 66 / 1411
  28227. }
  28228. },
  28229. lucario: {
  28230. height: math.unit(4, "feet"),
  28231. name: "Lucario",
  28232. image: {
  28233. source: "./media/characters/cat/lucario.svg",
  28234. extra: 1470 / 1318,
  28235. bottom: 65 / 1535
  28236. }
  28237. },
  28238. megaLucario: {
  28239. height: math.unit(4, "feet"),
  28240. name: "Mega Lucario",
  28241. image: {
  28242. source: "./media/characters/cat/mega-lucario.svg",
  28243. extra: 1515 / 1319,
  28244. bottom: 63 / 1578
  28245. }
  28246. },
  28247. nickit: {
  28248. height: math.unit(2, "feet"),
  28249. name: "Nickit",
  28250. image: {
  28251. source: "./media/characters/cat/nickit.svg",
  28252. extra: 1980 / 1585,
  28253. bottom: 102 / 2082
  28254. }
  28255. },
  28256. lopunnyFront: {
  28257. height: math.unit(5, "feet"),
  28258. name: "Lopunny (Front)",
  28259. image: {
  28260. source: "./media/characters/cat/lopunny-front.svg",
  28261. extra: 1782 / 1469,
  28262. bottom: 38 / 1820
  28263. }
  28264. },
  28265. lopunnyBack: {
  28266. height: math.unit(5, "feet"),
  28267. name: "Lopunny (Back)",
  28268. image: {
  28269. source: "./media/characters/cat/lopunny-back.svg",
  28270. extra: 1660 / 1490,
  28271. bottom: 25 / 1685
  28272. }
  28273. },
  28274. },
  28275. [
  28276. {
  28277. name: "Really small",
  28278. height: math.unit(1, "nm")
  28279. },
  28280. {
  28281. name: "Micro",
  28282. height: math.unit(5, "inches")
  28283. },
  28284. {
  28285. name: "Normal",
  28286. height: math.unit(5 + 6 / 12, "feet"),
  28287. default: true
  28288. },
  28289. {
  28290. name: "Macro",
  28291. height: math.unit(50, "feet")
  28292. },
  28293. {
  28294. name: "Macro+",
  28295. height: math.unit(150, "feet")
  28296. },
  28297. {
  28298. name: "Megamacro",
  28299. height: math.unit(100, "miles")
  28300. },
  28301. ]
  28302. ))
  28303. characterMakers.push(() => makeCharacter(
  28304. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28305. {
  28306. front: {
  28307. height: math.unit(63.4, "meters"),
  28308. weight: math.unit(3.28349e+6, "kilograms"),
  28309. name: "Front",
  28310. image: {
  28311. source: "./media/characters/kirina-violet/front.svg",
  28312. extra: 2812 / 2725,
  28313. bottom: 0 / 2812
  28314. }
  28315. },
  28316. back: {
  28317. height: math.unit(63.4, "meters"),
  28318. weight: math.unit(3.28349e+6, "kilograms"),
  28319. name: "Back",
  28320. image: {
  28321. source: "./media/characters/kirina-violet/back.svg",
  28322. extra: 2812 / 2725,
  28323. bottom: 0 / 2812
  28324. }
  28325. },
  28326. mouth: {
  28327. height: math.unit(4.35, "meters"),
  28328. name: "Mouth",
  28329. image: {
  28330. source: "./media/characters/kirina-violet/mouth.svg"
  28331. }
  28332. },
  28333. paw: {
  28334. height: math.unit(5.6, "meters"),
  28335. name: "Paw",
  28336. image: {
  28337. source: "./media/characters/kirina-violet/paw.svg"
  28338. }
  28339. },
  28340. tail: {
  28341. height: math.unit(18, "meters"),
  28342. name: "Tail",
  28343. image: {
  28344. source: "./media/characters/kirina-violet/tail.svg"
  28345. }
  28346. },
  28347. },
  28348. [
  28349. {
  28350. name: "Macro",
  28351. height: math.unit(63.4, "meters"),
  28352. default: true
  28353. },
  28354. ]
  28355. ))
  28356. characterMakers.push(() => makeCharacter(
  28357. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28358. {
  28359. front: {
  28360. height: math.unit(60, "feet"),
  28361. name: "Front",
  28362. image: {
  28363. source: "./media/characters/cat-gigachu/front.svg",
  28364. extra: 1024 / 780,
  28365. bottom: 23 / 1047
  28366. }
  28367. },
  28368. back: {
  28369. height: math.unit(60, "feet"),
  28370. name: "Back",
  28371. image: {
  28372. source: "./media/characters/cat-gigachu/back.svg",
  28373. extra: 1024 / 780,
  28374. bottom: 23 / 1047
  28375. }
  28376. },
  28377. },
  28378. [
  28379. {
  28380. name: "Dynamax",
  28381. height: math.unit(60, "feet"),
  28382. default: true
  28383. },
  28384. ]
  28385. ))
  28386. characterMakers.push(() => makeCharacter(
  28387. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28388. {
  28389. front: {
  28390. height: math.unit(6, "feet"),
  28391. weight: math.unit(150, "lb"),
  28392. name: "Front",
  28393. image: {
  28394. source: "./media/characters/sfaiyan/front.svg",
  28395. extra: 999 / 978,
  28396. bottom: 5 / 1004
  28397. }
  28398. },
  28399. },
  28400. [
  28401. {
  28402. name: "Normal",
  28403. height: math.unit(1.82, "meters")
  28404. },
  28405. {
  28406. name: "Giant",
  28407. height: math.unit(2.27, "km"),
  28408. default: true
  28409. },
  28410. ]
  28411. ))
  28412. characterMakers.push(() => makeCharacter(
  28413. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28414. {
  28415. front: {
  28416. height: math.unit(179, "cm"),
  28417. weight: math.unit(100, "kg"),
  28418. name: "Front",
  28419. image: {
  28420. source: "./media/characters/raunehkeli/front.svg",
  28421. extra: 1934 / 1926,
  28422. bottom: 0 / 1934
  28423. }
  28424. },
  28425. },
  28426. [
  28427. {
  28428. name: "Normal",
  28429. height: math.unit(179, "cm")
  28430. },
  28431. {
  28432. name: "Maximum",
  28433. height: math.unit(575, "meters"),
  28434. default: true
  28435. },
  28436. ]
  28437. ))
  28438. characterMakers.push(() => makeCharacter(
  28439. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28440. {
  28441. front: {
  28442. height: math.unit(6, "feet"),
  28443. weight: math.unit(150, "lb"),
  28444. name: "Front",
  28445. image: {
  28446. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28447. extra: 2625 / 2518,
  28448. bottom: 60 / 2685
  28449. }
  28450. },
  28451. },
  28452. [
  28453. {
  28454. name: "Normal",
  28455. height: math.unit(6 + 2 / 12, "feet")
  28456. },
  28457. {
  28458. name: "Macro",
  28459. height: math.unit(1180, "feet"),
  28460. default: true
  28461. },
  28462. ]
  28463. ))
  28464. characterMakers.push(() => makeCharacter(
  28465. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28466. {
  28467. front: {
  28468. height: math.unit(5 + 6 / 12, "feet"),
  28469. weight: math.unit(108, "lb"),
  28470. name: "Front",
  28471. image: {
  28472. source: "./media/characters/lilith-zott/front.svg",
  28473. extra: 2510 / 2238,
  28474. bottom: 100 / 2610
  28475. }
  28476. },
  28477. frontDressed: {
  28478. height: math.unit(5 + 6 / 12, "feet"),
  28479. weight: math.unit(108, "lb"),
  28480. name: "Front (Dressed)",
  28481. image: {
  28482. source: "./media/characters/lilith-zott/front-dressed.svg",
  28483. extra: 2510 / 2238,
  28484. bottom: 100 / 2610
  28485. }
  28486. },
  28487. },
  28488. [
  28489. {
  28490. name: "Normal",
  28491. height: math.unit(5 + 6 / 12, "feet")
  28492. },
  28493. {
  28494. name: "Macro",
  28495. height: math.unit(1030, "feet"),
  28496. default: true
  28497. },
  28498. ]
  28499. ))
  28500. characterMakers.push(() => makeCharacter(
  28501. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28502. {
  28503. front: {
  28504. height: math.unit(6, "feet"),
  28505. weight: math.unit(150, "lb"),
  28506. name: "Front",
  28507. image: {
  28508. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28509. extra: 2567 / 2435,
  28510. bottom: 39 / 2606
  28511. }
  28512. },
  28513. frontSuper: {
  28514. height: math.unit(6, "feet"),
  28515. name: "Front (Super)",
  28516. image: {
  28517. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28518. extra: 2567 / 2435,
  28519. bottom: 39 / 2606
  28520. }
  28521. },
  28522. },
  28523. [
  28524. {
  28525. name: "Normal",
  28526. height: math.unit(5 + 10 / 12, "feet")
  28527. },
  28528. {
  28529. name: "Macro",
  28530. height: math.unit(1100, "feet"),
  28531. default: true
  28532. },
  28533. ]
  28534. ))
  28535. characterMakers.push(() => makeCharacter(
  28536. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28537. {
  28538. front: {
  28539. height: math.unit(100, "miles"),
  28540. name: "Front",
  28541. image: {
  28542. source: "./media/characters/sona/front.svg",
  28543. extra: 2433 / 2201,
  28544. bottom: 53 / 2486
  28545. }
  28546. },
  28547. foot: {
  28548. height: math.unit(16.1, "miles"),
  28549. name: "Foot",
  28550. image: {
  28551. source: "./media/characters/sona/foot.svg"
  28552. }
  28553. },
  28554. },
  28555. [
  28556. {
  28557. name: "Macro",
  28558. height: math.unit(100, "miles"),
  28559. default: true
  28560. },
  28561. ]
  28562. ))
  28563. characterMakers.push(() => makeCharacter(
  28564. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28565. {
  28566. front: {
  28567. height: math.unit(6, "feet"),
  28568. weight: math.unit(150, "lb"),
  28569. name: "Front",
  28570. image: {
  28571. source: "./media/characters/bailey/front.svg",
  28572. extra: 1778 / 1724,
  28573. bottom: 30 / 1808
  28574. }
  28575. },
  28576. },
  28577. [
  28578. {
  28579. name: "Micro",
  28580. height: math.unit(4, "inches")
  28581. },
  28582. {
  28583. name: "Normal",
  28584. height: math.unit(5 + 5 / 12, "feet"),
  28585. default: true
  28586. },
  28587. {
  28588. name: "Macro",
  28589. height: math.unit(250, "feet")
  28590. },
  28591. {
  28592. name: "Megamacro",
  28593. height: math.unit(100, "miles")
  28594. },
  28595. ]
  28596. ))
  28597. characterMakers.push(() => makeCharacter(
  28598. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28599. {
  28600. front: {
  28601. height: math.unit(5 + 2 / 12, "feet"),
  28602. weight: math.unit(120, "lb"),
  28603. name: "Front",
  28604. image: {
  28605. source: "./media/characters/snaps/front.svg",
  28606. extra: 2370 / 2177,
  28607. bottom: 48 / 2418
  28608. }
  28609. },
  28610. back: {
  28611. height: math.unit(5 + 2 / 12, "feet"),
  28612. weight: math.unit(120, "lb"),
  28613. name: "Back",
  28614. image: {
  28615. source: "./media/characters/snaps/back.svg",
  28616. extra: 2408 / 2258,
  28617. bottom: 15 / 2423
  28618. }
  28619. },
  28620. },
  28621. [
  28622. {
  28623. name: "Micro",
  28624. height: math.unit(9, "inches")
  28625. },
  28626. {
  28627. name: "Normal",
  28628. height: math.unit(5 + 2 / 12, "feet"),
  28629. default: true
  28630. },
  28631. {
  28632. name: "Mini Macro",
  28633. height: math.unit(10, "feet")
  28634. },
  28635. ]
  28636. ))
  28637. characterMakers.push(() => makeCharacter(
  28638. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28639. {
  28640. front: {
  28641. height: math.unit(1.8, "meters"),
  28642. weight: math.unit(85, "kg"),
  28643. name: "Front",
  28644. image: {
  28645. source: "./media/characters/azteck/front.svg",
  28646. extra: 2815 / 2625,
  28647. bottom: 89 / 2904
  28648. }
  28649. },
  28650. back: {
  28651. height: math.unit(1.8, "meters"),
  28652. weight: math.unit(85, "kg"),
  28653. name: "Back",
  28654. image: {
  28655. source: "./media/characters/azteck/back.svg",
  28656. extra: 2856 / 2648,
  28657. bottom: 85 / 2941
  28658. }
  28659. },
  28660. frontDressed: {
  28661. height: math.unit(1.8, "meters"),
  28662. weight: math.unit(85, "kg"),
  28663. name: "Front (Dressed)",
  28664. image: {
  28665. source: "./media/characters/azteck/front-dressed.svg",
  28666. extra: 2147 / 2003,
  28667. bottom: 68 / 2215
  28668. }
  28669. },
  28670. head: {
  28671. height: math.unit(0.47, "meters"),
  28672. weight: math.unit(85, "kg"),
  28673. name: "Head",
  28674. image: {
  28675. source: "./media/characters/azteck/head.svg"
  28676. }
  28677. },
  28678. },
  28679. [
  28680. {
  28681. name: "Bite sized",
  28682. height: math.unit(16, "cm")
  28683. },
  28684. {
  28685. name: "Normal",
  28686. height: math.unit(1.8, "meters"),
  28687. default: true
  28688. },
  28689. ]
  28690. ))
  28691. characterMakers.push(() => makeCharacter(
  28692. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28693. {
  28694. front: {
  28695. height: math.unit(6, "feet"),
  28696. weight: math.unit(150, "lb"),
  28697. name: "Front",
  28698. image: {
  28699. source: "./media/characters/pidge/front.svg",
  28700. extra: 620 / 588,
  28701. bottom: 9 / 629
  28702. }
  28703. },
  28704. back: {
  28705. height: math.unit(6, "feet"),
  28706. weight: math.unit(150, "lb"),
  28707. name: "Back",
  28708. image: {
  28709. source: "./media/characters/pidge/back.svg",
  28710. extra: 620 / 588,
  28711. bottom: 9 / 629
  28712. }
  28713. },
  28714. },
  28715. [
  28716. {
  28717. name: "Macro",
  28718. height: math.unit(1, "mile"),
  28719. default: true
  28720. },
  28721. ]
  28722. ))
  28723. characterMakers.push(() => makeCharacter(
  28724. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28725. {
  28726. front: {
  28727. height: math.unit(6, "feet"),
  28728. weight: math.unit(150, "lb"),
  28729. name: "Front",
  28730. image: {
  28731. source: "./media/characters/en/front.svg",
  28732. extra: 1697 / 1563,
  28733. bottom: 103 / 1800
  28734. }
  28735. },
  28736. back: {
  28737. height: math.unit(6, "feet"),
  28738. weight: math.unit(150, "lb"),
  28739. name: "Back",
  28740. image: {
  28741. source: "./media/characters/en/back.svg",
  28742. extra: 1700 / 1570,
  28743. bottom: 51 / 1751
  28744. }
  28745. },
  28746. frontDressed: {
  28747. height: math.unit(6, "feet"),
  28748. weight: math.unit(150, "lb"),
  28749. name: "Front (Dressed)",
  28750. image: {
  28751. source: "./media/characters/en/front-dressed.svg",
  28752. extra: 1697 / 1563,
  28753. bottom: 103 / 1800
  28754. }
  28755. },
  28756. backDressed: {
  28757. height: math.unit(6, "feet"),
  28758. weight: math.unit(150, "lb"),
  28759. name: "Back (Dressed)",
  28760. image: {
  28761. source: "./media/characters/en/back-dressed.svg",
  28762. extra: 1700 / 1570,
  28763. bottom: 51 / 1751
  28764. }
  28765. },
  28766. },
  28767. [
  28768. {
  28769. name: "Macro",
  28770. height: math.unit(210, "feet"),
  28771. default: true
  28772. },
  28773. ]
  28774. ))
  28775. characterMakers.push(() => makeCharacter(
  28776. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28777. {
  28778. front: {
  28779. height: math.unit(6, "feet"),
  28780. weight: math.unit(150, "lb"),
  28781. name: "Front",
  28782. image: {
  28783. source: "./media/characters/haze-orris/front.svg",
  28784. extra: 3975 / 3525,
  28785. bottom: 137 / 4112
  28786. }
  28787. },
  28788. },
  28789. [
  28790. {
  28791. name: "Micro",
  28792. height: math.unit(150, "mm"),
  28793. default: true
  28794. },
  28795. ]
  28796. ))
  28797. characterMakers.push(() => makeCharacter(
  28798. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28799. {
  28800. front: {
  28801. height: math.unit(6, "feet"),
  28802. weight: math.unit(150, "lb"),
  28803. name: "Front",
  28804. image: {
  28805. source: "./media/characters/casselene-yaro/front.svg",
  28806. extra: 4721 / 4541,
  28807. bottom: 82 / 4803
  28808. }
  28809. },
  28810. back: {
  28811. height: math.unit(6, "feet"),
  28812. weight: math.unit(150, "lb"),
  28813. name: "Back",
  28814. image: {
  28815. source: "./media/characters/casselene-yaro/back.svg",
  28816. extra: 4569 / 4377,
  28817. bottom: 69 / 4638
  28818. }
  28819. },
  28820. frontDressed: {
  28821. height: math.unit(6, "feet"),
  28822. weight: math.unit(150, "lb"),
  28823. name: "Front-dressed",
  28824. image: {
  28825. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28826. extra: 4721 / 4541,
  28827. bottom: 82 / 4803
  28828. }
  28829. },
  28830. },
  28831. [
  28832. {
  28833. name: "Macro",
  28834. height: math.unit(190, "feet"),
  28835. default: true
  28836. },
  28837. ]
  28838. ))
  28839. characterMakers.push(() => makeCharacter(
  28840. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28841. {
  28842. front: {
  28843. height: math.unit(6, "feet"),
  28844. weight: math.unit(150, "lb"),
  28845. name: "Front",
  28846. image: {
  28847. source: "./media/characters/myra-rue-delore/front.svg",
  28848. extra: 1340 / 1308,
  28849. bottom: 67 / 1407
  28850. }
  28851. },
  28852. back: {
  28853. height: math.unit(6, "feet"),
  28854. weight: math.unit(150, "lb"),
  28855. name: "Back",
  28856. image: {
  28857. source: "./media/characters/myra-rue-delore/back.svg",
  28858. extra: 1341 / 1310,
  28859. bottom: 40 / 1381
  28860. }
  28861. },
  28862. frontDressed: {
  28863. height: math.unit(6, "feet"),
  28864. weight: math.unit(150, "lb"),
  28865. name: "Front (Dressed)",
  28866. image: {
  28867. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28868. extra: 1340 / 1308,
  28869. bottom: 67 / 1407
  28870. }
  28871. },
  28872. },
  28873. [
  28874. {
  28875. name: "Macro",
  28876. height: math.unit(150, "feet"),
  28877. default: true
  28878. },
  28879. ]
  28880. ))
  28881. characterMakers.push(() => makeCharacter(
  28882. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28883. {
  28884. front: {
  28885. height: math.unit(10, "feet"),
  28886. weight: math.unit(15015, "lb"),
  28887. name: "Front",
  28888. image: {
  28889. source: "./media/characters/fem!plat/front.svg",
  28890. extra: 2799 / 2604,
  28891. bottom: 149 / 2948
  28892. }
  28893. },
  28894. },
  28895. [
  28896. {
  28897. name: "Normal",
  28898. height: math.unit(10, "feet"),
  28899. default: true
  28900. },
  28901. {
  28902. name: "Macro",
  28903. height: math.unit(100, "feet")
  28904. },
  28905. {
  28906. name: "Megamacro",
  28907. height: math.unit(1000, "feet")
  28908. },
  28909. ]
  28910. ))
  28911. characterMakers.push(() => makeCharacter(
  28912. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28913. {
  28914. front: {
  28915. height: math.unit(15 + 5 / 12, "feet"),
  28916. weight: math.unit(4600, "lb"),
  28917. name: "Front",
  28918. image: {
  28919. source: "./media/characters/neapolitan-ananassa/front.svg",
  28920. extra: 2903 / 2736,
  28921. bottom: 0 / 2903
  28922. }
  28923. },
  28924. side: {
  28925. height: math.unit(15 + 5 / 12, "feet"),
  28926. weight: math.unit(4600, "lb"),
  28927. name: "Side",
  28928. image: {
  28929. source: "./media/characters/neapolitan-ananassa/side.svg",
  28930. extra: 2925 / 2719,
  28931. bottom: 0 / 2925
  28932. }
  28933. },
  28934. back: {
  28935. height: math.unit(15 + 5 / 12, "feet"),
  28936. weight: math.unit(4600, "lb"),
  28937. name: "Back",
  28938. image: {
  28939. source: "./media/characters/neapolitan-ananassa/back.svg",
  28940. extra: 2903 / 2736,
  28941. bottom: 0 / 2903
  28942. }
  28943. },
  28944. },
  28945. [
  28946. {
  28947. name: "Normal",
  28948. height: math.unit(15 + 5 / 12, "feet"),
  28949. default: true
  28950. },
  28951. {
  28952. name: "Post-Millenium",
  28953. height: math.unit(35 + 5 / 12, "feet")
  28954. },
  28955. {
  28956. name: "Post-Era",
  28957. height: math.unit(450 + 5 / 12, "feet")
  28958. },
  28959. ]
  28960. ))
  28961. characterMakers.push(() => makeCharacter(
  28962. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28963. {
  28964. front: {
  28965. height: math.unit(300, "meters"),
  28966. weight: math.unit(125000, "tonnes"),
  28967. name: "Front",
  28968. image: {
  28969. source: "./media/characters/pazuzu/front.svg",
  28970. extra: 877 / 794,
  28971. bottom: 47 / 924
  28972. }
  28973. },
  28974. },
  28975. [
  28976. {
  28977. name: "Macro",
  28978. height: math.unit(300, "meters"),
  28979. default: true
  28980. },
  28981. ]
  28982. ))
  28983. characterMakers.push(() => makeCharacter(
  28984. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28985. {
  28986. side: {
  28987. height: math.unit(10 + 7 / 12, "feet"),
  28988. weight: math.unit(2.5, "tons"),
  28989. name: "Side",
  28990. image: {
  28991. source: "./media/characters/aasha/side.svg",
  28992. extra: 1345 / 1245,
  28993. bottom: 111 / 1456
  28994. }
  28995. },
  28996. back: {
  28997. height: math.unit(10 + 7 / 12, "feet"),
  28998. weight: math.unit(2.5, "tons"),
  28999. name: "Back",
  29000. image: {
  29001. source: "./media/characters/aasha/back.svg",
  29002. extra: 1133 / 1057,
  29003. bottom: 257 / 1390
  29004. }
  29005. },
  29006. },
  29007. [
  29008. {
  29009. name: "Normal",
  29010. height: math.unit(10 + 7 / 12, "feet"),
  29011. default: true
  29012. },
  29013. ]
  29014. ))
  29015. characterMakers.push(() => makeCharacter(
  29016. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29017. {
  29018. front: {
  29019. height: math.unit(6 + 3 / 12, "feet"),
  29020. name: "Front",
  29021. image: {
  29022. source: "./media/characters/nevan/front.svg",
  29023. extra: 704 / 704,
  29024. bottom: 28 / 732
  29025. }
  29026. },
  29027. back: {
  29028. height: math.unit(6 + 3 / 12, "feet"),
  29029. name: "Back",
  29030. image: {
  29031. source: "./media/characters/nevan/back.svg",
  29032. extra: 714 / 714,
  29033. bottom: 21 / 735
  29034. }
  29035. },
  29036. frontFlaccid: {
  29037. height: math.unit(6 + 3 / 12, "feet"),
  29038. name: "Front (Flaccid)",
  29039. image: {
  29040. source: "./media/characters/nevan/front-flaccid.svg",
  29041. extra: 704 / 704,
  29042. bottom: 28 / 732
  29043. }
  29044. },
  29045. frontErect: {
  29046. height: math.unit(6 + 3 / 12, "feet"),
  29047. name: "Front (Erect)",
  29048. image: {
  29049. source: "./media/characters/nevan/front-erect.svg",
  29050. extra: 704 / 704,
  29051. bottom: 28 / 732
  29052. }
  29053. },
  29054. backFlaccid: {
  29055. height: math.unit(6 + 3 / 12, "feet"),
  29056. name: "Back (Flaccid)",
  29057. image: {
  29058. source: "./media/characters/nevan/back-flaccid.svg",
  29059. extra: 714 / 714,
  29060. bottom: 21 / 735
  29061. }
  29062. },
  29063. },
  29064. [
  29065. {
  29066. name: "Normal",
  29067. height: math.unit(6 + 3 / 12, "feet"),
  29068. default: true
  29069. },
  29070. ]
  29071. ))
  29072. characterMakers.push(() => makeCharacter(
  29073. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29074. {
  29075. front: {
  29076. height: math.unit(4, "feet"),
  29077. name: "Front",
  29078. image: {
  29079. source: "./media/characters/arhan/front.svg",
  29080. extra: 3368 / 3133,
  29081. bottom: 0 / 3368
  29082. }
  29083. },
  29084. side: {
  29085. height: math.unit(4, "feet"),
  29086. name: "Side",
  29087. image: {
  29088. source: "./media/characters/arhan/side.svg",
  29089. extra: 3347 / 3105,
  29090. bottom: 0 / 3347
  29091. }
  29092. },
  29093. tongue: {
  29094. height: math.unit(1.42, "feet"),
  29095. name: "Tongue",
  29096. image: {
  29097. source: "./media/characters/arhan/tongue.svg"
  29098. }
  29099. },
  29100. head: {
  29101. height: math.unit(0.85, "feet"),
  29102. name: "Head",
  29103. image: {
  29104. source: "./media/characters/arhan/head.svg"
  29105. }
  29106. },
  29107. },
  29108. [
  29109. {
  29110. name: "Normal",
  29111. height: math.unit(4, "feet"),
  29112. default: true
  29113. },
  29114. ]
  29115. ))
  29116. characterMakers.push(() => makeCharacter(
  29117. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29118. {
  29119. front: {
  29120. height: math.unit(5 + 7.5 / 12, "feet"),
  29121. weight: math.unit(120, "lb"),
  29122. name: "Front",
  29123. image: {
  29124. source: "./media/characters/digi-duncan/front.svg",
  29125. extra: 330 / 326,
  29126. bottom: 16 / 346
  29127. }
  29128. },
  29129. side: {
  29130. height: math.unit(5 + 7.5 / 12, "feet"),
  29131. weight: math.unit(120, "lb"),
  29132. name: "Side",
  29133. image: {
  29134. source: "./media/characters/digi-duncan/side.svg",
  29135. extra: 341 / 337,
  29136. bottom: 1 / 342
  29137. }
  29138. },
  29139. back: {
  29140. height: math.unit(5 + 7.5 / 12, "feet"),
  29141. weight: math.unit(120, "lb"),
  29142. name: "Back",
  29143. image: {
  29144. source: "./media/characters/digi-duncan/back.svg",
  29145. extra: 330 / 326,
  29146. bottom: 12 / 342
  29147. }
  29148. },
  29149. },
  29150. [
  29151. {
  29152. name: "Speck",
  29153. height: math.unit(0.25, "mm")
  29154. },
  29155. {
  29156. name: "Micro",
  29157. height: math.unit(5, "mm")
  29158. },
  29159. {
  29160. name: "Tiny",
  29161. height: math.unit(0.5, "inches"),
  29162. default: true
  29163. },
  29164. {
  29165. name: "Human",
  29166. height: math.unit(5 + 7.5 / 12, "feet")
  29167. },
  29168. {
  29169. name: "Minigiant",
  29170. height: math.unit(8 + 5.25, "feet")
  29171. },
  29172. {
  29173. name: "Giant",
  29174. height: math.unit(2000, "feet")
  29175. },
  29176. {
  29177. name: "Mega",
  29178. height: math.unit(371.1, "miles")
  29179. },
  29180. ]
  29181. ))
  29182. characterMakers.push(() => makeCharacter(
  29183. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29184. {
  29185. front: {
  29186. height: math.unit(2, "meters"),
  29187. weight: math.unit(350, "kg"),
  29188. name: "Front",
  29189. image: {
  29190. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29191. extra: 898 / 838,
  29192. bottom: 9 / 907
  29193. }
  29194. },
  29195. },
  29196. [
  29197. {
  29198. name: "Micro",
  29199. height: math.unit(8, "meters")
  29200. },
  29201. {
  29202. name: "Normal",
  29203. height: math.unit(50, "meters"),
  29204. default: true
  29205. },
  29206. {
  29207. name: "Macro",
  29208. height: math.unit(500, "meters")
  29209. },
  29210. ]
  29211. ))
  29212. characterMakers.push(() => makeCharacter(
  29213. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29214. {
  29215. front: {
  29216. height: math.unit(6 + 6 / 12, "feet"),
  29217. name: "Front",
  29218. image: {
  29219. source: "./media/characters/khardesh/front.svg",
  29220. extra: 888 / 797,
  29221. bottom: 25 / 913
  29222. }
  29223. },
  29224. },
  29225. [
  29226. {
  29227. name: "Normal",
  29228. height: math.unit(6 + 6 / 12, "feet"),
  29229. default: true
  29230. },
  29231. {
  29232. name: "Normal+",
  29233. height: math.unit(4, "meters")
  29234. },
  29235. {
  29236. name: "Macro",
  29237. height: math.unit(50, "meters")
  29238. },
  29239. {
  29240. name: "Macro+",
  29241. height: math.unit(100, "meters")
  29242. },
  29243. {
  29244. name: "Megamacro",
  29245. height: math.unit(20, "km")
  29246. },
  29247. ]
  29248. ))
  29249. characterMakers.push(() => makeCharacter(
  29250. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29251. {
  29252. front: {
  29253. height: math.unit(6, "feet"),
  29254. weight: math.unit(150, "lb"),
  29255. name: "Front",
  29256. image: {
  29257. source: "./media/characters/kosho/front.svg",
  29258. extra: 1847 / 1847,
  29259. bottom: 86 / 1933
  29260. }
  29261. },
  29262. },
  29263. [
  29264. {
  29265. name: "Second-stage micro",
  29266. height: math.unit(0.5, "inches")
  29267. },
  29268. {
  29269. name: "First-stage micro",
  29270. height: math.unit(6, "inches")
  29271. },
  29272. {
  29273. name: "Normal",
  29274. height: math.unit(6, "feet"),
  29275. default: true
  29276. },
  29277. {
  29278. name: "First-stage macro",
  29279. height: math.unit(72, "feet")
  29280. },
  29281. {
  29282. name: "Second-stage macro",
  29283. height: math.unit(864, "feet")
  29284. },
  29285. ]
  29286. ))
  29287. characterMakers.push(() => makeCharacter(
  29288. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29289. {
  29290. normal: {
  29291. height: math.unit(4 + 6 / 12, "feet"),
  29292. name: "Normal",
  29293. image: {
  29294. source: "./media/characters/hydra/normal.svg",
  29295. extra: 2833 / 2634,
  29296. bottom: 68 / 2901
  29297. }
  29298. },
  29299. smol: {
  29300. height: math.unit(0.705, "inches"),
  29301. name: "Smol",
  29302. image: {
  29303. source: "./media/characters/hydra/smol.svg",
  29304. extra: 2715 / 2540,
  29305. bottom: 0 / 2715
  29306. }
  29307. },
  29308. },
  29309. [
  29310. {
  29311. name: "Normal",
  29312. height: math.unit(4 + 6 / 12, "feet"),
  29313. default: true
  29314. }
  29315. ]
  29316. ))
  29317. characterMakers.push(() => makeCharacter(
  29318. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29319. {
  29320. front: {
  29321. height: math.unit(0.6, "cm"),
  29322. name: "Front",
  29323. image: {
  29324. source: "./media/characters/daz/front.svg",
  29325. extra: 1682 / 1164,
  29326. bottom: 42 / 1724
  29327. }
  29328. },
  29329. },
  29330. [
  29331. {
  29332. name: "Normal",
  29333. height: math.unit(0.6, "cm"),
  29334. default: true
  29335. },
  29336. ]
  29337. ))
  29338. characterMakers.push(() => makeCharacter(
  29339. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29340. {
  29341. front: {
  29342. height: math.unit(6, "feet"),
  29343. weight: math.unit(235, "lb"),
  29344. name: "Front",
  29345. image: {
  29346. source: "./media/characters/theo-pangolin/front.svg",
  29347. extra: 1996 / 1969,
  29348. bottom: 115 / 2111
  29349. }
  29350. },
  29351. back: {
  29352. height: math.unit(6, "feet"),
  29353. weight: math.unit(235, "lb"),
  29354. name: "Back",
  29355. image: {
  29356. source: "./media/characters/theo-pangolin/back.svg",
  29357. extra: 1979 / 1979,
  29358. bottom: 40 / 2019
  29359. }
  29360. },
  29361. feral: {
  29362. height: math.unit(2, "feet"),
  29363. weight: math.unit(30, "lb"),
  29364. name: "Feral",
  29365. image: {
  29366. source: "./media/characters/theo-pangolin/feral.svg",
  29367. extra: 803 / 791,
  29368. bottom: 181 / 984
  29369. }
  29370. },
  29371. footFive: {
  29372. height: math.unit(1.43, "feet"),
  29373. name: "Foot (Five Toes)",
  29374. image: {
  29375. source: "./media/characters/theo-pangolin/foot-five.svg"
  29376. }
  29377. },
  29378. footFour: {
  29379. height: math.unit(1.43, "feet"),
  29380. name: "Foot (Four Toes)",
  29381. image: {
  29382. source: "./media/characters/theo-pangolin/foot-four.svg"
  29383. }
  29384. },
  29385. handFour: {
  29386. height: math.unit(0.81, "feet"),
  29387. name: "Hand (Four Fingers)",
  29388. image: {
  29389. source: "./media/characters/theo-pangolin/hand-four.svg"
  29390. }
  29391. },
  29392. handThree: {
  29393. height: math.unit(0.81, "feet"),
  29394. name: "Hand (Three Fingers)",
  29395. image: {
  29396. source: "./media/characters/theo-pangolin/hand-three.svg"
  29397. }
  29398. },
  29399. headFront: {
  29400. height: math.unit(1.37, "feet"),
  29401. name: "Head (Front)",
  29402. image: {
  29403. source: "./media/characters/theo-pangolin/head-front.svg"
  29404. }
  29405. },
  29406. headSide: {
  29407. height: math.unit(1.43, "feet"),
  29408. name: "Head (Side)",
  29409. image: {
  29410. source: "./media/characters/theo-pangolin/head-side.svg"
  29411. }
  29412. },
  29413. tongue: {
  29414. height: math.unit(2.29, "feet"),
  29415. name: "Tongue",
  29416. image: {
  29417. source: "./media/characters/theo-pangolin/tongue.svg"
  29418. }
  29419. },
  29420. },
  29421. [
  29422. {
  29423. name: "Normal",
  29424. height: math.unit(6, "feet")
  29425. },
  29426. {
  29427. name: "Macro",
  29428. height: math.unit(400, "feet"),
  29429. default: true
  29430. },
  29431. ]
  29432. ))
  29433. characterMakers.push(() => makeCharacter(
  29434. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29435. {
  29436. front: {
  29437. height: math.unit(6, "inches"),
  29438. weight: math.unit(0.036, "kg"),
  29439. name: "Front",
  29440. image: {
  29441. source: "./media/characters/renée/front.svg",
  29442. extra: 900 / 886,
  29443. bottom: 8 / 908
  29444. }
  29445. },
  29446. },
  29447. [
  29448. {
  29449. name: "Nano",
  29450. height: math.unit(1, "nm")
  29451. },
  29452. {
  29453. name: "Micro",
  29454. height: math.unit(1, "mm")
  29455. },
  29456. {
  29457. name: "Normal",
  29458. height: math.unit(6, "inches")
  29459. },
  29460. {
  29461. name: "Macro",
  29462. height: math.unit(2000, "feet"),
  29463. default: true
  29464. },
  29465. {
  29466. name: "Megamacro",
  29467. height: math.unit(2, "km")
  29468. },
  29469. {
  29470. name: "Gigamacro",
  29471. height: math.unit(2000, "km")
  29472. },
  29473. {
  29474. name: "Teramacro",
  29475. height: math.unit(250000, "km")
  29476. },
  29477. ]
  29478. ))
  29479. characterMakers.push(() => makeCharacter(
  29480. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29481. {
  29482. front: {
  29483. height: math.unit(4, "meters"),
  29484. weight: math.unit(150, "kg"),
  29485. name: "Front",
  29486. image: {
  29487. source: "./media/characters/caledvwlch/front.svg",
  29488. extra: 1760 / 1551,
  29489. bottom: 28 / 1788
  29490. }
  29491. },
  29492. side: {
  29493. height: math.unit(4, "meters"),
  29494. weight: math.unit(150, "kg"),
  29495. name: "Side",
  29496. image: {
  29497. source: "./media/characters/caledvwlch/side.svg",
  29498. extra: 1605 / 1536,
  29499. bottom: 31 / 1636
  29500. }
  29501. },
  29502. back: {
  29503. height: math.unit(4, "meters"),
  29504. weight: math.unit(150, "kg"),
  29505. name: "Back",
  29506. image: {
  29507. source: "./media/characters/caledvwlch/back.svg",
  29508. extra: 1635 / 1565,
  29509. bottom: 27 / 1662
  29510. }
  29511. },
  29512. },
  29513. [
  29514. {
  29515. name: "\"Incognito\"",
  29516. height: math.unit(4, "meters")
  29517. },
  29518. {
  29519. name: "Small rampage",
  29520. height: math.unit(600, "meters")
  29521. },
  29522. {
  29523. name: "Mega",
  29524. height: math.unit(30, "km")
  29525. },
  29526. {
  29527. name: "Home-size",
  29528. height: math.unit(50, "km"),
  29529. default: true
  29530. },
  29531. {
  29532. name: "Giga",
  29533. height: math.unit(300, "km")
  29534. },
  29535. {
  29536. name: "Lounging",
  29537. height: math.unit(11000, "km")
  29538. },
  29539. {
  29540. name: "Planet snacking",
  29541. height: math.unit(2000000, "km")
  29542. },
  29543. ]
  29544. ))
  29545. characterMakers.push(() => makeCharacter(
  29546. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29547. {
  29548. front: {
  29549. height: math.unit(6, "feet"),
  29550. weight: math.unit(215, "lb"),
  29551. name: "Front",
  29552. image: {
  29553. source: "./media/characters/sapphire-svell/front.svg",
  29554. extra: 495 / 455,
  29555. bottom: 20 / 515
  29556. }
  29557. },
  29558. back: {
  29559. height: math.unit(6, "feet"),
  29560. weight: math.unit(216, "lb"),
  29561. name: "Back",
  29562. image: {
  29563. source: "./media/characters/sapphire-svell/back.svg",
  29564. extra: 497 / 477,
  29565. bottom: 7 / 504
  29566. }
  29567. },
  29568. maw: {
  29569. height: math.unit(1.57, "feet"),
  29570. name: "Maw",
  29571. image: {
  29572. source: "./media/characters/sapphire-svell/maw.svg"
  29573. }
  29574. },
  29575. foot: {
  29576. height: math.unit(1.07, "feet"),
  29577. name: "Foot",
  29578. image: {
  29579. source: "./media/characters/sapphire-svell/foot.svg"
  29580. }
  29581. },
  29582. toering: {
  29583. height: math.unit(1.7, "inch"),
  29584. name: "Toering",
  29585. image: {
  29586. source: "./media/characters/sapphire-svell/toering.svg"
  29587. }
  29588. },
  29589. },
  29590. [
  29591. {
  29592. name: "Normal",
  29593. height: math.unit(300, "feet"),
  29594. default: true
  29595. },
  29596. {
  29597. name: "Augmented",
  29598. height: math.unit(1250, "feet")
  29599. },
  29600. {
  29601. name: "Unleashed",
  29602. height: math.unit(3000, "feet")
  29603. },
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29608. {
  29609. side: {
  29610. height: math.unit(2 + 3 / 12, "feet"),
  29611. weight: math.unit(110, "lb"),
  29612. name: "Side",
  29613. image: {
  29614. source: "./media/characters/glitch-flux/side.svg",
  29615. extra: 997 / 805,
  29616. bottom: 20 / 1017
  29617. }
  29618. },
  29619. },
  29620. [
  29621. {
  29622. name: "Normal",
  29623. height: math.unit(2 + 3 / 12, "feet"),
  29624. default: true
  29625. },
  29626. ]
  29627. ))
  29628. characterMakers.push(() => makeCharacter(
  29629. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29630. {
  29631. front: {
  29632. height: math.unit(4, "meters"),
  29633. name: "Front",
  29634. image: {
  29635. source: "./media/characters/mid/front.svg",
  29636. extra: 507 / 476,
  29637. bottom: 17 / 524
  29638. }
  29639. },
  29640. back: {
  29641. height: math.unit(4, "meters"),
  29642. name: "Back",
  29643. image: {
  29644. source: "./media/characters/mid/back.svg",
  29645. extra: 519 / 487,
  29646. bottom: 7 / 526
  29647. }
  29648. },
  29649. stuck: {
  29650. height: math.unit(2.2, "meters"),
  29651. name: "Stuck",
  29652. image: {
  29653. source: "./media/characters/mid/stuck.svg",
  29654. extra: 1951 / 1869,
  29655. bottom: 88 / 2039
  29656. }
  29657. }
  29658. },
  29659. [
  29660. {
  29661. name: "Normal",
  29662. height: math.unit(4, "meters"),
  29663. default: true
  29664. },
  29665. {
  29666. name: "Big",
  29667. height: math.unit(10, "meters")
  29668. },
  29669. {
  29670. name: "Macro",
  29671. height: math.unit(800, "meters")
  29672. },
  29673. {
  29674. name: "Megamacro",
  29675. height: math.unit(100, "km")
  29676. },
  29677. {
  29678. name: "Overgrown",
  29679. height: math.unit(1, "parsec")
  29680. },
  29681. ]
  29682. ))
  29683. characterMakers.push(() => makeCharacter(
  29684. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29685. {
  29686. front: {
  29687. height: math.unit(2.5, "meters"),
  29688. weight: math.unit(225, "kg"),
  29689. name: "Front",
  29690. image: {
  29691. source: "./media/characters/iris/front.svg",
  29692. extra: 3348 / 3251,
  29693. bottom: 205 / 3553
  29694. }
  29695. },
  29696. maw: {
  29697. height: math.unit(0.56, "meter"),
  29698. name: "Maw",
  29699. image: {
  29700. source: "./media/characters/iris/maw.svg"
  29701. }
  29702. },
  29703. },
  29704. [
  29705. {
  29706. name: "Mewter cat",
  29707. height: math.unit(1.2, "meters")
  29708. },
  29709. {
  29710. name: "Minimacro",
  29711. height: math.unit(2.5, "meters"),
  29712. default: true
  29713. },
  29714. {
  29715. name: "Macro",
  29716. height: math.unit(180, "meters")
  29717. },
  29718. {
  29719. name: "Megamacro",
  29720. height: math.unit(2746, "meters")
  29721. },
  29722. ]
  29723. ))
  29724. characterMakers.push(() => makeCharacter(
  29725. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29726. {
  29727. front: {
  29728. height: math.unit(6, "feet"),
  29729. weight: math.unit(135, "lb"),
  29730. name: "Front",
  29731. image: {
  29732. source: "./media/characters/axel/front.svg",
  29733. extra: 908 / 908,
  29734. bottom: 58 / 966
  29735. }
  29736. },
  29737. side: {
  29738. height: math.unit(6, "feet"),
  29739. weight: math.unit(135, "lb"),
  29740. name: "Side",
  29741. image: {
  29742. source: "./media/characters/axel/side.svg",
  29743. extra: 958 / 958,
  29744. bottom: 11 / 969
  29745. }
  29746. },
  29747. back: {
  29748. height: math.unit(6, "feet"),
  29749. weight: math.unit(135, "lb"),
  29750. name: "Back",
  29751. image: {
  29752. source: "./media/characters/axel/back.svg",
  29753. extra: 887 / 887,
  29754. bottom: 34 / 921
  29755. }
  29756. },
  29757. head: {
  29758. height: math.unit(1.07, "feet"),
  29759. name: "Head",
  29760. image: {
  29761. source: "./media/characters/axel/head.svg"
  29762. }
  29763. },
  29764. beak: {
  29765. height: math.unit(1.4, "feet"),
  29766. name: "Beak",
  29767. image: {
  29768. source: "./media/characters/axel/beak.svg"
  29769. }
  29770. },
  29771. beakSide: {
  29772. height: math.unit(1.4, "feet"),
  29773. name: "Beak Side",
  29774. image: {
  29775. source: "./media/characters/axel/beak-side.svg"
  29776. }
  29777. },
  29778. sheath: {
  29779. height: math.unit(0.5, "feet"),
  29780. name: "Sheath",
  29781. image: {
  29782. source: "./media/characters/axel/sheath.svg"
  29783. }
  29784. },
  29785. dick: {
  29786. height: math.unit(0.98, "feet"),
  29787. name: "Dick",
  29788. image: {
  29789. source: "./media/characters/axel/dick.svg"
  29790. }
  29791. },
  29792. },
  29793. [
  29794. {
  29795. name: "Macro",
  29796. height: math.unit(68, "meters"),
  29797. default: true
  29798. },
  29799. ]
  29800. ))
  29801. characterMakers.push(() => makeCharacter(
  29802. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29803. {
  29804. front: {
  29805. height: math.unit(3.5, "meters"),
  29806. weight: math.unit(1200, "kg"),
  29807. name: "Front",
  29808. image: {
  29809. source: "./media/characters/joanna/front.svg",
  29810. extra: 1596 / 1488,
  29811. bottom: 29 / 1625
  29812. }
  29813. },
  29814. back: {
  29815. height: math.unit(3.5, "meters"),
  29816. weight: math.unit(1200, "kg"),
  29817. name: "Back",
  29818. image: {
  29819. source: "./media/characters/joanna/back.svg",
  29820. extra: 1594 / 1495,
  29821. bottom: 26 / 1620
  29822. }
  29823. },
  29824. frontShorts: {
  29825. height: math.unit(3.5, "meters"),
  29826. weight: math.unit(1200, "kg"),
  29827. name: "Front (Shorts)",
  29828. image: {
  29829. source: "./media/characters/joanna/front-shorts.svg",
  29830. extra: 1596 / 1488,
  29831. bottom: 29 / 1625
  29832. }
  29833. },
  29834. frontBiker: {
  29835. height: math.unit(3.5, "meters"),
  29836. weight: math.unit(1200, "kg"),
  29837. name: "Front (Biker)",
  29838. image: {
  29839. source: "./media/characters/joanna/front-biker.svg",
  29840. extra: 1596 / 1488,
  29841. bottom: 29 / 1625
  29842. }
  29843. },
  29844. backBiker: {
  29845. height: math.unit(3.5, "meters"),
  29846. weight: math.unit(1200, "kg"),
  29847. name: "Back (Biker)",
  29848. image: {
  29849. source: "./media/characters/joanna/back-biker.svg",
  29850. extra: 1594 / 1495,
  29851. bottom: 88 / 1682
  29852. }
  29853. },
  29854. bikeLeft: {
  29855. height: math.unit(2.4, "meters"),
  29856. weight: math.unit(1600, "kg"),
  29857. name: "Bike (Left)",
  29858. image: {
  29859. source: "./media/characters/joanna/bike-left.svg",
  29860. extra: 720 / 720,
  29861. bottom: 8 / 728
  29862. }
  29863. },
  29864. bikeRight: {
  29865. height: math.unit(2.4, "meters"),
  29866. weight: math.unit(1600, "kg"),
  29867. name: "Bike (Right)",
  29868. image: {
  29869. source: "./media/characters/joanna/bike-right.svg",
  29870. extra: 720 / 720,
  29871. bottom: 8 / 728
  29872. }
  29873. },
  29874. },
  29875. [
  29876. {
  29877. name: "Incognito",
  29878. height: math.unit(3.5, "meters")
  29879. },
  29880. {
  29881. name: "Casual Big",
  29882. height: math.unit(200, "meters")
  29883. },
  29884. {
  29885. name: "Macro",
  29886. height: math.unit(600, "meters")
  29887. },
  29888. {
  29889. name: "Original",
  29890. height: math.unit(20, "km"),
  29891. default: true
  29892. },
  29893. {
  29894. name: "Giga",
  29895. height: math.unit(400, "km")
  29896. },
  29897. {
  29898. name: "Lounging",
  29899. height: math.unit(1500, "km")
  29900. },
  29901. {
  29902. name: "Planetary",
  29903. height: math.unit(200000, "km")
  29904. },
  29905. ]
  29906. ))
  29907. characterMakers.push(() => makeCharacter(
  29908. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29909. {
  29910. front: {
  29911. height: math.unit(6, "feet"),
  29912. weight: math.unit(150, "lb"),
  29913. name: "Front",
  29914. image: {
  29915. source: "./media/characters/hugo-sigil/front.svg",
  29916. extra: 522 / 500,
  29917. bottom: 2 / 524
  29918. }
  29919. },
  29920. back: {
  29921. height: math.unit(6, "feet"),
  29922. weight: math.unit(150, "lb"),
  29923. name: "Back",
  29924. image: {
  29925. source: "./media/characters/hugo-sigil/back.svg",
  29926. extra: 519 / 495,
  29927. bottom: 5 / 524
  29928. }
  29929. },
  29930. maw: {
  29931. height: math.unit(1.4, "feet"),
  29932. weight: math.unit(150, "lb"),
  29933. name: "Maw",
  29934. image: {
  29935. source: "./media/characters/hugo-sigil/maw.svg"
  29936. }
  29937. },
  29938. feet: {
  29939. height: math.unit(1.56, "feet"),
  29940. weight: math.unit(150, "lb"),
  29941. name: "Feet",
  29942. image: {
  29943. source: "./media/characters/hugo-sigil/feet.svg",
  29944. extra: 177 / 177,
  29945. bottom: 12 / 189
  29946. }
  29947. },
  29948. },
  29949. [
  29950. {
  29951. name: "Normal",
  29952. height: math.unit(6, "feet")
  29953. },
  29954. {
  29955. name: "Macro",
  29956. height: math.unit(200, "feet"),
  29957. default: true
  29958. },
  29959. ]
  29960. ))
  29961. characterMakers.push(() => makeCharacter(
  29962. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29963. {
  29964. front: {
  29965. height: math.unit(6, "feet"),
  29966. weight: math.unit(150, "lb"),
  29967. name: "Front",
  29968. image: {
  29969. source: "./media/characters/peri/front.svg",
  29970. extra: 2354 / 2233,
  29971. bottom: 49 / 2403
  29972. }
  29973. },
  29974. },
  29975. [
  29976. {
  29977. name: "Really Small",
  29978. height: math.unit(1, "nm")
  29979. },
  29980. {
  29981. name: "Micro",
  29982. height: math.unit(4, "inches")
  29983. },
  29984. {
  29985. name: "Normal",
  29986. height: math.unit(7, "inches"),
  29987. default: true
  29988. },
  29989. {
  29990. name: "Macro",
  29991. height: math.unit(400, "feet")
  29992. },
  29993. {
  29994. name: "Megamacro",
  29995. height: math.unit(100, "miles")
  29996. },
  29997. ]
  29998. ))
  29999. characterMakers.push(() => makeCharacter(
  30000. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30001. {
  30002. frontSlim: {
  30003. height: math.unit(7, "feet"),
  30004. name: "Front (Slim)",
  30005. image: {
  30006. source: "./media/characters/issilora/front-slim.svg",
  30007. extra: 529 / 449,
  30008. bottom: 53 / 582
  30009. }
  30010. },
  30011. sideSlim: {
  30012. height: math.unit(7, "feet"),
  30013. name: "Side (Slim)",
  30014. image: {
  30015. source: "./media/characters/issilora/side-slim.svg",
  30016. extra: 570 / 480,
  30017. bottom: 30 / 600
  30018. }
  30019. },
  30020. backSlim: {
  30021. height: math.unit(7, "feet"),
  30022. name: "Back (Slim)",
  30023. image: {
  30024. source: "./media/characters/issilora/back-slim.svg",
  30025. extra: 537 / 455,
  30026. bottom: 46 / 583
  30027. }
  30028. },
  30029. frontBuff: {
  30030. height: math.unit(7, "feet"),
  30031. name: "Front (Buff)",
  30032. image: {
  30033. source: "./media/characters/issilora/front-buff.svg",
  30034. extra: 2310 / 2035,
  30035. bottom: 335 / 2645
  30036. }
  30037. },
  30038. head: {
  30039. height: math.unit(1.94, "feet"),
  30040. name: "Head",
  30041. image: {
  30042. source: "./media/characters/issilora/head.svg"
  30043. }
  30044. },
  30045. },
  30046. [
  30047. {
  30048. name: "Minimum",
  30049. height: math.unit(7, "feet")
  30050. },
  30051. {
  30052. name: "Comfortable",
  30053. height: math.unit(17, "feet")
  30054. },
  30055. {
  30056. name: "Fun Size",
  30057. height: math.unit(47, "feet")
  30058. },
  30059. {
  30060. name: "Natural Macro",
  30061. height: math.unit(137, "feet"),
  30062. default: true
  30063. },
  30064. {
  30065. name: "Maximum Kaiju",
  30066. height: math.unit(397, "feet")
  30067. },
  30068. ]
  30069. ))
  30070. characterMakers.push(() => makeCharacter(
  30071. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30072. {
  30073. front: {
  30074. height: math.unit(50 + 9/12, "feet"),
  30075. weight: math.unit(32.8, "tons"),
  30076. name: "Front",
  30077. image: {
  30078. source: "./media/characters/irb'iiritaahn/front.svg",
  30079. extra: 1878/1826,
  30080. bottom: 326/2204
  30081. }
  30082. },
  30083. back: {
  30084. height: math.unit(50 + 9/12, "feet"),
  30085. weight: math.unit(32.8, "tons"),
  30086. name: "Back",
  30087. image: {
  30088. source: "./media/characters/irb'iiritaahn/back.svg",
  30089. extra: 2052/2018,
  30090. bottom: 152/2204
  30091. }
  30092. },
  30093. head: {
  30094. height: math.unit(12.86, "feet"),
  30095. name: "Head",
  30096. image: {
  30097. source: "./media/characters/irb'iiritaahn/head.svg"
  30098. }
  30099. },
  30100. maw: {
  30101. height: math.unit(9.66, "feet"),
  30102. name: "Maw",
  30103. image: {
  30104. source: "./media/characters/irb'iiritaahn/maw.svg"
  30105. }
  30106. },
  30107. frontDick: {
  30108. height: math.unit(8.78461, "feet"),
  30109. name: "Front Dick",
  30110. image: {
  30111. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30112. }
  30113. },
  30114. rearDick: {
  30115. height: math.unit(8.78461, "feet"),
  30116. name: "Rear Dick",
  30117. image: {
  30118. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30119. }
  30120. },
  30121. rearDickUnfolded: {
  30122. height: math.unit(8.78, "feet"),
  30123. name: "Rear Dick (Unfolded)",
  30124. image: {
  30125. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30126. }
  30127. },
  30128. wings: {
  30129. height: math.unit(43, "feet"),
  30130. name: "Wings",
  30131. image: {
  30132. source: "./media/characters/irb'iiritaahn/wings.svg"
  30133. }
  30134. },
  30135. },
  30136. [
  30137. {
  30138. name: "Macro",
  30139. height: math.unit(50 + 9/12, "feet"),
  30140. default: true
  30141. },
  30142. ]
  30143. ))
  30144. characterMakers.push(() => makeCharacter(
  30145. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30146. {
  30147. front: {
  30148. height: math.unit(205, "cm"),
  30149. weight: math.unit(102, "kg"),
  30150. name: "Front",
  30151. image: {
  30152. source: "./media/characters/irbisgreif/front.svg",
  30153. extra: 785/706,
  30154. bottom: 13/798
  30155. }
  30156. },
  30157. back: {
  30158. height: math.unit(205, "cm"),
  30159. weight: math.unit(102, "kg"),
  30160. name: "Back",
  30161. image: {
  30162. source: "./media/characters/irbisgreif/back.svg",
  30163. extra: 713/701,
  30164. bottom: 26/739
  30165. }
  30166. },
  30167. frontDressed: {
  30168. height: math.unit(216, "cm"),
  30169. weight: math.unit(102, "kg"),
  30170. name: "Front-dressed",
  30171. image: {
  30172. source: "./media/characters/irbisgreif/front-dressed.svg",
  30173. extra: 902/776,
  30174. bottom: 14/916
  30175. }
  30176. },
  30177. sideDressed: {
  30178. height: math.unit(195, "cm"),
  30179. weight: math.unit(102, "kg"),
  30180. name: "Side-dressed",
  30181. image: {
  30182. source: "./media/characters/irbisgreif/side-dressed.svg",
  30183. extra: 788/688,
  30184. bottom: 21/809
  30185. }
  30186. },
  30187. backDressed: {
  30188. height: math.unit(216, "cm"),
  30189. weight: math.unit(102, "kg"),
  30190. name: "Back-dressed",
  30191. image: {
  30192. source: "./media/characters/irbisgreif/back-dressed.svg",
  30193. extra: 901/783,
  30194. bottom: 10/911
  30195. }
  30196. },
  30197. dick: {
  30198. height: math.unit(0.49, "feet"),
  30199. name: "Dick",
  30200. image: {
  30201. source: "./media/characters/irbisgreif/dick.svg"
  30202. }
  30203. },
  30204. wingTop: {
  30205. height: math.unit(1.93 , "feet"),
  30206. name: "Wing-top",
  30207. image: {
  30208. source: "./media/characters/irbisgreif/wing-top.svg"
  30209. }
  30210. },
  30211. wingBottom: {
  30212. height: math.unit(1.93 , "feet"),
  30213. name: "Wing-bottom",
  30214. image: {
  30215. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30216. }
  30217. },
  30218. },
  30219. [
  30220. {
  30221. name: "Normal",
  30222. height: math.unit(216, "cm"),
  30223. default: true
  30224. },
  30225. ]
  30226. ))
  30227. characterMakers.push(() => makeCharacter(
  30228. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30229. {
  30230. front: {
  30231. height: math.unit(6, "feet"),
  30232. weight: math.unit(150, "lb"),
  30233. name: "Front",
  30234. image: {
  30235. source: "./media/characters/pride/front.svg",
  30236. extra: 1299/1230,
  30237. bottom: 18/1317
  30238. }
  30239. },
  30240. },
  30241. [
  30242. {
  30243. name: "Normal",
  30244. height: math.unit(7, "feet")
  30245. },
  30246. {
  30247. name: "Mini-macro",
  30248. height: math.unit(11, "feet")
  30249. },
  30250. {
  30251. name: "Macro",
  30252. height: math.unit(15, "meters"),
  30253. default: true
  30254. },
  30255. {
  30256. name: "Macro+",
  30257. height: math.unit(40, "meters")
  30258. },
  30259. ]
  30260. ))
  30261. characterMakers.push(() => makeCharacter(
  30262. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30263. {
  30264. front: {
  30265. height: math.unit(4 + 2 / 12, "feet"),
  30266. weight: math.unit(95, "lb"),
  30267. name: "Front",
  30268. image: {
  30269. source: "./media/characters/vaelophis-nyx/front.svg",
  30270. extra: 2532/2330,
  30271. bottom: 0/2532
  30272. }
  30273. },
  30274. back: {
  30275. height: math.unit(4 + 2 / 12, "feet"),
  30276. weight: math.unit(95, "lb"),
  30277. name: "Back",
  30278. image: {
  30279. source: "./media/characters/vaelophis-nyx/back.svg",
  30280. extra: 2484/2361,
  30281. bottom: 0/2484
  30282. }
  30283. },
  30284. feralSide: {
  30285. height: math.unit(2 + 1/12, "feet"),
  30286. weight: math.unit(20, "lb"),
  30287. name: "Feral (Side)",
  30288. image: {
  30289. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30290. extra: 1721/1581,
  30291. bottom: 70/1791
  30292. }
  30293. },
  30294. feralLazing: {
  30295. height: math.unit(1.08, "feet"),
  30296. weight: math.unit(20, "lb"),
  30297. name: "Feral (Lazing)",
  30298. image: {
  30299. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30300. extra: 822/822,
  30301. bottom: 248/1070
  30302. }
  30303. },
  30304. ear: {
  30305. height: math.unit(0.416, "feet"),
  30306. name: "Ear",
  30307. image: {
  30308. source: "./media/characters/vaelophis-nyx/ear.svg"
  30309. }
  30310. },
  30311. eye: {
  30312. height: math.unit(0.0748, "feet"),
  30313. name: "Eye",
  30314. image: {
  30315. source: "./media/characters/vaelophis-nyx/eye.svg"
  30316. }
  30317. },
  30318. mouth: {
  30319. height: math.unit(0.378, "feet"),
  30320. name: "Mouth",
  30321. image: {
  30322. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30323. }
  30324. },
  30325. spade: {
  30326. height: math.unit(0.55, "feet"),
  30327. name: "Spade",
  30328. image: {
  30329. source: "./media/characters/vaelophis-nyx/spade.svg"
  30330. }
  30331. },
  30332. },
  30333. [
  30334. {
  30335. name: "Normal",
  30336. height: math.unit(4 + 2/12, "feet"),
  30337. default: true
  30338. },
  30339. ]
  30340. ))
  30341. characterMakers.push(() => makeCharacter(
  30342. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30343. {
  30344. front: {
  30345. height: math.unit(7, "feet"),
  30346. weight: math.unit(231, "lb"),
  30347. name: "Front",
  30348. image: {
  30349. source: "./media/characters/flux/front.svg",
  30350. extra: 919/871,
  30351. bottom: 0/919
  30352. }
  30353. },
  30354. back: {
  30355. height: math.unit(7, "feet"),
  30356. weight: math.unit(231, "lb"),
  30357. name: "Back",
  30358. image: {
  30359. source: "./media/characters/flux/back.svg",
  30360. extra: 1040/992,
  30361. bottom: 0/1040
  30362. }
  30363. },
  30364. frontDressed: {
  30365. height: math.unit(7, "feet"),
  30366. weight: math.unit(231, "lb"),
  30367. name: "Front (Dressed)",
  30368. image: {
  30369. source: "./media/characters/flux/front-dressed.svg",
  30370. extra: 919/871,
  30371. bottom: 0/919
  30372. }
  30373. },
  30374. feralSide: {
  30375. height: math.unit(5, "feet"),
  30376. weight: math.unit(150, "lb"),
  30377. name: "Feral (Side)",
  30378. image: {
  30379. source: "./media/characters/flux/feral-side.svg",
  30380. extra: 598/528,
  30381. bottom: 28/626
  30382. }
  30383. },
  30384. head: {
  30385. height: math.unit(1.585, "feet"),
  30386. name: "Head",
  30387. image: {
  30388. source: "./media/characters/flux/head.svg"
  30389. }
  30390. },
  30391. headSide: {
  30392. height: math.unit(1.74, "feet"),
  30393. name: "Head (Side)",
  30394. image: {
  30395. source: "./media/characters/flux/head-side.svg"
  30396. }
  30397. },
  30398. headSideFire: {
  30399. height: math.unit(1.76, "feet"),
  30400. name: "Head (Side, Fire)",
  30401. image: {
  30402. source: "./media/characters/flux/head-side-fire.svg"
  30403. }
  30404. },
  30405. },
  30406. [
  30407. {
  30408. name: "Normal",
  30409. height: math.unit(7, "feet"),
  30410. default: true
  30411. },
  30412. ]
  30413. ))
  30414. characterMakers.push(() => makeCharacter(
  30415. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30416. {
  30417. front: {
  30418. height: math.unit(9, "feet"),
  30419. weight: math.unit(1012, "lb"),
  30420. name: "Front",
  30421. image: {
  30422. source: "./media/characters/ulfra-lupae/front.svg",
  30423. extra: 1083/1011,
  30424. bottom: 67/1150
  30425. }
  30426. },
  30427. },
  30428. [
  30429. {
  30430. name: "Micro",
  30431. height: math.unit(6, "inches")
  30432. },
  30433. {
  30434. name: "Socializing",
  30435. height: math.unit(6 + 5/12, "feet")
  30436. },
  30437. {
  30438. name: "Normal",
  30439. height: math.unit(9, "feet"),
  30440. default: true
  30441. },
  30442. {
  30443. name: "Macro",
  30444. height: math.unit(150, "feet")
  30445. },
  30446. ]
  30447. ))
  30448. characterMakers.push(() => makeCharacter(
  30449. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30450. {
  30451. front: {
  30452. height: math.unit(5 + 2/12, "feet"),
  30453. weight: math.unit(120, "lb"),
  30454. name: "Front",
  30455. image: {
  30456. source: "./media/characters/timber/front.svg",
  30457. extra: 2814/2705,
  30458. bottom: 181/2995
  30459. }
  30460. },
  30461. },
  30462. [
  30463. {
  30464. name: "Normal",
  30465. height: math.unit(5 + 2/12, "feet"),
  30466. default: true
  30467. },
  30468. ]
  30469. ))
  30470. characterMakers.push(() => makeCharacter(
  30471. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30472. {
  30473. front: {
  30474. height: math.unit(5 + 7/12, "feet"),
  30475. weight: math.unit(220, "lb"),
  30476. name: "Front",
  30477. image: {
  30478. source: "./media/characters/nicki/front.svg",
  30479. extra: 453/419,
  30480. bottom: 7/460
  30481. }
  30482. },
  30483. frontAlt: {
  30484. height: math.unit(5 + 7/12, "feet"),
  30485. weight: math.unit(220, "lb"),
  30486. name: "Front-alt",
  30487. image: {
  30488. source: "./media/characters/nicki/front-alt.svg",
  30489. extra: 435/411,
  30490. bottom: 12/447
  30491. }
  30492. },
  30493. back: {
  30494. height: math.unit(5 + 7/12, "feet"),
  30495. weight: math.unit(220, "lb"),
  30496. name: "Back",
  30497. image: {
  30498. source: "./media/characters/nicki/back.svg",
  30499. extra: 440/413,
  30500. bottom: 19/459
  30501. }
  30502. },
  30503. taur: {
  30504. height: math.unit(7 + 6/12, "feet"),
  30505. weight: math.unit(700, "lb"),
  30506. name: "Taur",
  30507. image: {
  30508. source: "./media/characters/nicki/taur.svg",
  30509. extra: 975/773,
  30510. bottom: 0/975
  30511. }
  30512. },
  30513. frontNsfw: {
  30514. height: math.unit(5 + 7/12, "feet"),
  30515. weight: math.unit(220, "lb"),
  30516. name: "Front (NSFW)",
  30517. image: {
  30518. source: "./media/characters/nicki/front-nsfw.svg",
  30519. extra: 453/419,
  30520. bottom: 7/460
  30521. }
  30522. },
  30523. frontNsfwAlt: {
  30524. height: math.unit(5 + 7/12, "feet"),
  30525. weight: math.unit(220, "lb"),
  30526. name: "Front (Alt, NSFW)",
  30527. image: {
  30528. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30529. extra: 435/411,
  30530. bottom: 12/447
  30531. }
  30532. },
  30533. backNsfw: {
  30534. height: math.unit(5 + 7/12, "feet"),
  30535. weight: math.unit(220, "lb"),
  30536. name: "Back (NSFW)",
  30537. image: {
  30538. source: "./media/characters/nicki/back-nsfw.svg",
  30539. extra: 440/413,
  30540. bottom: 19/459
  30541. }
  30542. },
  30543. head: {
  30544. height: math.unit(2.1, "feet"),
  30545. name: "Head",
  30546. image: {
  30547. source: "./media/characters/nicki/head.svg"
  30548. }
  30549. },
  30550. paw: {
  30551. height: math.unit(1.88, "feet"),
  30552. name: "Paw",
  30553. image: {
  30554. source: "./media/characters/nicki/paw.svg"
  30555. }
  30556. },
  30557. },
  30558. [
  30559. {
  30560. name: "Normal",
  30561. height: math.unit(5 + 7/12, "feet"),
  30562. default: true
  30563. },
  30564. ]
  30565. ))
  30566. characterMakers.push(() => makeCharacter(
  30567. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30568. {
  30569. front: {
  30570. height: math.unit(7 + 10/12, "feet"),
  30571. weight: math.unit(3.5, "tons"),
  30572. name: "Front",
  30573. image: {
  30574. source: "./media/characters/lee/front.svg",
  30575. extra: 1773/1615,
  30576. bottom: 86/1859
  30577. }
  30578. },
  30579. hand: {
  30580. height: math.unit(1.78, "feet"),
  30581. name: "Hand",
  30582. image: {
  30583. source: "./media/characters/lee/hand.svg"
  30584. }
  30585. },
  30586. maw: {
  30587. height: math.unit(1.18, "feet"),
  30588. name: "Maw",
  30589. image: {
  30590. source: "./media/characters/lee/maw.svg"
  30591. }
  30592. },
  30593. },
  30594. [
  30595. {
  30596. name: "Normal",
  30597. height: math.unit(7 + 10/12, "feet"),
  30598. default: true
  30599. },
  30600. ]
  30601. ))
  30602. characterMakers.push(() => makeCharacter(
  30603. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30604. {
  30605. front: {
  30606. height: math.unit(9, "feet"),
  30607. name: "Front",
  30608. image: {
  30609. source: "./media/characters/guti/front.svg",
  30610. extra: 4551/4355,
  30611. bottom: 123/4674
  30612. }
  30613. },
  30614. tongue: {
  30615. height: math.unit(1, "feet"),
  30616. name: "Tongue",
  30617. image: {
  30618. source: "./media/characters/guti/tongue.svg"
  30619. }
  30620. },
  30621. paw: {
  30622. height: math.unit(1.18, "feet"),
  30623. name: "Paw",
  30624. image: {
  30625. source: "./media/characters/guti/paw.svg"
  30626. }
  30627. },
  30628. },
  30629. [
  30630. {
  30631. name: "Normal",
  30632. height: math.unit(9, "feet"),
  30633. default: true
  30634. },
  30635. ]
  30636. ))
  30637. characterMakers.push(() => makeCharacter(
  30638. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30639. {
  30640. side: {
  30641. height: math.unit(5, "meters"),
  30642. name: "Side",
  30643. image: {
  30644. source: "./media/characters/vesper/side.svg",
  30645. extra: 1605/1518,
  30646. bottom: 0/1605
  30647. }
  30648. },
  30649. },
  30650. [
  30651. {
  30652. name: "Small",
  30653. height: math.unit(5, "meters")
  30654. },
  30655. {
  30656. name: "Sage",
  30657. height: math.unit(100, "meters"),
  30658. default: true
  30659. },
  30660. {
  30661. name: "Fun Size",
  30662. height: math.unit(600, "meters")
  30663. },
  30664. {
  30665. name: "Goddess",
  30666. height: math.unit(20000, "km")
  30667. },
  30668. {
  30669. name: "Maximum",
  30670. height: math.unit(5, "galaxies")
  30671. },
  30672. ]
  30673. ))
  30674. characterMakers.push(() => makeCharacter(
  30675. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30676. {
  30677. front: {
  30678. height: math.unit(6 + 3/12, "feet"),
  30679. weight: math.unit(190, "lb"),
  30680. name: "Front",
  30681. image: {
  30682. source: "./media/characters/gawain/front.svg",
  30683. extra: 2222/2139,
  30684. bottom: 90/2312
  30685. }
  30686. },
  30687. back: {
  30688. height: math.unit(6 + 3/12, "feet"),
  30689. weight: math.unit(190, "lb"),
  30690. name: "Back",
  30691. image: {
  30692. source: "./media/characters/gawain/back.svg",
  30693. extra: 2199/2111,
  30694. bottom: 73/2272
  30695. }
  30696. },
  30697. },
  30698. [
  30699. {
  30700. name: "Normal",
  30701. height: math.unit(6 + 3/12, "feet"),
  30702. default: true
  30703. },
  30704. ]
  30705. ))
  30706. characterMakers.push(() => makeCharacter(
  30707. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30708. {
  30709. side: {
  30710. height: math.unit(3.5, "meters"),
  30711. weight: math.unit(16000, "lb"),
  30712. name: "Side",
  30713. image: {
  30714. source: "./media/characters/dascalti/side.svg",
  30715. extra: 392/273,
  30716. bottom: 47/439
  30717. }
  30718. },
  30719. breath: {
  30720. height: math.unit(7.4, "feet"),
  30721. name: "Breath",
  30722. image: {
  30723. source: "./media/characters/dascalti/breath.svg"
  30724. }
  30725. },
  30726. fed: {
  30727. height: math.unit(3.6, "meters"),
  30728. weight: math.unit(16000, "lb"),
  30729. name: "Fed",
  30730. image: {
  30731. source: "./media/characters/dascalti/fed.svg",
  30732. extra: 1419/820,
  30733. bottom: 95/1514
  30734. }
  30735. },
  30736. },
  30737. [
  30738. {
  30739. name: "Normal",
  30740. height: math.unit(3.5, "meters"),
  30741. default: true
  30742. },
  30743. ]
  30744. ))
  30745. characterMakers.push(() => makeCharacter(
  30746. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30747. {
  30748. front: {
  30749. height: math.unit(3 + 5/12, "feet"),
  30750. name: "Front",
  30751. image: {
  30752. source: "./media/characters/mauve/front.svg",
  30753. extra: 1126/1033,
  30754. bottom: 65/1191
  30755. }
  30756. },
  30757. side: {
  30758. height: math.unit(3 + 5/12, "feet"),
  30759. name: "Side",
  30760. image: {
  30761. source: "./media/characters/mauve/side.svg",
  30762. extra: 1089/1001,
  30763. bottom: 29/1118
  30764. }
  30765. },
  30766. back: {
  30767. height: math.unit(3 + 5/12, "feet"),
  30768. name: "Back",
  30769. image: {
  30770. source: "./media/characters/mauve/back.svg",
  30771. extra: 1173/1053,
  30772. bottom: 109/1282
  30773. }
  30774. },
  30775. },
  30776. [
  30777. {
  30778. name: "Normal",
  30779. height: math.unit(3 + 5/12, "feet"),
  30780. default: true
  30781. },
  30782. ]
  30783. ))
  30784. characterMakers.push(() => makeCharacter(
  30785. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30786. {
  30787. front: {
  30788. height: math.unit(6 + 3/12, "feet"),
  30789. weight: math.unit(430, "lb"),
  30790. name: "Front",
  30791. image: {
  30792. source: "./media/characters/carlos/front.svg",
  30793. extra: 1964/1913,
  30794. bottom: 70/2034
  30795. }
  30796. },
  30797. },
  30798. [
  30799. {
  30800. name: "Normal",
  30801. height: math.unit(6 + 3/12, "feet"),
  30802. default: true
  30803. },
  30804. ]
  30805. ))
  30806. characterMakers.push(() => makeCharacter(
  30807. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30808. {
  30809. back: {
  30810. height: math.unit(5 + 10/12, "feet"),
  30811. weight: math.unit(200, "lb"),
  30812. name: "Back",
  30813. image: {
  30814. source: "./media/characters/jax/back.svg",
  30815. extra: 764/739,
  30816. bottom: 25/789
  30817. }
  30818. },
  30819. },
  30820. [
  30821. {
  30822. name: "Normal",
  30823. height: math.unit(5 + 10/12, "feet"),
  30824. default: true
  30825. },
  30826. ]
  30827. ))
  30828. characterMakers.push(() => makeCharacter(
  30829. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30830. {
  30831. front: {
  30832. height: math.unit(8, "feet"),
  30833. weight: math.unit(250, "lb"),
  30834. name: "Front",
  30835. image: {
  30836. source: "./media/characters/eikthynir/front.svg",
  30837. extra: 1332/1166,
  30838. bottom: 82/1414
  30839. }
  30840. },
  30841. back: {
  30842. height: math.unit(8, "feet"),
  30843. weight: math.unit(250, "lb"),
  30844. name: "Back",
  30845. image: {
  30846. source: "./media/characters/eikthynir/back.svg",
  30847. extra: 1342/1190,
  30848. bottom: 19/1361
  30849. }
  30850. },
  30851. dick: {
  30852. height: math.unit(2.35, "feet"),
  30853. name: "Dick",
  30854. image: {
  30855. source: "./media/characters/eikthynir/dick.svg"
  30856. }
  30857. },
  30858. },
  30859. [
  30860. {
  30861. name: "Normal",
  30862. height: math.unit(8, "feet"),
  30863. default: true
  30864. },
  30865. ]
  30866. ))
  30867. characterMakers.push(() => makeCharacter(
  30868. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30869. {
  30870. front: {
  30871. height: math.unit(99, "meters"),
  30872. weight: math.unit(13000, "tons"),
  30873. name: "Front",
  30874. image: {
  30875. source: "./media/characters/zlmos/front.svg",
  30876. extra: 2202/1992,
  30877. bottom: 315/2517
  30878. }
  30879. },
  30880. },
  30881. [
  30882. {
  30883. name: "Macro",
  30884. height: math.unit(99, "meters"),
  30885. default: true
  30886. },
  30887. ]
  30888. ))
  30889. characterMakers.push(() => makeCharacter(
  30890. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30891. {
  30892. front: {
  30893. height: math.unit(6 + 5/12, "feet"),
  30894. name: "Front",
  30895. image: {
  30896. source: "./media/characters/purri/front.svg",
  30897. extra: 1698/1610,
  30898. bottom: 32/1730
  30899. }
  30900. },
  30901. frontAlt: {
  30902. height: math.unit(6 + 5/12, "feet"),
  30903. name: "Front (Alt)",
  30904. image: {
  30905. source: "./media/characters/purri/front-alt.svg",
  30906. extra: 450/420,
  30907. bottom: 26/476
  30908. }
  30909. },
  30910. boots: {
  30911. height: math.unit(5.5, "feet"),
  30912. name: "Boots",
  30913. image: {
  30914. source: "./media/characters/purri/boots.svg",
  30915. extra: 905/853,
  30916. bottom: 18/923
  30917. }
  30918. },
  30919. lying: {
  30920. height: math.unit(2, "feet"),
  30921. name: "Lying",
  30922. image: {
  30923. source: "./media/characters/purri/lying.svg",
  30924. extra: 940/843,
  30925. bottom: 146/1086
  30926. }
  30927. },
  30928. devious: {
  30929. height: math.unit(1.77, "feet"),
  30930. name: "Devious",
  30931. image: {
  30932. source: "./media/characters/purri/devious.svg",
  30933. extra: 1440/1155,
  30934. bottom: 147/1587
  30935. }
  30936. },
  30937. bean: {
  30938. height: math.unit(1.94, "feet"),
  30939. name: "Bean",
  30940. image: {
  30941. source: "./media/characters/purri/bean.svg"
  30942. }
  30943. },
  30944. },
  30945. [
  30946. {
  30947. name: "Micro",
  30948. height: math.unit(1, "mm")
  30949. },
  30950. {
  30951. name: "Normal",
  30952. height: math.unit(6 + 5/12, "feet"),
  30953. default: true
  30954. },
  30955. {
  30956. name: "Macro :3c",
  30957. height: math.unit(2, "miles")
  30958. },
  30959. ]
  30960. ))
  30961. characterMakers.push(() => makeCharacter(
  30962. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30963. {
  30964. front: {
  30965. height: math.unit(6 + 2/12, "feet"),
  30966. weight: math.unit(250, "lb"),
  30967. name: "Front",
  30968. image: {
  30969. source: "./media/characters/moonlight/front.svg",
  30970. extra: 1044/908,
  30971. bottom: 56/1100
  30972. }
  30973. },
  30974. feral: {
  30975. height: math.unit(3 + 1/12, "feet"),
  30976. weight: math.unit(50, "kg"),
  30977. name: "Feral",
  30978. image: {
  30979. source: "./media/characters/moonlight/feral.svg",
  30980. extra: 3705/2791,
  30981. bottom: 145/3850
  30982. }
  30983. },
  30984. paw: {
  30985. height: math.unit(1, "feet"),
  30986. name: "Paw",
  30987. image: {
  30988. source: "./media/characters/moonlight/paw.svg"
  30989. }
  30990. },
  30991. paws: {
  30992. height: math.unit(0.98, "feet"),
  30993. name: "Paws",
  30994. image: {
  30995. source: "./media/characters/moonlight/paws.svg",
  30996. extra: 939/939,
  30997. bottom: 50/989
  30998. }
  30999. },
  31000. mouth: {
  31001. height: math.unit(0.48, "feet"),
  31002. name: "Mouth",
  31003. image: {
  31004. source: "./media/characters/moonlight/mouth.svg"
  31005. }
  31006. },
  31007. dick: {
  31008. height: math.unit(1.46, "feet"),
  31009. name: "Dick",
  31010. image: {
  31011. source: "./media/characters/moonlight/dick.svg"
  31012. }
  31013. },
  31014. },
  31015. [
  31016. {
  31017. name: "Normal",
  31018. height: math.unit(6 + 2/12, "feet"),
  31019. default: true
  31020. },
  31021. {
  31022. name: "Macro",
  31023. height: math.unit(300, "feet")
  31024. },
  31025. {
  31026. name: "Macro+",
  31027. height: math.unit(1, "mile")
  31028. },
  31029. {
  31030. name: "Mt. Moon",
  31031. height: math.unit(5, "miles")
  31032. },
  31033. {
  31034. name: "Megamacro",
  31035. height: math.unit(15, "miles")
  31036. },
  31037. ]
  31038. ))
  31039. characterMakers.push(() => makeCharacter(
  31040. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31041. {
  31042. back: {
  31043. height: math.unit(6, "feet"),
  31044. weight: math.unit(150, "lb"),
  31045. name: "Back",
  31046. image: {
  31047. source: "./media/characters/sylen/back.svg",
  31048. extra: 1335/1273,
  31049. bottom: 107/1442
  31050. }
  31051. },
  31052. },
  31053. [
  31054. {
  31055. name: "Normal",
  31056. height: math.unit(5 + 5/12, "feet")
  31057. },
  31058. {
  31059. name: "Megamacro",
  31060. height: math.unit(3, "miles"),
  31061. default: true
  31062. },
  31063. ]
  31064. ))
  31065. characterMakers.push(() => makeCharacter(
  31066. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31067. {
  31068. front: {
  31069. height: math.unit(6, "feet"),
  31070. weight: math.unit(190, "lb"),
  31071. name: "Front",
  31072. image: {
  31073. source: "./media/characters/huttser/front.svg",
  31074. extra: 1152/1058,
  31075. bottom: 23/1175
  31076. }
  31077. },
  31078. side: {
  31079. height: math.unit(6, "feet"),
  31080. weight: math.unit(190, "lb"),
  31081. name: "Side",
  31082. image: {
  31083. source: "./media/characters/huttser/side.svg",
  31084. extra: 1174/1065,
  31085. bottom: 18/1192
  31086. }
  31087. },
  31088. back: {
  31089. height: math.unit(6, "feet"),
  31090. weight: math.unit(190, "lb"),
  31091. name: "Back",
  31092. image: {
  31093. source: "./media/characters/huttser/back.svg",
  31094. extra: 1158/1056,
  31095. bottom: 12/1170
  31096. }
  31097. },
  31098. },
  31099. [
  31100. ]
  31101. ))
  31102. characterMakers.push(() => makeCharacter(
  31103. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31104. {
  31105. side: {
  31106. height: math.unit(12 + 9/12, "feet"),
  31107. weight: math.unit(15000, "lb"),
  31108. name: "Side",
  31109. image: {
  31110. source: "./media/characters/faan/side.svg",
  31111. extra: 2747/2697,
  31112. bottom: 0/2747
  31113. }
  31114. },
  31115. front: {
  31116. height: math.unit(12 + 9/12, "feet"),
  31117. weight: math.unit(15000, "lb"),
  31118. name: "Front",
  31119. image: {
  31120. source: "./media/characters/faan/front.svg",
  31121. extra: 607/571,
  31122. bottom: 24/631
  31123. }
  31124. },
  31125. head: {
  31126. height: math.unit(2.85, "feet"),
  31127. name: "Head",
  31128. image: {
  31129. source: "./media/characters/faan/head.svg"
  31130. }
  31131. },
  31132. headAlt: {
  31133. height: math.unit(3.13, "feet"),
  31134. name: "Head-alt",
  31135. image: {
  31136. source: "./media/characters/faan/head-alt.svg"
  31137. }
  31138. },
  31139. },
  31140. [
  31141. {
  31142. name: "Normal",
  31143. height: math.unit(12 + 9/12, "feet"),
  31144. default: true
  31145. },
  31146. ]
  31147. ))
  31148. characterMakers.push(() => makeCharacter(
  31149. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31150. {
  31151. front: {
  31152. height: math.unit(6, "feet"),
  31153. weight: math.unit(300, "lb"),
  31154. name: "Front",
  31155. image: {
  31156. source: "./media/characters/tanio/front.svg",
  31157. extra: 711/673,
  31158. bottom: 25/736
  31159. }
  31160. },
  31161. },
  31162. [
  31163. {
  31164. name: "Normal",
  31165. height: math.unit(6, "feet"),
  31166. default: true
  31167. },
  31168. ]
  31169. ))
  31170. characterMakers.push(() => makeCharacter(
  31171. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31172. {
  31173. front: {
  31174. height: math.unit(3, "inches"),
  31175. name: "Front",
  31176. image: {
  31177. source: "./media/characters/noboru/front.svg",
  31178. extra: 1039/932,
  31179. bottom: 18/1057
  31180. }
  31181. },
  31182. },
  31183. [
  31184. {
  31185. name: "Micro",
  31186. height: math.unit(3, "inches"),
  31187. default: true
  31188. },
  31189. ]
  31190. ))
  31191. characterMakers.push(() => makeCharacter(
  31192. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31193. {
  31194. front: {
  31195. height: math.unit(1.85, "meters"),
  31196. weight: math.unit(80, "kg"),
  31197. name: "Front",
  31198. image: {
  31199. source: "./media/characters/daniel-barrett/front.svg",
  31200. extra: 355/337,
  31201. bottom: 9/364
  31202. }
  31203. },
  31204. },
  31205. [
  31206. {
  31207. name: "Pico",
  31208. height: math.unit(0.0433, "mm")
  31209. },
  31210. {
  31211. name: "Nano",
  31212. height: math.unit(1.5, "mm")
  31213. },
  31214. {
  31215. name: "Micro",
  31216. height: math.unit(5.3, "cm"),
  31217. default: true
  31218. },
  31219. {
  31220. name: "Normal",
  31221. height: math.unit(1.85, "meters")
  31222. },
  31223. {
  31224. name: "Macro",
  31225. height: math.unit(64.7, "meters")
  31226. },
  31227. {
  31228. name: "Megamacro",
  31229. height: math.unit(2.26, "km")
  31230. },
  31231. {
  31232. name: "Gigamacro",
  31233. height: math.unit(79, "km")
  31234. },
  31235. {
  31236. name: "Teramacro",
  31237. height: math.unit(2765, "km")
  31238. },
  31239. {
  31240. name: "Petamacro",
  31241. height: math.unit(96678, "km")
  31242. },
  31243. ]
  31244. ))
  31245. characterMakers.push(() => makeCharacter(
  31246. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31247. {
  31248. front: {
  31249. height: math.unit(30, "meters"),
  31250. weight: math.unit(400, "tons"),
  31251. name: "Front",
  31252. image: {
  31253. source: "./media/characters/zeel/front.svg",
  31254. extra: 2599/2599,
  31255. bottom: 226/2825
  31256. }
  31257. },
  31258. },
  31259. [
  31260. {
  31261. name: "Macro",
  31262. height: math.unit(30, "meters"),
  31263. default: true
  31264. },
  31265. ]
  31266. ))
  31267. characterMakers.push(() => makeCharacter(
  31268. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31269. {
  31270. front: {
  31271. height: math.unit(6 + 7/12, "feet"),
  31272. weight: math.unit(210, "lb"),
  31273. name: "Front",
  31274. image: {
  31275. source: "./media/characters/tarn/front.svg",
  31276. extra: 3517/3220,
  31277. bottom: 91/3608
  31278. }
  31279. },
  31280. back: {
  31281. height: math.unit(6 + 7/12, "feet"),
  31282. weight: math.unit(210, "lb"),
  31283. name: "Back",
  31284. image: {
  31285. source: "./media/characters/tarn/back.svg",
  31286. extra: 3566/3241,
  31287. bottom: 34/3600
  31288. }
  31289. },
  31290. dick: {
  31291. height: math.unit(1.65, "feet"),
  31292. name: "Dick",
  31293. image: {
  31294. source: "./media/characters/tarn/dick.svg"
  31295. }
  31296. },
  31297. paw: {
  31298. height: math.unit(1.80, "feet"),
  31299. name: "Paw",
  31300. image: {
  31301. source: "./media/characters/tarn/paw.svg"
  31302. }
  31303. },
  31304. tongue: {
  31305. height: math.unit(0.97, "feet"),
  31306. name: "Tongue",
  31307. image: {
  31308. source: "./media/characters/tarn/tongue.svg"
  31309. }
  31310. },
  31311. },
  31312. [
  31313. {
  31314. name: "Micro",
  31315. height: math.unit(4, "inches")
  31316. },
  31317. {
  31318. name: "Normal",
  31319. height: math.unit(6 + 7/12, "feet"),
  31320. default: true
  31321. },
  31322. {
  31323. name: "Macro",
  31324. height: math.unit(300, "feet")
  31325. },
  31326. ]
  31327. ))
  31328. characterMakers.push(() => makeCharacter(
  31329. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31330. {
  31331. front: {
  31332. height: math.unit(5 + 7/12, "feet"),
  31333. weight: math.unit(80, "kg"),
  31334. name: "Front",
  31335. image: {
  31336. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31337. extra: 3023/2865,
  31338. bottom: 33/3056
  31339. }
  31340. },
  31341. back: {
  31342. height: math.unit(5 + 7/12, "feet"),
  31343. weight: math.unit(80, "kg"),
  31344. name: "Back",
  31345. image: {
  31346. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31347. extra: 3020/2886,
  31348. bottom: 30/3050
  31349. }
  31350. },
  31351. dick: {
  31352. height: math.unit(0.98, "feet"),
  31353. name: "Dick",
  31354. image: {
  31355. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31356. }
  31357. },
  31358. anatomy: {
  31359. height: math.unit(2.86, "feet"),
  31360. name: "Anatomy",
  31361. image: {
  31362. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31363. }
  31364. },
  31365. },
  31366. [
  31367. {
  31368. name: "Really Small",
  31369. height: math.unit(2, "inches")
  31370. },
  31371. {
  31372. name: "Micro",
  31373. height: math.unit(5.583, "inches")
  31374. },
  31375. {
  31376. name: "Normal",
  31377. height: math.unit(5 + 7/12, "feet"),
  31378. default: true
  31379. },
  31380. {
  31381. name: "Macro",
  31382. height: math.unit(67, "feet")
  31383. },
  31384. {
  31385. name: "Megamacro",
  31386. height: math.unit(134, "feet")
  31387. },
  31388. ]
  31389. ))
  31390. characterMakers.push(() => makeCharacter(
  31391. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31392. {
  31393. front: {
  31394. height: math.unit(9, "feet"),
  31395. weight: math.unit(120, "lb"),
  31396. name: "Front",
  31397. image: {
  31398. source: "./media/characters/sally/front.svg",
  31399. extra: 1506/1349,
  31400. bottom: 66/1572
  31401. }
  31402. },
  31403. },
  31404. [
  31405. {
  31406. name: "Normal",
  31407. height: math.unit(9, "feet"),
  31408. default: true
  31409. },
  31410. ]
  31411. ))
  31412. characterMakers.push(() => makeCharacter(
  31413. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31414. {
  31415. front: {
  31416. height: math.unit(8, "feet"),
  31417. weight: math.unit(900, "lb"),
  31418. name: "Front",
  31419. image: {
  31420. source: "./media/characters/owen/front.svg",
  31421. extra: 1761/1657,
  31422. bottom: 74/1835
  31423. }
  31424. },
  31425. side: {
  31426. height: math.unit(8, "feet"),
  31427. weight: math.unit(900, "lb"),
  31428. name: "Side",
  31429. image: {
  31430. source: "./media/characters/owen/side.svg",
  31431. extra: 1797/1734,
  31432. bottom: 30/1827
  31433. }
  31434. },
  31435. back: {
  31436. height: math.unit(8, "feet"),
  31437. weight: math.unit(900, "lb"),
  31438. name: "Back",
  31439. image: {
  31440. source: "./media/characters/owen/back.svg",
  31441. extra: 1796/1706,
  31442. bottom: 59/1855
  31443. }
  31444. },
  31445. maw: {
  31446. height: math.unit(1.76, "feet"),
  31447. name: "Maw",
  31448. image: {
  31449. source: "./media/characters/owen/maw.svg"
  31450. }
  31451. },
  31452. },
  31453. [
  31454. {
  31455. name: "Normal",
  31456. height: math.unit(8, "feet"),
  31457. default: true
  31458. },
  31459. ]
  31460. ))
  31461. characterMakers.push(() => makeCharacter(
  31462. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31463. {
  31464. front: {
  31465. height: math.unit(4, "feet"),
  31466. weight: math.unit(400, "lb"),
  31467. name: "Front",
  31468. image: {
  31469. source: "./media/characters/ryth/front.svg",
  31470. extra: 876/691,
  31471. bottom: 25/901
  31472. }
  31473. },
  31474. goia: {
  31475. height: math.unit(12, "feet"),
  31476. weight: math.unit(10800, "lb"),
  31477. name: "Goia",
  31478. image: {
  31479. source: "./media/characters/ryth/goia.svg",
  31480. extra: 3450/3198,
  31481. bottom: 61/3511
  31482. }
  31483. },
  31484. },
  31485. [
  31486. {
  31487. name: "Normal",
  31488. height: math.unit(4, "feet"),
  31489. default: true
  31490. },
  31491. ]
  31492. ))
  31493. characterMakers.push(() => makeCharacter(
  31494. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31495. {
  31496. front: {
  31497. height: math.unit(7, "feet"),
  31498. weight: math.unit(180, "lb"),
  31499. name: "Front",
  31500. image: {
  31501. source: "./media/characters/necrolance/front.svg",
  31502. extra: 1062/947,
  31503. bottom: 41/1103
  31504. }
  31505. },
  31506. back: {
  31507. height: math.unit(7, "feet"),
  31508. weight: math.unit(180, "lb"),
  31509. name: "Back",
  31510. image: {
  31511. source: "./media/characters/necrolance/back.svg",
  31512. extra: 1045/984,
  31513. bottom: 14/1059
  31514. }
  31515. },
  31516. wing: {
  31517. height: math.unit(2.67, "feet"),
  31518. name: "Wing",
  31519. image: {
  31520. source: "./media/characters/necrolance/wing.svg"
  31521. }
  31522. },
  31523. },
  31524. [
  31525. {
  31526. name: "Normal",
  31527. height: math.unit(7, "feet"),
  31528. default: true
  31529. },
  31530. ]
  31531. ))
  31532. characterMakers.push(() => makeCharacter(
  31533. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31534. {
  31535. front: {
  31536. height: math.unit(76, "meters"),
  31537. weight: math.unit(30000, "tons"),
  31538. name: "Front",
  31539. image: {
  31540. source: "./media/characters/tyler/front.svg",
  31541. extra: 1640/1640,
  31542. bottom: 114/1754
  31543. }
  31544. },
  31545. },
  31546. [
  31547. {
  31548. name: "Macro",
  31549. height: math.unit(76, "meters"),
  31550. default: true
  31551. },
  31552. ]
  31553. ))
  31554. characterMakers.push(() => makeCharacter(
  31555. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31556. {
  31557. front: {
  31558. height: math.unit(4 + 11/12, "feet"),
  31559. weight: math.unit(132, "lb"),
  31560. name: "Front",
  31561. image: {
  31562. source: "./media/characters/icey/front.svg",
  31563. extra: 2750/2550,
  31564. bottom: 33/2783
  31565. }
  31566. },
  31567. back: {
  31568. height: math.unit(4 + 11/12, "feet"),
  31569. weight: math.unit(132, "lb"),
  31570. name: "Back",
  31571. image: {
  31572. source: "./media/characters/icey/back.svg",
  31573. extra: 2624/2481,
  31574. bottom: 35/2659
  31575. }
  31576. },
  31577. },
  31578. [
  31579. {
  31580. name: "Normal",
  31581. height: math.unit(4 + 11/12, "feet"),
  31582. default: true
  31583. },
  31584. ]
  31585. ))
  31586. characterMakers.push(() => makeCharacter(
  31587. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31588. {
  31589. front: {
  31590. height: math.unit(100, "feet"),
  31591. weight: math.unit(0, "lb"),
  31592. name: "Front",
  31593. image: {
  31594. source: "./media/characters/smile/front.svg",
  31595. extra: 2983/2912,
  31596. bottom: 162/3145
  31597. }
  31598. },
  31599. back: {
  31600. height: math.unit(100, "feet"),
  31601. weight: math.unit(0, "lb"),
  31602. name: "Back",
  31603. image: {
  31604. source: "./media/characters/smile/back.svg",
  31605. extra: 3143/3031,
  31606. bottom: 91/3234
  31607. }
  31608. },
  31609. head: {
  31610. height: math.unit(26.3, "feet"),
  31611. weight: math.unit(0, "lb"),
  31612. name: "Head",
  31613. image: {
  31614. source: "./media/characters/smile/head.svg"
  31615. }
  31616. },
  31617. collar: {
  31618. height: math.unit(5.3, "feet"),
  31619. weight: math.unit(0, "lb"),
  31620. name: "Collar",
  31621. image: {
  31622. source: "./media/characters/smile/collar.svg"
  31623. }
  31624. },
  31625. },
  31626. [
  31627. {
  31628. name: "Macro",
  31629. height: math.unit(100, "feet"),
  31630. default: true
  31631. },
  31632. ]
  31633. ))
  31634. characterMakers.push(() => makeCharacter(
  31635. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31636. {
  31637. dragon: {
  31638. height: math.unit(26, "feet"),
  31639. weight: math.unit(36, "tons"),
  31640. name: "Dragon",
  31641. image: {
  31642. source: "./media/characters/arimphae/dragon.svg",
  31643. extra: 1574/983,
  31644. bottom: 357/1931
  31645. }
  31646. },
  31647. drake: {
  31648. height: math.unit(9, "feet"),
  31649. weight: math.unit(1.5, "tons"),
  31650. name: "Drake",
  31651. image: {
  31652. source: "./media/characters/arimphae/drake.svg",
  31653. extra: 1120/925,
  31654. bottom: 435/1555
  31655. }
  31656. },
  31657. },
  31658. [
  31659. {
  31660. name: "Small",
  31661. height: math.unit(26*5/9, "feet")
  31662. },
  31663. {
  31664. name: "Normal",
  31665. height: math.unit(26, "feet"),
  31666. default: true
  31667. },
  31668. ]
  31669. ))
  31670. characterMakers.push(() => makeCharacter(
  31671. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31672. {
  31673. front: {
  31674. height: math.unit(8 + 9/12, "feet"),
  31675. name: "Front",
  31676. image: {
  31677. source: "./media/characters/xander/front.svg",
  31678. extra: 848/673,
  31679. bottom: 62/910
  31680. }
  31681. },
  31682. },
  31683. [
  31684. {
  31685. name: "Normal",
  31686. height: math.unit(8 + 9/12, "feet"),
  31687. default: true
  31688. },
  31689. {
  31690. name: "Gaze Grabber",
  31691. height: math.unit(13 + 8/12, "feet")
  31692. },
  31693. {
  31694. name: "Jaw Dropper",
  31695. height: math.unit(27, "feet")
  31696. },
  31697. {
  31698. name: "Show Stopper",
  31699. height: math.unit(136, "feet")
  31700. },
  31701. {
  31702. name: "Superstar",
  31703. height: math.unit(1.9e6, "miles")
  31704. },
  31705. ]
  31706. ))
  31707. characterMakers.push(() => makeCharacter(
  31708. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31709. {
  31710. side: {
  31711. height: math.unit(2100, "feet"),
  31712. name: "Side",
  31713. image: {
  31714. source: "./media/characters/osiris/side.svg",
  31715. extra: 1105/939,
  31716. bottom: 167/1272
  31717. }
  31718. },
  31719. },
  31720. [
  31721. {
  31722. name: "Macro",
  31723. height: math.unit(2100, "feet"),
  31724. default: true
  31725. },
  31726. ]
  31727. ))
  31728. characterMakers.push(() => makeCharacter(
  31729. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31730. {
  31731. front: {
  31732. height: math.unit(6 + 8/12, "feet"),
  31733. weight: math.unit(225, "lb"),
  31734. name: "Front",
  31735. image: {
  31736. source: "./media/characters/rhys-londe/front.svg",
  31737. extra: 2258/2141,
  31738. bottom: 188/2446
  31739. }
  31740. },
  31741. back: {
  31742. height: math.unit(6 + 8/12, "feet"),
  31743. weight: math.unit(225, "lb"),
  31744. name: "Back",
  31745. image: {
  31746. source: "./media/characters/rhys-londe/back.svg",
  31747. extra: 2237/2137,
  31748. bottom: 63/2300
  31749. }
  31750. },
  31751. frontNsfw: {
  31752. height: math.unit(6 + 8/12, "feet"),
  31753. weight: math.unit(225, "lb"),
  31754. name: "Front (NSFW)",
  31755. image: {
  31756. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31757. extra: 2258/2141,
  31758. bottom: 188/2446
  31759. }
  31760. },
  31761. backNsfw: {
  31762. height: math.unit(6 + 8/12, "feet"),
  31763. weight: math.unit(225, "lb"),
  31764. name: "Back (NSFW)",
  31765. image: {
  31766. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31767. extra: 2237/2137,
  31768. bottom: 63/2300
  31769. }
  31770. },
  31771. dick: {
  31772. height: math.unit(30, "inches"),
  31773. name: "Dick",
  31774. image: {
  31775. source: "./media/characters/rhys-londe/dick.svg"
  31776. }
  31777. },
  31778. maw: {
  31779. height: math.unit(1.6, "feet"),
  31780. name: "Maw",
  31781. image: {
  31782. source: "./media/characters/rhys-londe/maw.svg"
  31783. }
  31784. },
  31785. },
  31786. [
  31787. {
  31788. name: "Normal",
  31789. height: math.unit(6 + 8/12, "feet"),
  31790. default: true
  31791. },
  31792. ]
  31793. ))
  31794. characterMakers.push(() => makeCharacter(
  31795. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31796. {
  31797. front: {
  31798. height: math.unit(3 + 10/12, "feet"),
  31799. weight: math.unit(90, "lb"),
  31800. name: "Front",
  31801. image: {
  31802. source: "./media/characters/taivas-ensim/front.svg",
  31803. extra: 1327/1216,
  31804. bottom: 96/1423
  31805. }
  31806. },
  31807. back: {
  31808. height: math.unit(3 + 10/12, "feet"),
  31809. weight: math.unit(90, "lb"),
  31810. name: "Back",
  31811. image: {
  31812. source: "./media/characters/taivas-ensim/back.svg",
  31813. extra: 1355/1247,
  31814. bottom: 11/1366
  31815. }
  31816. },
  31817. frontNsfw: {
  31818. height: math.unit(3 + 10/12, "feet"),
  31819. weight: math.unit(90, "lb"),
  31820. name: "Front (NSFW)",
  31821. image: {
  31822. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31823. extra: 1327/1216,
  31824. bottom: 96/1423
  31825. }
  31826. },
  31827. backNsfw: {
  31828. height: math.unit(3 + 10/12, "feet"),
  31829. weight: math.unit(90, "lb"),
  31830. name: "Back (NSFW)",
  31831. image: {
  31832. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31833. extra: 1355/1247,
  31834. bottom: 11/1366
  31835. }
  31836. },
  31837. },
  31838. [
  31839. {
  31840. name: "Normal",
  31841. height: math.unit(3 + 10/12, "feet"),
  31842. default: true
  31843. },
  31844. ]
  31845. ))
  31846. characterMakers.push(() => makeCharacter(
  31847. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31848. {
  31849. front: {
  31850. height: math.unit(9 + 6/12, "feet"),
  31851. weight: math.unit(940, "lb"),
  31852. name: "Front",
  31853. image: {
  31854. source: "./media/characters/byliss/front.svg",
  31855. extra: 1327/1290,
  31856. bottom: 82/1409
  31857. }
  31858. },
  31859. back: {
  31860. height: math.unit(9 + 6/12, "feet"),
  31861. weight: math.unit(940, "lb"),
  31862. name: "Back",
  31863. image: {
  31864. source: "./media/characters/byliss/back.svg",
  31865. extra: 1376/1349,
  31866. bottom: 9/1385
  31867. }
  31868. },
  31869. frontNsfw: {
  31870. height: math.unit(9 + 6/12, "feet"),
  31871. weight: math.unit(940, "lb"),
  31872. name: "Front (NSFW)",
  31873. image: {
  31874. source: "./media/characters/byliss/front-nsfw.svg",
  31875. extra: 1327/1290,
  31876. bottom: 82/1409
  31877. }
  31878. },
  31879. backNsfw: {
  31880. height: math.unit(9 + 6/12, "feet"),
  31881. weight: math.unit(940, "lb"),
  31882. name: "Back (NSFW)",
  31883. image: {
  31884. source: "./media/characters/byliss/back-nsfw.svg",
  31885. extra: 1376/1349,
  31886. bottom: 9/1385
  31887. }
  31888. },
  31889. },
  31890. [
  31891. {
  31892. name: "Normal",
  31893. height: math.unit(9 + 6/12, "feet"),
  31894. default: true
  31895. },
  31896. ]
  31897. ))
  31898. characterMakers.push(() => makeCharacter(
  31899. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31900. {
  31901. front: {
  31902. height: math.unit(5 + 2/12, "feet"),
  31903. weight: math.unit(200, "lb"),
  31904. name: "Front",
  31905. image: {
  31906. source: "./media/characters/noraly/front.svg",
  31907. extra: 4985/4773,
  31908. bottom: 150/5135
  31909. }
  31910. },
  31911. full: {
  31912. height: math.unit(5 + 2/12, "feet"),
  31913. weight: math.unit(164, "lb"),
  31914. name: "Full",
  31915. image: {
  31916. source: "./media/characters/noraly/full.svg",
  31917. extra: 1114/1059,
  31918. bottom: 35/1149
  31919. }
  31920. },
  31921. fuller: {
  31922. height: math.unit(5 + 2/12, "feet"),
  31923. weight: math.unit(230, "lb"),
  31924. name: "Fuller",
  31925. image: {
  31926. source: "./media/characters/noraly/fuller.svg",
  31927. extra: 1114/1059,
  31928. bottom: 35/1149
  31929. }
  31930. },
  31931. fullest: {
  31932. height: math.unit(5 + 2/12, "feet"),
  31933. weight: math.unit(300, "lb"),
  31934. name: "Fullest",
  31935. image: {
  31936. source: "./media/characters/noraly/fullest.svg",
  31937. extra: 1114/1059,
  31938. bottom: 35/1149
  31939. }
  31940. },
  31941. },
  31942. [
  31943. {
  31944. name: "Normal",
  31945. height: math.unit(5 + 2/12, "feet"),
  31946. default: true
  31947. },
  31948. ]
  31949. ))
  31950. characterMakers.push(() => makeCharacter(
  31951. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31952. {
  31953. front: {
  31954. height: math.unit(5 + 2/12, "feet"),
  31955. weight: math.unit(210, "lb"),
  31956. name: "Front",
  31957. image: {
  31958. source: "./media/characters/pera/front.svg",
  31959. extra: 1560/1531,
  31960. bottom: 165/1725
  31961. }
  31962. },
  31963. back: {
  31964. height: math.unit(5 + 2/12, "feet"),
  31965. weight: math.unit(210, "lb"),
  31966. name: "Back",
  31967. image: {
  31968. source: "./media/characters/pera/back.svg",
  31969. extra: 1523/1493,
  31970. bottom: 152/1675
  31971. }
  31972. },
  31973. dick: {
  31974. height: math.unit(2.4, "feet"),
  31975. name: "Dick",
  31976. image: {
  31977. source: "./media/characters/pera/dick.svg"
  31978. }
  31979. },
  31980. },
  31981. [
  31982. {
  31983. name: "Normal",
  31984. height: math.unit(5 + 2/12, "feet"),
  31985. default: true
  31986. },
  31987. ]
  31988. ))
  31989. characterMakers.push(() => makeCharacter(
  31990. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31991. {
  31992. front: {
  31993. height: math.unit(12, "feet"),
  31994. weight: math.unit(3200, "lb"),
  31995. name: "Front",
  31996. image: {
  31997. source: "./media/characters/julian/front.svg",
  31998. extra: 2962/2701,
  31999. bottom: 184/3146
  32000. }
  32001. },
  32002. maw: {
  32003. height: math.unit(5.35, "feet"),
  32004. name: "Maw",
  32005. image: {
  32006. source: "./media/characters/julian/maw.svg"
  32007. }
  32008. },
  32009. paw: {
  32010. height: math.unit(3.07, "feet"),
  32011. name: "Paw",
  32012. image: {
  32013. source: "./media/characters/julian/paw.svg"
  32014. }
  32015. },
  32016. },
  32017. [
  32018. {
  32019. name: "Default",
  32020. height: math.unit(12, "feet"),
  32021. default: true
  32022. },
  32023. {
  32024. name: "Big",
  32025. height: math.unit(50, "feet")
  32026. },
  32027. {
  32028. name: "Really Big",
  32029. height: math.unit(1, "mile")
  32030. },
  32031. {
  32032. name: "Extremely Big",
  32033. height: math.unit(100, "miles")
  32034. },
  32035. {
  32036. name: "Planet Hugger",
  32037. height: math.unit(200, "megameters")
  32038. },
  32039. {
  32040. name: "Unreasonably Big",
  32041. height: math.unit(1e300, "meters")
  32042. },
  32043. ]
  32044. ))
  32045. characterMakers.push(() => makeCharacter(
  32046. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32047. {
  32048. solgooleo: {
  32049. height: math.unit(4, "meters"),
  32050. weight: math.unit(6000*1.5, "kg"),
  32051. volume: math.unit(6000, "liters"),
  32052. name: "Solgooleo",
  32053. image: {
  32054. source: "./media/characters/pi/solgooleo.svg",
  32055. extra: 388/331,
  32056. bottom: 29/417
  32057. }
  32058. },
  32059. },
  32060. [
  32061. {
  32062. name: "Normal",
  32063. height: math.unit(4, "meters"),
  32064. default: true
  32065. },
  32066. ]
  32067. ))
  32068. characterMakers.push(() => makeCharacter(
  32069. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32070. {
  32071. front: {
  32072. height: math.unit(8 + 2/12, "feet"),
  32073. weight: math.unit(4, "tons"),
  32074. name: "Front",
  32075. image: {
  32076. source: "./media/characters/shaun/front.svg",
  32077. extra: 1550/1505,
  32078. bottom: 353/1903
  32079. }
  32080. },
  32081. },
  32082. [
  32083. {
  32084. name: "Lorg",
  32085. height: math.unit(8 + 2/12, "feet"),
  32086. default: true
  32087. },
  32088. ]
  32089. ))
  32090. characterMakers.push(() => makeCharacter(
  32091. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32092. {
  32093. front: {
  32094. height: math.unit(7, "feet"),
  32095. name: "Front",
  32096. image: {
  32097. source: "./media/characters/sini/front.svg",
  32098. extra: 726/678,
  32099. bottom: 35/761
  32100. }
  32101. },
  32102. back: {
  32103. height: math.unit(7, "feet"),
  32104. name: "Back",
  32105. image: {
  32106. source: "./media/characters/sini/back.svg",
  32107. extra: 743/701,
  32108. bottom: 12/755
  32109. }
  32110. },
  32111. mawAnthro: {
  32112. height: math.unit(2.14, "feet"),
  32113. name: "Maw (Anthro)",
  32114. image: {
  32115. source: "./media/characters/sini/maw-anthro.svg"
  32116. }
  32117. },
  32118. dick: {
  32119. height: math.unit(1.45, "feet"),
  32120. name: "Dick (Anthro)",
  32121. image: {
  32122. source: "./media/characters/sini/dick-anthro.svg"
  32123. }
  32124. },
  32125. feral: {
  32126. height: math.unit(13, "feet"),
  32127. name: "Feral",
  32128. image: {
  32129. source: "./media/characters/sini/feral.svg",
  32130. extra: 814/605,
  32131. bottom: 11/825
  32132. }
  32133. },
  32134. mawFeral: {
  32135. height: math.unit(4.6, "feet"),
  32136. name: "Maw-feral",
  32137. image: {
  32138. source: "./media/characters/sini/maw-feral.svg"
  32139. }
  32140. },
  32141. footFeral: {
  32142. height: math.unit(4.2, "feet"),
  32143. name: "Foot-feral",
  32144. image: {
  32145. source: "./media/characters/sini/foot-feral.svg"
  32146. }
  32147. },
  32148. },
  32149. [
  32150. {
  32151. name: "Normal",
  32152. height: math.unit(7, "feet"),
  32153. default: true
  32154. },
  32155. ]
  32156. ))
  32157. characterMakers.push(() => makeCharacter(
  32158. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32159. {
  32160. side: {
  32161. height: math.unit(13, "meters"),
  32162. weight: math.unit(9072, "kg"),
  32163. name: "Side",
  32164. image: {
  32165. source: "./media/characters/raylldo/side.svg",
  32166. extra: 403/344,
  32167. bottom: 42/445
  32168. }
  32169. },
  32170. leaping: {
  32171. height: math.unit(12.3, "meters"),
  32172. weight: math.unit(9072, "kg"),
  32173. name: "Leaping",
  32174. image: {
  32175. source: "./media/characters/raylldo/leaping.svg",
  32176. extra: 470/249,
  32177. bottom: 13/483
  32178. }
  32179. },
  32180. flying: {
  32181. height: math.unit(18, "meters"),
  32182. weight: math.unit(9072, "kg"),
  32183. name: "Flying",
  32184. image: {
  32185. source: "./media/characters/raylldo/flying.svg"
  32186. }
  32187. },
  32188. head: {
  32189. height: math.unit(5.85, "meters"),
  32190. name: "Head",
  32191. image: {
  32192. source: "./media/characters/raylldo/head.svg"
  32193. }
  32194. },
  32195. maw: {
  32196. height: math.unit(5.32, "meters"),
  32197. name: "Maw",
  32198. image: {
  32199. source: "./media/characters/raylldo/maw.svg"
  32200. }
  32201. },
  32202. eye: {
  32203. height: math.unit(0.54, "meters"),
  32204. name: "Eye",
  32205. image: {
  32206. source: "./media/characters/raylldo/eye.svg"
  32207. }
  32208. },
  32209. },
  32210. [
  32211. {
  32212. name: "Normal",
  32213. height: math.unit(13, "meters"),
  32214. default: true
  32215. },
  32216. ]
  32217. ))
  32218. characterMakers.push(() => makeCharacter(
  32219. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32220. {
  32221. anthroFront: {
  32222. height: math.unit(9, "feet"),
  32223. weight: math.unit(600, "lb"),
  32224. name: "Anthro (Front)",
  32225. image: {
  32226. source: "./media/characters/glint/anthro-front.svg",
  32227. extra: 1097/1018,
  32228. bottom: 28/1125
  32229. }
  32230. },
  32231. anthroBack: {
  32232. height: math.unit(9, "feet"),
  32233. weight: math.unit(600, "lb"),
  32234. name: "Anthro (Back)",
  32235. image: {
  32236. source: "./media/characters/glint/anthro-back.svg",
  32237. extra: 1154/997,
  32238. bottom: 36/1190
  32239. }
  32240. },
  32241. feral: {
  32242. height: math.unit(11, "feet"),
  32243. weight: math.unit(50000, "lb"),
  32244. name: "Feral",
  32245. image: {
  32246. source: "./media/characters/glint/feral.svg",
  32247. extra: 3035/1585,
  32248. bottom: 1169/4204
  32249. }
  32250. },
  32251. dickAnthro: {
  32252. height: math.unit(0.7, "meters"),
  32253. name: "Dick (Anthro)",
  32254. image: {
  32255. source: "./media/characters/glint/dick-anthro.svg"
  32256. }
  32257. },
  32258. dickFeral: {
  32259. height: math.unit(2.65, "meters"),
  32260. name: "Dick (Feral)",
  32261. image: {
  32262. source: "./media/characters/glint/dick-feral.svg"
  32263. }
  32264. },
  32265. slitHidden: {
  32266. height: math.unit(5.85, "meters"),
  32267. name: "Slit (Hidden)",
  32268. image: {
  32269. source: "./media/characters/glint/slit-hidden.svg"
  32270. }
  32271. },
  32272. slitErect: {
  32273. height: math.unit(5.85, "meters"),
  32274. name: "Slit (Erect)",
  32275. image: {
  32276. source: "./media/characters/glint/slit-erect.svg"
  32277. }
  32278. },
  32279. mawAnthro: {
  32280. height: math.unit(0.63, "meters"),
  32281. name: "Maw (Anthro)",
  32282. image: {
  32283. source: "./media/characters/glint/maw.svg"
  32284. }
  32285. },
  32286. mawFeral: {
  32287. height: math.unit(2.89, "meters"),
  32288. name: "Maw (Feral)",
  32289. image: {
  32290. source: "./media/characters/glint/maw.svg"
  32291. }
  32292. },
  32293. },
  32294. [
  32295. {
  32296. name: "Normal",
  32297. height: math.unit(9, "feet"),
  32298. default: true
  32299. },
  32300. ]
  32301. ))
  32302. characterMakers.push(() => makeCharacter(
  32303. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32304. {
  32305. side: {
  32306. height: math.unit(15, "feet"),
  32307. weight: math.unit(5000, "kg"),
  32308. name: "Side",
  32309. image: {
  32310. source: "./media/characters/kairne/side.svg",
  32311. extra: 979/811,
  32312. bottom: 13/992
  32313. }
  32314. },
  32315. front: {
  32316. height: math.unit(15, "feet"),
  32317. weight: math.unit(5000, "kg"),
  32318. name: "Front",
  32319. image: {
  32320. source: "./media/characters/kairne/front.svg",
  32321. extra: 908/814,
  32322. bottom: 26/934
  32323. }
  32324. },
  32325. sideNsfw: {
  32326. height: math.unit(15, "feet"),
  32327. weight: math.unit(5000, "kg"),
  32328. name: "Side (NSFW)",
  32329. image: {
  32330. source: "./media/characters/kairne/side-nsfw.svg",
  32331. extra: 979/811,
  32332. bottom: 13/992
  32333. }
  32334. },
  32335. frontNsfw: {
  32336. height: math.unit(15, "feet"),
  32337. weight: math.unit(5000, "kg"),
  32338. name: "Front (NSFW)",
  32339. image: {
  32340. source: "./media/characters/kairne/front-nsfw.svg",
  32341. extra: 908/814,
  32342. bottom: 26/934
  32343. }
  32344. },
  32345. dickCaged: {
  32346. height: math.unit(0.65, "meters"),
  32347. name: "Dick-caged",
  32348. image: {
  32349. source: "./media/characters/kairne/dick-caged.svg"
  32350. }
  32351. },
  32352. dick: {
  32353. height: math.unit(0.79, "meters"),
  32354. name: "Dick",
  32355. image: {
  32356. source: "./media/characters/kairne/dick.svg"
  32357. }
  32358. },
  32359. genitals: {
  32360. height: math.unit(1.29, "meters"),
  32361. name: "Genitals",
  32362. image: {
  32363. source: "./media/characters/kairne/genitals.svg"
  32364. }
  32365. },
  32366. maw: {
  32367. height: math.unit(1.73, "meters"),
  32368. name: "Maw",
  32369. image: {
  32370. source: "./media/characters/kairne/maw.svg"
  32371. }
  32372. },
  32373. },
  32374. [
  32375. {
  32376. name: "Normal",
  32377. height: math.unit(15, "feet"),
  32378. default: true
  32379. },
  32380. ]
  32381. ))
  32382. characterMakers.push(() => makeCharacter(
  32383. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32384. {
  32385. front: {
  32386. height: math.unit(5 + 8/12, "feet"),
  32387. weight: math.unit(139, "lb"),
  32388. name: "Front",
  32389. image: {
  32390. source: "./media/characters/biscuit-jackal/front.svg",
  32391. extra: 2106/1961,
  32392. bottom: 58/2164
  32393. }
  32394. },
  32395. back: {
  32396. height: math.unit(5 + 8/12, "feet"),
  32397. weight: math.unit(139, "lb"),
  32398. name: "Back",
  32399. image: {
  32400. source: "./media/characters/biscuit-jackal/back.svg",
  32401. extra: 2132/1976,
  32402. bottom: 57/2189
  32403. }
  32404. },
  32405. werejackal: {
  32406. height: math.unit(6 + 3/12, "feet"),
  32407. weight: math.unit(188, "lb"),
  32408. name: "Werejackal",
  32409. image: {
  32410. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32411. extra: 2373/2178,
  32412. bottom: 53/2426
  32413. }
  32414. },
  32415. },
  32416. [
  32417. {
  32418. name: "Normal",
  32419. height: math.unit(5 + 8/12, "feet"),
  32420. default: true
  32421. },
  32422. ]
  32423. ))
  32424. characterMakers.push(() => makeCharacter(
  32425. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32426. {
  32427. front: {
  32428. height: math.unit(140, "cm"),
  32429. weight: math.unit(45, "kg"),
  32430. name: "Front",
  32431. image: {
  32432. source: "./media/characters/tayra-white/front.svg",
  32433. extra: 2229/2192,
  32434. bottom: 75/2304
  32435. }
  32436. },
  32437. },
  32438. [
  32439. {
  32440. name: "Normal",
  32441. height: math.unit(140, "cm"),
  32442. default: true
  32443. },
  32444. ]
  32445. ))
  32446. characterMakers.push(() => makeCharacter(
  32447. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32448. {
  32449. front: {
  32450. height: math.unit(4 + 5/12, "feet"),
  32451. name: "Front",
  32452. image: {
  32453. source: "./media/characters/scoop/front.svg",
  32454. extra: 1257/1136,
  32455. bottom: 69/1326
  32456. }
  32457. },
  32458. back: {
  32459. height: math.unit(4 + 5/12, "feet"),
  32460. name: "Back",
  32461. image: {
  32462. source: "./media/characters/scoop/back.svg",
  32463. extra: 1321/1152,
  32464. bottom: 32/1353
  32465. }
  32466. },
  32467. maw: {
  32468. height: math.unit(0.68, "feet"),
  32469. name: "Maw",
  32470. image: {
  32471. source: "./media/characters/scoop/maw.svg"
  32472. }
  32473. },
  32474. },
  32475. [
  32476. {
  32477. name: "Really Small",
  32478. height: math.unit(1, "mm")
  32479. },
  32480. {
  32481. name: "Micro",
  32482. height: math.unit(1, "inch")
  32483. },
  32484. {
  32485. name: "Normal",
  32486. height: math.unit(4 + 5/12, "feet"),
  32487. default: true
  32488. },
  32489. {
  32490. name: "Macro",
  32491. height: math.unit(200, "feet")
  32492. },
  32493. {
  32494. name: "Megamacro",
  32495. height: math.unit(3240, "feet")
  32496. },
  32497. {
  32498. name: "Teramacro",
  32499. height: math.unit(2500, "miles")
  32500. },
  32501. ]
  32502. ))
  32503. characterMakers.push(() => makeCharacter(
  32504. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32505. {
  32506. front: {
  32507. height: math.unit(15 + 7/12, "feet"),
  32508. name: "Front",
  32509. image: {
  32510. source: "./media/characters/saphinara/front.svg",
  32511. extra: 604/546,
  32512. bottom: 19/623
  32513. }
  32514. },
  32515. side: {
  32516. height: math.unit(15 + 7/12, "feet"),
  32517. name: "Side",
  32518. image: {
  32519. source: "./media/characters/saphinara/side.svg",
  32520. extra: 605/547,
  32521. bottom: 6/611
  32522. }
  32523. },
  32524. back: {
  32525. height: math.unit(15 + 7/12, "feet"),
  32526. name: "Back",
  32527. image: {
  32528. source: "./media/characters/saphinara/back.svg",
  32529. extra: 591/531,
  32530. bottom: 13/604
  32531. }
  32532. },
  32533. frontTail: {
  32534. height: math.unit(15 + 7/12, "feet"),
  32535. name: "Front (Full Tail)",
  32536. image: {
  32537. source: "./media/characters/saphinara/front-tail.svg",
  32538. extra: 748/547,
  32539. bottom: 66/814
  32540. }
  32541. },
  32542. },
  32543. [
  32544. {
  32545. name: "Normal",
  32546. height: math.unit(15 + 7/12, "feet"),
  32547. default: true
  32548. },
  32549. {
  32550. name: "Angry",
  32551. height: math.unit(30 + 6/12, "feet")
  32552. },
  32553. {
  32554. name: "Enraged",
  32555. height: math.unit(102 + 1/12, "feet")
  32556. },
  32557. ]
  32558. ))
  32559. characterMakers.push(() => makeCharacter(
  32560. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32561. {
  32562. front: {
  32563. height: math.unit(6 + 8/12, "feet"),
  32564. weight: math.unit(300, "lb"),
  32565. name: "Front",
  32566. image: {
  32567. source: "./media/characters/jrain/front.svg",
  32568. extra: 3039/2865,
  32569. bottom: 399/3438
  32570. }
  32571. },
  32572. back: {
  32573. height: math.unit(6 + 8/12, "feet"),
  32574. weight: math.unit(300, "lb"),
  32575. name: "Back",
  32576. image: {
  32577. source: "./media/characters/jrain/back.svg",
  32578. extra: 3089/2938,
  32579. bottom: 172/3261
  32580. }
  32581. },
  32582. head: {
  32583. height: math.unit(2.14, "feet"),
  32584. name: "Head",
  32585. image: {
  32586. source: "./media/characters/jrain/head.svg"
  32587. }
  32588. },
  32589. maw: {
  32590. height: math.unit(1.77, "feet"),
  32591. name: "Maw",
  32592. image: {
  32593. source: "./media/characters/jrain/maw.svg"
  32594. }
  32595. },
  32596. leftHand: {
  32597. height: math.unit(1.1, "feet"),
  32598. name: "Left Hand",
  32599. image: {
  32600. source: "./media/characters/jrain/left-hand.svg"
  32601. }
  32602. },
  32603. rightHand: {
  32604. height: math.unit(1.1, "feet"),
  32605. name: "Right Hand",
  32606. image: {
  32607. source: "./media/characters/jrain/right-hand.svg"
  32608. }
  32609. },
  32610. eye: {
  32611. height: math.unit(0.35, "feet"),
  32612. name: "Eye",
  32613. image: {
  32614. source: "./media/characters/jrain/eye.svg"
  32615. }
  32616. },
  32617. },
  32618. [
  32619. {
  32620. name: "Normal",
  32621. height: math.unit(6 + 8/12, "feet"),
  32622. default: true
  32623. },
  32624. {
  32625. name: "Casually Large",
  32626. height: math.unit(25, "feet")
  32627. },
  32628. {
  32629. name: "Giant",
  32630. height: math.unit(100, "feet")
  32631. },
  32632. {
  32633. name: "Kaiju",
  32634. height: math.unit(300, "feet")
  32635. },
  32636. ]
  32637. ))
  32638. characterMakers.push(() => makeCharacter(
  32639. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32640. {
  32641. dragon: {
  32642. height: math.unit(5, "meters"),
  32643. name: "Dragon",
  32644. image: {
  32645. source: "./media/characters/sabrina/dragon.svg",
  32646. extra: 3670 / 2365,
  32647. bottom: 333 / 4003
  32648. }
  32649. },
  32650. gryphon: {
  32651. height: math.unit(3, "meters"),
  32652. name: "Gryphon",
  32653. image: {
  32654. source: "./media/characters/sabrina/gryphon.svg",
  32655. extra: 1576 / 945,
  32656. bottom: 71 / 1647
  32657. }
  32658. },
  32659. snake: {
  32660. height: math.unit(12, "meters"),
  32661. name: "Snake",
  32662. image: {
  32663. source: "./media/characters/sabrina/snake.svg",
  32664. extra: 1758 / 1320,
  32665. bottom: 186 / 1944
  32666. }
  32667. },
  32668. collar: {
  32669. height: math.unit(1.86, "meters"),
  32670. name: "Collar",
  32671. image: {
  32672. source: "./media/characters/sabrina/collar.svg"
  32673. }
  32674. },
  32675. eye: {
  32676. height: math.unit(0.53, "meters"),
  32677. name: "Eye",
  32678. image: {
  32679. source: "./media/characters/sabrina/eye.svg"
  32680. }
  32681. },
  32682. foot: {
  32683. height: math.unit(1.86, "meters"),
  32684. name: "Foot",
  32685. image: {
  32686. source: "./media/characters/sabrina/foot.svg"
  32687. }
  32688. },
  32689. hand: {
  32690. height: math.unit(1.32, "meters"),
  32691. name: "Hand",
  32692. image: {
  32693. source: "./media/characters/sabrina/hand.svg"
  32694. }
  32695. },
  32696. head: {
  32697. height: math.unit(2.44, "meters"),
  32698. name: "Head",
  32699. image: {
  32700. source: "./media/characters/sabrina/head.svg"
  32701. }
  32702. },
  32703. headAngry: {
  32704. height: math.unit(2.44, "meters"),
  32705. name: "Head (Angry))",
  32706. image: {
  32707. source: "./media/characters/sabrina/head-angry.svg"
  32708. }
  32709. },
  32710. maw: {
  32711. height: math.unit(1.65, "meters"),
  32712. name: "Maw",
  32713. image: {
  32714. source: "./media/characters/sabrina/maw.svg"
  32715. }
  32716. },
  32717. spikes: {
  32718. height: math.unit(1.69, "meters"),
  32719. name: "Spikes",
  32720. image: {
  32721. source: "./media/characters/sabrina/spikes.svg"
  32722. }
  32723. },
  32724. stomach: {
  32725. height: math.unit(1.15, "meters"),
  32726. name: "Stomach",
  32727. image: {
  32728. source: "./media/characters/sabrina/stomach.svg"
  32729. }
  32730. },
  32731. tongue: {
  32732. height: math.unit(1.27, "meters"),
  32733. name: "Tongue",
  32734. image: {
  32735. source: "./media/characters/sabrina/tongue.svg"
  32736. }
  32737. },
  32738. wingDorsal: {
  32739. height: math.unit(4.85, "meters"),
  32740. name: "Wing (Dorsal)",
  32741. image: {
  32742. source: "./media/characters/sabrina/wing-dorsal.svg"
  32743. }
  32744. },
  32745. wingVentral: {
  32746. height: math.unit(4.85, "meters"),
  32747. name: "Wing (Ventral)",
  32748. image: {
  32749. source: "./media/characters/sabrina/wing-ventral.svg"
  32750. }
  32751. },
  32752. },
  32753. [
  32754. {
  32755. name: "Normal",
  32756. height: math.unit(5, "meters"),
  32757. default: true
  32758. },
  32759. ]
  32760. ))
  32761. characterMakers.push(() => makeCharacter(
  32762. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32763. {
  32764. frontMaid: {
  32765. height: math.unit(5 + 5/12, "feet"),
  32766. weight: math.unit(130, "lb"),
  32767. name: "Front (Maid)",
  32768. image: {
  32769. source: "./media/characters/midnight-tales/front-maid.svg",
  32770. extra: 489/454,
  32771. bottom: 61/550
  32772. }
  32773. },
  32774. frontFormal: {
  32775. height: math.unit(5 + 5/12, "feet"),
  32776. weight: math.unit(130, "lb"),
  32777. name: "Front (Formal)",
  32778. image: {
  32779. source: "./media/characters/midnight-tales/front-formal.svg",
  32780. extra: 489/454,
  32781. bottom: 61/550
  32782. }
  32783. },
  32784. back: {
  32785. height: math.unit(5 + 5/12, "feet"),
  32786. weight: math.unit(130, "lb"),
  32787. name: "Back",
  32788. image: {
  32789. source: "./media/characters/midnight-tales/back.svg",
  32790. extra: 498/456,
  32791. bottom: 33/531
  32792. }
  32793. },
  32794. frontBeast: {
  32795. height: math.unit(40, "feet"),
  32796. weight: math.unit(64000, "lb"),
  32797. name: "Front (Beast)",
  32798. image: {
  32799. source: "./media/characters/midnight-tales/front-beast.svg",
  32800. extra: 927/860,
  32801. bottom: 53/980
  32802. }
  32803. },
  32804. backBeast: {
  32805. height: math.unit(40, "feet"),
  32806. weight: math.unit(64000, "lb"),
  32807. name: "Back (Beast)",
  32808. image: {
  32809. source: "./media/characters/midnight-tales/back-beast.svg",
  32810. extra: 929/855,
  32811. bottom: 16/945
  32812. }
  32813. },
  32814. footBeast: {
  32815. height: math.unit(6.7, "feet"),
  32816. name: "Foot (Beast)",
  32817. image: {
  32818. source: "./media/characters/midnight-tales/foot-beast.svg"
  32819. }
  32820. },
  32821. headBeast: {
  32822. height: math.unit(8, "feet"),
  32823. name: "Head (Beast)",
  32824. image: {
  32825. source: "./media/characters/midnight-tales/head-beast.svg"
  32826. }
  32827. },
  32828. },
  32829. [
  32830. {
  32831. name: "Normal",
  32832. height: math.unit(5 + 5 / 12, "feet"),
  32833. default: true
  32834. },
  32835. {
  32836. name: "Macro",
  32837. height: math.unit(25, "feet")
  32838. },
  32839. ]
  32840. ))
  32841. characterMakers.push(() => makeCharacter(
  32842. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32843. {
  32844. front: {
  32845. height: math.unit(5 + 10/12, "feet"),
  32846. name: "Front",
  32847. image: {
  32848. source: "./media/characters/argon/front.svg",
  32849. extra: 2009/1935,
  32850. bottom: 118/2127
  32851. }
  32852. },
  32853. back: {
  32854. height: math.unit(5 + 10/12, "feet"),
  32855. name: "Back",
  32856. image: {
  32857. source: "./media/characters/argon/back.svg",
  32858. extra: 2047/1992,
  32859. bottom: 20/2067
  32860. }
  32861. },
  32862. frontDressed: {
  32863. height: math.unit(5 + 10/12, "feet"),
  32864. name: "Front (Dressed)",
  32865. image: {
  32866. source: "./media/characters/argon/front-dressed.svg",
  32867. extra: 2009/1935,
  32868. bottom: 118/2127
  32869. }
  32870. },
  32871. },
  32872. [
  32873. {
  32874. name: "Normal",
  32875. height: math.unit(5 + 10/12, "feet"),
  32876. default: true
  32877. },
  32878. ]
  32879. ))
  32880. characterMakers.push(() => makeCharacter(
  32881. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32882. {
  32883. front: {
  32884. height: math.unit(8 + 6/12, "feet"),
  32885. weight: math.unit(1150, "lb"),
  32886. name: "Front",
  32887. image: {
  32888. source: "./media/characters/kichi/front.svg",
  32889. extra: 1267/1164,
  32890. bottom: 61/1328
  32891. }
  32892. },
  32893. back: {
  32894. height: math.unit(8 + 6/12, "feet"),
  32895. weight: math.unit(1150, "lb"),
  32896. name: "Back",
  32897. image: {
  32898. source: "./media/characters/kichi/back.svg",
  32899. extra: 1273/1166,
  32900. bottom: 33/1306
  32901. }
  32902. },
  32903. },
  32904. [
  32905. {
  32906. name: "Normal",
  32907. height: math.unit(8 + 6/12, "feet"),
  32908. default: true
  32909. },
  32910. ]
  32911. ))
  32912. characterMakers.push(() => makeCharacter(
  32913. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32914. {
  32915. front: {
  32916. height: math.unit(6, "feet"),
  32917. weight: math.unit(210, "lb"),
  32918. name: "Front",
  32919. image: {
  32920. source: "./media/characters/manetel-greyscale/front.svg",
  32921. extra: 350/312,
  32922. bottom: 8/358
  32923. }
  32924. },
  32925. },
  32926. [
  32927. {
  32928. name: "Micro",
  32929. height: math.unit(2, "inches")
  32930. },
  32931. {
  32932. name: "Normal",
  32933. height: math.unit(6, "feet"),
  32934. default: true
  32935. },
  32936. {
  32937. name: "Minimacro",
  32938. height: math.unit(17, "feet")
  32939. },
  32940. {
  32941. name: "Macro",
  32942. height: math.unit(117, "feet")
  32943. },
  32944. ]
  32945. ))
  32946. characterMakers.push(() => makeCharacter(
  32947. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32948. {
  32949. side: {
  32950. height: math.unit(5 + 1/12, "feet"),
  32951. weight: math.unit(418, "lb"),
  32952. name: "Side",
  32953. image: {
  32954. source: "./media/characters/softpurr/side.svg",
  32955. extra: 1993/1945,
  32956. bottom: 134/2127
  32957. }
  32958. },
  32959. front: {
  32960. height: math.unit(5 + 1/12, "feet"),
  32961. weight: math.unit(418, "lb"),
  32962. name: "Front",
  32963. image: {
  32964. source: "./media/characters/softpurr/front.svg",
  32965. extra: 1950/1856,
  32966. bottom: 174/2124
  32967. }
  32968. },
  32969. paw: {
  32970. height: math.unit(1, "feet"),
  32971. name: "Paw",
  32972. image: {
  32973. source: "./media/characters/softpurr/paw.svg"
  32974. }
  32975. },
  32976. },
  32977. [
  32978. {
  32979. name: "Normal",
  32980. height: math.unit(5 + 1/12, "feet"),
  32981. default: true
  32982. },
  32983. ]
  32984. ))
  32985. characterMakers.push(() => makeCharacter(
  32986. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32987. {
  32988. front: {
  32989. height: math.unit(260, "meters"),
  32990. name: "Front",
  32991. image: {
  32992. source: "./media/characters/anahita/front.svg",
  32993. extra: 665/635,
  32994. bottom: 89/754
  32995. }
  32996. },
  32997. },
  32998. [
  32999. {
  33000. name: "Macro",
  33001. height: math.unit(260, "meters"),
  33002. default: true
  33003. },
  33004. ]
  33005. ))
  33006. characterMakers.push(() => makeCharacter(
  33007. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33008. {
  33009. front: {
  33010. height: math.unit(4 + 10/12, "feet"),
  33011. weight: math.unit(160, "lb"),
  33012. name: "Front",
  33013. image: {
  33014. source: "./media/characters/chip-mouse/front.svg",
  33015. extra: 3528/3408,
  33016. bottom: 0/3528
  33017. }
  33018. },
  33019. frontNsfw: {
  33020. height: math.unit(4 + 10/12, "feet"),
  33021. weight: math.unit(160, "lb"),
  33022. name: "Front (NSFW)",
  33023. image: {
  33024. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33025. extra: 3528/3408,
  33026. bottom: 0/3528
  33027. }
  33028. },
  33029. },
  33030. [
  33031. {
  33032. name: "Normal",
  33033. height: math.unit(4 + 10/12, "feet"),
  33034. default: true
  33035. },
  33036. ]
  33037. ))
  33038. characterMakers.push(() => makeCharacter(
  33039. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33040. {
  33041. side: {
  33042. height: math.unit(10, "feet"),
  33043. weight: math.unit(14000, "lb"),
  33044. name: "Side",
  33045. image: {
  33046. source: "./media/characters/kremm/side.svg",
  33047. extra: 1390/1053,
  33048. bottom: 90/1480
  33049. }
  33050. },
  33051. gut: {
  33052. height: math.unit(5.8, "feet"),
  33053. name: "Gut",
  33054. image: {
  33055. source: "./media/characters/kremm/gut.svg"
  33056. }
  33057. },
  33058. ass: {
  33059. height: math.unit(6.1, "feet"),
  33060. name: "Ass",
  33061. image: {
  33062. source: "./media/characters/kremm/ass.svg"
  33063. }
  33064. },
  33065. jaws: {
  33066. height: math.unit(2.2, "feet"),
  33067. name: "Jaws",
  33068. image: {
  33069. source: "./media/characters/kremm/jaws.svg"
  33070. }
  33071. },
  33072. dick: {
  33073. height: math.unit(4.26, "feet"),
  33074. name: "Dick",
  33075. image: {
  33076. source: "./media/characters/kremm/dick.svg"
  33077. }
  33078. },
  33079. },
  33080. [
  33081. {
  33082. name: "Normal",
  33083. height: math.unit(10, "feet"),
  33084. default: true
  33085. },
  33086. ]
  33087. ))
  33088. characterMakers.push(() => makeCharacter(
  33089. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33090. {
  33091. front: {
  33092. height: math.unit(30, "stories"),
  33093. name: "Front",
  33094. image: {
  33095. source: "./media/characters/kai/front.svg",
  33096. extra: 1892/1718,
  33097. bottom: 162/2054
  33098. }
  33099. },
  33100. },
  33101. [
  33102. {
  33103. name: "Macro",
  33104. height: math.unit(30, "stories"),
  33105. default: true
  33106. },
  33107. ]
  33108. ))
  33109. characterMakers.push(() => makeCharacter(
  33110. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33111. {
  33112. front: {
  33113. height: math.unit(6 + 4/12, "feet"),
  33114. weight: math.unit(145, "lb"),
  33115. name: "Front",
  33116. image: {
  33117. source: "./media/characters/sykes/front.svg",
  33118. extra: 1321 / 1187,
  33119. bottom: 66 / 1387
  33120. }
  33121. },
  33122. back: {
  33123. height: math.unit(6 + 4/12, "feet"),
  33124. weight: math.unit(145, "lb"),
  33125. name: "Back",
  33126. image: {
  33127. source: "./media/characters/sykes/back.svg",
  33128. extra: 1326/1181,
  33129. bottom: 31/1357
  33130. }
  33131. },
  33132. handBack: {
  33133. height: math.unit(0.9, "feet"),
  33134. name: "Hand (Back)",
  33135. image: {
  33136. source: "./media/characters/sykes/hand-back.svg"
  33137. }
  33138. },
  33139. handFront: {
  33140. height: math.unit(0.839, "feet"),
  33141. name: "Hand (Front)",
  33142. image: {
  33143. source: "./media/characters/sykes/hand-front.svg"
  33144. }
  33145. },
  33146. leftFoot: {
  33147. height: math.unit(1.2, "feet"),
  33148. name: "Foot (Left)",
  33149. image: {
  33150. source: "./media/characters/sykes/foot-left.svg"
  33151. }
  33152. },
  33153. rightFoot: {
  33154. height: math.unit(1.2, "feet"),
  33155. name: "Foot (Right)",
  33156. image: {
  33157. source: "./media/characters/sykes/foot-right.svg"
  33158. }
  33159. },
  33160. maw: {
  33161. height: math.unit(1.93, "feet"),
  33162. name: "Maw",
  33163. image: {
  33164. source: "./media/characters/sykes/maw.svg"
  33165. }
  33166. },
  33167. teeth: {
  33168. height: math.unit(0.51, "feet"),
  33169. name: "Teeth",
  33170. image: {
  33171. source: "./media/characters/sykes/teeth.svg"
  33172. }
  33173. },
  33174. tongue: {
  33175. height: math.unit(2.13, "feet"),
  33176. name: "Tongue",
  33177. image: {
  33178. source: "./media/characters/sykes/tongue.svg"
  33179. }
  33180. },
  33181. uvula: {
  33182. height: math.unit(0.16, "feet"),
  33183. name: "Uvula",
  33184. image: {
  33185. source: "./media/characters/sykes/uvula.svg"
  33186. }
  33187. },
  33188. collar: {
  33189. height: math.unit(0.287, "feet"),
  33190. name: "Collar",
  33191. image: {
  33192. source: "./media/characters/sykes/collar.svg"
  33193. }
  33194. },
  33195. },
  33196. [
  33197. {
  33198. name: "Shrunken",
  33199. height: math.unit(5, "inches")
  33200. },
  33201. {
  33202. name: "Normal",
  33203. height: math.unit(6 + 4 / 12, "feet"),
  33204. default: true
  33205. },
  33206. {
  33207. name: "Big",
  33208. height: math.unit(15, "feet")
  33209. },
  33210. ]
  33211. ))
  33212. characterMakers.push(() => makeCharacter(
  33213. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33214. {
  33215. front: {
  33216. height: math.unit(5 + 8/12, "feet"),
  33217. weight: math.unit(190, "lb"),
  33218. name: "Front",
  33219. image: {
  33220. source: "./media/characters/oven-otter/front.svg",
  33221. extra: 1809/1740,
  33222. bottom: 181/1990
  33223. }
  33224. },
  33225. back: {
  33226. height: math.unit(5 + 8/12, "feet"),
  33227. weight: math.unit(190, "lb"),
  33228. name: "Back",
  33229. image: {
  33230. source: "./media/characters/oven-otter/back.svg",
  33231. extra: 1709/1635,
  33232. bottom: 118/1827
  33233. }
  33234. },
  33235. hand: {
  33236. height: math.unit(1.07, "feet"),
  33237. name: "Hand",
  33238. image: {
  33239. source: "./media/characters/oven-otter/hand.svg"
  33240. }
  33241. },
  33242. beans: {
  33243. height: math.unit(1.74, "feet"),
  33244. name: "Beans",
  33245. image: {
  33246. source: "./media/characters/oven-otter/beans.svg"
  33247. }
  33248. },
  33249. },
  33250. [
  33251. {
  33252. name: "Micro",
  33253. height: math.unit(0.5, "inches")
  33254. },
  33255. {
  33256. name: "Normal",
  33257. height: math.unit(5 + 8/12, "feet"),
  33258. default: true
  33259. },
  33260. {
  33261. name: "Macro",
  33262. height: math.unit(250, "feet")
  33263. },
  33264. {
  33265. name: "Really High",
  33266. height: math.unit(420, "feet")
  33267. },
  33268. ]
  33269. ))
  33270. characterMakers.push(() => makeCharacter(
  33271. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33272. {
  33273. front: {
  33274. height: math.unit(5, "meters"),
  33275. weight: math.unit(292000000000000, "kg"),
  33276. name: "Front",
  33277. image: {
  33278. source: "./media/characters/devourer/front.svg",
  33279. extra: 1800/1733,
  33280. bottom: 211/2011
  33281. }
  33282. },
  33283. maw: {
  33284. height: math.unit(1.1, "meter"),
  33285. name: "Maw",
  33286. image: {
  33287. source: "./media/characters/devourer/maw.svg"
  33288. }
  33289. },
  33290. },
  33291. [
  33292. {
  33293. name: "Small",
  33294. height: math.unit(3, "meters")
  33295. },
  33296. {
  33297. name: "Large",
  33298. height: math.unit(5, "meters"),
  33299. default: true
  33300. },
  33301. ]
  33302. ))
  33303. characterMakers.push(() => makeCharacter(
  33304. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33305. {
  33306. front: {
  33307. height: math.unit(6, "feet"),
  33308. weight: math.unit(400, "lb"),
  33309. name: "Front",
  33310. image: {
  33311. source: "./media/characters/ellarby/front.svg",
  33312. extra: 1909/1763,
  33313. bottom: 80/1989
  33314. }
  33315. },
  33316. back: {
  33317. height: math.unit(6, "feet"),
  33318. weight: math.unit(400, "lb"),
  33319. name: "Back",
  33320. image: {
  33321. source: "./media/characters/ellarby/back.svg",
  33322. extra: 1914/1784,
  33323. bottom: 172/2086
  33324. }
  33325. },
  33326. },
  33327. [
  33328. {
  33329. name: "Mischief",
  33330. height: math.unit(18, "inches")
  33331. },
  33332. {
  33333. name: "Trouble",
  33334. height: math.unit(12, "feet")
  33335. },
  33336. {
  33337. name: "Havoc",
  33338. height: math.unit(200, "feet"),
  33339. default: true
  33340. },
  33341. {
  33342. name: "Pandemonium",
  33343. height: math.unit(1, "mile")
  33344. },
  33345. {
  33346. name: "Catastrophe",
  33347. height: math.unit(100, "miles")
  33348. },
  33349. ]
  33350. ))
  33351. characterMakers.push(() => makeCharacter(
  33352. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33353. {
  33354. front: {
  33355. height: math.unit(4.7, "meters"),
  33356. weight: math.unit(6500, "kg"),
  33357. name: "Front",
  33358. image: {
  33359. source: "./media/characters/vex/front.svg",
  33360. extra: 1288/1140,
  33361. bottom: 100/1388
  33362. }
  33363. },
  33364. },
  33365. [
  33366. {
  33367. name: "Normal",
  33368. height: math.unit(4.7, "meters"),
  33369. default: true
  33370. },
  33371. ]
  33372. ))
  33373. characterMakers.push(() => makeCharacter(
  33374. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33375. {
  33376. normal: {
  33377. height: math.unit(6, "feet"),
  33378. weight: math.unit(350, "lb"),
  33379. name: "Normal",
  33380. image: {
  33381. source: "./media/characters/teshy/normal.svg",
  33382. extra: 1795/1735,
  33383. bottom: 16/1811
  33384. }
  33385. },
  33386. monsterFront: {
  33387. height: math.unit(12, "feet"),
  33388. weight: math.unit(4700, "lb"),
  33389. name: "Monster (Front)",
  33390. image: {
  33391. source: "./media/characters/teshy/monster-front.svg",
  33392. extra: 2042/2034,
  33393. bottom: 128/2170
  33394. }
  33395. },
  33396. monsterSide: {
  33397. height: math.unit(12, "feet"),
  33398. weight: math.unit(4700, "lb"),
  33399. name: "Monster (Side)",
  33400. image: {
  33401. source: "./media/characters/teshy/monster-side.svg",
  33402. extra: 2067/2056,
  33403. bottom: 70/2137
  33404. }
  33405. },
  33406. monsterBack: {
  33407. height: math.unit(12, "feet"),
  33408. weight: math.unit(4700, "lb"),
  33409. name: "Monster (Back)",
  33410. image: {
  33411. source: "./media/characters/teshy/monster-back.svg",
  33412. extra: 1921/1914,
  33413. bottom: 171/2092
  33414. }
  33415. },
  33416. },
  33417. [
  33418. {
  33419. name: "Normal",
  33420. height: math.unit(6, "feet"),
  33421. default: true
  33422. },
  33423. ]
  33424. ))
  33425. characterMakers.push(() => makeCharacter(
  33426. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33427. {
  33428. front: {
  33429. height: math.unit(6, "feet"),
  33430. name: "Front",
  33431. image: {
  33432. source: "./media/characters/ramey/front.svg",
  33433. extra: 790/787,
  33434. bottom: 27/817
  33435. }
  33436. },
  33437. },
  33438. [
  33439. {
  33440. name: "Normal",
  33441. height: math.unit(6, "feet"),
  33442. default: true
  33443. },
  33444. ]
  33445. ))
  33446. characterMakers.push(() => makeCharacter(
  33447. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33448. {
  33449. front: {
  33450. height: math.unit(5 + 5/12, "feet"),
  33451. weight: math.unit(120, "lb"),
  33452. name: "Front",
  33453. image: {
  33454. source: "./media/characters/phirae/front.svg",
  33455. extra: 2491/2436,
  33456. bottom: 38/2529
  33457. }
  33458. },
  33459. },
  33460. [
  33461. {
  33462. name: "Normal",
  33463. height: math.unit(5 + 5/12, "feet"),
  33464. default: true
  33465. },
  33466. ]
  33467. ))
  33468. characterMakers.push(() => makeCharacter(
  33469. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33470. {
  33471. front: {
  33472. height: math.unit(6, "feet"),
  33473. weight: math.unit(150, "lb"),
  33474. name: "Front",
  33475. image: {
  33476. source: "./media/characters/stagglas/front.svg",
  33477. extra: 962/882,
  33478. bottom: 53/1015
  33479. }
  33480. },
  33481. },
  33482. [
  33483. {
  33484. name: "Normal",
  33485. height: math.unit(5 + 3/12, "feet"),
  33486. default: true
  33487. },
  33488. ]
  33489. ))
  33490. characterMakers.push(() => makeCharacter(
  33491. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33492. {
  33493. front: {
  33494. height: math.unit(5 + 4/12, "feet"),
  33495. weight: math.unit(145, "lb"),
  33496. name: "Front",
  33497. image: {
  33498. source: "./media/characters/starra/front.svg",
  33499. extra: 1790/1691,
  33500. bottom: 91/1881
  33501. }
  33502. },
  33503. },
  33504. [
  33505. {
  33506. name: "Normal",
  33507. height: math.unit(5 + 4/12, "feet"),
  33508. default: true
  33509. },
  33510. ]
  33511. ))
  33512. characterMakers.push(() => makeCharacter(
  33513. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33514. {
  33515. front: {
  33516. height: math.unit(2.2, "meters"),
  33517. name: "Front",
  33518. image: {
  33519. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33520. extra: 1194/1005,
  33521. bottom: 25/1219
  33522. }
  33523. },
  33524. },
  33525. [
  33526. {
  33527. name: "Normal",
  33528. height: math.unit(2.2, "meters"),
  33529. default: true
  33530. },
  33531. ]
  33532. ))
  33533. characterMakers.push(() => makeCharacter(
  33534. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33535. {
  33536. side: {
  33537. height: math.unit(8 + 2/12, "feet"),
  33538. weight: math.unit(1240, "lb"),
  33539. name: "Side",
  33540. image: {
  33541. source: "./media/characters/mika-valentine/side.svg",
  33542. extra: 2670/2501,
  33543. bottom: 250/2920
  33544. }
  33545. },
  33546. },
  33547. [
  33548. {
  33549. name: "Normal",
  33550. height: math.unit(8 + 2/12, "feet"),
  33551. default: true
  33552. },
  33553. ]
  33554. ))
  33555. characterMakers.push(() => makeCharacter(
  33556. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33557. {
  33558. front: {
  33559. height: math.unit(7 + 2/12, "feet"),
  33560. name: "Front",
  33561. image: {
  33562. source: "./media/characters/xoltol/front.svg",
  33563. extra: 2212/2124,
  33564. bottom: 84/2296
  33565. }
  33566. },
  33567. side: {
  33568. height: math.unit(7 + 2/12, "feet"),
  33569. name: "Side",
  33570. image: {
  33571. source: "./media/characters/xoltol/side.svg",
  33572. extra: 2273/2197,
  33573. bottom: 26/2299
  33574. }
  33575. },
  33576. hand: {
  33577. height: math.unit(2.5, "feet"),
  33578. name: "Hand",
  33579. image: {
  33580. source: "./media/characters/xoltol/hand.svg"
  33581. }
  33582. },
  33583. },
  33584. [
  33585. {
  33586. name: "Small-ish",
  33587. height: math.unit(5 + 11/12, "feet")
  33588. },
  33589. {
  33590. name: "Normal",
  33591. height: math.unit(7 + 2/12, "feet")
  33592. },
  33593. {
  33594. name: "\"Macro\"",
  33595. height: math.unit(14 + 9/12, "feet"),
  33596. default: true
  33597. },
  33598. {
  33599. name: "Alternate Height",
  33600. height: math.unit(20, "feet")
  33601. },
  33602. {
  33603. name: "Actually Macro",
  33604. height: math.unit(100, "feet")
  33605. },
  33606. ]
  33607. ))
  33608. characterMakers.push(() => makeCharacter(
  33609. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33610. {
  33611. front: {
  33612. height: math.unit(5 + 2/12, "feet"),
  33613. name: "Front",
  33614. image: {
  33615. source: "./media/characters/kotetsu-redwood/front.svg",
  33616. extra: 1053/942,
  33617. bottom: 60/1113
  33618. }
  33619. },
  33620. },
  33621. [
  33622. {
  33623. name: "Normal",
  33624. height: math.unit(5 + 2/12, "feet"),
  33625. default: true
  33626. },
  33627. ]
  33628. ))
  33629. characterMakers.push(() => makeCharacter(
  33630. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33631. {
  33632. front: {
  33633. height: math.unit(2.4, "meters"),
  33634. weight: math.unit(125, "kg"),
  33635. name: "Front",
  33636. image: {
  33637. source: "./media/characters/lilith/front.svg",
  33638. extra: 1590/1513,
  33639. bottom: 203/1793
  33640. }
  33641. },
  33642. },
  33643. [
  33644. {
  33645. name: "Humanoid",
  33646. height: math.unit(2.4, "meters")
  33647. },
  33648. {
  33649. name: "Normal",
  33650. height: math.unit(6, "meters"),
  33651. default: true
  33652. },
  33653. {
  33654. name: "Largest",
  33655. height: math.unit(55, "meters")
  33656. },
  33657. ]
  33658. ))
  33659. characterMakers.push(() => makeCharacter(
  33660. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33661. {
  33662. front: {
  33663. height: math.unit(8 + 4/12, "feet"),
  33664. weight: math.unit(535, "lb"),
  33665. name: "Front",
  33666. image: {
  33667. source: "./media/characters/beh'kah-bolger/front.svg",
  33668. extra: 1660/1603,
  33669. bottom: 37/1697
  33670. }
  33671. },
  33672. },
  33673. [
  33674. {
  33675. name: "Normal",
  33676. height: math.unit(8 + 4/12, "feet"),
  33677. default: true
  33678. },
  33679. {
  33680. name: "Kaiju",
  33681. height: math.unit(250, "feet")
  33682. },
  33683. {
  33684. name: "Still Growing",
  33685. height: math.unit(10, "miles")
  33686. },
  33687. {
  33688. name: "Continental",
  33689. height: math.unit(5000, "miles")
  33690. },
  33691. {
  33692. name: "Final Form",
  33693. height: math.unit(2500000, "miles")
  33694. },
  33695. ]
  33696. ))
  33697. characterMakers.push(() => makeCharacter(
  33698. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33699. {
  33700. front: {
  33701. height: math.unit(7 + 2/12, "feet"),
  33702. weight: math.unit(230, "kg"),
  33703. name: "Front",
  33704. image: {
  33705. source: "./media/characters/tatyana-milewska/front.svg",
  33706. extra: 1199/1150,
  33707. bottom: 86/1285
  33708. }
  33709. },
  33710. },
  33711. [
  33712. {
  33713. name: "Normal",
  33714. height: math.unit(7 + 2/12, "feet"),
  33715. default: true
  33716. },
  33717. {
  33718. name: "Big",
  33719. height: math.unit(12, "feet")
  33720. },
  33721. {
  33722. name: "Minimacro",
  33723. height: math.unit(20, "feet")
  33724. },
  33725. {
  33726. name: "Macro",
  33727. height: math.unit(120, "feet")
  33728. },
  33729. ]
  33730. ))
  33731. characterMakers.push(() => makeCharacter(
  33732. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33733. {
  33734. front: {
  33735. height: math.unit(7 + 8/12, "feet"),
  33736. weight: math.unit(152, "kg"),
  33737. name: "Front",
  33738. image: {
  33739. source: "./media/characters/helen-arri/front.svg",
  33740. extra: 440/423,
  33741. bottom: 14/454
  33742. }
  33743. },
  33744. back: {
  33745. height: math.unit(7 + 8/12, "feet"),
  33746. weight: math.unit(152, "kg"),
  33747. name: "Back",
  33748. image: {
  33749. source: "./media/characters/helen-arri/back.svg",
  33750. extra: 443/426,
  33751. bottom: 8/451
  33752. }
  33753. },
  33754. },
  33755. [
  33756. {
  33757. name: "Normal",
  33758. height: math.unit(7 + 8/12, "feet"),
  33759. default: true
  33760. },
  33761. {
  33762. name: "Big",
  33763. height: math.unit(14, "feet")
  33764. },
  33765. {
  33766. name: "Minimacro",
  33767. height: math.unit(24, "feet")
  33768. },
  33769. {
  33770. name: "Macro",
  33771. height: math.unit(140, "feet")
  33772. },
  33773. ]
  33774. ))
  33775. characterMakers.push(() => makeCharacter(
  33776. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33777. {
  33778. front: {
  33779. height: math.unit(6, "meters"),
  33780. name: "Front",
  33781. image: {
  33782. source: "./media/characters/ehanu-rehu/front.svg",
  33783. extra: 1800/1800,
  33784. bottom: 59/1859
  33785. }
  33786. },
  33787. },
  33788. [
  33789. {
  33790. name: "Normal",
  33791. height: math.unit(6, "meters"),
  33792. default: true
  33793. },
  33794. ]
  33795. ))
  33796. characterMakers.push(() => makeCharacter(
  33797. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33798. {
  33799. front: {
  33800. height: math.unit(7 + 3/12, "feet"),
  33801. name: "Front",
  33802. image: {
  33803. source: "./media/characters/renholder/front.svg",
  33804. extra: 3096/2960,
  33805. bottom: 250/3346
  33806. }
  33807. },
  33808. },
  33809. [
  33810. {
  33811. name: "Normal Bat",
  33812. height: math.unit(7 + 3/12, "feet"),
  33813. default: true
  33814. },
  33815. {
  33816. name: "Slightly Tall Bat",
  33817. height: math.unit(100, "feet")
  33818. },
  33819. {
  33820. name: "Big Bat",
  33821. height: math.unit(1000, "feet")
  33822. },
  33823. {
  33824. name: "City-Sized Bat",
  33825. height: math.unit(200000, "feet")
  33826. },
  33827. {
  33828. name: "Bigger Bat",
  33829. height: math.unit(10000, "miles")
  33830. },
  33831. {
  33832. name: "Solar Sized Bat",
  33833. height: math.unit(100, "AU")
  33834. },
  33835. {
  33836. name: "Galactic Bat",
  33837. height: math.unit(200000, "lightyears")
  33838. },
  33839. {
  33840. name: "Universally Known Bat",
  33841. height: math.unit(1, "universe")
  33842. },
  33843. ]
  33844. ))
  33845. characterMakers.push(() => makeCharacter(
  33846. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33847. {
  33848. front: {
  33849. height: math.unit(6 + 11/12, "feet"),
  33850. weight: math.unit(250, "lb"),
  33851. name: "Front",
  33852. image: {
  33853. source: "./media/characters/cookiecat/front.svg",
  33854. extra: 893/827,
  33855. bottom: 14/907
  33856. }
  33857. },
  33858. },
  33859. [
  33860. {
  33861. name: "Micro",
  33862. height: math.unit(3, "inches")
  33863. },
  33864. {
  33865. name: "Normal",
  33866. height: math.unit(6 + 11/12, "feet"),
  33867. default: true
  33868. },
  33869. {
  33870. name: "Macro",
  33871. height: math.unit(100, "feet")
  33872. },
  33873. {
  33874. name: "Macro+",
  33875. height: math.unit(404, "feet")
  33876. },
  33877. {
  33878. name: "Megamacro",
  33879. height: math.unit(165, "miles")
  33880. },
  33881. {
  33882. name: "Planetary",
  33883. height: math.unit(4600, "miles")
  33884. },
  33885. ]
  33886. ))
  33887. characterMakers.push(() => makeCharacter(
  33888. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33889. {
  33890. front: {
  33891. height: math.unit(10 + 3/12, "feet"),
  33892. weight: math.unit(1500, "lb"),
  33893. name: "Front",
  33894. image: {
  33895. source: "./media/characters/tux-kusanagi/front.svg",
  33896. extra: 944/840,
  33897. bottom: 39/983
  33898. }
  33899. },
  33900. back: {
  33901. height: math.unit(10 + 3/12, "feet"),
  33902. weight: math.unit(1500, "lb"),
  33903. name: "Back",
  33904. image: {
  33905. source: "./media/characters/tux-kusanagi/back.svg",
  33906. extra: 941/842,
  33907. bottom: 28/969
  33908. }
  33909. },
  33910. rump: {
  33911. height: math.unit(5.25, "feet"),
  33912. name: "Rump",
  33913. image: {
  33914. source: "./media/characters/tux-kusanagi/rump.svg"
  33915. }
  33916. },
  33917. beak: {
  33918. height: math.unit(1.54, "feet"),
  33919. name: "Beak",
  33920. image: {
  33921. source: "./media/characters/tux-kusanagi/beak.svg"
  33922. }
  33923. },
  33924. },
  33925. [
  33926. {
  33927. name: "Normal",
  33928. height: math.unit(10 + 3/12, "feet"),
  33929. default: true
  33930. },
  33931. ]
  33932. ))
  33933. characterMakers.push(() => makeCharacter(
  33934. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33935. {
  33936. front: {
  33937. height: math.unit(58, "feet"),
  33938. weight: math.unit(200, "tons"),
  33939. name: "Front",
  33940. image: {
  33941. source: "./media/characters/uzarmazari/front.svg",
  33942. extra: 1575/1455,
  33943. bottom: 152/1727
  33944. }
  33945. },
  33946. back: {
  33947. height: math.unit(58, "feet"),
  33948. weight: math.unit(200, "tons"),
  33949. name: "Back",
  33950. image: {
  33951. source: "./media/characters/uzarmazari/back.svg",
  33952. extra: 1585/1510,
  33953. bottom: 157/1742
  33954. }
  33955. },
  33956. head: {
  33957. height: math.unit(26, "feet"),
  33958. name: "Head",
  33959. image: {
  33960. source: "./media/characters/uzarmazari/head.svg"
  33961. }
  33962. },
  33963. },
  33964. [
  33965. {
  33966. name: "Normal",
  33967. height: math.unit(58, "feet"),
  33968. default: true
  33969. },
  33970. ]
  33971. ))
  33972. characterMakers.push(() => makeCharacter(
  33973. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33974. {
  33975. side: {
  33976. height: math.unit(15, "feet"),
  33977. name: "Side",
  33978. image: {
  33979. source: "./media/characters/akitu/side.svg",
  33980. extra: 1421/1321,
  33981. bottom: 157/1578
  33982. }
  33983. },
  33984. front: {
  33985. height: math.unit(15, "feet"),
  33986. name: "Front",
  33987. image: {
  33988. source: "./media/characters/akitu/front.svg",
  33989. extra: 1435/1326,
  33990. bottom: 232/1667
  33991. }
  33992. },
  33993. },
  33994. [
  33995. {
  33996. name: "Normal",
  33997. height: math.unit(15, "feet"),
  33998. default: true
  33999. },
  34000. ]
  34001. ))
  34002. characterMakers.push(() => makeCharacter(
  34003. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34004. {
  34005. front: {
  34006. height: math.unit(10 + 8/12, "feet"),
  34007. name: "Front",
  34008. image: {
  34009. source: "./media/characters/azalie-croixland/front.svg",
  34010. extra: 1972/1856,
  34011. bottom: 31/2003
  34012. }
  34013. },
  34014. },
  34015. [
  34016. {
  34017. name: "Original Height",
  34018. height: math.unit(5 + 4/12, "feet")
  34019. },
  34020. {
  34021. name: "Normal Height",
  34022. height: math.unit(10 + 8/12, "feet"),
  34023. default: true
  34024. },
  34025. ]
  34026. ))
  34027. characterMakers.push(() => makeCharacter(
  34028. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34029. {
  34030. side: {
  34031. height: math.unit(7 + 1/12, "feet"),
  34032. weight: math.unit(245, "lb"),
  34033. name: "Side",
  34034. image: {
  34035. source: "./media/characters/kavus-kazian/side.svg",
  34036. extra: 349/342,
  34037. bottom: 15/364
  34038. }
  34039. },
  34040. },
  34041. [
  34042. {
  34043. name: "Normal",
  34044. height: math.unit(7 + 1/12, "feet"),
  34045. default: true
  34046. },
  34047. ]
  34048. ))
  34049. characterMakers.push(() => makeCharacter(
  34050. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34051. {
  34052. normal: {
  34053. height: math.unit(5 + 11/12, "feet"),
  34054. name: "Normal",
  34055. image: {
  34056. source: "./media/characters/moonlight-rose/normal.svg",
  34057. extra: 1979/1835,
  34058. bottom: 14/1993
  34059. }
  34060. },
  34061. demon: {
  34062. height: math.unit(5, "km"),
  34063. name: "Demon",
  34064. image: {
  34065. source: "./media/characters/moonlight-rose/demon.svg",
  34066. extra: 986/916,
  34067. bottom: 28/1014
  34068. }
  34069. },
  34070. },
  34071. [
  34072. {
  34073. name: "\"Natural\" height",
  34074. height: math.unit(5 + 11/12, "feet")
  34075. },
  34076. {
  34077. name: "Comfortable Size",
  34078. height: math.unit(40, "meters")
  34079. },
  34080. {
  34081. name: "Common Size",
  34082. height: math.unit(50, "km"),
  34083. default: true
  34084. },
  34085. {
  34086. name: "Demonic",
  34087. height: math.unit(1.24415e+21, "meters")
  34088. },
  34089. ]
  34090. ))
  34091. characterMakers.push(() => makeCharacter(
  34092. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34093. {
  34094. front: {
  34095. height: math.unit(16, "feet"),
  34096. weight: math.unit(610, "kg"),
  34097. name: "Front",
  34098. image: {
  34099. source: "./media/characters/huckle/front.svg",
  34100. extra: 1731/1625,
  34101. bottom: 33/1764
  34102. }
  34103. },
  34104. back: {
  34105. height: math.unit(16, "feet"),
  34106. weight: math.unit(610, "kg"),
  34107. name: "Back",
  34108. image: {
  34109. source: "./media/characters/huckle/back.svg",
  34110. extra: 1738/1651,
  34111. bottom: 37/1775
  34112. }
  34113. },
  34114. laughing: {
  34115. height: math.unit(3.75, "feet"),
  34116. name: "Laughing",
  34117. image: {
  34118. source: "./media/characters/huckle/laughing.svg"
  34119. }
  34120. },
  34121. angry: {
  34122. height: math.unit(4.15, "feet"),
  34123. name: "Angry",
  34124. image: {
  34125. source: "./media/characters/huckle/angry.svg"
  34126. }
  34127. },
  34128. },
  34129. [
  34130. {
  34131. name: "Normal",
  34132. height: math.unit(16, "feet"),
  34133. default: true
  34134. },
  34135. {
  34136. name: "Mini Macro",
  34137. height: math.unit(463, "feet")
  34138. },
  34139. {
  34140. name: "Macro",
  34141. height: math.unit(1680, "meters")
  34142. },
  34143. {
  34144. name: "Mega Macro",
  34145. height: math.unit(175, "km")
  34146. },
  34147. {
  34148. name: "Terra Macro",
  34149. height: math.unit(32, "gigameters")
  34150. },
  34151. {
  34152. name: "Multiverse+",
  34153. height: math.unit(2.56e23, "yottameters")
  34154. },
  34155. ]
  34156. ))
  34157. characterMakers.push(() => makeCharacter(
  34158. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34159. {
  34160. front: {
  34161. height: math.unit(6 + 9/12, "feet"),
  34162. weight: math.unit(280, "lb"),
  34163. name: "Front",
  34164. image: {
  34165. source: "./media/characters/candy/front.svg",
  34166. extra: 234/217,
  34167. bottom: 11/245
  34168. }
  34169. },
  34170. },
  34171. [
  34172. {
  34173. name: "Really Small",
  34174. height: math.unit(0.1, "nm")
  34175. },
  34176. {
  34177. name: "Micro",
  34178. height: math.unit(2, "inches")
  34179. },
  34180. {
  34181. name: "Normal",
  34182. height: math.unit(6 + 9/12, "feet"),
  34183. default: true
  34184. },
  34185. {
  34186. name: "Small Macro",
  34187. height: math.unit(69, "feet")
  34188. },
  34189. {
  34190. name: "Macro",
  34191. height: math.unit(160, "feet")
  34192. },
  34193. {
  34194. name: "Megamacro",
  34195. height: math.unit(22000, "miles")
  34196. },
  34197. {
  34198. name: "Gigamacro",
  34199. height: math.unit(50000, "miles")
  34200. },
  34201. ]
  34202. ))
  34203. characterMakers.push(() => makeCharacter(
  34204. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34205. {
  34206. front: {
  34207. height: math.unit(4, "feet"),
  34208. weight: math.unit(90, "lb"),
  34209. name: "Front",
  34210. image: {
  34211. source: "./media/characters/joey-mcdonald/front.svg",
  34212. extra: 1059/852,
  34213. bottom: 33/1092
  34214. }
  34215. },
  34216. back: {
  34217. height: math.unit(4, "feet"),
  34218. weight: math.unit(90, "lb"),
  34219. name: "Back",
  34220. image: {
  34221. source: "./media/characters/joey-mcdonald/back.svg",
  34222. extra: 1077/879,
  34223. bottom: 5/1082
  34224. }
  34225. },
  34226. },
  34227. [
  34228. {
  34229. name: "Normal",
  34230. height: math.unit(4, "feet"),
  34231. default: true
  34232. },
  34233. ]
  34234. ))
  34235. characterMakers.push(() => makeCharacter(
  34236. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34237. {
  34238. front: {
  34239. height: math.unit(12 + 6/12, "feet"),
  34240. name: "Front",
  34241. image: {
  34242. source: "./media/characters/kass-lockheed/front.svg",
  34243. extra: 354/343,
  34244. bottom: 9/363
  34245. }
  34246. },
  34247. back: {
  34248. height: math.unit(12 + 6/12, "feet"),
  34249. name: "Back",
  34250. image: {
  34251. source: "./media/characters/kass-lockheed/back.svg",
  34252. extra: 364/352,
  34253. bottom: 3/367
  34254. }
  34255. },
  34256. dick: {
  34257. height: math.unit(3.12, "feet"),
  34258. name: "Dick",
  34259. image: {
  34260. source: "./media/characters/kass-lockheed/dick.svg"
  34261. }
  34262. },
  34263. head: {
  34264. height: math.unit(2.6, "feet"),
  34265. name: "Head",
  34266. image: {
  34267. source: "./media/characters/kass-lockheed/head.svg"
  34268. }
  34269. },
  34270. bleh: {
  34271. height: math.unit(2.85, "feet"),
  34272. name: "Bleh",
  34273. image: {
  34274. source: "./media/characters/kass-lockheed/bleh.svg"
  34275. }
  34276. },
  34277. smug: {
  34278. height: math.unit(2.85, "feet"),
  34279. name: "Smug",
  34280. image: {
  34281. source: "./media/characters/kass-lockheed/smug.svg"
  34282. }
  34283. },
  34284. },
  34285. [
  34286. {
  34287. name: "Normal",
  34288. height: math.unit(12 + 6/12, "feet"),
  34289. default: true
  34290. },
  34291. ]
  34292. ))
  34293. characterMakers.push(() => makeCharacter(
  34294. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34295. {
  34296. front: {
  34297. height: math.unit(6 + 2/12, "feet"),
  34298. name: "Front",
  34299. image: {
  34300. source: "./media/characters/taylor/front.svg",
  34301. extra: 639/495,
  34302. bottom: 12/651
  34303. }
  34304. },
  34305. },
  34306. [
  34307. {
  34308. name: "Normal",
  34309. height: math.unit(6 + 2/12, "feet"),
  34310. default: true
  34311. },
  34312. {
  34313. name: "Big",
  34314. height: math.unit(15, "feet")
  34315. },
  34316. {
  34317. name: "Lorg",
  34318. height: math.unit(80, "feet")
  34319. },
  34320. {
  34321. name: "Too Lorg",
  34322. height: math.unit(120, "feet")
  34323. },
  34324. ]
  34325. ))
  34326. characterMakers.push(() => makeCharacter(
  34327. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34328. {
  34329. front: {
  34330. height: math.unit(15, "feet"),
  34331. name: "Front",
  34332. image: {
  34333. source: "./media/characters/kaizer/front.svg",
  34334. extra: 1612/1436,
  34335. bottom: 43/1655
  34336. }
  34337. },
  34338. },
  34339. [
  34340. {
  34341. name: "Normal",
  34342. height: math.unit(15, "feet"),
  34343. default: true
  34344. },
  34345. ]
  34346. ))
  34347. characterMakers.push(() => makeCharacter(
  34348. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34349. {
  34350. front: {
  34351. height: math.unit(2, "feet"),
  34352. weight: math.unit(30, "lb"),
  34353. name: "Front",
  34354. image: {
  34355. source: "./media/characters/sandy/front.svg",
  34356. extra: 1439/1307,
  34357. bottom: 194/1633
  34358. }
  34359. },
  34360. },
  34361. [
  34362. {
  34363. name: "Normal",
  34364. height: math.unit(2, "feet"),
  34365. default: true
  34366. },
  34367. ]
  34368. ))
  34369. characterMakers.push(() => makeCharacter(
  34370. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34371. {
  34372. front: {
  34373. height: math.unit(3, "feet"),
  34374. name: "Front",
  34375. image: {
  34376. source: "./media/characters/mellvi/front.svg",
  34377. extra: 1831/1630,
  34378. bottom: 58/1889
  34379. }
  34380. },
  34381. },
  34382. [
  34383. {
  34384. name: "Normal",
  34385. height: math.unit(3, "feet"),
  34386. default: true
  34387. },
  34388. ]
  34389. ))
  34390. characterMakers.push(() => makeCharacter(
  34391. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34392. {
  34393. front: {
  34394. height: math.unit(5 + 11/12, "feet"),
  34395. weight: math.unit(200, "lb"),
  34396. name: "Front",
  34397. image: {
  34398. source: "./media/characters/shirou/front.svg",
  34399. extra: 2491/2383,
  34400. bottom: 189/2680
  34401. }
  34402. },
  34403. back: {
  34404. height: math.unit(5 + 11/12, "feet"),
  34405. weight: math.unit(200, "lb"),
  34406. name: "Back",
  34407. image: {
  34408. source: "./media/characters/shirou/back.svg",
  34409. extra: 2554/2450,
  34410. bottom: 76/2630
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Normal",
  34417. height: math.unit(5 + 11/12, "feet"),
  34418. default: true
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34424. {
  34425. front: {
  34426. height: math.unit(6 + 3/12, "feet"),
  34427. weight: math.unit(177, "lb"),
  34428. name: "Front",
  34429. image: {
  34430. source: "./media/characters/noryu/front.svg",
  34431. extra: 973/885,
  34432. bottom: 10/983
  34433. }
  34434. },
  34435. },
  34436. [
  34437. {
  34438. name: "Normal",
  34439. height: math.unit(6 + 3/12, "feet"),
  34440. default: true
  34441. },
  34442. ]
  34443. ))
  34444. characterMakers.push(() => makeCharacter(
  34445. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34446. {
  34447. front: {
  34448. height: math.unit(5 + 6/12, "feet"),
  34449. weight: math.unit(170, "lb"),
  34450. name: "Front",
  34451. image: {
  34452. source: "./media/characters/mevolas-rubenido/front.svg",
  34453. extra: 2109/1901,
  34454. bottom: 96/2205
  34455. }
  34456. },
  34457. },
  34458. [
  34459. {
  34460. name: "Normal",
  34461. height: math.unit(5 + 6/12, "feet"),
  34462. default: true
  34463. },
  34464. ]
  34465. ))
  34466. characterMakers.push(() => makeCharacter(
  34467. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34468. {
  34469. front: {
  34470. height: math.unit(100, "feet"),
  34471. name: "Front",
  34472. image: {
  34473. source: "./media/characters/dee/front.svg",
  34474. extra: 2153/2036,
  34475. bottom: 59/2212
  34476. }
  34477. },
  34478. back: {
  34479. height: math.unit(100, "feet"),
  34480. name: "Back",
  34481. image: {
  34482. source: "./media/characters/dee/back.svg",
  34483. extra: 2183/2058,
  34484. bottom: 75/2258
  34485. }
  34486. },
  34487. foot: {
  34488. height: math.unit(19.43, "feet"),
  34489. name: "Foot",
  34490. image: {
  34491. source: "./media/characters/dee/foot.svg"
  34492. }
  34493. },
  34494. hoof: {
  34495. height: math.unit(20.6, "feet"),
  34496. name: "Hoof",
  34497. image: {
  34498. source: "./media/characters/dee/hoof.svg"
  34499. }
  34500. },
  34501. },
  34502. [
  34503. {
  34504. name: "Macro",
  34505. height: math.unit(100, "feet"),
  34506. default: true
  34507. },
  34508. ]
  34509. ))
  34510. characterMakers.push(() => makeCharacter(
  34511. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34512. {
  34513. front: {
  34514. height: math.unit(5 + 6/12, "feet"),
  34515. name: "Front",
  34516. image: {
  34517. source: "./media/characters/teh/front.svg",
  34518. extra: 1002/847,
  34519. bottom: 62/1064
  34520. }
  34521. },
  34522. },
  34523. [
  34524. {
  34525. name: "Normal",
  34526. height: math.unit(5 + 6/12, "feet"),
  34527. default: true
  34528. },
  34529. ]
  34530. ))
  34531. characterMakers.push(() => makeCharacter(
  34532. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34533. {
  34534. side: {
  34535. height: math.unit(6 + 1/12, "feet"),
  34536. weight: math.unit(204, "lb"),
  34537. name: "Side",
  34538. image: {
  34539. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34540. extra: 974/775,
  34541. bottom: 169/1143
  34542. }
  34543. },
  34544. sitting: {
  34545. height: math.unit(6 + 2/12, "feet"),
  34546. weight: math.unit(204, "lb"),
  34547. name: "Sitting",
  34548. image: {
  34549. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34550. extra: 1175/964,
  34551. bottom: 378/1553
  34552. }
  34553. },
  34554. },
  34555. [
  34556. {
  34557. name: "Normal",
  34558. height: math.unit(6 + 1/12, "feet"),
  34559. default: true
  34560. },
  34561. ]
  34562. ))
  34563. characterMakers.push(() => makeCharacter(
  34564. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34565. {
  34566. front: {
  34567. height: math.unit(6, "inches"),
  34568. name: "Front",
  34569. image: {
  34570. source: "./media/characters/tululi/front.svg",
  34571. extra: 1997/1876,
  34572. bottom: 20/2017
  34573. }
  34574. },
  34575. },
  34576. [
  34577. {
  34578. name: "Normal",
  34579. height: math.unit(6, "inches"),
  34580. default: true
  34581. },
  34582. ]
  34583. ))
  34584. characterMakers.push(() => makeCharacter(
  34585. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34586. {
  34587. front: {
  34588. height: math.unit(4 + 1/12, "feet"),
  34589. name: "Front",
  34590. image: {
  34591. source: "./media/characters/star/front.svg",
  34592. extra: 1493/1189,
  34593. bottom: 48/1541
  34594. }
  34595. },
  34596. },
  34597. [
  34598. {
  34599. name: "Normal",
  34600. height: math.unit(4 + 1/12, "feet"),
  34601. default: true
  34602. },
  34603. ]
  34604. ))
  34605. characterMakers.push(() => makeCharacter(
  34606. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34607. {
  34608. front: {
  34609. height: math.unit(6 + 3/12, "feet"),
  34610. name: "Front",
  34611. image: {
  34612. source: "./media/characters/comet/front.svg",
  34613. extra: 1681/1462,
  34614. bottom: 26/1707
  34615. }
  34616. },
  34617. },
  34618. [
  34619. {
  34620. name: "Normal",
  34621. height: math.unit(6 + 3/12, "feet"),
  34622. default: true
  34623. },
  34624. ]
  34625. ))
  34626. characterMakers.push(() => makeCharacter(
  34627. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34628. {
  34629. front: {
  34630. height: math.unit(950, "feet"),
  34631. name: "Front",
  34632. image: {
  34633. source: "./media/characters/vortex/front.svg",
  34634. extra: 1497/1434,
  34635. bottom: 56/1553
  34636. }
  34637. },
  34638. maw: {
  34639. height: math.unit(285, "feet"),
  34640. name: "Maw",
  34641. image: {
  34642. source: "./media/characters/vortex/maw.svg"
  34643. }
  34644. },
  34645. },
  34646. [
  34647. {
  34648. name: "Macro",
  34649. height: math.unit(950, "feet"),
  34650. default: true
  34651. },
  34652. ]
  34653. ))
  34654. characterMakers.push(() => makeCharacter(
  34655. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34656. {
  34657. front: {
  34658. height: math.unit(600, "feet"),
  34659. weight: math.unit(0.02, "grams"),
  34660. name: "Front",
  34661. image: {
  34662. source: "./media/characters/doodle/front.svg",
  34663. extra: 1578/1413,
  34664. bottom: 37/1615
  34665. }
  34666. },
  34667. },
  34668. [
  34669. {
  34670. name: "Macro",
  34671. height: math.unit(600, "feet"),
  34672. default: true
  34673. },
  34674. ]
  34675. ))
  34676. characterMakers.push(() => makeCharacter(
  34677. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34678. {
  34679. front: {
  34680. height: math.unit(6 + 6/12, "feet"),
  34681. name: "Front",
  34682. image: {
  34683. source: "./media/characters/jai/front.svg",
  34684. extra: 1645/1534,
  34685. bottom: 115/1760
  34686. }
  34687. },
  34688. },
  34689. [
  34690. {
  34691. name: "Normal",
  34692. height: math.unit(6 + 6/12, "feet"),
  34693. default: true
  34694. },
  34695. ]
  34696. ))
  34697. characterMakers.push(() => makeCharacter(
  34698. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34699. {
  34700. front: {
  34701. height: math.unit(6 + 8/12, "feet"),
  34702. name: "Front",
  34703. image: {
  34704. source: "./media/characters/pixel/front.svg",
  34705. extra: 1900/1735,
  34706. bottom: 63/1963
  34707. }
  34708. },
  34709. },
  34710. [
  34711. {
  34712. name: "Normal",
  34713. height: math.unit(6 + 8/12, "feet"),
  34714. default: true
  34715. },
  34716. ]
  34717. ))
  34718. characterMakers.push(() => makeCharacter(
  34719. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34720. {
  34721. front: {
  34722. height: math.unit(4 + 11/12, "feet"),
  34723. weight: math.unit(111, "lb"),
  34724. name: "Front",
  34725. image: {
  34726. source: "./media/characters/rhett/front.svg",
  34727. extra: 1682/1586,
  34728. bottom: 92/1774
  34729. }
  34730. },
  34731. },
  34732. [
  34733. {
  34734. name: "Mini",
  34735. height: math.unit(1 + 1/12, "feet")
  34736. },
  34737. {
  34738. name: "Normal",
  34739. height: math.unit(4 + 11/12, "feet"),
  34740. default: true
  34741. },
  34742. ]
  34743. ))
  34744. characterMakers.push(() => makeCharacter(
  34745. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34746. {
  34747. front: {
  34748. height: math.unit(3 + 3/12, "feet"),
  34749. name: "Front",
  34750. image: {
  34751. source: "./media/characters/penny/front.svg",
  34752. extra: 1406/1311,
  34753. bottom: 26/1432
  34754. }
  34755. },
  34756. },
  34757. [
  34758. {
  34759. name: "Normal",
  34760. height: math.unit(3 + 3/12, "feet"),
  34761. default: true
  34762. },
  34763. ]
  34764. ))
  34765. characterMakers.push(() => makeCharacter(
  34766. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34767. {
  34768. front: {
  34769. height: math.unit(4 + 11/12, "feet"),
  34770. name: "Front",
  34771. image: {
  34772. source: "./media/characters/monty/front.svg",
  34773. extra: 1479/1209,
  34774. bottom: 0/1479
  34775. }
  34776. },
  34777. },
  34778. [
  34779. {
  34780. name: "Normal",
  34781. height: math.unit(4 + 11/12, "feet"),
  34782. default: true
  34783. },
  34784. ]
  34785. ))
  34786. characterMakers.push(() => makeCharacter(
  34787. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34788. {
  34789. front: {
  34790. height: math.unit(8 + 4/12, "feet"),
  34791. name: "Front",
  34792. image: {
  34793. source: "./media/characters/sterling/front.svg",
  34794. extra: 1420/1236,
  34795. bottom: 27/1447
  34796. }
  34797. },
  34798. },
  34799. [
  34800. {
  34801. name: "Normal",
  34802. height: math.unit(8 + 4/12, "feet"),
  34803. default: true
  34804. },
  34805. ]
  34806. ))
  34807. characterMakers.push(() => makeCharacter(
  34808. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34809. {
  34810. front: {
  34811. height: math.unit(15, "feet"),
  34812. name: "Front",
  34813. image: {
  34814. source: "./media/characters/marble/front.svg",
  34815. extra: 973/937,
  34816. bottom: 32/1005
  34817. }
  34818. },
  34819. },
  34820. [
  34821. {
  34822. name: "Normal",
  34823. height: math.unit(15, "feet"),
  34824. default: true
  34825. },
  34826. ]
  34827. ))
  34828. characterMakers.push(() => makeCharacter(
  34829. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34830. {
  34831. front: {
  34832. height: math.unit(3, "inches"),
  34833. name: "Front",
  34834. image: {
  34835. source: "./media/characters/powder/front.svg",
  34836. extra: 1504/1334,
  34837. bottom: 518/2022
  34838. }
  34839. },
  34840. },
  34841. [
  34842. {
  34843. name: "Normal",
  34844. height: math.unit(3, "inches"),
  34845. default: true
  34846. },
  34847. ]
  34848. ))
  34849. characterMakers.push(() => makeCharacter(
  34850. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34851. {
  34852. front: {
  34853. height: math.unit(4 + 5/12, "feet"),
  34854. name: "Front",
  34855. image: {
  34856. source: "./media/characters/joey-raccoon/front.svg",
  34857. extra: 1273/1197,
  34858. bottom: 0/1273
  34859. }
  34860. },
  34861. },
  34862. [
  34863. {
  34864. name: "Normal",
  34865. height: math.unit(4 + 5/12, "feet"),
  34866. default: true
  34867. },
  34868. ]
  34869. ))
  34870. characterMakers.push(() => makeCharacter(
  34871. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34872. {
  34873. front: {
  34874. height: math.unit(8 + 4/12, "feet"),
  34875. name: "Front",
  34876. image: {
  34877. source: "./media/characters/vick/front.svg",
  34878. extra: 2187/2118,
  34879. bottom: 47/2234
  34880. }
  34881. },
  34882. },
  34883. [
  34884. {
  34885. name: "Normal",
  34886. height: math.unit(8 + 4/12, "feet"),
  34887. default: true
  34888. },
  34889. ]
  34890. ))
  34891. characterMakers.push(() => makeCharacter(
  34892. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34893. {
  34894. front: {
  34895. height: math.unit(5 + 5/12, "feet"),
  34896. name: "Front",
  34897. image: {
  34898. source: "./media/characters/mitsy/front.svg",
  34899. extra: 1842/1695,
  34900. bottom: 0/1842
  34901. }
  34902. },
  34903. },
  34904. [
  34905. {
  34906. name: "Normal",
  34907. height: math.unit(5 + 5/12, "feet"),
  34908. default: true
  34909. },
  34910. ]
  34911. ))
  34912. characterMakers.push(() => makeCharacter(
  34913. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34914. {
  34915. front: {
  34916. height: math.unit(6 + 3/12, "feet"),
  34917. name: "Front",
  34918. image: {
  34919. source: "./media/characters/silvy/front.svg",
  34920. extra: 1995/1836,
  34921. bottom: 225/2220
  34922. }
  34923. },
  34924. },
  34925. [
  34926. {
  34927. name: "Normal",
  34928. height: math.unit(6 + 3/12, "feet"),
  34929. default: true
  34930. },
  34931. ]
  34932. ))
  34933. characterMakers.push(() => makeCharacter(
  34934. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34935. {
  34936. front: {
  34937. height: math.unit(3 + 8/12, "feet"),
  34938. name: "Front",
  34939. image: {
  34940. source: "./media/characters/rodney/front.svg",
  34941. extra: 1956/1747,
  34942. bottom: 31/1987
  34943. }
  34944. },
  34945. frontDressed: {
  34946. height: math.unit(2.9, "feet"),
  34947. name: "Front (Dressed)",
  34948. image: {
  34949. source: "./media/characters/rodney/front-dressed.svg",
  34950. extra: 1382/1241,
  34951. bottom: 385/1767
  34952. }
  34953. },
  34954. },
  34955. [
  34956. {
  34957. name: "Normal",
  34958. height: math.unit(3 + 8/12, "feet"),
  34959. default: true
  34960. },
  34961. ]
  34962. ))
  34963. characterMakers.push(() => makeCharacter(
  34964. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34965. {
  34966. front: {
  34967. height: math.unit(5 + 9/12, "feet"),
  34968. weight: math.unit(194, "lbs"),
  34969. name: "Front",
  34970. image: {
  34971. source: "./media/characters/zakail-sudekai/front.svg",
  34972. extra: 2696/2533,
  34973. bottom: 248/2944
  34974. }
  34975. },
  34976. maw: {
  34977. height: math.unit(1.35, "feet"),
  34978. name: "Maw",
  34979. image: {
  34980. source: "./media/characters/zakail-sudekai/maw.svg"
  34981. }
  34982. },
  34983. },
  34984. [
  34985. {
  34986. name: "Normal",
  34987. height: math.unit(5 + 9/12, "feet"),
  34988. default: true
  34989. },
  34990. ]
  34991. ))
  34992. characterMakers.push(() => makeCharacter(
  34993. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34994. {
  34995. front: {
  34996. height: math.unit(8 + 4/12, "feet"),
  34997. weight: math.unit(1200, "lb"),
  34998. name: "Front",
  34999. image: {
  35000. source: "./media/characters/eleanor/front.svg",
  35001. extra: 1226/1192,
  35002. bottom: 52/1278
  35003. }
  35004. },
  35005. back: {
  35006. height: math.unit(8 + 4/12, "feet"),
  35007. weight: math.unit(1200, "lb"),
  35008. name: "Back",
  35009. image: {
  35010. source: "./media/characters/eleanor/back.svg",
  35011. extra: 1242/1184,
  35012. bottom: 60/1302
  35013. }
  35014. },
  35015. head: {
  35016. height: math.unit(2.62, "feet"),
  35017. name: "Head",
  35018. image: {
  35019. source: "./media/characters/eleanor/head.svg"
  35020. }
  35021. },
  35022. },
  35023. [
  35024. {
  35025. name: "Normal",
  35026. height: math.unit(8 + 4/12, "feet"),
  35027. default: true
  35028. },
  35029. ]
  35030. ))
  35031. characterMakers.push(() => makeCharacter(
  35032. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35033. {
  35034. front: {
  35035. height: math.unit(8 + 4/12, "feet"),
  35036. weight: math.unit(750, "lb"),
  35037. name: "Front",
  35038. image: {
  35039. source: "./media/characters/tanya/front.svg",
  35040. extra: 1749/1615,
  35041. bottom: 33/1782
  35042. }
  35043. },
  35044. },
  35045. [
  35046. {
  35047. name: "Normal",
  35048. height: math.unit(8 + 4/12, "feet"),
  35049. default: true
  35050. },
  35051. ]
  35052. ))
  35053. characterMakers.push(() => makeCharacter(
  35054. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35055. {
  35056. front: {
  35057. height: math.unit(5, "feet"),
  35058. weight: math.unit(225, "lb"),
  35059. name: "Front",
  35060. image: {
  35061. source: "./media/characters/cindy/front.svg",
  35062. extra: 1320/1250,
  35063. bottom: 42/1362
  35064. }
  35065. },
  35066. frontDressed: {
  35067. height: math.unit(5, "feet"),
  35068. weight: math.unit(225, "lb"),
  35069. name: "Front (Dressed)",
  35070. image: {
  35071. source: "./media/characters/cindy/front-dressed.svg",
  35072. extra: 1320/1250,
  35073. bottom: 42/1362
  35074. }
  35075. },
  35076. back: {
  35077. height: math.unit(5, "feet"),
  35078. weight: math.unit(225, "lb"),
  35079. name: "Back",
  35080. image: {
  35081. source: "./media/characters/cindy/back.svg",
  35082. extra: 1384/1346,
  35083. bottom: 14/1398
  35084. }
  35085. },
  35086. },
  35087. [
  35088. {
  35089. name: "Normal",
  35090. height: math.unit(5, "feet"),
  35091. default: true
  35092. },
  35093. ]
  35094. ))
  35095. characterMakers.push(() => makeCharacter(
  35096. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35097. {
  35098. front: {
  35099. height: math.unit(6 + 9/12, "feet"),
  35100. weight: math.unit(440, "lb"),
  35101. name: "Front",
  35102. image: {
  35103. source: "./media/characters/wilbur-owen/front.svg",
  35104. extra: 1575/1448,
  35105. bottom: 72/1647
  35106. }
  35107. },
  35108. back: {
  35109. height: math.unit(6 + 9/12, "feet"),
  35110. weight: math.unit(440, "lb"),
  35111. name: "Back",
  35112. image: {
  35113. source: "./media/characters/wilbur-owen/back.svg",
  35114. extra: 1578/1445,
  35115. bottom: 36/1614
  35116. }
  35117. },
  35118. },
  35119. [
  35120. {
  35121. name: "Normal",
  35122. height: math.unit(6 + 9/12, "feet"),
  35123. default: true
  35124. },
  35125. ]
  35126. ))
  35127. characterMakers.push(() => makeCharacter(
  35128. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35129. {
  35130. front: {
  35131. height: math.unit(6 + 5/12, "feet"),
  35132. weight: math.unit(650, "lb"),
  35133. name: "Front",
  35134. image: {
  35135. source: "./media/characters/keegan/front.svg",
  35136. extra: 2387/2198,
  35137. bottom: 33/2420
  35138. }
  35139. },
  35140. side: {
  35141. height: math.unit(6 + 5/12, "feet"),
  35142. weight: math.unit(650, "lb"),
  35143. name: "Side",
  35144. image: {
  35145. source: "./media/characters/keegan/side.svg",
  35146. extra: 2390/2202,
  35147. bottom: 47/2437
  35148. }
  35149. },
  35150. back: {
  35151. height: math.unit(6 + 5/12, "feet"),
  35152. weight: math.unit(650, "lb"),
  35153. name: "Back",
  35154. image: {
  35155. source: "./media/characters/keegan/back.svg",
  35156. extra: 2418/2268,
  35157. bottom: 15/2433
  35158. }
  35159. },
  35160. frontSfw: {
  35161. height: math.unit(6 + 5/12, "feet"),
  35162. weight: math.unit(650, "lb"),
  35163. name: "Front (SFW)",
  35164. image: {
  35165. source: "./media/characters/keegan/front-sfw.svg",
  35166. extra: 2387/2198,
  35167. bottom: 33/2420
  35168. }
  35169. },
  35170. beans: {
  35171. height: math.unit(1.85, "feet"),
  35172. name: "Beans",
  35173. image: {
  35174. source: "./media/characters/keegan/beans.svg"
  35175. }
  35176. },
  35177. },
  35178. [
  35179. {
  35180. name: "Normal",
  35181. height: math.unit(6 + 5/12, "feet"),
  35182. default: true
  35183. },
  35184. ]
  35185. ))
  35186. characterMakers.push(() => makeCharacter(
  35187. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35188. {
  35189. front: {
  35190. height: math.unit(9, "feet"),
  35191. name: "Front",
  35192. image: {
  35193. source: "./media/characters/colton/front.svg",
  35194. extra: 1589/1326,
  35195. bottom: 139/1728
  35196. }
  35197. },
  35198. },
  35199. [
  35200. {
  35201. name: "Normal",
  35202. height: math.unit(9, "feet"),
  35203. default: true
  35204. },
  35205. ]
  35206. ))
  35207. characterMakers.push(() => makeCharacter(
  35208. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35209. {
  35210. front: {
  35211. height: math.unit(2 + 9/12, "feet"),
  35212. name: "Front",
  35213. image: {
  35214. source: "./media/characters/bora/front.svg",
  35215. extra: 1265/1250,
  35216. bottom: 24/1289
  35217. }
  35218. },
  35219. },
  35220. [
  35221. {
  35222. name: "Normal",
  35223. height: math.unit(2 + 9/12, "feet"),
  35224. default: true
  35225. },
  35226. ]
  35227. ))
  35228. characterMakers.push(() => makeCharacter(
  35229. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35230. {
  35231. front: {
  35232. height: math.unit(8, "feet"),
  35233. name: "Front",
  35234. image: {
  35235. source: "./media/characters/myu-myu/front.svg",
  35236. extra: 1949/1857,
  35237. bottom: 90/2039
  35238. }
  35239. },
  35240. },
  35241. [
  35242. {
  35243. name: "Normal",
  35244. height: math.unit(8, "feet"),
  35245. default: true
  35246. },
  35247. {
  35248. name: "Big",
  35249. height: math.unit(15, "feet")
  35250. },
  35251. {
  35252. name: "BIG",
  35253. height: math.unit(25, "feet")
  35254. },
  35255. ]
  35256. ))
  35257. characterMakers.push(() => makeCharacter(
  35258. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35259. {
  35260. side: {
  35261. height: math.unit(7 + 5/12, "feet"),
  35262. weight: math.unit(2800, "lb"),
  35263. name: "Side",
  35264. image: {
  35265. source: "./media/characters/haloren/side.svg",
  35266. extra: 1793/409,
  35267. bottom: 59/1852
  35268. }
  35269. },
  35270. frontPaw: {
  35271. height: math.unit(2.36, "feet"),
  35272. name: "Front paw",
  35273. image: {
  35274. source: "./media/characters/haloren/front-paw.svg"
  35275. }
  35276. },
  35277. hindPaw: {
  35278. height: math.unit(3.18, "feet"),
  35279. name: "Hind paw",
  35280. image: {
  35281. source: "./media/characters/haloren/hind-paw.svg"
  35282. }
  35283. },
  35284. maw: {
  35285. height: math.unit(5.05, "feet"),
  35286. name: "Maw",
  35287. image: {
  35288. source: "./media/characters/haloren/maw.svg"
  35289. }
  35290. },
  35291. dick: {
  35292. height: math.unit(2.90, "feet"),
  35293. name: "Dick",
  35294. image: {
  35295. source: "./media/characters/haloren/dick.svg"
  35296. }
  35297. },
  35298. },
  35299. [
  35300. {
  35301. name: "Normal",
  35302. height: math.unit(7 + 5/12, "feet"),
  35303. default: true
  35304. },
  35305. {
  35306. name: "Enhanced",
  35307. height: math.unit(14 + 3/12, "feet")
  35308. },
  35309. ]
  35310. ))
  35311. characterMakers.push(() => makeCharacter(
  35312. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35313. {
  35314. front: {
  35315. height: math.unit(171, "cm"),
  35316. name: "Front",
  35317. image: {
  35318. source: "./media/characters/kimmy/front.svg",
  35319. extra: 1491/1435,
  35320. bottom: 53/1544
  35321. }
  35322. },
  35323. },
  35324. [
  35325. {
  35326. name: "Small",
  35327. height: math.unit(9, "cm")
  35328. },
  35329. {
  35330. name: "Normal",
  35331. height: math.unit(171, "cm"),
  35332. default: true
  35333. },
  35334. ]
  35335. ))
  35336. characterMakers.push(() => makeCharacter(
  35337. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35338. {
  35339. front: {
  35340. height: math.unit(8, "feet"),
  35341. weight: math.unit(300, "lb"),
  35342. name: "Front",
  35343. image: {
  35344. source: "./media/characters/galeboomer/front.svg",
  35345. extra: 4651/4415,
  35346. bottom: 162/4813
  35347. }
  35348. },
  35349. back: {
  35350. height: math.unit(8, "feet"),
  35351. weight: math.unit(300, "lb"),
  35352. name: "Back",
  35353. image: {
  35354. source: "./media/characters/galeboomer/back.svg",
  35355. extra: 4544/4314,
  35356. bottom: 16/4560
  35357. }
  35358. },
  35359. frontAlt: {
  35360. height: math.unit(8, "feet"),
  35361. weight: math.unit(300, "lb"),
  35362. name: "Front (Alt)",
  35363. image: {
  35364. source: "./media/characters/galeboomer/front-alt.svg",
  35365. extra: 4458/4228,
  35366. bottom: 68/4526
  35367. }
  35368. },
  35369. maw: {
  35370. height: math.unit(1.2, "feet"),
  35371. name: "Maw",
  35372. image: {
  35373. source: "./media/characters/galeboomer/maw.svg"
  35374. }
  35375. },
  35376. },
  35377. [
  35378. {
  35379. name: "Normal",
  35380. height: math.unit(8, "feet"),
  35381. default: true
  35382. },
  35383. ]
  35384. ))
  35385. characterMakers.push(() => makeCharacter(
  35386. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35387. {
  35388. front: {
  35389. height: math.unit(5 + 9/12, "feet"),
  35390. weight: math.unit(120, "lb"),
  35391. name: "Front",
  35392. image: {
  35393. source: "./media/characters/chyr/front.svg",
  35394. extra: 1323/1254,
  35395. bottom: 63/1386
  35396. }
  35397. },
  35398. back: {
  35399. height: math.unit(5 + 9/12, "feet"),
  35400. weight: math.unit(120, "lb"),
  35401. name: "Back",
  35402. image: {
  35403. source: "./media/characters/chyr/back.svg",
  35404. extra: 1323/1252,
  35405. bottom: 48/1371
  35406. }
  35407. },
  35408. },
  35409. [
  35410. {
  35411. name: "Normal",
  35412. height: math.unit(5 + 9/12, "feet"),
  35413. default: true
  35414. },
  35415. ]
  35416. ))
  35417. characterMakers.push(() => makeCharacter(
  35418. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35419. {
  35420. front: {
  35421. height: math.unit(7, "feet"),
  35422. weight: math.unit(310, "lb"),
  35423. name: "Front",
  35424. image: {
  35425. source: "./media/characters/solarus/front.svg",
  35426. extra: 2415/2021,
  35427. bottom: 103/2518
  35428. }
  35429. },
  35430. back: {
  35431. height: math.unit(7, "feet"),
  35432. weight: math.unit(310, "lb"),
  35433. name: "Back",
  35434. image: {
  35435. source: "./media/characters/solarus/back.svg",
  35436. extra: 2463/2089,
  35437. bottom: 79/2542
  35438. }
  35439. },
  35440. },
  35441. [
  35442. {
  35443. name: "Normal",
  35444. height: math.unit(7, "feet"),
  35445. default: true
  35446. },
  35447. ]
  35448. ))
  35449. characterMakers.push(() => makeCharacter(
  35450. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35451. {
  35452. front: {
  35453. height: math.unit(16, "feet"),
  35454. name: "Front",
  35455. image: {
  35456. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35457. extra: 1844/1780,
  35458. bottom: 58/1902
  35459. }
  35460. },
  35461. },
  35462. [
  35463. {
  35464. name: "Normal",
  35465. height: math.unit(16, "feet"),
  35466. default: true
  35467. },
  35468. ]
  35469. ))
  35470. characterMakers.push(() => makeCharacter(
  35471. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35472. {
  35473. front: {
  35474. height: math.unit(11 + 6/12, "feet"),
  35475. weight: math.unit(1366, "lb"),
  35476. name: "Front",
  35477. image: {
  35478. source: "./media/characters/lexor/front.svg",
  35479. extra: 1560/1481,
  35480. bottom: 211/1771
  35481. }
  35482. },
  35483. back: {
  35484. height: math.unit(11 + 6/12, "feet"),
  35485. weight: math.unit(1366, "lb"),
  35486. name: "Back",
  35487. image: {
  35488. source: "./media/characters/lexor/back.svg",
  35489. extra: 1614/1533,
  35490. bottom: 76/1690
  35491. }
  35492. },
  35493. maw: {
  35494. height: math.unit(3, "feet"),
  35495. name: "Maw",
  35496. image: {
  35497. source: "./media/characters/lexor/maw.svg"
  35498. }
  35499. },
  35500. dick: {
  35501. height: math.unit(2.59, "feet"),
  35502. name: "Dick",
  35503. image: {
  35504. source: "./media/characters/lexor/dick.svg"
  35505. }
  35506. },
  35507. },
  35508. [
  35509. {
  35510. name: "Normal",
  35511. height: math.unit(11 + 6/12, "feet"),
  35512. default: true
  35513. },
  35514. ]
  35515. ))
  35516. characterMakers.push(() => makeCharacter(
  35517. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35518. {
  35519. front: {
  35520. height: math.unit(5 + 8/12, "feet"),
  35521. name: "Front",
  35522. image: {
  35523. source: "./media/characters/magnum/front.svg",
  35524. extra: 942/855,
  35525. bottom: 26/968
  35526. }
  35527. },
  35528. },
  35529. [
  35530. {
  35531. name: "Normal",
  35532. height: math.unit(5 + 8/12, "feet"),
  35533. default: true
  35534. },
  35535. ]
  35536. ))
  35537. //characters
  35538. function makeCharacters() {
  35539. const results = [];
  35540. characterMakers.forEach(character => {
  35541. results.push(character());
  35542. });
  35543. return results;
  35544. }