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.
 
 
 

37188 lines
935 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. "pooltoy": {
  1580. name: "Pooltoy",
  1581. parents: ["construct"]
  1582. },
  1583. "demi": {
  1584. name: "Demi",
  1585. parents: ["human"]
  1586. },
  1587. "stegosaurus": {
  1588. name: "Stegosaurus",
  1589. parents: ["dinosaur"]
  1590. },
  1591. "computer-virus": {
  1592. name: "Computer Virus",
  1593. parents: ["program"]
  1594. },
  1595. "program": {
  1596. name: "Program",
  1597. parents: ["construct"]
  1598. },
  1599. "space-springhare": {
  1600. name: "Space Springhare",
  1601. parents: ["rabbit"]
  1602. },
  1603. }
  1604. //species
  1605. function getSpeciesInfo(speciesList) {
  1606. let result = new Set();
  1607. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1608. result.add(entry)
  1609. });
  1610. return Array.from(result);
  1611. };
  1612. function getSpeciesInfoHelper(species) {
  1613. if (!speciesData[species]) {
  1614. console.warn(species + " doesn't exist");
  1615. return [];
  1616. }
  1617. if (speciesData[species].parents) {
  1618. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1619. } else {
  1620. return [species];
  1621. }
  1622. }
  1623. characterMakers.push(() => makeCharacter(
  1624. {
  1625. name: "Fen",
  1626. species: ["crux"],
  1627. description: {
  1628. title: "Bio",
  1629. text: "Very furry. Sheds on everything."
  1630. },
  1631. tags: [
  1632. "anthro",
  1633. "goo"
  1634. ]
  1635. },
  1636. {
  1637. back: {
  1638. height: math.unit(2.2428, "meter"),
  1639. weight: math.unit(124.738, "kg"),
  1640. name: "Back",
  1641. image: {
  1642. source: "./media/characters/fen/back.svg",
  1643. extra: 2024 / 1867,
  1644. bottom: 13 / 2037
  1645. },
  1646. info: {
  1647. description: {
  1648. mode: "append",
  1649. text: "\n\nHe is not currently looking at you."
  1650. }
  1651. }
  1652. },
  1653. full: {
  1654. height: math.unit(1.34, "meter"),
  1655. weight: math.unit(225, "kg"),
  1656. name: "Full",
  1657. image: {
  1658. source: "./media/characters/fen/full.svg"
  1659. },
  1660. info: {
  1661. description: {
  1662. mode: "append",
  1663. text: "\n\nMunch."
  1664. }
  1665. }
  1666. },
  1667. kneeling: {
  1668. height: math.unit(5.4, "feet"),
  1669. weight: math.unit(124.738, "kg"),
  1670. name: "Kneeling",
  1671. image: {
  1672. source: "./media/characters/fen/kneeling.svg",
  1673. extra: 563 / 507
  1674. }
  1675. },
  1676. goo: {
  1677. height: math.unit(2.8, "feet"),
  1678. weight: math.unit(125, "kg"),
  1679. capacity: math.unit(1, "people"),
  1680. name: "Goo",
  1681. image: {
  1682. source: "./media/characters/fen/goo.svg",
  1683. bottom: 116 / 613
  1684. }
  1685. },
  1686. lounging: {
  1687. height: math.unit(6.5, "feet"),
  1688. weight: math.unit(125, "kg"),
  1689. name: "Lounging",
  1690. image: {
  1691. source: "./media/characters/fen/lounging.svg"
  1692. }
  1693. },
  1694. },
  1695. [
  1696. {
  1697. name: "Normal",
  1698. height: math.unit(2.2428, "meter")
  1699. },
  1700. {
  1701. name: "Big",
  1702. height: math.unit(12, "feet")
  1703. },
  1704. {
  1705. name: "Minimacro",
  1706. height: math.unit(40, "feet"),
  1707. default: true,
  1708. info: {
  1709. description: {
  1710. mode: "append",
  1711. text: "\n\nTOO DAMN BIG"
  1712. }
  1713. }
  1714. },
  1715. {
  1716. name: "Macro",
  1717. height: math.unit(100, "feet"),
  1718. info: {
  1719. description: {
  1720. mode: "append",
  1721. text: "\n\nTOO DAMN BIG"
  1722. }
  1723. }
  1724. },
  1725. {
  1726. name: "Macro+",
  1727. height: math.unit(300, "feet")
  1728. },
  1729. {
  1730. name: "Megamacro",
  1731. height: math.unit(2, "miles")
  1732. }
  1733. ]
  1734. ))
  1735. characterMakers.push(() => makeCharacter(
  1736. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1737. {
  1738. front: {
  1739. height: math.unit(183, "cm"),
  1740. weight: math.unit(80, "kg"),
  1741. name: "Front",
  1742. image: {
  1743. source: "./media/characters/sofia-fluttertail/front.svg",
  1744. bottom: 0.01,
  1745. extra: 2154 / 2081
  1746. }
  1747. },
  1748. frontAlt: {
  1749. height: math.unit(183, "cm"),
  1750. weight: math.unit(80, "kg"),
  1751. name: "Front (alt)",
  1752. image: {
  1753. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1754. }
  1755. },
  1756. back: {
  1757. height: math.unit(183, "cm"),
  1758. weight: math.unit(80, "kg"),
  1759. name: "Back",
  1760. image: {
  1761. source: "./media/characters/sofia-fluttertail/back.svg"
  1762. }
  1763. },
  1764. kneeling: {
  1765. height: math.unit(125, "cm"),
  1766. weight: math.unit(80, "kg"),
  1767. name: "Kneeling",
  1768. image: {
  1769. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1770. extra: 1033 / 977,
  1771. bottom: 23.7 / 1057
  1772. }
  1773. },
  1774. maw: {
  1775. height: math.unit(183 / 5, "cm"),
  1776. name: "Maw",
  1777. image: {
  1778. source: "./media/characters/sofia-fluttertail/maw.svg"
  1779. }
  1780. },
  1781. mawcloseup: {
  1782. height: math.unit(183 / 5 * 0.41, "cm"),
  1783. name: "Maw (Closeup)",
  1784. image: {
  1785. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1786. }
  1787. },
  1788. paws: {
  1789. height: math.unit(1.17, "feet"),
  1790. name: "Paws",
  1791. image: {
  1792. source: "./media/characters/sofia-fluttertail/paws.svg",
  1793. extra: 851 / 851,
  1794. bottom: 17 / 868
  1795. }
  1796. },
  1797. },
  1798. [
  1799. {
  1800. name: "Normal",
  1801. height: math.unit(1.83, "meter")
  1802. },
  1803. {
  1804. name: "Size Thief",
  1805. height: math.unit(18, "feet")
  1806. },
  1807. {
  1808. name: "50 Foot Collie",
  1809. height: math.unit(50, "feet")
  1810. },
  1811. {
  1812. name: "Macro",
  1813. height: math.unit(96, "feet"),
  1814. default: true
  1815. },
  1816. {
  1817. name: "Megamerger",
  1818. height: math.unit(650, "feet")
  1819. },
  1820. ]
  1821. ))
  1822. characterMakers.push(() => makeCharacter(
  1823. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1824. {
  1825. front: {
  1826. height: math.unit(7, "feet"),
  1827. weight: math.unit(100, "kg"),
  1828. name: "Front",
  1829. image: {
  1830. source: "./media/characters/march/front.svg",
  1831. extra: 1,
  1832. bottom: 0.015
  1833. }
  1834. },
  1835. foot: {
  1836. height: math.unit(0.9, "feet"),
  1837. name: "Foot",
  1838. image: {
  1839. source: "./media/characters/march/foot.svg"
  1840. }
  1841. },
  1842. },
  1843. [
  1844. {
  1845. name: "Normal",
  1846. height: math.unit(7.9, "feet")
  1847. },
  1848. {
  1849. name: "Macro",
  1850. height: math.unit(220, "meters")
  1851. },
  1852. {
  1853. name: "Megamacro",
  1854. height: math.unit(2.98, "km"),
  1855. default: true
  1856. },
  1857. {
  1858. name: "Gigamacro",
  1859. height: math.unit(15963, "km")
  1860. },
  1861. {
  1862. name: "Teramacro",
  1863. height: math.unit(2980000000, "km")
  1864. },
  1865. {
  1866. name: "Examacro",
  1867. height: math.unit(250, "parsecs")
  1868. },
  1869. ]
  1870. ))
  1871. characterMakers.push(() => makeCharacter(
  1872. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1873. {
  1874. front: {
  1875. height: math.unit(6, "feet"),
  1876. weight: math.unit(60, "kg"),
  1877. name: "Front",
  1878. image: {
  1879. source: "./media/characters/noir/front.svg",
  1880. extra: 1,
  1881. bottom: 0.032
  1882. }
  1883. },
  1884. },
  1885. [
  1886. {
  1887. name: "Normal",
  1888. height: math.unit(6.6, "feet")
  1889. },
  1890. {
  1891. name: "Macro",
  1892. height: math.unit(500, "feet")
  1893. },
  1894. {
  1895. name: "Megamacro",
  1896. height: math.unit(2.5, "km"),
  1897. default: true
  1898. },
  1899. {
  1900. name: "Gigamacro",
  1901. height: math.unit(22500, "km")
  1902. },
  1903. {
  1904. name: "Teramacro",
  1905. height: math.unit(2500000000, "km")
  1906. },
  1907. {
  1908. name: "Examacro",
  1909. height: math.unit(200, "parsecs")
  1910. },
  1911. ]
  1912. ))
  1913. characterMakers.push(() => makeCharacter(
  1914. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1915. {
  1916. front: {
  1917. height: math.unit(7, "feet"),
  1918. weight: math.unit(100, "kg"),
  1919. name: "Front",
  1920. image: {
  1921. source: "./media/characters/okuri/front.svg",
  1922. extra: 1,
  1923. bottom: 0.037
  1924. }
  1925. },
  1926. back: {
  1927. height: math.unit(7, "feet"),
  1928. weight: math.unit(100, "kg"),
  1929. name: "Back",
  1930. image: {
  1931. source: "./media/characters/okuri/back.svg",
  1932. extra: 1,
  1933. bottom: 0.007
  1934. }
  1935. },
  1936. },
  1937. [
  1938. {
  1939. name: "Megamacro",
  1940. height: math.unit(100, "miles"),
  1941. default: true
  1942. },
  1943. ]
  1944. ))
  1945. characterMakers.push(() => makeCharacter(
  1946. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1947. {
  1948. front: {
  1949. height: math.unit(7, "feet"),
  1950. weight: math.unit(100, "kg"),
  1951. name: "Front",
  1952. image: {
  1953. source: "./media/characters/manny/front.svg",
  1954. extra: 1,
  1955. bottom: 0.06
  1956. }
  1957. },
  1958. back: {
  1959. height: math.unit(7, "feet"),
  1960. weight: math.unit(100, "kg"),
  1961. name: "Back",
  1962. image: {
  1963. source: "./media/characters/manny/back.svg",
  1964. extra: 1,
  1965. bottom: 0.014
  1966. }
  1967. },
  1968. },
  1969. [
  1970. {
  1971. name: "Normal",
  1972. height: math.unit(7, "feet"),
  1973. },
  1974. {
  1975. name: "Macro",
  1976. height: math.unit(78, "feet"),
  1977. default: true
  1978. },
  1979. {
  1980. name: "Macro+",
  1981. height: math.unit(300, "meters")
  1982. },
  1983. {
  1984. name: "Macro++",
  1985. height: math.unit(2400, "meters")
  1986. },
  1987. {
  1988. name: "Megamacro",
  1989. height: math.unit(5167, "meters")
  1990. },
  1991. {
  1992. name: "Gigamacro",
  1993. height: math.unit(41769, "miles")
  1994. },
  1995. ]
  1996. ))
  1997. characterMakers.push(() => makeCharacter(
  1998. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1999. {
  2000. front: {
  2001. height: math.unit(7, "feet"),
  2002. weight: math.unit(100, "kg"),
  2003. name: "Front",
  2004. image: {
  2005. source: "./media/characters/adake/front-1.svg"
  2006. }
  2007. },
  2008. frontAlt: {
  2009. height: math.unit(7, "feet"),
  2010. weight: math.unit(100, "kg"),
  2011. name: "Front (Alt)",
  2012. image: {
  2013. source: "./media/characters/adake/front-2.svg",
  2014. extra: 1,
  2015. bottom: 0.01
  2016. }
  2017. },
  2018. back: {
  2019. height: math.unit(7, "feet"),
  2020. weight: math.unit(100, "kg"),
  2021. name: "Back",
  2022. image: {
  2023. source: "./media/characters/adake/back.svg",
  2024. }
  2025. },
  2026. kneel: {
  2027. height: math.unit(5.385, "feet"),
  2028. weight: math.unit(100, "kg"),
  2029. name: "Kneeling",
  2030. image: {
  2031. source: "./media/characters/adake/kneel.svg",
  2032. bottom: 0.052
  2033. }
  2034. },
  2035. },
  2036. [
  2037. {
  2038. name: "Normal",
  2039. height: math.unit(7, "feet"),
  2040. },
  2041. {
  2042. name: "Macro",
  2043. height: math.unit(78, "feet"),
  2044. default: true
  2045. },
  2046. {
  2047. name: "Macro+",
  2048. height: math.unit(300, "meters")
  2049. },
  2050. {
  2051. name: "Macro++",
  2052. height: math.unit(2400, "meters")
  2053. },
  2054. {
  2055. name: "Megamacro",
  2056. height: math.unit(5167, "meters")
  2057. },
  2058. {
  2059. name: "Gigamacro",
  2060. height: math.unit(41769, "miles")
  2061. },
  2062. ]
  2063. ))
  2064. characterMakers.push(() => makeCharacter(
  2065. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2066. {
  2067. front: {
  2068. height: math.unit(1.65, "meters"),
  2069. weight: math.unit(50, "kg"),
  2070. name: "Front",
  2071. image: {
  2072. source: "./media/characters/elijah/front.svg",
  2073. extra: 858 / 830,
  2074. bottom: 95.5 / 953.8559
  2075. }
  2076. },
  2077. back: {
  2078. height: math.unit(1.65, "meters"),
  2079. weight: math.unit(50, "kg"),
  2080. name: "Back",
  2081. image: {
  2082. source: "./media/characters/elijah/back.svg",
  2083. extra: 895 / 850,
  2084. bottom: 5.3 / 897.956
  2085. }
  2086. },
  2087. frontNsfw: {
  2088. height: math.unit(1.65, "meters"),
  2089. weight: math.unit(50, "kg"),
  2090. name: "Front (NSFW)",
  2091. image: {
  2092. source: "./media/characters/elijah/front-nsfw.svg",
  2093. extra: 858 / 830,
  2094. bottom: 95.5 / 953.8559
  2095. }
  2096. },
  2097. backNsfw: {
  2098. height: math.unit(1.65, "meters"),
  2099. weight: math.unit(50, "kg"),
  2100. name: "Back (NSFW)",
  2101. image: {
  2102. source: "./media/characters/elijah/back-nsfw.svg",
  2103. extra: 895 / 850,
  2104. bottom: 5.3 / 897.956
  2105. }
  2106. },
  2107. dick: {
  2108. height: math.unit(1, "feet"),
  2109. name: "Dick",
  2110. image: {
  2111. source: "./media/characters/elijah/dick.svg"
  2112. }
  2113. },
  2114. beakOpen: {
  2115. height: math.unit(1.25, "feet"),
  2116. name: "Beak (Open)",
  2117. image: {
  2118. source: "./media/characters/elijah/beak-open.svg"
  2119. }
  2120. },
  2121. beakShut: {
  2122. height: math.unit(1.25, "feet"),
  2123. name: "Beak (Shut)",
  2124. image: {
  2125. source: "./media/characters/elijah/beak-shut.svg"
  2126. }
  2127. },
  2128. footFlexing: {
  2129. height: math.unit(1.61, "feet"),
  2130. name: "Foot (Flexing)",
  2131. image: {
  2132. source: "./media/characters/elijah/foot-flexing.svg"
  2133. }
  2134. },
  2135. footStepping: {
  2136. height: math.unit(1.44, "feet"),
  2137. name: "Foot (Stepping)",
  2138. image: {
  2139. source: "./media/characters/elijah/foot-stepping.svg"
  2140. }
  2141. },
  2142. plantigradeLeg: {
  2143. height: math.unit(2.34, "feet"),
  2144. name: "Plantigrade Leg",
  2145. image: {
  2146. source: "./media/characters/elijah/plantigrade-leg.svg"
  2147. }
  2148. },
  2149. plantigradeFootLeft: {
  2150. height: math.unit(0.9, "feet"),
  2151. name: "Plantigrade Foot (Left)",
  2152. image: {
  2153. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2154. }
  2155. },
  2156. plantigradeFootRight: {
  2157. height: math.unit(0.9, "feet"),
  2158. name: "Plantigrade Foot (Right)",
  2159. image: {
  2160. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2161. }
  2162. },
  2163. },
  2164. [
  2165. {
  2166. name: "Normal",
  2167. height: math.unit(1.65, "meters")
  2168. },
  2169. {
  2170. name: "Macro",
  2171. height: math.unit(55, "meters"),
  2172. default: true
  2173. },
  2174. {
  2175. name: "Macro+",
  2176. height: math.unit(105, "meters")
  2177. },
  2178. ]
  2179. ))
  2180. characterMakers.push(() => makeCharacter(
  2181. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2182. {
  2183. front: {
  2184. height: math.unit(11, "feet"),
  2185. weight: math.unit(320, "kg"),
  2186. name: "Front",
  2187. image: {
  2188. source: "./media/characters/rai/front.svg",
  2189. extra: 1802/1696,
  2190. bottom: 68/1870
  2191. }
  2192. },
  2193. frontDressed: {
  2194. height: math.unit(11, "feet"),
  2195. weight: math.unit(320, "kg"),
  2196. name: "Front (Dressed)",
  2197. image: {
  2198. source: "./media/characters/rai/front-dressed.svg",
  2199. extra: 1802/1696,
  2200. bottom: 68/1870
  2201. }
  2202. },
  2203. side: {
  2204. height: math.unit(11, "feet"),
  2205. weight: math.unit(320, "kg"),
  2206. name: "Side",
  2207. image: {
  2208. source: "./media/characters/rai/side.svg",
  2209. extra: 1789/1710,
  2210. bottom: 115/1904
  2211. }
  2212. },
  2213. back: {
  2214. height: math.unit(11, "feet"),
  2215. weight: math.unit(320, "kg"),
  2216. name: "Back",
  2217. image: {
  2218. source: "./media/characters/rai/back.svg",
  2219. extra: 1770/1707,
  2220. bottom: 28/1798
  2221. }
  2222. },
  2223. feral: {
  2224. height: math.unit(11, "feet"),
  2225. weight: math.unit(640, "kg"),
  2226. name: "Feral",
  2227. image: {
  2228. source: "./media/characters/rai/feral.svg",
  2229. extra: 1035/642,
  2230. bottom: 86/1121
  2231. }
  2232. },
  2233. dragon: {
  2234. height: math.unit(23, "feet"),
  2235. weight: math.unit(50000, "lb"),
  2236. name: "Dragon",
  2237. image: {
  2238. source: "./media/characters/rai/dragon.svg",
  2239. extra: 2498 / 2030,
  2240. bottom: 85.2 / 2584
  2241. }
  2242. },
  2243. maw: {
  2244. height: math.unit(6 / 3.81416, "feet"),
  2245. name: "Maw",
  2246. image: {
  2247. source: "./media/characters/rai/maw.svg"
  2248. }
  2249. },
  2250. },
  2251. [
  2252. {
  2253. name: "Normal",
  2254. height: math.unit(11, "feet")
  2255. },
  2256. {
  2257. name: "Macro",
  2258. height: math.unit(302, "feet"),
  2259. default: true
  2260. },
  2261. ]
  2262. ))
  2263. characterMakers.push(() => makeCharacter(
  2264. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2265. {
  2266. frontDressed: {
  2267. height: math.unit(216, "feet"),
  2268. weight: math.unit(7000000, "lb"),
  2269. name: "Front (Dressed)",
  2270. image: {
  2271. source: "./media/characters/jazzy/front-dressed.svg",
  2272. extra: 2738 / 2651,
  2273. bottom: 41.8 / 2786
  2274. }
  2275. },
  2276. backDressed: {
  2277. height: math.unit(216, "feet"),
  2278. weight: math.unit(7000000, "lb"),
  2279. name: "Back (Dressed)",
  2280. image: {
  2281. source: "./media/characters/jazzy/back-dressed.svg",
  2282. extra: 2775 / 2673,
  2283. bottom: 36.8 / 2817
  2284. }
  2285. },
  2286. front: {
  2287. height: math.unit(216, "feet"),
  2288. weight: math.unit(7000000, "lb"),
  2289. name: "Front",
  2290. image: {
  2291. source: "./media/characters/jazzy/front.svg",
  2292. extra: 2738 / 2651,
  2293. bottom: 41.8 / 2786
  2294. }
  2295. },
  2296. back: {
  2297. height: math.unit(216, "feet"),
  2298. weight: math.unit(7000000, "lb"),
  2299. name: "Back",
  2300. image: {
  2301. source: "./media/characters/jazzy/back.svg",
  2302. extra: 2775 / 2673,
  2303. bottom: 36.8 / 2817
  2304. }
  2305. },
  2306. maw: {
  2307. height: math.unit(20, "feet"),
  2308. name: "Maw",
  2309. image: {
  2310. source: "./media/characters/jazzy/maw.svg"
  2311. }
  2312. },
  2313. paws: {
  2314. height: math.unit(27.5, "feet"),
  2315. name: "Paws",
  2316. image: {
  2317. source: "./media/characters/jazzy/paws.svg"
  2318. }
  2319. },
  2320. eye: {
  2321. height: math.unit(4.4, "feet"),
  2322. name: "Eye",
  2323. image: {
  2324. source: "./media/characters/jazzy/eye.svg"
  2325. }
  2326. },
  2327. droneOffense: {
  2328. height: math.unit(9.5, "inches"),
  2329. name: "Drone (Offense)",
  2330. image: {
  2331. source: "./media/characters/jazzy/drone-offense.svg"
  2332. }
  2333. },
  2334. droneRecon: {
  2335. height: math.unit(9.5, "inches"),
  2336. name: "Drone (Recon)",
  2337. image: {
  2338. source: "./media/characters/jazzy/drone-recon.svg"
  2339. }
  2340. },
  2341. droneDefense: {
  2342. height: math.unit(9.5, "inches"),
  2343. name: "Drone (Defense)",
  2344. image: {
  2345. source: "./media/characters/jazzy/drone-defense.svg"
  2346. }
  2347. },
  2348. },
  2349. [
  2350. {
  2351. name: "Macro",
  2352. height: math.unit(216, "feet"),
  2353. default: true
  2354. },
  2355. ]
  2356. ))
  2357. characterMakers.push(() => makeCharacter(
  2358. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2359. {
  2360. front: {
  2361. height: math.unit(9 + 6/12, "feet"),
  2362. weight: math.unit(700, "lb"),
  2363. name: "Front",
  2364. image: {
  2365. source: "./media/characters/flamm/front.svg",
  2366. extra: 1751/1632,
  2367. bottom: 46/1797
  2368. }
  2369. },
  2370. buff: {
  2371. height: math.unit(9 + 6/12, "feet"),
  2372. weight: math.unit(950, "lb"),
  2373. name: "Buff",
  2374. image: {
  2375. source: "./media/characters/flamm/buff.svg",
  2376. extra: 3018/2874,
  2377. bottom: 221/3239
  2378. }
  2379. },
  2380. },
  2381. [
  2382. {
  2383. name: "Normal",
  2384. height: math.unit(9.5, "feet")
  2385. },
  2386. {
  2387. name: "Macro",
  2388. height: math.unit(200, "feet"),
  2389. default: true
  2390. },
  2391. ]
  2392. ))
  2393. characterMakers.push(() => makeCharacter(
  2394. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2395. {
  2396. front: {
  2397. height: math.unit(5 + 3/12, "feet"),
  2398. weight: math.unit(60, "kg"),
  2399. name: "Front",
  2400. image: {
  2401. source: "./media/characters/zephiro/front.svg",
  2402. extra: 2309 / 2162,
  2403. bottom: 0.069
  2404. }
  2405. },
  2406. side: {
  2407. height: math.unit(5 + 3/12, "feet"),
  2408. weight: math.unit(60, "kg"),
  2409. name: "Side",
  2410. image: {
  2411. source: "./media/characters/zephiro/side.svg",
  2412. extra: 2403 / 2279,
  2413. bottom: 0.015
  2414. }
  2415. },
  2416. back: {
  2417. height: math.unit(5 + 3/12, "feet"),
  2418. weight: math.unit(60, "kg"),
  2419. name: "Back",
  2420. image: {
  2421. source: "./media/characters/zephiro/back.svg",
  2422. extra: 2373 / 2244,
  2423. bottom: 0.013
  2424. }
  2425. },
  2426. hand: {
  2427. height: math.unit(0.68, "feet"),
  2428. name: "Hand",
  2429. image: {
  2430. source: "./media/characters/zephiro/hand.svg"
  2431. }
  2432. },
  2433. paw: {
  2434. height: math.unit(1, "feet"),
  2435. name: "Paw",
  2436. image: {
  2437. source: "./media/characters/zephiro/paw.svg"
  2438. }
  2439. },
  2440. beans: {
  2441. height: math.unit(0.93, "feet"),
  2442. name: "Beans",
  2443. image: {
  2444. source: "./media/characters/zephiro/beans.svg"
  2445. }
  2446. },
  2447. },
  2448. [
  2449. {
  2450. name: "Micro",
  2451. height: math.unit(3, "inches")
  2452. },
  2453. {
  2454. name: "Normal",
  2455. height: math.unit(5 + 3 / 12, "feet"),
  2456. default: true
  2457. },
  2458. {
  2459. name: "Macro",
  2460. height: math.unit(118, "feet")
  2461. },
  2462. ]
  2463. ))
  2464. characterMakers.push(() => makeCharacter(
  2465. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2466. {
  2467. front: {
  2468. height: math.unit(5, "feet"),
  2469. weight: math.unit(90, "kg"),
  2470. name: "Front",
  2471. image: {
  2472. source: "./media/characters/fory/front.svg",
  2473. extra: 2862 / 2674,
  2474. bottom: 180 / 3043.8
  2475. }
  2476. },
  2477. back: {
  2478. height: math.unit(5, "feet"),
  2479. weight: math.unit(90, "kg"),
  2480. name: "Back",
  2481. image: {
  2482. source: "./media/characters/fory/back.svg",
  2483. extra: 2962 / 2791,
  2484. bottom: 106 / 3071.8
  2485. }
  2486. },
  2487. foot: {
  2488. height: math.unit(2.14, "feet"),
  2489. name: "Foot",
  2490. image: {
  2491. source: "./media/characters/fory/foot.svg"
  2492. }
  2493. },
  2494. },
  2495. [
  2496. {
  2497. name: "Normal",
  2498. height: math.unit(5, "feet")
  2499. },
  2500. {
  2501. name: "Macro",
  2502. height: math.unit(50, "feet"),
  2503. default: true
  2504. },
  2505. {
  2506. name: "Megamacro",
  2507. height: math.unit(10, "miles")
  2508. },
  2509. {
  2510. name: "Gigamacro",
  2511. height: math.unit(5, "earths")
  2512. },
  2513. ]
  2514. ))
  2515. characterMakers.push(() => makeCharacter(
  2516. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2517. {
  2518. front: {
  2519. height: math.unit(7, "feet"),
  2520. weight: math.unit(90, "kg"),
  2521. name: "Front",
  2522. image: {
  2523. source: "./media/characters/kurrikage/front.svg",
  2524. extra: 1,
  2525. bottom: 0.035
  2526. }
  2527. },
  2528. back: {
  2529. height: math.unit(7, "feet"),
  2530. weight: math.unit(90, "lb"),
  2531. name: "Back",
  2532. image: {
  2533. source: "./media/characters/kurrikage/back.svg"
  2534. }
  2535. },
  2536. paw: {
  2537. height: math.unit(1.5, "feet"),
  2538. name: "Paw",
  2539. image: {
  2540. source: "./media/characters/kurrikage/paw.svg"
  2541. }
  2542. },
  2543. staff: {
  2544. height: math.unit(6.7, "feet"),
  2545. name: "Staff",
  2546. image: {
  2547. source: "./media/characters/kurrikage/staff.svg"
  2548. }
  2549. },
  2550. peek: {
  2551. height: math.unit(1.05, "feet"),
  2552. name: "Peeking",
  2553. image: {
  2554. source: "./media/characters/kurrikage/peek.svg",
  2555. bottom: 0.08
  2556. }
  2557. },
  2558. },
  2559. [
  2560. {
  2561. name: "Normal",
  2562. height: math.unit(12, "feet"),
  2563. default: true
  2564. },
  2565. {
  2566. name: "Big",
  2567. height: math.unit(20, "feet")
  2568. },
  2569. {
  2570. name: "Macro",
  2571. height: math.unit(500, "feet")
  2572. },
  2573. {
  2574. name: "Megamacro",
  2575. height: math.unit(20, "miles")
  2576. },
  2577. ]
  2578. ))
  2579. characterMakers.push(() => makeCharacter(
  2580. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2581. {
  2582. front: {
  2583. height: math.unit(6, "feet"),
  2584. weight: math.unit(75, "kg"),
  2585. name: "Front",
  2586. image: {
  2587. source: "./media/characters/shingo/front.svg",
  2588. extra: 706/681,
  2589. bottom: 11/717
  2590. }
  2591. },
  2592. frontAlt: {
  2593. height: math.unit(6, "feet"),
  2594. weight: math.unit(75, "kg"),
  2595. name: "Front (Alt)",
  2596. image: {
  2597. source: "./media/characters/shingo/front-alt.svg",
  2598. extra: 3511 / 3338,
  2599. bottom: 0.005
  2600. }
  2601. },
  2602. paw: {
  2603. height: math.unit(1, "feet"),
  2604. name: "Paw",
  2605. image: {
  2606. source: "./media/characters/shingo/paw.svg"
  2607. }
  2608. },
  2609. },
  2610. [
  2611. {
  2612. name: "Micro",
  2613. height: math.unit(4, "inches")
  2614. },
  2615. {
  2616. name: "Normal",
  2617. height: math.unit(6, "feet"),
  2618. default: true
  2619. },
  2620. {
  2621. name: "Macro",
  2622. height: math.unit(108, "feet")
  2623. },
  2624. {
  2625. name: "Macro+",
  2626. height: math.unit(1500, "feet")
  2627. },
  2628. ]
  2629. ))
  2630. characterMakers.push(() => makeCharacter(
  2631. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2632. {
  2633. side: {
  2634. height: math.unit(6, "feet"),
  2635. weight: math.unit(75, "kg"),
  2636. name: "Side",
  2637. image: {
  2638. source: "./media/characters/aigey/side.svg"
  2639. }
  2640. },
  2641. },
  2642. [
  2643. {
  2644. name: "Macro",
  2645. height: math.unit(200, "feet"),
  2646. default: true
  2647. },
  2648. {
  2649. name: "Megamacro",
  2650. height: math.unit(100, "miles")
  2651. },
  2652. ]
  2653. )
  2654. )
  2655. characterMakers.push(() => makeCharacter(
  2656. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2657. {
  2658. front: {
  2659. height: math.unit(5 + 5 / 12, "feet"),
  2660. weight: math.unit(75, "kg"),
  2661. name: "Front",
  2662. image: {
  2663. source: "./media/characters/natasha/front.svg",
  2664. extra: 859 / 824,
  2665. bottom: 23 / 879.6
  2666. }
  2667. },
  2668. frontNsfw: {
  2669. height: math.unit(5 + 5 / 12, "feet"),
  2670. weight: math.unit(75, "kg"),
  2671. name: "Front (NSFW)",
  2672. image: {
  2673. source: "./media/characters/natasha/front-nsfw.svg",
  2674. extra: 859 / 824,
  2675. bottom: 23 / 879.6
  2676. }
  2677. },
  2678. frontErect: {
  2679. height: math.unit(5 + 5 / 12, "feet"),
  2680. weight: math.unit(75, "kg"),
  2681. name: "Front (Erect)",
  2682. image: {
  2683. source: "./media/characters/natasha/front-erect.svg",
  2684. extra: 859 / 824,
  2685. bottom: 23 / 879.6
  2686. }
  2687. },
  2688. back: {
  2689. height: math.unit(5 + 5 / 12, "feet"),
  2690. weight: math.unit(75, "kg"),
  2691. name: "Back",
  2692. image: {
  2693. source: "./media/characters/natasha/back.svg",
  2694. extra: 887.9 / 852.6,
  2695. bottom: 9.7 / 896.4
  2696. }
  2697. },
  2698. backAlt: {
  2699. height: math.unit(5 + 5 / 12, "feet"),
  2700. weight: math.unit(75, "kg"),
  2701. name: "Back (Alt)",
  2702. image: {
  2703. source: "./media/characters/natasha/back-alt.svg",
  2704. extra: 1236.7 / 1192,
  2705. bottom: 22.3 / 1258.2
  2706. }
  2707. },
  2708. dick: {
  2709. height: math.unit(1.772, "feet"),
  2710. name: "Dick",
  2711. image: {
  2712. source: "./media/characters/natasha/dick.svg"
  2713. }
  2714. },
  2715. paw: {
  2716. height: math.unit(0.250, "meters"),
  2717. name: "Paw",
  2718. image: {
  2719. source: "./media/characters/natasha/paw.svg"
  2720. }
  2721. },
  2722. },
  2723. [
  2724. {
  2725. name: "Normal",
  2726. height: math.unit(5 + 5 / 12, "feet")
  2727. },
  2728. {
  2729. name: "Large",
  2730. height: math.unit(12, "feet")
  2731. },
  2732. {
  2733. name: "Macro",
  2734. height: math.unit(100, "feet"),
  2735. default: true
  2736. },
  2737. {
  2738. name: "Macro+",
  2739. height: math.unit(260, "feet")
  2740. },
  2741. {
  2742. name: "Macro++",
  2743. height: math.unit(1, "mile")
  2744. },
  2745. ]
  2746. ))
  2747. characterMakers.push(() => makeCharacter(
  2748. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2749. {
  2750. front: {
  2751. height: math.unit(6, "feet"),
  2752. weight: math.unit(75, "kg"),
  2753. name: "Front",
  2754. image: {
  2755. source: "./media/characters/malik/front.svg"
  2756. }
  2757. },
  2758. side: {
  2759. height: math.unit(6, "feet"),
  2760. weight: math.unit(75, "kg"),
  2761. name: "Side",
  2762. image: {
  2763. source: "./media/characters/malik/side.svg",
  2764. extra: 1.1539
  2765. }
  2766. },
  2767. back: {
  2768. height: math.unit(6, "feet"),
  2769. weight: math.unit(75, "kg"),
  2770. name: "Back",
  2771. image: {
  2772. source: "./media/characters/malik/back.svg"
  2773. }
  2774. },
  2775. },
  2776. [
  2777. {
  2778. name: "Macro",
  2779. height: math.unit(156, "feet"),
  2780. default: true
  2781. },
  2782. {
  2783. name: "Macro+",
  2784. height: math.unit(1188, "feet")
  2785. },
  2786. ]
  2787. ))
  2788. characterMakers.push(() => makeCharacter(
  2789. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2790. {
  2791. front: {
  2792. height: math.unit(6, "feet"),
  2793. weight: math.unit(75, "kg"),
  2794. name: "Front",
  2795. image: {
  2796. source: "./media/characters/sefer/front.svg",
  2797. extra: 848 / 659,
  2798. bottom: 28.3 / 876.442
  2799. }
  2800. },
  2801. back: {
  2802. height: math.unit(6, "feet"),
  2803. weight: math.unit(75, "kg"),
  2804. name: "Back",
  2805. image: {
  2806. source: "./media/characters/sefer/back.svg",
  2807. extra: 864 / 695,
  2808. bottom: 10 / 871
  2809. }
  2810. },
  2811. frontDressed: {
  2812. height: math.unit(6, "feet"),
  2813. weight: math.unit(75, "kg"),
  2814. name: "Front (Dressed)",
  2815. image: {
  2816. source: "./media/characters/sefer/front-dressed.svg",
  2817. extra: 839 / 653,
  2818. bottom: 37.6 / 878
  2819. }
  2820. },
  2821. },
  2822. [
  2823. {
  2824. name: "Normal",
  2825. height: math.unit(6, "feet"),
  2826. default: true
  2827. },
  2828. ]
  2829. ))
  2830. characterMakers.push(() => makeCharacter(
  2831. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2832. {
  2833. body: {
  2834. height: math.unit(2.2428, "meter"),
  2835. weight: math.unit(124.738, "kg"),
  2836. name: "Body",
  2837. image: {
  2838. extra: 1225 / 1050,
  2839. source: "./media/characters/north/front.svg"
  2840. }
  2841. }
  2842. },
  2843. [
  2844. {
  2845. name: "Micro",
  2846. height: math.unit(4, "inches")
  2847. },
  2848. {
  2849. name: "Macro",
  2850. height: math.unit(63, "meters")
  2851. },
  2852. {
  2853. name: "Megamacro",
  2854. height: math.unit(101, "miles"),
  2855. default: true
  2856. }
  2857. ]
  2858. ))
  2859. characterMakers.push(() => makeCharacter(
  2860. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2861. {
  2862. angled: {
  2863. height: math.unit(4, "meter"),
  2864. weight: math.unit(150, "kg"),
  2865. name: "Angled",
  2866. image: {
  2867. source: "./media/characters/talan/angled-sfw.svg",
  2868. bottom: 29 / 3734
  2869. }
  2870. },
  2871. angledNsfw: {
  2872. height: math.unit(4, "meter"),
  2873. weight: math.unit(150, "kg"),
  2874. name: "Angled (NSFW)",
  2875. image: {
  2876. source: "./media/characters/talan/angled-nsfw.svg",
  2877. bottom: 29 / 3734
  2878. }
  2879. },
  2880. frontNsfw: {
  2881. height: math.unit(4, "meter"),
  2882. weight: math.unit(150, "kg"),
  2883. name: "Front (NSFW)",
  2884. image: {
  2885. source: "./media/characters/talan/front-nsfw.svg",
  2886. bottom: 29 / 3734
  2887. }
  2888. },
  2889. sideNsfw: {
  2890. height: math.unit(4, "meter"),
  2891. weight: math.unit(150, "kg"),
  2892. name: "Side (NSFW)",
  2893. image: {
  2894. source: "./media/characters/talan/side-nsfw.svg",
  2895. bottom: 29 / 3734
  2896. }
  2897. },
  2898. back: {
  2899. height: math.unit(4, "meter"),
  2900. weight: math.unit(150, "kg"),
  2901. name: "Back",
  2902. image: {
  2903. source: "./media/characters/talan/back.svg"
  2904. }
  2905. },
  2906. dickBottom: {
  2907. height: math.unit(0.621, "meter"),
  2908. name: "Dick (Bottom)",
  2909. image: {
  2910. source: "./media/characters/talan/dick-bottom.svg"
  2911. }
  2912. },
  2913. dickTop: {
  2914. height: math.unit(0.621, "meter"),
  2915. name: "Dick (Top)",
  2916. image: {
  2917. source: "./media/characters/talan/dick-top.svg"
  2918. }
  2919. },
  2920. dickSide: {
  2921. height: math.unit(0.305, "meter"),
  2922. name: "Dick (Side)",
  2923. image: {
  2924. source: "./media/characters/talan/dick-side.svg"
  2925. }
  2926. },
  2927. dickFront: {
  2928. height: math.unit(0.305, "meter"),
  2929. name: "Dick (Front)",
  2930. image: {
  2931. source: "./media/characters/talan/dick-front.svg"
  2932. }
  2933. },
  2934. },
  2935. [
  2936. {
  2937. name: "Normal",
  2938. height: math.unit(4, "meters")
  2939. },
  2940. {
  2941. name: "Macro",
  2942. height: math.unit(100, "meters")
  2943. },
  2944. {
  2945. name: "Megamacro",
  2946. height: math.unit(2, "miles"),
  2947. default: true
  2948. },
  2949. {
  2950. name: "Gigamacro",
  2951. height: math.unit(5000, "miles")
  2952. },
  2953. {
  2954. name: "Teramacro",
  2955. height: math.unit(100, "parsecs")
  2956. }
  2957. ]
  2958. ))
  2959. characterMakers.push(() => makeCharacter(
  2960. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2961. {
  2962. front: {
  2963. height: math.unit(2, "meter"),
  2964. weight: math.unit(90, "kg"),
  2965. name: "Front",
  2966. image: {
  2967. source: "./media/characters/gael'rathus/front.svg"
  2968. }
  2969. },
  2970. frontAlt: {
  2971. height: math.unit(2, "meter"),
  2972. weight: math.unit(90, "kg"),
  2973. name: "Front (alt)",
  2974. image: {
  2975. source: "./media/characters/gael'rathus/front-alt.svg"
  2976. }
  2977. },
  2978. frontAlt2: {
  2979. height: math.unit(2, "meter"),
  2980. weight: math.unit(90, "kg"),
  2981. name: "Front (alt 2)",
  2982. image: {
  2983. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2984. }
  2985. }
  2986. },
  2987. [
  2988. {
  2989. name: "Normal",
  2990. height: math.unit(9, "feet"),
  2991. default: true
  2992. },
  2993. {
  2994. name: "Large",
  2995. height: math.unit(25, "feet")
  2996. },
  2997. {
  2998. name: "Macro",
  2999. height: math.unit(0.25, "miles")
  3000. },
  3001. {
  3002. name: "Megamacro",
  3003. height: math.unit(10, "miles")
  3004. }
  3005. ]
  3006. ))
  3007. characterMakers.push(() => makeCharacter(
  3008. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3009. {
  3010. side: {
  3011. height: math.unit(2, "meter"),
  3012. weight: math.unit(140, "kg"),
  3013. name: "Side",
  3014. image: {
  3015. source: "./media/characters/sosha/side.svg",
  3016. bottom: 0.042
  3017. }
  3018. },
  3019. },
  3020. [
  3021. {
  3022. name: "Normal",
  3023. height: math.unit(12, "feet"),
  3024. default: true
  3025. }
  3026. ]
  3027. ))
  3028. characterMakers.push(() => makeCharacter(
  3029. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3030. {
  3031. side: {
  3032. height: math.unit(5 + 5 / 12, "feet"),
  3033. weight: math.unit(170, "kg"),
  3034. name: "Side",
  3035. image: {
  3036. source: "./media/characters/runnola/side.svg",
  3037. extra: 741 / 448,
  3038. bottom: 0.05
  3039. }
  3040. },
  3041. },
  3042. [
  3043. {
  3044. name: "Small",
  3045. height: math.unit(3, "feet")
  3046. },
  3047. {
  3048. name: "Normal",
  3049. height: math.unit(5 + 5 / 12, "feet"),
  3050. default: true
  3051. },
  3052. {
  3053. name: "Big",
  3054. height: math.unit(10, "feet")
  3055. },
  3056. ]
  3057. ))
  3058. characterMakers.push(() => makeCharacter(
  3059. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3060. {
  3061. front: {
  3062. height: math.unit(2, "meter"),
  3063. weight: math.unit(50, "kg"),
  3064. name: "Front",
  3065. image: {
  3066. source: "./media/characters/kurribird/front.svg",
  3067. bottom: 0.015
  3068. }
  3069. },
  3070. frontAlt: {
  3071. height: math.unit(1.5, "meter"),
  3072. weight: math.unit(50, "kg"),
  3073. name: "Front (Alt)",
  3074. image: {
  3075. source: "./media/characters/kurribird/front-alt.svg",
  3076. extra: 1.45
  3077. }
  3078. },
  3079. },
  3080. [
  3081. {
  3082. name: "Normal",
  3083. height: math.unit(7, "feet")
  3084. },
  3085. {
  3086. name: "Big",
  3087. height: math.unit(12, "feet"),
  3088. default: true
  3089. },
  3090. {
  3091. name: "Macro",
  3092. height: math.unit(1500, "feet")
  3093. },
  3094. {
  3095. name: "Megamacro",
  3096. height: math.unit(2, "miles")
  3097. }
  3098. ]
  3099. ))
  3100. characterMakers.push(() => makeCharacter(
  3101. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3102. {
  3103. front: {
  3104. height: math.unit(2, "meter"),
  3105. weight: math.unit(80, "kg"),
  3106. name: "Front",
  3107. image: {
  3108. source: "./media/characters/elbial/front.svg",
  3109. extra: 1643 / 1556,
  3110. bottom: 60.2 / 1696
  3111. }
  3112. },
  3113. side: {
  3114. height: math.unit(2, "meter"),
  3115. weight: math.unit(80, "kg"),
  3116. name: "Side",
  3117. image: {
  3118. source: "./media/characters/elbial/side.svg",
  3119. extra: 1630 / 1565,
  3120. bottom: 71.5 / 1697
  3121. }
  3122. },
  3123. back: {
  3124. height: math.unit(2, "meter"),
  3125. weight: math.unit(80, "kg"),
  3126. name: "Back",
  3127. image: {
  3128. source: "./media/characters/elbial/back.svg",
  3129. extra: 1668 / 1595,
  3130. bottom: 5.6 / 1672
  3131. }
  3132. },
  3133. frontDressed: {
  3134. height: math.unit(2, "meter"),
  3135. weight: math.unit(80, "kg"),
  3136. name: "Front (Dressed)",
  3137. image: {
  3138. source: "./media/characters/elbial/front-dressed.svg",
  3139. extra: 1653 / 1584,
  3140. bottom: 57 / 1708
  3141. }
  3142. },
  3143. genitals: {
  3144. height: math.unit(2 / 3.367, "meter"),
  3145. name: "Genitals",
  3146. image: {
  3147. source: "./media/characters/elbial/genitals.svg"
  3148. }
  3149. },
  3150. },
  3151. [
  3152. {
  3153. name: "Large",
  3154. height: math.unit(100, "feet")
  3155. },
  3156. {
  3157. name: "Macro",
  3158. height: math.unit(500, "feet"),
  3159. default: true
  3160. },
  3161. {
  3162. name: "Megamacro",
  3163. height: math.unit(10, "miles")
  3164. },
  3165. {
  3166. name: "Gigamacro",
  3167. height: math.unit(25000, "miles")
  3168. },
  3169. {
  3170. name: "Full-Size",
  3171. height: math.unit(8000000, "gigaparsecs")
  3172. }
  3173. ]
  3174. ))
  3175. characterMakers.push(() => makeCharacter(
  3176. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3177. {
  3178. front: {
  3179. height: math.unit(2, "meter"),
  3180. weight: math.unit(60, "kg"),
  3181. name: "Front",
  3182. image: {
  3183. source: "./media/characters/noah/front.svg"
  3184. }
  3185. },
  3186. talons: {
  3187. height: math.unit(0.315, "meter"),
  3188. name: "Talons",
  3189. image: {
  3190. source: "./media/characters/noah/talons.svg"
  3191. }
  3192. }
  3193. },
  3194. [
  3195. {
  3196. name: "Large",
  3197. height: math.unit(50, "feet")
  3198. },
  3199. {
  3200. name: "Macro",
  3201. height: math.unit(750, "feet"),
  3202. default: true
  3203. },
  3204. {
  3205. name: "Megamacro",
  3206. height: math.unit(50, "miles")
  3207. },
  3208. {
  3209. name: "Gigamacro",
  3210. height: math.unit(100000, "miles")
  3211. },
  3212. {
  3213. name: "Full-Size",
  3214. height: math.unit(3000000000, "miles")
  3215. }
  3216. ]
  3217. ))
  3218. characterMakers.push(() => makeCharacter(
  3219. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3220. {
  3221. front: {
  3222. height: math.unit(2, "meter"),
  3223. weight: math.unit(80, "kg"),
  3224. name: "Front",
  3225. image: {
  3226. source: "./media/characters/natalya/front.svg"
  3227. }
  3228. },
  3229. back: {
  3230. height: math.unit(2, "meter"),
  3231. weight: math.unit(80, "kg"),
  3232. name: "Back",
  3233. image: {
  3234. source: "./media/characters/natalya/back.svg"
  3235. }
  3236. }
  3237. },
  3238. [
  3239. {
  3240. name: "Normal",
  3241. height: math.unit(150, "feet"),
  3242. default: true
  3243. },
  3244. {
  3245. name: "Megamacro",
  3246. height: math.unit(5, "miles")
  3247. },
  3248. {
  3249. name: "Full-Size",
  3250. height: math.unit(600, "kiloparsecs")
  3251. }
  3252. ]
  3253. ))
  3254. characterMakers.push(() => makeCharacter(
  3255. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3256. {
  3257. front: {
  3258. height: math.unit(2, "meter"),
  3259. weight: math.unit(50, "kg"),
  3260. name: "Front",
  3261. image: {
  3262. source: "./media/characters/erestrebah/front.svg",
  3263. extra: 208 / 193,
  3264. bottom: 0.055
  3265. }
  3266. },
  3267. back: {
  3268. height: math.unit(2, "meter"),
  3269. weight: math.unit(50, "kg"),
  3270. name: "Back",
  3271. image: {
  3272. source: "./media/characters/erestrebah/back.svg",
  3273. extra: 1.3
  3274. }
  3275. }
  3276. },
  3277. [
  3278. {
  3279. name: "Normal",
  3280. height: math.unit(10, "feet")
  3281. },
  3282. {
  3283. name: "Large",
  3284. height: math.unit(50, "feet"),
  3285. default: true
  3286. },
  3287. {
  3288. name: "Macro",
  3289. height: math.unit(300, "feet")
  3290. },
  3291. {
  3292. name: "Macro+",
  3293. height: math.unit(750, "feet")
  3294. },
  3295. {
  3296. name: "Megamacro",
  3297. height: math.unit(3, "miles")
  3298. }
  3299. ]
  3300. ))
  3301. characterMakers.push(() => makeCharacter(
  3302. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3303. {
  3304. front: {
  3305. height: math.unit(2, "meter"),
  3306. weight: math.unit(80, "kg"),
  3307. name: "Front",
  3308. image: {
  3309. source: "./media/characters/jennifer/front.svg",
  3310. bottom: 0.11,
  3311. extra: 1.16
  3312. }
  3313. },
  3314. frontAlt: {
  3315. height: math.unit(2, "meter"),
  3316. weight: math.unit(80, "kg"),
  3317. name: "Front (Alt)",
  3318. image: {
  3319. source: "./media/characters/jennifer/front-alt.svg"
  3320. }
  3321. }
  3322. },
  3323. [
  3324. {
  3325. name: "Canon Height",
  3326. height: math.unit(120, "feet"),
  3327. default: true
  3328. },
  3329. {
  3330. name: "Macro+",
  3331. height: math.unit(300, "feet")
  3332. },
  3333. {
  3334. name: "Megamacro",
  3335. height: math.unit(20000, "feet")
  3336. }
  3337. ]
  3338. ))
  3339. characterMakers.push(() => makeCharacter(
  3340. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3341. {
  3342. front: {
  3343. height: math.unit(2, "meter"),
  3344. weight: math.unit(50, "kg"),
  3345. name: "Front",
  3346. image: {
  3347. source: "./media/characters/kalista/front.svg",
  3348. extra: 1947 / 1700,
  3349. bottom: 76.6 / 1412.98
  3350. }
  3351. },
  3352. back: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(50, "kg"),
  3355. name: "Back",
  3356. image: {
  3357. source: "./media/characters/kalista/back.svg",
  3358. extra: 1366 / 1156,
  3359. bottom: 33.9 / 1362.78
  3360. }
  3361. }
  3362. },
  3363. [
  3364. {
  3365. name: "Uncomfortably Small",
  3366. height: math.unit(10, "feet")
  3367. },
  3368. {
  3369. name: "Small",
  3370. height: math.unit(30, "feet")
  3371. },
  3372. {
  3373. name: "Macro",
  3374. height: math.unit(100, "feet"),
  3375. default: true
  3376. },
  3377. {
  3378. name: "Macro+",
  3379. height: math.unit(2000, "feet")
  3380. },
  3381. {
  3382. name: "True Form",
  3383. height: math.unit(8924, "miles")
  3384. }
  3385. ]
  3386. ))
  3387. characterMakers.push(() => makeCharacter(
  3388. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3389. {
  3390. front: {
  3391. height: math.unit(2, "meter"),
  3392. weight: math.unit(120, "kg"),
  3393. name: "Front",
  3394. image: {
  3395. source: "./media/characters/ggv/front.svg"
  3396. }
  3397. },
  3398. side: {
  3399. height: math.unit(2, "meter"),
  3400. weight: math.unit(120, "kg"),
  3401. name: "Side",
  3402. image: {
  3403. source: "./media/characters/ggv/side.svg"
  3404. }
  3405. }
  3406. },
  3407. [
  3408. {
  3409. name: "Extremely Puny",
  3410. height: math.unit(9 + 5 / 12, "feet")
  3411. },
  3412. {
  3413. name: "Horribly Small",
  3414. height: math.unit(47.7, "miles"),
  3415. default: true
  3416. },
  3417. {
  3418. name: "Reasonably Sized",
  3419. height: math.unit(25000, "parsecs")
  3420. },
  3421. {
  3422. name: "Slightly Uncompressed",
  3423. height: math.unit(7.77e31, "parsecs")
  3424. },
  3425. {
  3426. name: "Omniversal",
  3427. height: math.unit(1e300, "meters")
  3428. },
  3429. ]
  3430. ))
  3431. characterMakers.push(() => makeCharacter(
  3432. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3433. {
  3434. front: {
  3435. height: math.unit(2, "meter"),
  3436. weight: math.unit(75, "lb"),
  3437. name: "Front",
  3438. image: {
  3439. source: "./media/characters/napalm/front.svg"
  3440. }
  3441. },
  3442. back: {
  3443. height: math.unit(2, "meter"),
  3444. weight: math.unit(75, "lb"),
  3445. name: "Back",
  3446. image: {
  3447. source: "./media/characters/napalm/back.svg"
  3448. }
  3449. }
  3450. },
  3451. [
  3452. {
  3453. name: "Standard",
  3454. height: math.unit(55, "feet"),
  3455. default: true
  3456. }
  3457. ]
  3458. ))
  3459. characterMakers.push(() => makeCharacter(
  3460. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3461. {
  3462. front: {
  3463. height: math.unit(7 + 5 / 6, "feet"),
  3464. weight: math.unit(325, "lb"),
  3465. name: "Front",
  3466. image: {
  3467. source: "./media/characters/asana/front.svg",
  3468. extra: 1133 / 1060,
  3469. bottom: 15.2 / 1148.6
  3470. }
  3471. },
  3472. back: {
  3473. height: math.unit(7 + 5 / 6, "feet"),
  3474. weight: math.unit(325, "lb"),
  3475. name: "Back",
  3476. image: {
  3477. source: "./media/characters/asana/back.svg",
  3478. extra: 1114 / 1043,
  3479. bottom: 5 / 1120
  3480. }
  3481. },
  3482. dressedDark: {
  3483. height: math.unit(7 + 5 / 6, "feet"),
  3484. weight: math.unit(325, "lb"),
  3485. name: "Dressed (Dark)",
  3486. image: {
  3487. source: "./media/characters/asana/dressed-dark.svg",
  3488. extra: 1133 / 1060,
  3489. bottom: 15.2 / 1148.6
  3490. }
  3491. },
  3492. dressedLight: {
  3493. height: math.unit(7 + 5 / 6, "feet"),
  3494. weight: math.unit(325, "lb"),
  3495. name: "Dressed (Light)",
  3496. image: {
  3497. source: "./media/characters/asana/dressed-light.svg",
  3498. extra: 1133 / 1060,
  3499. bottom: 15.2 / 1148.6
  3500. }
  3501. },
  3502. },
  3503. [
  3504. {
  3505. name: "Standard",
  3506. height: math.unit(7 + 5 / 6, "feet"),
  3507. default: true
  3508. },
  3509. {
  3510. name: "Large",
  3511. height: math.unit(10, "meters")
  3512. },
  3513. {
  3514. name: "Macro",
  3515. height: math.unit(2500, "meters")
  3516. },
  3517. {
  3518. name: "Megamacro",
  3519. height: math.unit(5e6, "meters")
  3520. },
  3521. {
  3522. name: "Examacro",
  3523. height: math.unit(5e12, "lightyears")
  3524. },
  3525. {
  3526. name: "Max Size",
  3527. height: math.unit(1e31, "lightyears")
  3528. }
  3529. ]
  3530. ))
  3531. characterMakers.push(() => makeCharacter(
  3532. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3533. {
  3534. front: {
  3535. height: math.unit(2, "meter"),
  3536. weight: math.unit(60, "kg"),
  3537. name: "Front",
  3538. image: {
  3539. source: "./media/characters/ebony/front.svg",
  3540. bottom: 0.03,
  3541. extra: 1045 / 810 + 0.03
  3542. }
  3543. },
  3544. side: {
  3545. height: math.unit(2, "meter"),
  3546. weight: math.unit(60, "kg"),
  3547. name: "Side",
  3548. image: {
  3549. source: "./media/characters/ebony/side.svg",
  3550. bottom: 0.03,
  3551. extra: 1045 / 810 + 0.03
  3552. }
  3553. },
  3554. back: {
  3555. height: math.unit(2, "meter"),
  3556. weight: math.unit(60, "kg"),
  3557. name: "Back",
  3558. image: {
  3559. source: "./media/characters/ebony/back.svg",
  3560. bottom: 0.01,
  3561. extra: 1045 / 810 + 0.01
  3562. }
  3563. },
  3564. },
  3565. [
  3566. // TODO check why I did this lol
  3567. {
  3568. name: "Standard",
  3569. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3570. default: true
  3571. },
  3572. {
  3573. name: "Macro",
  3574. height: math.unit(200, "feet")
  3575. },
  3576. {
  3577. name: "Gigamacro",
  3578. height: math.unit(13000, "km")
  3579. }
  3580. ]
  3581. ))
  3582. characterMakers.push(() => makeCharacter(
  3583. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3584. {
  3585. front: {
  3586. height: math.unit(6, "feet"),
  3587. weight: math.unit(175, "lb"),
  3588. name: "Front",
  3589. image: {
  3590. source: "./media/characters/mountain/front.svg",
  3591. extra: 972 / 955,
  3592. bottom: 64 / 1036.6
  3593. }
  3594. },
  3595. back: {
  3596. height: math.unit(6, "feet"),
  3597. weight: math.unit(175, "lb"),
  3598. name: "Back",
  3599. image: {
  3600. source: "./media/characters/mountain/back.svg",
  3601. extra: 970 / 950,
  3602. bottom: 28.25 / 999
  3603. }
  3604. },
  3605. },
  3606. [
  3607. {
  3608. name: "Large",
  3609. height: math.unit(20, "meters")
  3610. },
  3611. {
  3612. name: "Macro",
  3613. height: math.unit(300, "meters")
  3614. },
  3615. {
  3616. name: "Gigamacro",
  3617. height: math.unit(10000, "km"),
  3618. default: true
  3619. },
  3620. {
  3621. name: "Examacro",
  3622. height: math.unit(10e9, "lightyears")
  3623. }
  3624. ]
  3625. ))
  3626. characterMakers.push(() => makeCharacter(
  3627. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3628. {
  3629. front: {
  3630. height: math.unit(8, "feet"),
  3631. weight: math.unit(500, "lb"),
  3632. name: "Front",
  3633. image: {
  3634. source: "./media/characters/rick/front.svg"
  3635. }
  3636. }
  3637. },
  3638. [
  3639. {
  3640. name: "Normal",
  3641. height: math.unit(8, "feet"),
  3642. default: true
  3643. },
  3644. {
  3645. name: "Macro",
  3646. height: math.unit(5, "km")
  3647. }
  3648. ]
  3649. ))
  3650. characterMakers.push(() => makeCharacter(
  3651. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3652. {
  3653. front: {
  3654. height: math.unit(8, "feet"),
  3655. weight: math.unit(120, "lb"),
  3656. name: "Front",
  3657. image: {
  3658. source: "./media/characters/ona/front.svg"
  3659. }
  3660. },
  3661. frontAlt: {
  3662. height: math.unit(8, "feet"),
  3663. weight: math.unit(120, "lb"),
  3664. name: "Front (Alt)",
  3665. image: {
  3666. source: "./media/characters/ona/front-alt.svg"
  3667. }
  3668. },
  3669. back: {
  3670. height: math.unit(8, "feet"),
  3671. weight: math.unit(120, "lb"),
  3672. name: "Back",
  3673. image: {
  3674. source: "./media/characters/ona/back.svg"
  3675. }
  3676. },
  3677. foot: {
  3678. height: math.unit(1.1, "feet"),
  3679. name: "Foot",
  3680. image: {
  3681. source: "./media/characters/ona/foot.svg"
  3682. }
  3683. }
  3684. },
  3685. [
  3686. {
  3687. name: "Megamacro",
  3688. height: math.unit(70, "km"),
  3689. default: true
  3690. },
  3691. {
  3692. name: "Gigamacro",
  3693. height: math.unit(681818, "miles")
  3694. },
  3695. {
  3696. name: "Examacro",
  3697. height: math.unit(3800000, "lightyears")
  3698. },
  3699. ]
  3700. ))
  3701. characterMakers.push(() => makeCharacter(
  3702. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3703. {
  3704. front: {
  3705. height: math.unit(12, "feet"),
  3706. weight: math.unit(3000, "lb"),
  3707. name: "Front",
  3708. image: {
  3709. source: "./media/characters/mech/front.svg",
  3710. extra: 2900 / 2770,
  3711. bottom: 110 / 3010
  3712. }
  3713. },
  3714. back: {
  3715. height: math.unit(12, "feet"),
  3716. weight: math.unit(3000, "lb"),
  3717. name: "Back",
  3718. image: {
  3719. source: "./media/characters/mech/back.svg",
  3720. extra: 3011 / 2890,
  3721. bottom: 94 / 3105
  3722. }
  3723. },
  3724. maw: {
  3725. height: math.unit(3.07, "feet"),
  3726. name: "Maw",
  3727. image: {
  3728. source: "./media/characters/mech/maw.svg"
  3729. }
  3730. },
  3731. head: {
  3732. height: math.unit(2.82, "feet"),
  3733. name: "Head",
  3734. image: {
  3735. source: "./media/characters/mech/head.svg"
  3736. }
  3737. },
  3738. dick: {
  3739. height: math.unit(1.43, "feet"),
  3740. name: "Dick",
  3741. image: {
  3742. source: "./media/characters/mech/dick.svg"
  3743. }
  3744. },
  3745. },
  3746. [
  3747. {
  3748. name: "Normal",
  3749. height: math.unit(12, "feet")
  3750. },
  3751. {
  3752. name: "Macro",
  3753. height: math.unit(300, "feet"),
  3754. default: true
  3755. },
  3756. {
  3757. name: "Macro+",
  3758. height: math.unit(1500, "feet")
  3759. },
  3760. ]
  3761. ))
  3762. characterMakers.push(() => makeCharacter(
  3763. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3764. {
  3765. front: {
  3766. height: math.unit(1.3, "meter"),
  3767. weight: math.unit(30, "kg"),
  3768. name: "Front",
  3769. image: {
  3770. source: "./media/characters/gregory/front.svg",
  3771. }
  3772. }
  3773. },
  3774. [
  3775. {
  3776. name: "Normal",
  3777. height: math.unit(1.3, "meter"),
  3778. default: true
  3779. },
  3780. {
  3781. name: "Macro",
  3782. height: math.unit(20, "meter")
  3783. }
  3784. ]
  3785. ))
  3786. characterMakers.push(() => makeCharacter(
  3787. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3788. {
  3789. front: {
  3790. height: math.unit(2.8, "meter"),
  3791. weight: math.unit(200, "kg"),
  3792. name: "Front",
  3793. image: {
  3794. source: "./media/characters/elory/front.svg",
  3795. }
  3796. }
  3797. },
  3798. [
  3799. {
  3800. name: "Normal",
  3801. height: math.unit(2.8, "meter"),
  3802. default: true
  3803. },
  3804. {
  3805. name: "Macro",
  3806. height: math.unit(38, "meter")
  3807. }
  3808. ]
  3809. ))
  3810. characterMakers.push(() => makeCharacter(
  3811. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3812. {
  3813. front: {
  3814. height: math.unit(470, "feet"),
  3815. weight: math.unit(924, "tons"),
  3816. name: "Front",
  3817. image: {
  3818. source: "./media/characters/angelpatamon/front.svg",
  3819. }
  3820. }
  3821. },
  3822. [
  3823. {
  3824. name: "Normal",
  3825. height: math.unit(470, "feet"),
  3826. default: true
  3827. },
  3828. {
  3829. name: "Deity Size I",
  3830. height: math.unit(28651.2, "km")
  3831. },
  3832. {
  3833. name: "Deity Size II",
  3834. height: math.unit(171907.2, "km")
  3835. }
  3836. ]
  3837. ))
  3838. characterMakers.push(() => makeCharacter(
  3839. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3840. {
  3841. side: {
  3842. height: math.unit(7.2, "meter"),
  3843. weight: math.unit(8.2, "tons"),
  3844. name: "Side",
  3845. image: {
  3846. source: "./media/characters/cryae/side.svg",
  3847. extra: 3500 / 1500
  3848. }
  3849. }
  3850. },
  3851. [
  3852. {
  3853. name: "Normal",
  3854. height: math.unit(7.2, "meter"),
  3855. default: true
  3856. }
  3857. ]
  3858. ))
  3859. characterMakers.push(() => makeCharacter(
  3860. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3861. {
  3862. front: {
  3863. height: math.unit(6, "feet"),
  3864. weight: math.unit(175, "lb"),
  3865. name: "Front",
  3866. image: {
  3867. source: "./media/characters/xera/front.svg",
  3868. extra: 2377 / 1972,
  3869. bottom: 75.5 / 2452
  3870. }
  3871. },
  3872. side: {
  3873. height: math.unit(6, "feet"),
  3874. weight: math.unit(175, "lb"),
  3875. name: "Side",
  3876. image: {
  3877. source: "./media/characters/xera/side.svg",
  3878. extra: 2345 / 2019,
  3879. bottom: 39.7 / 2384
  3880. }
  3881. },
  3882. back: {
  3883. height: math.unit(6, "feet"),
  3884. weight: math.unit(175, "lb"),
  3885. name: "Back",
  3886. image: {
  3887. source: "./media/characters/xera/back.svg",
  3888. extra: 2095 / 1984,
  3889. bottom: 67 / 2166
  3890. }
  3891. },
  3892. },
  3893. [
  3894. {
  3895. name: "Small",
  3896. height: math.unit(10, "feet")
  3897. },
  3898. {
  3899. name: "Macro",
  3900. height: math.unit(500, "meters"),
  3901. default: true
  3902. },
  3903. {
  3904. name: "Macro+",
  3905. height: math.unit(10, "km")
  3906. },
  3907. {
  3908. name: "Gigamacro",
  3909. height: math.unit(25000, "km")
  3910. },
  3911. {
  3912. name: "Teramacro",
  3913. height: math.unit(3e6, "km")
  3914. }
  3915. ]
  3916. ))
  3917. characterMakers.push(() => makeCharacter(
  3918. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3919. {
  3920. front: {
  3921. height: math.unit(6, "feet"),
  3922. weight: math.unit(175, "lb"),
  3923. name: "Front",
  3924. image: {
  3925. source: "./media/characters/nebula/front.svg",
  3926. extra: 2566 / 2362,
  3927. bottom: 81 / 2644
  3928. }
  3929. }
  3930. },
  3931. [
  3932. {
  3933. name: "Small",
  3934. height: math.unit(4.5, "meters")
  3935. },
  3936. {
  3937. name: "Macro",
  3938. height: math.unit(1500, "meters"),
  3939. default: true
  3940. },
  3941. {
  3942. name: "Megamacro",
  3943. height: math.unit(150, "km")
  3944. },
  3945. {
  3946. name: "Gigamacro",
  3947. height: math.unit(27000, "km")
  3948. }
  3949. ]
  3950. ))
  3951. characterMakers.push(() => makeCharacter(
  3952. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3953. {
  3954. front: {
  3955. height: math.unit(6, "feet"),
  3956. weight: math.unit(225, "lb"),
  3957. name: "Front",
  3958. image: {
  3959. source: "./media/characters/abysgar/front.svg"
  3960. }
  3961. }
  3962. },
  3963. [
  3964. {
  3965. name: "Small",
  3966. height: math.unit(4.5, "meters")
  3967. },
  3968. {
  3969. name: "Macro",
  3970. height: math.unit(1250, "meters"),
  3971. default: true
  3972. },
  3973. {
  3974. name: "Megamacro",
  3975. height: math.unit(125, "km")
  3976. },
  3977. {
  3978. name: "Gigamacro",
  3979. height: math.unit(26000, "km")
  3980. }
  3981. ]
  3982. ))
  3983. characterMakers.push(() => makeCharacter(
  3984. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3985. {
  3986. front: {
  3987. height: math.unit(6, "feet"),
  3988. weight: math.unit(180, "lb"),
  3989. name: "Front",
  3990. image: {
  3991. source: "./media/characters/yakuz/front.svg"
  3992. }
  3993. }
  3994. },
  3995. [
  3996. {
  3997. name: "Small",
  3998. height: math.unit(5, "meters")
  3999. },
  4000. {
  4001. name: "Macro",
  4002. height: math.unit(1500, "meters"),
  4003. default: true
  4004. },
  4005. {
  4006. name: "Megamacro",
  4007. height: math.unit(200, "km")
  4008. },
  4009. {
  4010. name: "Gigamacro",
  4011. height: math.unit(100000, "km")
  4012. }
  4013. ]
  4014. ))
  4015. characterMakers.push(() => makeCharacter(
  4016. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4017. {
  4018. front: {
  4019. height: math.unit(6, "feet"),
  4020. weight: math.unit(175, "lb"),
  4021. name: "Front",
  4022. image: {
  4023. source: "./media/characters/mirova/front.svg",
  4024. extra: 3334 / 3071,
  4025. bottom: 42 / 3375.6
  4026. }
  4027. }
  4028. },
  4029. [
  4030. {
  4031. name: "Small",
  4032. height: math.unit(5, "meters")
  4033. },
  4034. {
  4035. name: "Macro",
  4036. height: math.unit(900, "meters"),
  4037. default: true
  4038. },
  4039. {
  4040. name: "Megamacro",
  4041. height: math.unit(135, "km")
  4042. },
  4043. {
  4044. name: "Gigamacro",
  4045. height: math.unit(20000, "km")
  4046. }
  4047. ]
  4048. ))
  4049. characterMakers.push(() => makeCharacter(
  4050. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4051. {
  4052. side: {
  4053. height: math.unit(28.35, "feet"),
  4054. weight: math.unit(99.75, "tons"),
  4055. name: "Side",
  4056. image: {
  4057. source: "./media/characters/asana-mech/side.svg",
  4058. extra: 923 / 699,
  4059. bottom: 50 / 975
  4060. }
  4061. },
  4062. chaingun: {
  4063. height: math.unit(7, "feet"),
  4064. weight: math.unit(2400, "lb"),
  4065. name: "Chaingun",
  4066. image: {
  4067. source: "./media/characters/asana-mech/chaingun.svg"
  4068. }
  4069. },
  4070. laser: {
  4071. height: math.unit(7.12, "feet"),
  4072. weight: math.unit(2000, "lb"),
  4073. name: "Laser",
  4074. image: {
  4075. source: "./media/characters/asana-mech/laser.svg"
  4076. }
  4077. },
  4078. },
  4079. [
  4080. {
  4081. name: "Normal",
  4082. height: math.unit(28.35, "feet"),
  4083. default: true
  4084. },
  4085. {
  4086. name: "Macro",
  4087. height: math.unit(2500, "feet")
  4088. },
  4089. {
  4090. name: "Megamacro",
  4091. height: math.unit(25, "miles")
  4092. },
  4093. {
  4094. name: "Examacro",
  4095. height: math.unit(6e8, "lightyears")
  4096. },
  4097. ]
  4098. ))
  4099. characterMakers.push(() => makeCharacter(
  4100. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4101. {
  4102. front: {
  4103. height: math.unit(5, "meters"),
  4104. weight: math.unit(1000, "kg"),
  4105. name: "Front",
  4106. image: {
  4107. source: "./media/characters/asche/front.svg",
  4108. extra: 1258 / 1190,
  4109. bottom: 47 / 1305
  4110. }
  4111. },
  4112. frontUnderwear: {
  4113. height: math.unit(5, "meters"),
  4114. weight: math.unit(1000, "kg"),
  4115. name: "Front (Underwear)",
  4116. image: {
  4117. source: "./media/characters/asche/front-underwear.svg",
  4118. extra: 1258 / 1190,
  4119. bottom: 47 / 1305
  4120. }
  4121. },
  4122. frontDressed: {
  4123. height: math.unit(5, "meters"),
  4124. weight: math.unit(1000, "kg"),
  4125. name: "Front (Dressed)",
  4126. image: {
  4127. source: "./media/characters/asche/front-dressed.svg",
  4128. extra: 1258 / 1190,
  4129. bottom: 47 / 1305
  4130. }
  4131. },
  4132. frontArmor: {
  4133. height: math.unit(5, "meters"),
  4134. weight: math.unit(1000, "kg"),
  4135. name: "Front (Armored)",
  4136. image: {
  4137. source: "./media/characters/asche/front-armored.svg",
  4138. extra: 1374 / 1308,
  4139. bottom: 23 / 1397
  4140. }
  4141. },
  4142. mp724: {
  4143. height: math.unit(0.96, "meters"),
  4144. weight: math.unit(38, "kg"),
  4145. name: "H&K MP724",
  4146. image: {
  4147. source: "./media/characters/asche/h&k-mp724.svg"
  4148. }
  4149. },
  4150. side: {
  4151. height: math.unit(5, "meters"),
  4152. weight: math.unit(1000, "kg"),
  4153. name: "Side",
  4154. image: {
  4155. source: "./media/characters/asche/side.svg",
  4156. extra: 1717 / 1609,
  4157. bottom: 0.005
  4158. }
  4159. },
  4160. back: {
  4161. height: math.unit(5, "meters"),
  4162. weight: math.unit(1000, "kg"),
  4163. name: "Back",
  4164. image: {
  4165. source: "./media/characters/asche/back.svg",
  4166. extra: 1570 / 1501
  4167. }
  4168. },
  4169. },
  4170. [
  4171. {
  4172. name: "DEFCON 5",
  4173. height: math.unit(5, "meters")
  4174. },
  4175. {
  4176. name: "DEFCON 4",
  4177. height: math.unit(500, "meters"),
  4178. default: true
  4179. },
  4180. {
  4181. name: "DEFCON 3",
  4182. height: math.unit(5, "km")
  4183. },
  4184. {
  4185. name: "DEFCON 2",
  4186. height: math.unit(500, "km")
  4187. },
  4188. {
  4189. name: "DEFCON 1",
  4190. height: math.unit(500000, "km")
  4191. },
  4192. {
  4193. name: "DEFCON 0",
  4194. height: math.unit(3, "gigaparsecs")
  4195. },
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4200. {
  4201. front: {
  4202. height: math.unit(2, "meters"),
  4203. weight: math.unit(76, "kg"),
  4204. name: "Front",
  4205. image: {
  4206. source: "./media/characters/gale/front.svg"
  4207. }
  4208. },
  4209. frontAlt1: {
  4210. height: math.unit(2, "meters"),
  4211. weight: math.unit(76, "kg"),
  4212. name: "Front (Alt 1)",
  4213. image: {
  4214. source: "./media/characters/gale/front-alt-1.svg"
  4215. }
  4216. },
  4217. frontAlt2: {
  4218. height: math.unit(2, "meters"),
  4219. weight: math.unit(76, "kg"),
  4220. name: "Front (Alt 2)",
  4221. image: {
  4222. source: "./media/characters/gale/front-alt-2.svg"
  4223. }
  4224. },
  4225. },
  4226. [
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(7, "feet")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(150, "feet"),
  4234. default: true
  4235. },
  4236. {
  4237. name: "Macro+",
  4238. height: math.unit(300, "feet")
  4239. },
  4240. ]
  4241. ))
  4242. characterMakers.push(() => makeCharacter(
  4243. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4244. {
  4245. front: {
  4246. height: math.unit(2, "meters"),
  4247. weight: math.unit(76, "kg"),
  4248. name: "Front",
  4249. image: {
  4250. source: "./media/characters/draylen/front.svg"
  4251. }
  4252. }
  4253. },
  4254. [
  4255. {
  4256. name: "Macro",
  4257. height: math.unit(150, "feet"),
  4258. default: true
  4259. }
  4260. ]
  4261. ))
  4262. characterMakers.push(() => makeCharacter(
  4263. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4264. {
  4265. front: {
  4266. height: math.unit(7 + 9 / 12, "feet"),
  4267. weight: math.unit(379, "lbs"),
  4268. name: "Front",
  4269. image: {
  4270. source: "./media/characters/chez/front.svg"
  4271. }
  4272. },
  4273. side: {
  4274. height: math.unit(7 + 9 / 12, "feet"),
  4275. weight: math.unit(379, "lbs"),
  4276. name: "Side",
  4277. image: {
  4278. source: "./media/characters/chez/side.svg"
  4279. }
  4280. }
  4281. },
  4282. [
  4283. {
  4284. name: "Normal",
  4285. height: math.unit(7 + 9 / 12, "feet"),
  4286. default: true
  4287. },
  4288. {
  4289. name: "God King",
  4290. height: math.unit(9750000, "meters")
  4291. }
  4292. ]
  4293. ))
  4294. characterMakers.push(() => makeCharacter(
  4295. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4296. {
  4297. front: {
  4298. height: math.unit(6, "feet"),
  4299. weight: math.unit(275, "lbs"),
  4300. name: "Front",
  4301. image: {
  4302. source: "./media/characters/kaylum/front.svg",
  4303. bottom: 0.01,
  4304. extra: 1166 / 1031
  4305. }
  4306. },
  4307. frontWingless: {
  4308. height: math.unit(6, "feet"),
  4309. weight: math.unit(275, "lbs"),
  4310. name: "Front (Wingless)",
  4311. image: {
  4312. source: "./media/characters/kaylum/front-wingless.svg",
  4313. bottom: 0.01,
  4314. extra: 1117 / 1031
  4315. }
  4316. }
  4317. },
  4318. [
  4319. {
  4320. name: "Normal",
  4321. height: math.unit(3.05, "meters")
  4322. },
  4323. {
  4324. name: "Master",
  4325. height: math.unit(5.5, "meters")
  4326. },
  4327. {
  4328. name: "Rampage",
  4329. height: math.unit(19, "meters")
  4330. },
  4331. {
  4332. name: "Macro Lite",
  4333. height: math.unit(37, "meters")
  4334. },
  4335. {
  4336. name: "Hyper Predator",
  4337. height: math.unit(61, "meters")
  4338. },
  4339. {
  4340. name: "Macro",
  4341. height: math.unit(138, "meters"),
  4342. default: true
  4343. }
  4344. ]
  4345. ))
  4346. characterMakers.push(() => makeCharacter(
  4347. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4348. {
  4349. front: {
  4350. height: math.unit(6, "feet"),
  4351. weight: math.unit(150, "lbs"),
  4352. name: "Front",
  4353. image: {
  4354. source: "./media/characters/geta/front.svg"
  4355. }
  4356. }
  4357. },
  4358. [
  4359. {
  4360. name: "Micro",
  4361. height: math.unit(3, "inches"),
  4362. default: true
  4363. },
  4364. {
  4365. name: "Normal",
  4366. height: math.unit(5 + 5 / 12, "feet")
  4367. }
  4368. ]
  4369. ))
  4370. characterMakers.push(() => makeCharacter(
  4371. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4372. {
  4373. front: {
  4374. height: math.unit(6, "feet"),
  4375. weight: math.unit(300, "lbs"),
  4376. name: "Front",
  4377. image: {
  4378. source: "./media/characters/tyrnn/front.svg"
  4379. }
  4380. }
  4381. },
  4382. [
  4383. {
  4384. name: "Main Height",
  4385. height: math.unit(355, "feet"),
  4386. default: true
  4387. },
  4388. {
  4389. name: "Fave. Height",
  4390. height: math.unit(2400, "feet")
  4391. }
  4392. ]
  4393. ))
  4394. characterMakers.push(() => makeCharacter(
  4395. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4396. {
  4397. front: {
  4398. height: math.unit(6, "feet"),
  4399. weight: math.unit(300, "lbs"),
  4400. name: "Front",
  4401. image: {
  4402. source: "./media/characters/appledectomy/front.svg"
  4403. }
  4404. }
  4405. },
  4406. [
  4407. {
  4408. name: "Macro",
  4409. height: math.unit(2500, "feet")
  4410. },
  4411. {
  4412. name: "Megamacro",
  4413. height: math.unit(50, "miles"),
  4414. default: true
  4415. },
  4416. {
  4417. name: "Gigamacro",
  4418. height: math.unit(5000, "miles")
  4419. },
  4420. {
  4421. name: "Teramacro",
  4422. height: math.unit(250000, "miles")
  4423. },
  4424. ]
  4425. ))
  4426. characterMakers.push(() => makeCharacter(
  4427. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4428. {
  4429. front: {
  4430. height: math.unit(6, "feet"),
  4431. weight: math.unit(200, "lbs"),
  4432. name: "Front",
  4433. image: {
  4434. source: "./media/characters/vulpes/front.svg",
  4435. extra: 573 / 543,
  4436. bottom: 0.033
  4437. }
  4438. },
  4439. side: {
  4440. height: math.unit(6, "feet"),
  4441. weight: math.unit(200, "lbs"),
  4442. name: "Side",
  4443. image: {
  4444. source: "./media/characters/vulpes/side.svg",
  4445. extra: 577 / 549,
  4446. bottom: 11 / 588
  4447. }
  4448. },
  4449. back: {
  4450. height: math.unit(6, "feet"),
  4451. weight: math.unit(200, "lbs"),
  4452. name: "Back",
  4453. image: {
  4454. source: "./media/characters/vulpes/back.svg",
  4455. extra: 573 / 549,
  4456. bottom: 20 / 593
  4457. }
  4458. },
  4459. feet: {
  4460. height: math.unit(1.276, "feet"),
  4461. name: "Feet",
  4462. image: {
  4463. source: "./media/characters/vulpes/feet.svg"
  4464. }
  4465. },
  4466. maw: {
  4467. height: math.unit(1.18, "feet"),
  4468. name: "Maw",
  4469. image: {
  4470. source: "./media/characters/vulpes/maw.svg"
  4471. }
  4472. },
  4473. },
  4474. [
  4475. {
  4476. name: "Micro",
  4477. height: math.unit(2, "inches")
  4478. },
  4479. {
  4480. name: "Normal",
  4481. height: math.unit(6.3, "feet")
  4482. },
  4483. {
  4484. name: "Macro",
  4485. height: math.unit(850, "feet")
  4486. },
  4487. {
  4488. name: "Megamacro",
  4489. height: math.unit(7500, "feet"),
  4490. default: true
  4491. },
  4492. {
  4493. name: "Gigamacro",
  4494. height: math.unit(570000, "miles")
  4495. }
  4496. ]
  4497. ))
  4498. characterMakers.push(() => makeCharacter(
  4499. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4500. {
  4501. front: {
  4502. height: math.unit(6, "feet"),
  4503. weight: math.unit(210, "lbs"),
  4504. name: "Front",
  4505. image: {
  4506. source: "./media/characters/rain-fallen/front.svg"
  4507. }
  4508. },
  4509. side: {
  4510. height: math.unit(6, "feet"),
  4511. weight: math.unit(210, "lbs"),
  4512. name: "Side",
  4513. image: {
  4514. source: "./media/characters/rain-fallen/side.svg"
  4515. }
  4516. },
  4517. back: {
  4518. height: math.unit(6, "feet"),
  4519. weight: math.unit(210, "lbs"),
  4520. name: "Back",
  4521. image: {
  4522. source: "./media/characters/rain-fallen/back.svg"
  4523. }
  4524. },
  4525. feral: {
  4526. height: math.unit(9, "feet"),
  4527. weight: math.unit(700, "lbs"),
  4528. name: "Feral",
  4529. image: {
  4530. source: "./media/characters/rain-fallen/feral.svg"
  4531. }
  4532. },
  4533. },
  4534. [
  4535. {
  4536. name: "Meddling with Mortals",
  4537. height: math.unit(8 + 8/12, "feet")
  4538. },
  4539. {
  4540. name: "Normal",
  4541. height: math.unit(5, "meter")
  4542. },
  4543. {
  4544. name: "Macro",
  4545. height: math.unit(150, "meter"),
  4546. default: true
  4547. },
  4548. {
  4549. name: "Megamacro",
  4550. height: math.unit(278e6, "meter")
  4551. },
  4552. {
  4553. name: "Gigamacro",
  4554. height: math.unit(2e9, "meter")
  4555. },
  4556. {
  4557. name: "Teramacro",
  4558. height: math.unit(8e12, "meter")
  4559. },
  4560. {
  4561. name: "Devourer",
  4562. height: math.unit(14, "zettameters")
  4563. },
  4564. {
  4565. name: "Scarlet King",
  4566. height: math.unit(18, "yottameters")
  4567. },
  4568. {
  4569. name: "Void",
  4570. height: math.unit(1e88, "yottameters")
  4571. }
  4572. ]
  4573. ))
  4574. characterMakers.push(() => makeCharacter(
  4575. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4576. {
  4577. standing: {
  4578. height: math.unit(6, "feet"),
  4579. weight: math.unit(180, "lbs"),
  4580. name: "Standing",
  4581. image: {
  4582. source: "./media/characters/zaakira/standing.svg",
  4583. extra: 1599/1504,
  4584. bottom: 39/1638
  4585. }
  4586. },
  4587. laying: {
  4588. height: math.unit(3, "feet"),
  4589. weight: math.unit(180, "lbs"),
  4590. name: "Laying",
  4591. image: {
  4592. source: "./media/characters/zaakira/laying.svg"
  4593. }
  4594. },
  4595. },
  4596. [
  4597. {
  4598. name: "Normal",
  4599. height: math.unit(12, "feet")
  4600. },
  4601. {
  4602. name: "Macro",
  4603. height: math.unit(279, "feet"),
  4604. default: true
  4605. }
  4606. ]
  4607. ))
  4608. characterMakers.push(() => makeCharacter(
  4609. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4610. {
  4611. femSfw: {
  4612. height: math.unit(8, "feet"),
  4613. weight: math.unit(350, "lb"),
  4614. name: "Fem",
  4615. image: {
  4616. source: "./media/characters/sigvald/fem-sfw.svg",
  4617. extra: 182 / 164,
  4618. bottom: 8.7 / 190.5
  4619. }
  4620. },
  4621. femNsfw: {
  4622. height: math.unit(8, "feet"),
  4623. weight: math.unit(350, "lb"),
  4624. name: "Fem (NSFW)",
  4625. image: {
  4626. source: "./media/characters/sigvald/fem-nsfw.svg",
  4627. extra: 182 / 164,
  4628. bottom: 8.7 / 190.5
  4629. }
  4630. },
  4631. maleNsfw: {
  4632. height: math.unit(8, "feet"),
  4633. weight: math.unit(350, "lb"),
  4634. name: "Male (NSFW)",
  4635. image: {
  4636. source: "./media/characters/sigvald/male-nsfw.svg",
  4637. extra: 182 / 164,
  4638. bottom: 8.7 / 190.5
  4639. }
  4640. },
  4641. hermNsfw: {
  4642. height: math.unit(8, "feet"),
  4643. weight: math.unit(350, "lb"),
  4644. name: "Herm (NSFW)",
  4645. image: {
  4646. source: "./media/characters/sigvald/herm-nsfw.svg",
  4647. extra: 182 / 164,
  4648. bottom: 8.7 / 190.5
  4649. }
  4650. },
  4651. dick: {
  4652. height: math.unit(2.36, "feet"),
  4653. name: "Dick",
  4654. image: {
  4655. source: "./media/characters/sigvald/dick.svg"
  4656. }
  4657. },
  4658. eye: {
  4659. height: math.unit(0.31, "feet"),
  4660. name: "Eye",
  4661. image: {
  4662. source: "./media/characters/sigvald/eye.svg"
  4663. }
  4664. },
  4665. mouth: {
  4666. height: math.unit(0.92, "feet"),
  4667. name: "Mouth",
  4668. image: {
  4669. source: "./media/characters/sigvald/mouth.svg"
  4670. }
  4671. },
  4672. paws: {
  4673. height: math.unit(2.2, "feet"),
  4674. name: "Paws",
  4675. image: {
  4676. source: "./media/characters/sigvald/paws.svg"
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Normal",
  4683. height: math.unit(8, "feet")
  4684. },
  4685. {
  4686. name: "Large",
  4687. height: math.unit(12, "feet")
  4688. },
  4689. {
  4690. name: "Larger",
  4691. height: math.unit(20, "feet")
  4692. },
  4693. {
  4694. name: "Macro",
  4695. height: math.unit(150, "feet")
  4696. },
  4697. {
  4698. name: "Macro+",
  4699. height: math.unit(200, "feet"),
  4700. default: true
  4701. },
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4706. {
  4707. side: {
  4708. height: math.unit(12, "feet"),
  4709. weight: math.unit(2000, "kg"),
  4710. name: "Side",
  4711. image: {
  4712. source: "./media/characters/scott/side.svg",
  4713. extra: 754 / 724,
  4714. bottom: 0.069
  4715. }
  4716. },
  4717. upright: {
  4718. height: math.unit(12, "feet"),
  4719. weight: math.unit(2000, "kg"),
  4720. name: "Upright",
  4721. image: {
  4722. source: "./media/characters/scott/upright.svg",
  4723. extra: 3881 / 3722,
  4724. bottom: 0.05
  4725. }
  4726. },
  4727. },
  4728. [
  4729. {
  4730. name: "Normal",
  4731. height: math.unit(12, "feet"),
  4732. default: true
  4733. },
  4734. ]
  4735. ))
  4736. characterMakers.push(() => makeCharacter(
  4737. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4738. {
  4739. side: {
  4740. height: math.unit(8, "meters"),
  4741. weight: math.unit(84755, "lbs"),
  4742. name: "Side",
  4743. image: {
  4744. source: "./media/characters/tobias/side.svg",
  4745. extra: 1474 / 1096,
  4746. bottom: 38.9 / 1513.1235
  4747. }
  4748. },
  4749. },
  4750. [
  4751. {
  4752. name: "Normal",
  4753. height: math.unit(8, "meters"),
  4754. default: true
  4755. },
  4756. ]
  4757. ))
  4758. characterMakers.push(() => makeCharacter(
  4759. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4760. {
  4761. front: {
  4762. height: math.unit(5.5, "feet"),
  4763. weight: math.unit(400, "lbs"),
  4764. name: "Front",
  4765. image: {
  4766. source: "./media/characters/kieran/front.svg",
  4767. extra: 2694 / 2364,
  4768. bottom: 217 / 2908
  4769. }
  4770. },
  4771. side: {
  4772. height: math.unit(5.5, "feet"),
  4773. weight: math.unit(400, "lbs"),
  4774. name: "Side",
  4775. image: {
  4776. source: "./media/characters/kieran/side.svg",
  4777. extra: 875 / 777,
  4778. bottom: 84.6 / 959
  4779. }
  4780. },
  4781. },
  4782. [
  4783. {
  4784. name: "Normal",
  4785. height: math.unit(5.5, "feet"),
  4786. default: true
  4787. },
  4788. ]
  4789. ))
  4790. characterMakers.push(() => makeCharacter(
  4791. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4792. {
  4793. side: {
  4794. height: math.unit(2, "meters"),
  4795. weight: math.unit(70, "kg"),
  4796. name: "Side",
  4797. image: {
  4798. source: "./media/characters/sanya/side.svg",
  4799. bottom: 0.02,
  4800. extra: 1.02
  4801. }
  4802. },
  4803. },
  4804. [
  4805. {
  4806. name: "Small",
  4807. height: math.unit(2, "meters")
  4808. },
  4809. {
  4810. name: "Normal",
  4811. height: math.unit(3, "meters")
  4812. },
  4813. {
  4814. name: "Macro",
  4815. height: math.unit(16, "meters"),
  4816. default: true
  4817. },
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4822. {
  4823. front: {
  4824. height: math.unit(2, "meters"),
  4825. weight: math.unit(120, "kg"),
  4826. name: "Front",
  4827. image: {
  4828. source: "./media/characters/miranda/front.svg",
  4829. extra: 195 / 185,
  4830. bottom: 10.9 / 206.5
  4831. }
  4832. },
  4833. back: {
  4834. height: math.unit(2, "meters"),
  4835. weight: math.unit(120, "kg"),
  4836. name: "Back",
  4837. image: {
  4838. source: "./media/characters/miranda/back.svg",
  4839. extra: 201 / 193,
  4840. bottom: 2.3 / 203.7
  4841. }
  4842. },
  4843. },
  4844. [
  4845. {
  4846. name: "Normal",
  4847. height: math.unit(10, "feet"),
  4848. default: true
  4849. }
  4850. ]
  4851. ))
  4852. characterMakers.push(() => makeCharacter(
  4853. { name: "James", species: ["deer"], tags: ["anthro"] },
  4854. {
  4855. side: {
  4856. height: math.unit(2, "meters"),
  4857. weight: math.unit(100, "kg"),
  4858. name: "Front",
  4859. image: {
  4860. source: "./media/characters/james/front.svg",
  4861. extra: 10 / 8.5
  4862. }
  4863. },
  4864. },
  4865. [
  4866. {
  4867. name: "Normal",
  4868. height: math.unit(8.5, "feet"),
  4869. default: true
  4870. }
  4871. ]
  4872. ))
  4873. characterMakers.push(() => makeCharacter(
  4874. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4875. {
  4876. side: {
  4877. height: math.unit(9.5, "feet"),
  4878. weight: math.unit(2500, "lbs"),
  4879. name: "Side",
  4880. image: {
  4881. source: "./media/characters/heather/side.svg"
  4882. }
  4883. },
  4884. },
  4885. [
  4886. {
  4887. name: "Normal",
  4888. height: math.unit(9.5, "feet"),
  4889. default: true
  4890. }
  4891. ]
  4892. ))
  4893. characterMakers.push(() => makeCharacter(
  4894. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4895. {
  4896. side: {
  4897. height: math.unit(6.5, "feet"),
  4898. weight: math.unit(400, "lbs"),
  4899. name: "Side",
  4900. image: {
  4901. source: "./media/characters/lukas/side.svg",
  4902. extra: 7.25 / 6.5
  4903. }
  4904. },
  4905. },
  4906. [
  4907. {
  4908. name: "Normal",
  4909. height: math.unit(6.5, "feet"),
  4910. default: true
  4911. }
  4912. ]
  4913. ))
  4914. characterMakers.push(() => makeCharacter(
  4915. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4916. {
  4917. side: {
  4918. height: math.unit(5, "feet"),
  4919. weight: math.unit(3000, "lbs"),
  4920. name: "Side",
  4921. image: {
  4922. source: "./media/characters/louise/side.svg"
  4923. }
  4924. },
  4925. },
  4926. [
  4927. {
  4928. name: "Normal",
  4929. height: math.unit(5, "feet"),
  4930. default: true
  4931. }
  4932. ]
  4933. ))
  4934. characterMakers.push(() => makeCharacter(
  4935. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4936. {
  4937. side: {
  4938. height: math.unit(6, "feet"),
  4939. weight: math.unit(150, "lbs"),
  4940. name: "Side",
  4941. image: {
  4942. source: "./media/characters/ramona/side.svg"
  4943. }
  4944. },
  4945. },
  4946. [
  4947. {
  4948. name: "Normal",
  4949. height: math.unit(5.3, "meters"),
  4950. default: true
  4951. },
  4952. {
  4953. name: "Macro",
  4954. height: math.unit(20, "stories")
  4955. },
  4956. {
  4957. name: "Macro+",
  4958. height: math.unit(50, "stories")
  4959. },
  4960. ]
  4961. ))
  4962. characterMakers.push(() => makeCharacter(
  4963. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4964. {
  4965. standing: {
  4966. height: math.unit(5.75, "feet"),
  4967. weight: math.unit(160, "lbs"),
  4968. name: "Standing",
  4969. image: {
  4970. source: "./media/characters/deerpuff/standing.svg",
  4971. extra: 682 / 624
  4972. }
  4973. },
  4974. sitting: {
  4975. height: math.unit(5.75 / 1.79, "feet"),
  4976. weight: math.unit(160, "lbs"),
  4977. name: "Sitting",
  4978. image: {
  4979. source: "./media/characters/deerpuff/sitting.svg",
  4980. bottom: 44 / 400,
  4981. extra: 1
  4982. }
  4983. },
  4984. taurLaying: {
  4985. height: math.unit(6, "feet"),
  4986. weight: math.unit(400, "lbs"),
  4987. name: "Taur (Laying)",
  4988. image: {
  4989. source: "./media/characters/deerpuff/taur-laying.svg"
  4990. }
  4991. },
  4992. },
  4993. [
  4994. {
  4995. name: "Puffball",
  4996. height: math.unit(6, "inches")
  4997. },
  4998. {
  4999. name: "Normalpuff",
  5000. height: math.unit(5.75, "feet")
  5001. },
  5002. {
  5003. name: "Macropuff",
  5004. height: math.unit(1500, "feet"),
  5005. default: true
  5006. },
  5007. {
  5008. name: "Megapuff",
  5009. height: math.unit(500, "miles")
  5010. },
  5011. {
  5012. name: "Gigapuff",
  5013. height: math.unit(250000, "miles")
  5014. },
  5015. {
  5016. name: "Omegapuff",
  5017. height: math.unit(1000, "lightyears")
  5018. },
  5019. ]
  5020. ))
  5021. characterMakers.push(() => makeCharacter(
  5022. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5023. {
  5024. stomping: {
  5025. height: math.unit(6, "feet"),
  5026. weight: math.unit(170, "lbs"),
  5027. name: "Stomping",
  5028. image: {
  5029. source: "./media/characters/vivian/stomping.svg"
  5030. }
  5031. },
  5032. sitting: {
  5033. height: math.unit(6 / 1.75, "feet"),
  5034. weight: math.unit(170, "lbs"),
  5035. name: "Sitting",
  5036. image: {
  5037. source: "./media/characters/vivian/sitting.svg",
  5038. bottom: 1 / 6.4,
  5039. extra: 1,
  5040. }
  5041. },
  5042. },
  5043. [
  5044. {
  5045. name: "Normal",
  5046. height: math.unit(7, "feet"),
  5047. default: true
  5048. },
  5049. {
  5050. name: "Macro",
  5051. height: math.unit(10, "stories")
  5052. },
  5053. {
  5054. name: "Macro+",
  5055. height: math.unit(30, "stories")
  5056. },
  5057. {
  5058. name: "Megamacro",
  5059. height: math.unit(10, "miles")
  5060. },
  5061. {
  5062. name: "Megamacro+",
  5063. height: math.unit(2750000, "meters")
  5064. },
  5065. ]
  5066. ))
  5067. characterMakers.push(() => makeCharacter(
  5068. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5069. {
  5070. front: {
  5071. height: math.unit(6, "feet"),
  5072. weight: math.unit(160, "lbs"),
  5073. name: "Front",
  5074. image: {
  5075. source: "./media/characters/prince/front.svg",
  5076. extra: 3400 / 3000
  5077. }
  5078. },
  5079. jumping: {
  5080. height: math.unit(6, "feet"),
  5081. weight: math.unit(160, "lbs"),
  5082. name: "Jumping",
  5083. image: {
  5084. source: "./media/characters/prince/jump.svg",
  5085. extra: 2555 / 2134
  5086. }
  5087. },
  5088. },
  5089. [
  5090. {
  5091. name: "Normal",
  5092. height: math.unit(7.75, "feet"),
  5093. default: true
  5094. },
  5095. {
  5096. name: "Not cute",
  5097. height: math.unit(17, "feet")
  5098. },
  5099. {
  5100. name: "I said NOT",
  5101. height: math.unit(91, "feet")
  5102. },
  5103. {
  5104. name: "Please stop",
  5105. height: math.unit(560, "feet")
  5106. },
  5107. {
  5108. name: "What have you done",
  5109. height: math.unit(2200, "feet")
  5110. },
  5111. {
  5112. name: "Deer God",
  5113. height: math.unit(3.6, "miles")
  5114. },
  5115. ]
  5116. ))
  5117. characterMakers.push(() => makeCharacter(
  5118. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5119. {
  5120. standing: {
  5121. height: math.unit(6, "feet"),
  5122. weight: math.unit(300, "lbs"),
  5123. name: "Standing",
  5124. image: {
  5125. source: "./media/characters/psymon/standing.svg",
  5126. extra: 1888 / 1810,
  5127. bottom: 0.05
  5128. }
  5129. },
  5130. slithering: {
  5131. height: math.unit(6, "feet"),
  5132. weight: math.unit(300, "lbs"),
  5133. name: "Slithering",
  5134. image: {
  5135. source: "./media/characters/psymon/slithering.svg",
  5136. extra: 1330 / 1224
  5137. }
  5138. },
  5139. slitheringAlt: {
  5140. height: math.unit(6, "feet"),
  5141. weight: math.unit(300, "lbs"),
  5142. name: "Slithering (Alt)",
  5143. image: {
  5144. source: "./media/characters/psymon/slithering-alt.svg",
  5145. extra: 1330 / 1224
  5146. }
  5147. },
  5148. },
  5149. [
  5150. {
  5151. name: "Normal",
  5152. height: math.unit(11.25, "feet"),
  5153. default: true
  5154. },
  5155. {
  5156. name: "Large",
  5157. height: math.unit(27, "feet")
  5158. },
  5159. {
  5160. name: "Giant",
  5161. height: math.unit(87, "feet")
  5162. },
  5163. {
  5164. name: "Macro",
  5165. height: math.unit(365, "feet")
  5166. },
  5167. {
  5168. name: "Megamacro",
  5169. height: math.unit(3, "miles")
  5170. },
  5171. {
  5172. name: "World Serpent",
  5173. height: math.unit(8000, "miles")
  5174. },
  5175. ]
  5176. ))
  5177. characterMakers.push(() => makeCharacter(
  5178. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5179. {
  5180. front: {
  5181. height: math.unit(6, "feet"),
  5182. weight: math.unit(180, "lbs"),
  5183. name: "Front",
  5184. image: {
  5185. source: "./media/characters/daimos/front.svg",
  5186. extra: 4160 / 3897,
  5187. bottom: 0.021
  5188. }
  5189. }
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(8, "feet"),
  5195. default: true
  5196. },
  5197. {
  5198. name: "Big Dog",
  5199. height: math.unit(22, "feet")
  5200. },
  5201. {
  5202. name: "Macro",
  5203. height: math.unit(127, "feet")
  5204. },
  5205. {
  5206. name: "Megamacro",
  5207. height: math.unit(3600, "feet")
  5208. },
  5209. ]
  5210. ))
  5211. characterMakers.push(() => makeCharacter(
  5212. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5213. {
  5214. side: {
  5215. height: math.unit(6, "feet"),
  5216. weight: math.unit(180, "lbs"),
  5217. name: "Side",
  5218. image: {
  5219. source: "./media/characters/blake/side.svg",
  5220. extra: 1212 / 1120,
  5221. bottom: 0.05
  5222. }
  5223. },
  5224. crouched: {
  5225. height: math.unit(6 * 0.57, "feet"),
  5226. weight: math.unit(180, "lbs"),
  5227. name: "Crouched",
  5228. image: {
  5229. source: "./media/characters/blake/crouched.svg",
  5230. extra: 840 / 587,
  5231. bottom: 0.04
  5232. }
  5233. },
  5234. bent: {
  5235. height: math.unit(6 * 0.75, "feet"),
  5236. weight: math.unit(180, "lbs"),
  5237. name: "Bent",
  5238. image: {
  5239. source: "./media/characters/blake/bent.svg",
  5240. extra: 592 / 544,
  5241. bottom: 0.035
  5242. }
  5243. },
  5244. },
  5245. [
  5246. {
  5247. name: "Normal",
  5248. height: math.unit(8 + 1 / 6, "feet"),
  5249. default: true
  5250. },
  5251. {
  5252. name: "Big Backside",
  5253. height: math.unit(37, "feet")
  5254. },
  5255. {
  5256. name: "Subway Shredder",
  5257. height: math.unit(72, "feet")
  5258. },
  5259. {
  5260. name: "City Carver",
  5261. height: math.unit(1675, "feet")
  5262. },
  5263. {
  5264. name: "Tectonic Tweaker",
  5265. height: math.unit(2300, "miles")
  5266. },
  5267. ]
  5268. ))
  5269. characterMakers.push(() => makeCharacter(
  5270. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5271. {
  5272. front: {
  5273. height: math.unit(6, "feet"),
  5274. weight: math.unit(180, "lbs"),
  5275. name: "Front",
  5276. image: {
  5277. source: "./media/characters/guisetto/front.svg",
  5278. extra: 856 / 817,
  5279. bottom: 0.06
  5280. }
  5281. },
  5282. airborne: {
  5283. height: math.unit(6, "feet"),
  5284. weight: math.unit(180, "lbs"),
  5285. name: "Airborne",
  5286. image: {
  5287. source: "./media/characters/guisetto/airborne.svg",
  5288. extra: 584 / 525
  5289. }
  5290. },
  5291. },
  5292. [
  5293. {
  5294. name: "Normal",
  5295. height: math.unit(10 + 11 / 12, "feet"),
  5296. default: true
  5297. },
  5298. {
  5299. name: "Large",
  5300. height: math.unit(35, "feet")
  5301. },
  5302. {
  5303. name: "Macro",
  5304. height: math.unit(475, "feet")
  5305. },
  5306. ]
  5307. ))
  5308. characterMakers.push(() => makeCharacter(
  5309. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5310. {
  5311. front: {
  5312. height: math.unit(6, "feet"),
  5313. weight: math.unit(180, "lbs"),
  5314. name: "Front",
  5315. image: {
  5316. source: "./media/characters/luxor/front.svg",
  5317. extra: 2940 / 2152
  5318. }
  5319. },
  5320. back: {
  5321. height: math.unit(6, "feet"),
  5322. weight: math.unit(180, "lbs"),
  5323. name: "Back",
  5324. image: {
  5325. source: "./media/characters/luxor/back.svg",
  5326. extra: 1083 / 960
  5327. }
  5328. },
  5329. },
  5330. [
  5331. {
  5332. name: "Normal",
  5333. height: math.unit(5 + 5 / 6, "feet"),
  5334. default: true
  5335. },
  5336. {
  5337. name: "Lamp",
  5338. height: math.unit(50, "feet")
  5339. },
  5340. {
  5341. name: "Lämp",
  5342. height: math.unit(300, "feet")
  5343. },
  5344. {
  5345. name: "The sun is a lamp",
  5346. height: math.unit(250000, "miles")
  5347. },
  5348. ]
  5349. ))
  5350. characterMakers.push(() => makeCharacter(
  5351. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5352. {
  5353. front: {
  5354. height: math.unit(6, "feet"),
  5355. weight: math.unit(50, "lbs"),
  5356. name: "Front",
  5357. image: {
  5358. source: "./media/characters/huoyan/front.svg"
  5359. }
  5360. },
  5361. side: {
  5362. height: math.unit(6, "feet"),
  5363. weight: math.unit(180, "lbs"),
  5364. name: "Side",
  5365. image: {
  5366. source: "./media/characters/huoyan/side.svg"
  5367. }
  5368. },
  5369. },
  5370. [
  5371. {
  5372. name: "Chef",
  5373. height: math.unit(9, "feet")
  5374. },
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(65, "feet"),
  5378. default: true
  5379. },
  5380. {
  5381. name: "Macro",
  5382. height: math.unit(780, "feet")
  5383. },
  5384. {
  5385. name: "Flaming Mountain",
  5386. height: math.unit(4.8, "miles")
  5387. },
  5388. {
  5389. name: "Celestial",
  5390. height: math.unit(765000, "miles")
  5391. },
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5396. {
  5397. front: {
  5398. height: math.unit(5 + 3 / 4, "feet"),
  5399. weight: math.unit(120, "lbs"),
  5400. name: "Front",
  5401. image: {
  5402. source: "./media/characters/tails/front.svg"
  5403. }
  5404. }
  5405. },
  5406. [
  5407. {
  5408. name: "Normal",
  5409. height: math.unit(5 + 3 / 4, "feet"),
  5410. default: true
  5411. }
  5412. ]
  5413. ))
  5414. characterMakers.push(() => makeCharacter(
  5415. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5416. {
  5417. front: {
  5418. height: math.unit(4, "feet"),
  5419. weight: math.unit(50, "lbs"),
  5420. name: "Front",
  5421. image: {
  5422. source: "./media/characters/rainy/front.svg"
  5423. }
  5424. }
  5425. },
  5426. [
  5427. {
  5428. name: "Macro",
  5429. height: math.unit(800, "feet"),
  5430. default: true
  5431. }
  5432. ]
  5433. ))
  5434. characterMakers.push(() => makeCharacter(
  5435. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5436. {
  5437. front: {
  5438. height: math.unit(6, "feet"),
  5439. weight: math.unit(150, "lbs"),
  5440. name: "Front",
  5441. image: {
  5442. source: "./media/characters/rainier/front.svg"
  5443. }
  5444. }
  5445. },
  5446. [
  5447. {
  5448. name: "Micro",
  5449. height: math.unit(2, "mm"),
  5450. default: true
  5451. }
  5452. ]
  5453. ))
  5454. characterMakers.push(() => makeCharacter(
  5455. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5456. {
  5457. front: {
  5458. height: math.unit(6, "feet"),
  5459. weight: math.unit(180, "lbs"),
  5460. name: "Front",
  5461. image: {
  5462. source: "./media/characters/andy/front.svg"
  5463. }
  5464. }
  5465. },
  5466. [
  5467. {
  5468. name: "Normal",
  5469. height: math.unit(8, "feet"),
  5470. default: true
  5471. },
  5472. {
  5473. name: "Macro",
  5474. height: math.unit(1000, "feet")
  5475. },
  5476. {
  5477. name: "Megamacro",
  5478. height: math.unit(5, "miles")
  5479. },
  5480. {
  5481. name: "Gigamacro",
  5482. height: math.unit(5000, "miles")
  5483. },
  5484. ]
  5485. ))
  5486. characterMakers.push(() => makeCharacter(
  5487. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5488. {
  5489. front: {
  5490. height: math.unit(6, "feet"),
  5491. weight: math.unit(210, "lbs"),
  5492. name: "Front",
  5493. image: {
  5494. source: "./media/characters/cimmaron/front-sfw.svg",
  5495. extra: 701 / 676,
  5496. bottom: 0.046
  5497. }
  5498. },
  5499. back: {
  5500. height: math.unit(6, "feet"),
  5501. weight: math.unit(210, "lbs"),
  5502. name: "Back",
  5503. image: {
  5504. source: "./media/characters/cimmaron/back-sfw.svg",
  5505. extra: 701 / 676,
  5506. bottom: 0.046
  5507. }
  5508. },
  5509. frontNsfw: {
  5510. height: math.unit(6, "feet"),
  5511. weight: math.unit(210, "lbs"),
  5512. name: "Front (NSFW)",
  5513. image: {
  5514. source: "./media/characters/cimmaron/front-nsfw.svg",
  5515. extra: 701 / 676,
  5516. bottom: 0.046
  5517. }
  5518. },
  5519. backNsfw: {
  5520. height: math.unit(6, "feet"),
  5521. weight: math.unit(210, "lbs"),
  5522. name: "Back (NSFW)",
  5523. image: {
  5524. source: "./media/characters/cimmaron/back-nsfw.svg",
  5525. extra: 701 / 676,
  5526. bottom: 0.046
  5527. }
  5528. },
  5529. dick: {
  5530. height: math.unit(1.714, "feet"),
  5531. name: "Dick",
  5532. image: {
  5533. source: "./media/characters/cimmaron/dick.svg"
  5534. }
  5535. },
  5536. },
  5537. [
  5538. {
  5539. name: "Normal",
  5540. height: math.unit(6, "feet"),
  5541. default: true
  5542. },
  5543. {
  5544. name: "Macro Mayor",
  5545. height: math.unit(350, "meters")
  5546. },
  5547. ]
  5548. ))
  5549. characterMakers.push(() => makeCharacter(
  5550. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5551. {
  5552. front: {
  5553. height: math.unit(6, "feet"),
  5554. weight: math.unit(200, "lbs"),
  5555. name: "Front",
  5556. image: {
  5557. source: "./media/characters/akari/front.svg",
  5558. extra: 962 / 901,
  5559. bottom: 0.04
  5560. }
  5561. }
  5562. },
  5563. [
  5564. {
  5565. name: "Micro",
  5566. height: math.unit(5, "inches"),
  5567. default: true
  5568. },
  5569. {
  5570. name: "Normal",
  5571. height: math.unit(7, "feet")
  5572. },
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5577. {
  5578. front: {
  5579. height: math.unit(6, "feet"),
  5580. weight: math.unit(140, "lbs"),
  5581. name: "Front",
  5582. image: {
  5583. source: "./media/characters/cynosura/front.svg",
  5584. extra: 896 / 847
  5585. }
  5586. },
  5587. back: {
  5588. height: math.unit(6, "feet"),
  5589. weight: math.unit(140, "lbs"),
  5590. name: "Back",
  5591. image: {
  5592. source: "./media/characters/cynosura/back.svg",
  5593. extra: 1365 / 1250
  5594. }
  5595. },
  5596. },
  5597. [
  5598. {
  5599. name: "Micro",
  5600. height: math.unit(4, "inches")
  5601. },
  5602. {
  5603. name: "Normal",
  5604. height: math.unit(5.75, "feet"),
  5605. default: true
  5606. },
  5607. {
  5608. name: "Tall",
  5609. height: math.unit(10, "feet")
  5610. },
  5611. {
  5612. name: "Big",
  5613. height: math.unit(20, "feet")
  5614. },
  5615. {
  5616. name: "Macro",
  5617. height: math.unit(50, "feet")
  5618. },
  5619. ]
  5620. ))
  5621. characterMakers.push(() => makeCharacter(
  5622. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5623. {
  5624. front: {
  5625. height: math.unit(13 + 2/12, "feet"),
  5626. weight: math.unit(800, "kg"),
  5627. name: "Front",
  5628. image: {
  5629. source: "./media/characters/gin/front.svg",
  5630. extra: 1312/1191,
  5631. bottom: 45/1357
  5632. }
  5633. },
  5634. mouth: {
  5635. height: math.unit(2.39 * 1.8, "feet"),
  5636. name: "Mouth",
  5637. image: {
  5638. source: "./media/characters/gin/mouth.svg"
  5639. }
  5640. },
  5641. hand: {
  5642. height: math.unit(1.57 * 2.19, "feet"),
  5643. name: "Hand",
  5644. image: {
  5645. source: "./media/characters/gin/hand.svg"
  5646. }
  5647. },
  5648. foot: {
  5649. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5650. name: "Foot",
  5651. image: {
  5652. source: "./media/characters/gin/foot.svg"
  5653. }
  5654. },
  5655. sole: {
  5656. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5657. name: "Sole",
  5658. image: {
  5659. source: "./media/characters/gin/sole.svg"
  5660. }
  5661. },
  5662. },
  5663. [
  5664. {
  5665. name: "Very Small",
  5666. height: math.unit(13 + 2 / 12, "feet")
  5667. },
  5668. {
  5669. name: "Micro",
  5670. height: math.unit(600, "miles")
  5671. },
  5672. {
  5673. name: "Regular",
  5674. height: math.unit(20, "earths"),
  5675. default: true
  5676. },
  5677. {
  5678. name: "Macro",
  5679. height: math.unit(2.2, "solarradii")
  5680. },
  5681. {
  5682. name: "Teramacro",
  5683. height: math.unit(1.2, "galaxies")
  5684. },
  5685. {
  5686. name: "Omegamacro",
  5687. height: math.unit(200, "universes")
  5688. },
  5689. ]
  5690. ))
  5691. characterMakers.push(() => makeCharacter(
  5692. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5693. {
  5694. front: {
  5695. height: math.unit(6 + 1 / 6, "feet"),
  5696. weight: math.unit(178, "lbs"),
  5697. name: "Front",
  5698. image: {
  5699. source: "./media/characters/guy/front.svg"
  5700. }
  5701. }
  5702. },
  5703. [
  5704. {
  5705. name: "Normal",
  5706. height: math.unit(6 + 1 / 6, "feet"),
  5707. default: true
  5708. },
  5709. {
  5710. name: "Large",
  5711. height: math.unit(25 + 7 / 12, "feet")
  5712. },
  5713. {
  5714. name: "Macro",
  5715. height: math.unit(60 + 9 / 12, "feet")
  5716. },
  5717. {
  5718. name: "Macro+",
  5719. height: math.unit(246, "feet")
  5720. },
  5721. {
  5722. name: "Macro++",
  5723. height: math.unit(878, "feet")
  5724. }
  5725. ]
  5726. ))
  5727. characterMakers.push(() => makeCharacter(
  5728. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5729. {
  5730. front: {
  5731. height: math.unit(9, "feet"),
  5732. weight: math.unit(800, "lbs"),
  5733. name: "Front",
  5734. image: {
  5735. source: "./media/characters/tiberius/front.svg",
  5736. extra: 2295 / 2071
  5737. }
  5738. },
  5739. back: {
  5740. height: math.unit(9, "feet"),
  5741. weight: math.unit(800, "lbs"),
  5742. name: "Back",
  5743. image: {
  5744. source: "./media/characters/tiberius/back.svg",
  5745. extra: 2373 / 2160
  5746. }
  5747. },
  5748. },
  5749. [
  5750. {
  5751. name: "Normal",
  5752. height: math.unit(9, "feet"),
  5753. default: true
  5754. }
  5755. ]
  5756. ))
  5757. characterMakers.push(() => makeCharacter(
  5758. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5759. {
  5760. front: {
  5761. height: math.unit(6, "feet"),
  5762. weight: math.unit(600, "lbs"),
  5763. name: "Front",
  5764. image: {
  5765. source: "./media/characters/surgo/front.svg",
  5766. extra: 3591 / 2227
  5767. }
  5768. },
  5769. back: {
  5770. height: math.unit(6, "feet"),
  5771. weight: math.unit(600, "lbs"),
  5772. name: "Back",
  5773. image: {
  5774. source: "./media/characters/surgo/back.svg",
  5775. extra: 3557 / 2228
  5776. }
  5777. },
  5778. laying: {
  5779. height: math.unit(6 * 0.85, "feet"),
  5780. weight: math.unit(600, "lbs"),
  5781. name: "Laying",
  5782. image: {
  5783. source: "./media/characters/surgo/laying.svg"
  5784. }
  5785. },
  5786. },
  5787. [
  5788. {
  5789. name: "Normal",
  5790. height: math.unit(6, "feet"),
  5791. default: true
  5792. }
  5793. ]
  5794. ))
  5795. characterMakers.push(() => makeCharacter(
  5796. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5797. {
  5798. side: {
  5799. height: math.unit(6, "feet"),
  5800. weight: math.unit(150, "lbs"),
  5801. name: "Side",
  5802. image: {
  5803. source: "./media/characters/cibus/side.svg",
  5804. extra: 800 / 400
  5805. }
  5806. },
  5807. },
  5808. [
  5809. {
  5810. name: "Normal",
  5811. height: math.unit(6, "feet"),
  5812. default: true
  5813. }
  5814. ]
  5815. ))
  5816. characterMakers.push(() => makeCharacter(
  5817. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5818. {
  5819. front: {
  5820. height: math.unit(6, "feet"),
  5821. weight: math.unit(240, "lbs"),
  5822. name: "Front",
  5823. image: {
  5824. source: "./media/characters/nibbles/front.svg"
  5825. }
  5826. },
  5827. side: {
  5828. height: math.unit(6, "feet"),
  5829. weight: math.unit(240, "lbs"),
  5830. name: "Side",
  5831. image: {
  5832. source: "./media/characters/nibbles/side.svg"
  5833. }
  5834. },
  5835. },
  5836. [
  5837. {
  5838. name: "Normal",
  5839. height: math.unit(9, "feet"),
  5840. default: true
  5841. }
  5842. ]
  5843. ))
  5844. characterMakers.push(() => makeCharacter(
  5845. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5846. {
  5847. side: {
  5848. height: math.unit(5 + 1 / 6, "feet"),
  5849. weight: math.unit(130, "lbs"),
  5850. name: "Side",
  5851. image: {
  5852. source: "./media/characters/rikky/side.svg",
  5853. extra: 851 / 801
  5854. }
  5855. },
  5856. },
  5857. [
  5858. {
  5859. name: "Normal",
  5860. height: math.unit(5 + 1 / 6, "feet")
  5861. },
  5862. {
  5863. name: "Macro",
  5864. height: math.unit(152, "feet"),
  5865. default: true
  5866. },
  5867. {
  5868. name: "Megamacro",
  5869. height: math.unit(7, "miles")
  5870. }
  5871. ]
  5872. ))
  5873. characterMakers.push(() => makeCharacter(
  5874. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5875. {
  5876. side: {
  5877. height: math.unit(370, "cm"),
  5878. weight: math.unit(350, "lbs"),
  5879. name: "Side",
  5880. image: {
  5881. source: "./media/characters/malfressa/side.svg"
  5882. }
  5883. },
  5884. walking: {
  5885. height: math.unit(370, "cm"),
  5886. weight: math.unit(350, "lbs"),
  5887. name: "Walking",
  5888. image: {
  5889. source: "./media/characters/malfressa/walking.svg"
  5890. }
  5891. },
  5892. feral: {
  5893. height: math.unit(2500, "cm"),
  5894. weight: math.unit(100000, "lbs"),
  5895. name: "Feral",
  5896. image: {
  5897. source: "./media/characters/malfressa/feral.svg",
  5898. extra: 2108 / 837,
  5899. bottom: 0.02
  5900. }
  5901. },
  5902. },
  5903. [
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(370, "cm")
  5907. },
  5908. {
  5909. name: "Macro",
  5910. height: math.unit(300, "meters"),
  5911. default: true
  5912. }
  5913. ]
  5914. ))
  5915. characterMakers.push(() => makeCharacter(
  5916. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5917. {
  5918. front: {
  5919. height: math.unit(6, "feet"),
  5920. weight: math.unit(60, "kg"),
  5921. name: "Front",
  5922. image: {
  5923. source: "./media/characters/jaro/front.svg"
  5924. }
  5925. },
  5926. back: {
  5927. height: math.unit(6, "feet"),
  5928. weight: math.unit(60, "kg"),
  5929. name: "Back",
  5930. image: {
  5931. source: "./media/characters/jaro/back.svg"
  5932. }
  5933. },
  5934. },
  5935. [
  5936. {
  5937. name: "Micro",
  5938. height: math.unit(7, "inches")
  5939. },
  5940. {
  5941. name: "Normal",
  5942. height: math.unit(5.5, "feet"),
  5943. default: true
  5944. },
  5945. {
  5946. name: "Minimacro",
  5947. height: math.unit(20, "feet")
  5948. },
  5949. {
  5950. name: "Macro",
  5951. height: math.unit(200, "meters")
  5952. }
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5957. {
  5958. front: {
  5959. height: math.unit(6, "feet"),
  5960. weight: math.unit(195, "lb"),
  5961. name: "Front",
  5962. image: {
  5963. source: "./media/characters/rogue/front.svg"
  5964. }
  5965. },
  5966. },
  5967. [
  5968. {
  5969. name: "Macro",
  5970. height: math.unit(90, "feet"),
  5971. default: true
  5972. },
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5977. {
  5978. front: {
  5979. height: math.unit(5 + 8 / 12, "feet"),
  5980. weight: math.unit(140, "lb"),
  5981. name: "Front",
  5982. image: {
  5983. source: "./media/characters/piper/front.svg",
  5984. extra: 3948/3655,
  5985. bottom: 0/3948
  5986. }
  5987. },
  5988. },
  5989. [
  5990. {
  5991. name: "Micro",
  5992. height: math.unit(2, "inches")
  5993. },
  5994. {
  5995. name: "Normal",
  5996. height: math.unit(5 + 8 / 12, "feet")
  5997. },
  5998. {
  5999. name: "Macro",
  6000. height: math.unit(250, "feet"),
  6001. default: true
  6002. },
  6003. {
  6004. name: "Megamacro",
  6005. height: math.unit(7, "miles")
  6006. },
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6011. {
  6012. front: {
  6013. height: math.unit(6, "feet"),
  6014. weight: math.unit(220, "lb"),
  6015. name: "Front",
  6016. image: {
  6017. source: "./media/characters/gemini/front.svg"
  6018. }
  6019. },
  6020. back: {
  6021. height: math.unit(6, "feet"),
  6022. weight: math.unit(220, "lb"),
  6023. name: "Back",
  6024. image: {
  6025. source: "./media/characters/gemini/back.svg"
  6026. }
  6027. },
  6028. kneeling: {
  6029. height: math.unit(6 / 1.5, "feet"),
  6030. weight: math.unit(220, "lb"),
  6031. name: "Kneeling",
  6032. image: {
  6033. source: "./media/characters/gemini/kneeling.svg",
  6034. bottom: 0.02
  6035. }
  6036. },
  6037. },
  6038. [
  6039. {
  6040. name: "Macro",
  6041. height: math.unit(300, "meters"),
  6042. default: true
  6043. },
  6044. {
  6045. name: "Megamacro",
  6046. height: math.unit(6900, "meters")
  6047. },
  6048. ]
  6049. ))
  6050. characterMakers.push(() => makeCharacter(
  6051. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6052. {
  6053. anthro: {
  6054. height: math.unit(2.35, "meters"),
  6055. weight: math.unit(73, "kg"),
  6056. name: "Anthro",
  6057. image: {
  6058. source: "./media/characters/alicia/anthro.svg",
  6059. extra: 2571 / 2385,
  6060. bottom: 75 / 2648
  6061. }
  6062. },
  6063. paw: {
  6064. height: math.unit(1.32, "feet"),
  6065. name: "Paw",
  6066. image: {
  6067. source: "./media/characters/alicia/paw.svg"
  6068. }
  6069. },
  6070. feral: {
  6071. height: math.unit(1.69, "meters"),
  6072. weight: math.unit(73, "kg"),
  6073. name: "Feral",
  6074. image: {
  6075. source: "./media/characters/alicia/feral.svg",
  6076. extra: 2123 / 1715,
  6077. bottom: 222 / 2349
  6078. }
  6079. },
  6080. },
  6081. [
  6082. {
  6083. name: "Normal",
  6084. height: math.unit(2.35, "meters")
  6085. },
  6086. {
  6087. name: "Macro",
  6088. height: math.unit(60, "meters"),
  6089. default: true
  6090. },
  6091. {
  6092. name: "Megamacro",
  6093. height: math.unit(10000, "kilometers")
  6094. },
  6095. ]
  6096. ))
  6097. characterMakers.push(() => makeCharacter(
  6098. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6099. {
  6100. front: {
  6101. height: math.unit(7, "feet"),
  6102. weight: math.unit(250, "lbs"),
  6103. name: "Front",
  6104. image: {
  6105. source: "./media/characters/archy/front.svg"
  6106. }
  6107. }
  6108. },
  6109. [
  6110. {
  6111. name: "Micro",
  6112. height: math.unit(1, "inch")
  6113. },
  6114. {
  6115. name: "Shorty",
  6116. height: math.unit(5, "feet")
  6117. },
  6118. {
  6119. name: "Normal",
  6120. height: math.unit(7, "feet")
  6121. },
  6122. {
  6123. name: "Macro",
  6124. height: math.unit(600, "meters"),
  6125. default: true
  6126. },
  6127. {
  6128. name: "Megamacro",
  6129. height: math.unit(1, "mile")
  6130. },
  6131. ]
  6132. ))
  6133. characterMakers.push(() => makeCharacter(
  6134. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6135. {
  6136. front: {
  6137. height: math.unit(1.65, "meters"),
  6138. weight: math.unit(74, "kg"),
  6139. name: "Front",
  6140. image: {
  6141. source: "./media/characters/berri/front.svg",
  6142. extra: 857 / 837,
  6143. bottom: 18 / 877
  6144. }
  6145. },
  6146. bum: {
  6147. height: math.unit(1.46, "feet"),
  6148. name: "Bum",
  6149. image: {
  6150. source: "./media/characters/berri/bum.svg"
  6151. }
  6152. },
  6153. mouth: {
  6154. height: math.unit(0.44, "feet"),
  6155. name: "Mouth",
  6156. image: {
  6157. source: "./media/characters/berri/mouth.svg"
  6158. }
  6159. },
  6160. paw: {
  6161. height: math.unit(0.826, "feet"),
  6162. name: "Paw",
  6163. image: {
  6164. source: "./media/characters/berri/paw.svg"
  6165. }
  6166. },
  6167. },
  6168. [
  6169. {
  6170. name: "Normal",
  6171. height: math.unit(1.65, "meters")
  6172. },
  6173. {
  6174. name: "Macro",
  6175. height: math.unit(60, "m"),
  6176. default: true
  6177. },
  6178. {
  6179. name: "Megamacro",
  6180. height: math.unit(9.213, "km")
  6181. },
  6182. {
  6183. name: "Planet Eater",
  6184. height: math.unit(489, "megameters")
  6185. },
  6186. {
  6187. name: "Teramacro",
  6188. height: math.unit(2471635000000, "meters")
  6189. },
  6190. {
  6191. name: "Examacro",
  6192. height: math.unit(8.0624e+26, "meters")
  6193. }
  6194. ]
  6195. ))
  6196. characterMakers.push(() => makeCharacter(
  6197. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6198. {
  6199. front: {
  6200. height: math.unit(1.72, "meters"),
  6201. weight: math.unit(68, "kg"),
  6202. name: "Front",
  6203. image: {
  6204. source: "./media/characters/lexi/front.svg"
  6205. }
  6206. }
  6207. },
  6208. [
  6209. {
  6210. name: "Very Smol",
  6211. height: math.unit(10, "mm")
  6212. },
  6213. {
  6214. name: "Micro",
  6215. height: math.unit(6.8, "cm"),
  6216. default: true
  6217. },
  6218. {
  6219. name: "Normal",
  6220. height: math.unit(1.72, "m")
  6221. }
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6226. {
  6227. front: {
  6228. height: math.unit(1.69, "meters"),
  6229. weight: math.unit(68, "kg"),
  6230. name: "Front",
  6231. image: {
  6232. source: "./media/characters/martin/front.svg",
  6233. extra: 596 / 581
  6234. }
  6235. }
  6236. },
  6237. [
  6238. {
  6239. name: "Micro",
  6240. height: math.unit(6.85, "cm"),
  6241. default: true
  6242. },
  6243. {
  6244. name: "Normal",
  6245. height: math.unit(1.69, "m")
  6246. }
  6247. ]
  6248. ))
  6249. characterMakers.push(() => makeCharacter(
  6250. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6251. {
  6252. front: {
  6253. height: math.unit(1.69, "meters"),
  6254. weight: math.unit(68, "kg"),
  6255. name: "Front",
  6256. image: {
  6257. source: "./media/characters/juno/front.svg"
  6258. }
  6259. }
  6260. },
  6261. [
  6262. {
  6263. name: "Micro",
  6264. height: math.unit(7, "cm")
  6265. },
  6266. {
  6267. name: "Normal",
  6268. height: math.unit(1.89, "m")
  6269. },
  6270. {
  6271. name: "Macro",
  6272. height: math.unit(353, "meters"),
  6273. default: true
  6274. }
  6275. ]
  6276. ))
  6277. characterMakers.push(() => makeCharacter(
  6278. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6279. {
  6280. front: {
  6281. height: math.unit(1.93, "meters"),
  6282. weight: math.unit(83, "kg"),
  6283. name: "Front",
  6284. image: {
  6285. source: "./media/characters/samantha/front.svg"
  6286. }
  6287. },
  6288. frontClothed: {
  6289. height: math.unit(1.93, "meters"),
  6290. weight: math.unit(83, "kg"),
  6291. name: "Front (Clothed)",
  6292. image: {
  6293. source: "./media/characters/samantha/front-clothed.svg"
  6294. }
  6295. },
  6296. back: {
  6297. height: math.unit(1.93, "meters"),
  6298. weight: math.unit(83, "kg"),
  6299. name: "Back",
  6300. image: {
  6301. source: "./media/characters/samantha/back.svg"
  6302. }
  6303. },
  6304. },
  6305. [
  6306. {
  6307. name: "Normal",
  6308. height: math.unit(1.93, "m")
  6309. },
  6310. {
  6311. name: "Macro",
  6312. height: math.unit(74, "meters"),
  6313. default: true
  6314. },
  6315. {
  6316. name: "Macro+",
  6317. height: math.unit(223, "meters"),
  6318. },
  6319. {
  6320. name: "Megamacro",
  6321. height: math.unit(8381, "meters"),
  6322. },
  6323. {
  6324. name: "Megamacro+",
  6325. height: math.unit(12000, "kilometers")
  6326. },
  6327. ]
  6328. ))
  6329. characterMakers.push(() => makeCharacter(
  6330. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6331. {
  6332. front: {
  6333. height: math.unit(1.92, "meters"),
  6334. weight: math.unit(80, "kg"),
  6335. name: "Front",
  6336. image: {
  6337. source: "./media/characters/dr-clay/front.svg"
  6338. }
  6339. },
  6340. frontClothed: {
  6341. height: math.unit(1.92, "meters"),
  6342. weight: math.unit(80, "kg"),
  6343. name: "Front (Clothed)",
  6344. image: {
  6345. source: "./media/characters/dr-clay/front-clothed.svg"
  6346. }
  6347. }
  6348. },
  6349. [
  6350. {
  6351. name: "Normal",
  6352. height: math.unit(1.92, "m")
  6353. },
  6354. {
  6355. name: "Macro",
  6356. height: math.unit(214, "meters"),
  6357. default: true
  6358. },
  6359. {
  6360. name: "Macro+",
  6361. height: math.unit(12.237, "meters"),
  6362. },
  6363. {
  6364. name: "Megamacro",
  6365. height: math.unit(557, "megameters"),
  6366. },
  6367. {
  6368. name: "Unimaginable",
  6369. height: math.unit(120e9, "lightyears")
  6370. },
  6371. ]
  6372. ))
  6373. characterMakers.push(() => makeCharacter(
  6374. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6375. {
  6376. front: {
  6377. height: math.unit(2, "meters"),
  6378. weight: math.unit(80, "kg"),
  6379. name: "Front",
  6380. image: {
  6381. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6382. }
  6383. }
  6384. },
  6385. [
  6386. {
  6387. name: "Teramacro",
  6388. height: math.unit(500000, "lightyears"),
  6389. default: true
  6390. },
  6391. ]
  6392. ))
  6393. characterMakers.push(() => makeCharacter(
  6394. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6395. {
  6396. front: {
  6397. height: math.unit(2, "meters"),
  6398. weight: math.unit(150, "kg"),
  6399. name: "Front",
  6400. image: {
  6401. source: "./media/characters/vemus/front.svg",
  6402. extra: 1074/936,
  6403. bottom: 23/1097
  6404. }
  6405. }
  6406. },
  6407. [
  6408. {
  6409. name: "Normal",
  6410. height: math.unit(3.75, "meters"),
  6411. default: true
  6412. },
  6413. {
  6414. name: "Big",
  6415. height: math.unit(8, "meters")
  6416. },
  6417. {
  6418. name: "Macro",
  6419. height: math.unit(100, "meters")
  6420. },
  6421. {
  6422. name: "Macro+",
  6423. height: math.unit(1500, "meters")
  6424. },
  6425. {
  6426. name: "Stellar",
  6427. height: math.unit(14e8, "meters")
  6428. },
  6429. ]
  6430. ))
  6431. characterMakers.push(() => makeCharacter(
  6432. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6433. {
  6434. front: {
  6435. height: math.unit(2, "meters"),
  6436. weight: math.unit(70, "kg"),
  6437. name: "Front",
  6438. image: {
  6439. source: "./media/characters/beherit/front.svg",
  6440. extra: 1408 / 1242
  6441. }
  6442. }
  6443. },
  6444. [
  6445. {
  6446. name: "Normal",
  6447. height: math.unit(6, "feet")
  6448. },
  6449. {
  6450. name: "Lorg",
  6451. height: math.unit(25, "feet"),
  6452. default: true
  6453. },
  6454. {
  6455. name: "Lorger",
  6456. height: math.unit(75, "feet")
  6457. },
  6458. {
  6459. name: "Macro",
  6460. height: math.unit(200, "meters")
  6461. },
  6462. ]
  6463. ))
  6464. characterMakers.push(() => makeCharacter(
  6465. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6466. {
  6467. front: {
  6468. height: math.unit(2, "meters"),
  6469. weight: math.unit(150, "kg"),
  6470. name: "Front",
  6471. image: {
  6472. source: "./media/characters/everett/front.svg",
  6473. extra: 2038 / 1737,
  6474. bottom: 0.03
  6475. }
  6476. },
  6477. paw: {
  6478. height: math.unit(2 / 3.6, "meters"),
  6479. name: "Paw",
  6480. image: {
  6481. source: "./media/characters/everett/paw.svg"
  6482. }
  6483. },
  6484. },
  6485. [
  6486. {
  6487. name: "Normal",
  6488. height: math.unit(15, "feet"),
  6489. default: true
  6490. },
  6491. {
  6492. name: "Lorg",
  6493. height: math.unit(70, "feet"),
  6494. default: true
  6495. },
  6496. {
  6497. name: "Lorger",
  6498. height: math.unit(250, "feet")
  6499. },
  6500. {
  6501. name: "Macro",
  6502. height: math.unit(500, "meters")
  6503. },
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6508. {
  6509. front: {
  6510. height: math.unit(2, "meters"),
  6511. weight: math.unit(86, "kg"),
  6512. name: "Front",
  6513. image: {
  6514. source: "./media/characters/rose/front.svg",
  6515. extra: 1785/1636,
  6516. bottom: 30/1815
  6517. }
  6518. },
  6519. frontSporty: {
  6520. height: math.unit(2, "meters"),
  6521. weight: math.unit(86, "kg"),
  6522. name: "Front (Sporty)",
  6523. image: {
  6524. source: "./media/characters/rose/front-sporty.svg",
  6525. extra: 350/335,
  6526. bottom: 10/360
  6527. }
  6528. },
  6529. frontAlt: {
  6530. height: math.unit(1.6, "meters"),
  6531. weight: math.unit(86, "kg"),
  6532. name: "Front (Alt)",
  6533. image: {
  6534. source: "./media/characters/rose/front-alt.svg",
  6535. extra: 299/283,
  6536. bottom: 3/302
  6537. }
  6538. },
  6539. plush: {
  6540. height: math.unit(2, "meters"),
  6541. weight: math.unit(86/3, "kg"),
  6542. name: "Plush",
  6543. image: {
  6544. source: "./media/characters/rose/plush.svg",
  6545. extra: 361/337,
  6546. bottom: 11/372
  6547. }
  6548. },
  6549. },
  6550. [
  6551. {
  6552. name: "True Micro",
  6553. height: math.unit(9, "cm")
  6554. },
  6555. {
  6556. name: "Micro",
  6557. height: math.unit(16, "cm")
  6558. },
  6559. {
  6560. name: "Normal",
  6561. height: math.unit(1.85, "meters"),
  6562. default: true
  6563. },
  6564. {
  6565. name: "Mini-Macro",
  6566. height: math.unit(5, "meters")
  6567. },
  6568. {
  6569. name: "Macro",
  6570. height: math.unit(15, "meters")
  6571. },
  6572. {
  6573. name: "True Macro",
  6574. height: math.unit(40, "meters")
  6575. },
  6576. {
  6577. name: "City Scale",
  6578. height: math.unit(1, "km")
  6579. },
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(2, "meters"),
  6587. weight: math.unit(350, "lbs"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/regal/front.svg"
  6591. }
  6592. },
  6593. back: {
  6594. height: math.unit(2, "meters"),
  6595. weight: math.unit(350, "lbs"),
  6596. name: "Back",
  6597. image: {
  6598. source: "./media/characters/regal/back.svg"
  6599. }
  6600. },
  6601. },
  6602. [
  6603. {
  6604. name: "Macro",
  6605. height: math.unit(350, "feet"),
  6606. default: true
  6607. }
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6612. {
  6613. front: {
  6614. height: math.unit(4 + 11 / 12, "feet"),
  6615. weight: math.unit(100, "lbs"),
  6616. name: "Front",
  6617. image: {
  6618. source: "./media/characters/opal/front.svg"
  6619. }
  6620. },
  6621. frontAlt: {
  6622. height: math.unit(4 + 11 / 12, "feet"),
  6623. weight: math.unit(100, "lbs"),
  6624. name: "Front (Alt)",
  6625. image: {
  6626. source: "./media/characters/opal/front-alt.svg"
  6627. }
  6628. },
  6629. },
  6630. [
  6631. {
  6632. name: "Small",
  6633. height: math.unit(4 + 11 / 12, "feet")
  6634. },
  6635. {
  6636. name: "Normal",
  6637. height: math.unit(20, "feet"),
  6638. default: true
  6639. },
  6640. {
  6641. name: "Macro",
  6642. height: math.unit(120, "feet")
  6643. },
  6644. {
  6645. name: "Megamacro",
  6646. height: math.unit(80, "miles")
  6647. },
  6648. {
  6649. name: "True Size",
  6650. height: math.unit(100000, "lightyears")
  6651. },
  6652. ]
  6653. ))
  6654. characterMakers.push(() => makeCharacter(
  6655. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6656. {
  6657. front: {
  6658. height: math.unit(6, "feet"),
  6659. weight: math.unit(200, "lbs"),
  6660. name: "Front",
  6661. image: {
  6662. source: "./media/characters/vector-wuff/front.svg"
  6663. }
  6664. }
  6665. },
  6666. [
  6667. {
  6668. name: "Normal",
  6669. height: math.unit(2.8, "meters")
  6670. },
  6671. {
  6672. name: "Macro",
  6673. height: math.unit(450, "meters"),
  6674. default: true
  6675. },
  6676. {
  6677. name: "Megamacro",
  6678. height: math.unit(15, "kilometers")
  6679. }
  6680. ]
  6681. ))
  6682. characterMakers.push(() => makeCharacter(
  6683. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6684. {
  6685. front: {
  6686. height: math.unit(6, "feet"),
  6687. weight: math.unit(256, "lbs"),
  6688. name: "Front",
  6689. image: {
  6690. source: "./media/characters/dannik/front.svg"
  6691. }
  6692. }
  6693. },
  6694. [
  6695. {
  6696. name: "Macro",
  6697. height: math.unit(69.57, "meters"),
  6698. default: true
  6699. },
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6704. {
  6705. front: {
  6706. height: math.unit(6, "feet"),
  6707. weight: math.unit(120, "lbs"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/azura-saharah/front.svg"
  6711. }
  6712. },
  6713. back: {
  6714. height: math.unit(6, "feet"),
  6715. weight: math.unit(120, "lbs"),
  6716. name: "Back",
  6717. image: {
  6718. source: "./media/characters/azura-saharah/back.svg"
  6719. }
  6720. },
  6721. },
  6722. [
  6723. {
  6724. name: "Macro",
  6725. height: math.unit(100, "feet"),
  6726. default: true
  6727. },
  6728. ]
  6729. ))
  6730. characterMakers.push(() => makeCharacter(
  6731. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6732. {
  6733. side: {
  6734. height: math.unit(5 + 4 / 12, "feet"),
  6735. weight: math.unit(163, "lbs"),
  6736. name: "Side",
  6737. image: {
  6738. source: "./media/characters/kennedy/side.svg"
  6739. }
  6740. }
  6741. },
  6742. [
  6743. {
  6744. name: "Standard Doggo",
  6745. height: math.unit(5 + 4 / 12, "feet")
  6746. },
  6747. {
  6748. name: "Big Doggo",
  6749. height: math.unit(25 + 3 / 12, "feet"),
  6750. default: true
  6751. },
  6752. ]
  6753. ))
  6754. characterMakers.push(() => makeCharacter(
  6755. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6756. {
  6757. front: {
  6758. height: math.unit(6, "feet"),
  6759. weight: math.unit(90, "lbs"),
  6760. name: "Front",
  6761. image: {
  6762. source: "./media/characters/odi-lunar/front.svg"
  6763. }
  6764. }
  6765. },
  6766. [
  6767. {
  6768. name: "Micro",
  6769. height: math.unit(3, "inches"),
  6770. default: true
  6771. },
  6772. {
  6773. name: "Normal",
  6774. height: math.unit(5.5, "feet")
  6775. }
  6776. ]
  6777. ))
  6778. characterMakers.push(() => makeCharacter(
  6779. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6780. {
  6781. back: {
  6782. height: math.unit(6, "feet"),
  6783. weight: math.unit(220, "lbs"),
  6784. name: "Back",
  6785. image: {
  6786. source: "./media/characters/mandake/back.svg"
  6787. }
  6788. }
  6789. },
  6790. [
  6791. {
  6792. name: "Normal",
  6793. height: math.unit(7, "feet"),
  6794. default: true
  6795. },
  6796. {
  6797. name: "Macro",
  6798. height: math.unit(78, "feet")
  6799. },
  6800. {
  6801. name: "Macro+",
  6802. height: math.unit(300, "meters")
  6803. },
  6804. {
  6805. name: "Macro++",
  6806. height: math.unit(2400, "feet")
  6807. },
  6808. {
  6809. name: "Megamacro",
  6810. height: math.unit(5167, "meters")
  6811. },
  6812. {
  6813. name: "Gigamacro",
  6814. height: math.unit(41769, "miles")
  6815. },
  6816. ]
  6817. ))
  6818. characterMakers.push(() => makeCharacter(
  6819. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6820. {
  6821. front: {
  6822. height: math.unit(6, "feet"),
  6823. weight: math.unit(120, "lbs"),
  6824. name: "Front",
  6825. image: {
  6826. source: "./media/characters/yozey/front.svg"
  6827. }
  6828. },
  6829. frontAlt: {
  6830. height: math.unit(6, "feet"),
  6831. weight: math.unit(120, "lbs"),
  6832. name: "Front (Alt)",
  6833. image: {
  6834. source: "./media/characters/yozey/front-alt.svg"
  6835. }
  6836. },
  6837. side: {
  6838. height: math.unit(6, "feet"),
  6839. weight: math.unit(120, "lbs"),
  6840. name: "Side",
  6841. image: {
  6842. source: "./media/characters/yozey/side.svg"
  6843. }
  6844. },
  6845. },
  6846. [
  6847. {
  6848. name: "Micro",
  6849. height: math.unit(3, "inches"),
  6850. default: true
  6851. },
  6852. {
  6853. name: "Normal",
  6854. height: math.unit(6, "feet")
  6855. }
  6856. ]
  6857. ))
  6858. characterMakers.push(() => makeCharacter(
  6859. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6860. {
  6861. front: {
  6862. height: math.unit(6, "feet"),
  6863. weight: math.unit(103, "lbs"),
  6864. name: "Front",
  6865. image: {
  6866. source: "./media/characters/valeska-voss/front.svg"
  6867. }
  6868. }
  6869. },
  6870. [
  6871. {
  6872. name: "Mini-Sized Sub",
  6873. height: math.unit(3.1, "inches")
  6874. },
  6875. {
  6876. name: "Mid-Sized Sub",
  6877. height: math.unit(6.2, "inches")
  6878. },
  6879. {
  6880. name: "Full-Sized Sub",
  6881. height: math.unit(9.3, "inches")
  6882. },
  6883. {
  6884. name: "Normal",
  6885. height: math.unit(5 + 2 / 12, "foot"),
  6886. default: true
  6887. },
  6888. ]
  6889. ))
  6890. characterMakers.push(() => makeCharacter(
  6891. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6892. {
  6893. front: {
  6894. height: math.unit(6, "feet"),
  6895. weight: math.unit(160, "lbs"),
  6896. name: "Front",
  6897. image: {
  6898. source: "./media/characters/gene-zeta/front.svg",
  6899. extra: 3006 / 2826,
  6900. bottom: 182 / 3188
  6901. }
  6902. }
  6903. },
  6904. [
  6905. {
  6906. name: "Micro",
  6907. height: math.unit(6, "inches")
  6908. },
  6909. {
  6910. name: "Normal",
  6911. height: math.unit(5 + 11 / 12, "foot"),
  6912. default: true
  6913. },
  6914. {
  6915. name: "Macro",
  6916. height: math.unit(140, "feet")
  6917. },
  6918. {
  6919. name: "Supercharged",
  6920. height: math.unit(2500, "feet")
  6921. },
  6922. ]
  6923. ))
  6924. characterMakers.push(() => makeCharacter(
  6925. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6926. {
  6927. front: {
  6928. height: math.unit(6, "feet"),
  6929. weight: math.unit(350, "lbs"),
  6930. name: "Front",
  6931. image: {
  6932. source: "./media/characters/razinox/front.svg",
  6933. extra: 1686 / 1548,
  6934. bottom: 28.2 / 1868
  6935. }
  6936. },
  6937. back: {
  6938. height: math.unit(6, "feet"),
  6939. weight: math.unit(350, "lbs"),
  6940. name: "Back",
  6941. image: {
  6942. source: "./media/characters/razinox/back.svg",
  6943. extra: 1660 / 1590,
  6944. bottom: 15 / 1665
  6945. }
  6946. },
  6947. },
  6948. [
  6949. {
  6950. name: "Normal",
  6951. height: math.unit(10 + 8 / 12, "foot")
  6952. },
  6953. {
  6954. name: "Minimacro",
  6955. height: math.unit(15, "foot")
  6956. },
  6957. {
  6958. name: "Macro",
  6959. height: math.unit(60, "foot"),
  6960. default: true
  6961. },
  6962. {
  6963. name: "Megamacro",
  6964. height: math.unit(5, "miles")
  6965. },
  6966. {
  6967. name: "Gigamacro",
  6968. height: math.unit(6000, "miles")
  6969. },
  6970. ]
  6971. ))
  6972. characterMakers.push(() => makeCharacter(
  6973. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6974. {
  6975. front: {
  6976. height: math.unit(6, "feet"),
  6977. weight: math.unit(150, "lbs"),
  6978. name: "Front",
  6979. image: {
  6980. source: "./media/characters/cobalt/front.svg"
  6981. }
  6982. }
  6983. },
  6984. [
  6985. {
  6986. name: "Normal",
  6987. height: math.unit(8 + 1 / 12, "foot")
  6988. },
  6989. {
  6990. name: "Macro",
  6991. height: math.unit(111, "foot"),
  6992. default: true
  6993. },
  6994. {
  6995. name: "Supracosmic",
  6996. height: math.unit(1e42, "feet")
  6997. },
  6998. ]
  6999. ))
  7000. characterMakers.push(() => makeCharacter(
  7001. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7002. {
  7003. front: {
  7004. height: math.unit(6, "feet"),
  7005. weight: math.unit(140, "lbs"),
  7006. name: "Front",
  7007. image: {
  7008. source: "./media/characters/amanda/front.svg"
  7009. }
  7010. }
  7011. },
  7012. [
  7013. {
  7014. name: "Micro",
  7015. height: math.unit(5, "inches"),
  7016. default: true
  7017. },
  7018. ]
  7019. ))
  7020. characterMakers.push(() => makeCharacter(
  7021. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7022. {
  7023. front: {
  7024. height: math.unit(2.75, "meters"),
  7025. weight: math.unit(1200, "lb"),
  7026. name: "Front",
  7027. image: {
  7028. source: "./media/characters/teal/front.svg",
  7029. extra: 2463 / 2320,
  7030. bottom: 166 / 2629
  7031. }
  7032. },
  7033. back: {
  7034. height: math.unit(2.75, "meters"),
  7035. weight: math.unit(1200, "lb"),
  7036. name: "Back",
  7037. image: {
  7038. source: "./media/characters/teal/back.svg",
  7039. extra: 2580 / 2489,
  7040. bottom: 151 / 2731
  7041. }
  7042. },
  7043. sitting: {
  7044. height: math.unit(1.9, "meters"),
  7045. weight: math.unit(1200, "lb"),
  7046. name: "Sitting",
  7047. image: {
  7048. source: "./media/characters/teal/sitting.svg",
  7049. extra: 623 / 590,
  7050. bottom: 121 / 744
  7051. }
  7052. },
  7053. standing: {
  7054. height: math.unit(2.75, "meters"),
  7055. weight: math.unit(1200, "lb"),
  7056. name: "Standing",
  7057. image: {
  7058. source: "./media/characters/teal/standing.svg",
  7059. extra: 923 / 893,
  7060. bottom: 60 / 983
  7061. }
  7062. },
  7063. stretching: {
  7064. height: math.unit(3.65, "meters"),
  7065. weight: math.unit(1200, "lb"),
  7066. name: "Stretching",
  7067. image: {
  7068. source: "./media/characters/teal/stretching.svg",
  7069. extra: 1276 / 1244,
  7070. bottom: 0 / 1276
  7071. }
  7072. },
  7073. legged: {
  7074. height: math.unit(1.3, "meters"),
  7075. weight: math.unit(100, "lb"),
  7076. name: "Legged",
  7077. image: {
  7078. source: "./media/characters/teal/legged.svg",
  7079. extra: 462 / 437,
  7080. bottom: 24 / 486
  7081. }
  7082. },
  7083. naga: {
  7084. height: math.unit(5.4, "meters"),
  7085. weight: math.unit(4000, "lb"),
  7086. name: "Naga",
  7087. image: {
  7088. source: "./media/characters/teal/naga.svg",
  7089. extra: 1902 / 1858,
  7090. bottom: 0 / 1902
  7091. }
  7092. },
  7093. hand: {
  7094. height: math.unit(0.52, "meters"),
  7095. name: "Hand",
  7096. image: {
  7097. source: "./media/characters/teal/hand.svg"
  7098. }
  7099. },
  7100. maw: {
  7101. height: math.unit(0.43, "meters"),
  7102. name: "Maw",
  7103. image: {
  7104. source: "./media/characters/teal/maw.svg"
  7105. }
  7106. },
  7107. slit: {
  7108. height: math.unit(0.25, "meters"),
  7109. name: "Slit",
  7110. image: {
  7111. source: "./media/characters/teal/slit.svg"
  7112. }
  7113. },
  7114. },
  7115. [
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(2.75, "meters"),
  7119. default: true
  7120. },
  7121. {
  7122. name: "Macro",
  7123. height: math.unit(300, "feet")
  7124. },
  7125. {
  7126. name: "Macro+",
  7127. height: math.unit(2000, "feet")
  7128. },
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7133. {
  7134. frontCat: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(180, "lbs"),
  7137. name: "Front (Cat)",
  7138. image: {
  7139. source: "./media/characters/ravin-amulet/front-cat.svg"
  7140. }
  7141. },
  7142. frontCatAlt: {
  7143. height: math.unit(6, "feet"),
  7144. weight: math.unit(180, "lbs"),
  7145. name: "Front (Alt, Cat)",
  7146. image: {
  7147. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7148. }
  7149. },
  7150. frontWerewolf: {
  7151. height: math.unit(6 * 1.2, "feet"),
  7152. weight: math.unit(225, "lbs"),
  7153. name: "Front (Werewolf)",
  7154. image: {
  7155. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7156. }
  7157. },
  7158. backWerewolf: {
  7159. height: math.unit(6 * 1.2, "feet"),
  7160. weight: math.unit(225, "lbs"),
  7161. name: "Back (Werewolf)",
  7162. image: {
  7163. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7164. }
  7165. },
  7166. },
  7167. [
  7168. {
  7169. name: "Nano",
  7170. height: math.unit(1, "micrometer")
  7171. },
  7172. {
  7173. name: "Micro",
  7174. height: math.unit(1, "inch")
  7175. },
  7176. {
  7177. name: "Normal",
  7178. height: math.unit(6, "feet"),
  7179. default: true
  7180. },
  7181. {
  7182. name: "Macro",
  7183. height: math.unit(60, "feet")
  7184. }
  7185. ]
  7186. ))
  7187. characterMakers.push(() => makeCharacter(
  7188. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7189. {
  7190. front: {
  7191. height: math.unit(6, "feet"),
  7192. weight: math.unit(165, "lbs"),
  7193. name: "Front",
  7194. image: {
  7195. source: "./media/characters/fluoresce/front.svg"
  7196. }
  7197. }
  7198. },
  7199. [
  7200. {
  7201. name: "Micro",
  7202. height: math.unit(6, "cm")
  7203. },
  7204. {
  7205. name: "Normal",
  7206. height: math.unit(5 + 7 / 12, "feet"),
  7207. default: true
  7208. },
  7209. {
  7210. name: "Macro",
  7211. height: math.unit(56, "feet")
  7212. },
  7213. {
  7214. name: "Megamacro",
  7215. height: math.unit(1.9, "miles")
  7216. },
  7217. ]
  7218. ))
  7219. characterMakers.push(() => makeCharacter(
  7220. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7221. {
  7222. front: {
  7223. height: math.unit(9 + 6 / 12, "feet"),
  7224. weight: math.unit(523, "lbs"),
  7225. name: "Side",
  7226. image: {
  7227. source: "./media/characters/aurora/side.svg"
  7228. }
  7229. }
  7230. },
  7231. [
  7232. {
  7233. name: "Normal",
  7234. height: math.unit(9 + 6 / 12, "feet")
  7235. },
  7236. {
  7237. name: "Macro",
  7238. height: math.unit(96, "feet"),
  7239. default: true
  7240. },
  7241. {
  7242. name: "Macro+",
  7243. height: math.unit(243, "feet")
  7244. },
  7245. ]
  7246. ))
  7247. characterMakers.push(() => makeCharacter(
  7248. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7249. {
  7250. front: {
  7251. height: math.unit(194, "cm"),
  7252. weight: math.unit(90, "kg"),
  7253. name: "Front",
  7254. image: {
  7255. source: "./media/characters/ranek/front.svg"
  7256. }
  7257. },
  7258. side: {
  7259. height: math.unit(194, "cm"),
  7260. weight: math.unit(90, "kg"),
  7261. name: "Side",
  7262. image: {
  7263. source: "./media/characters/ranek/side.svg"
  7264. }
  7265. },
  7266. back: {
  7267. height: math.unit(194, "cm"),
  7268. weight: math.unit(90, "kg"),
  7269. name: "Back",
  7270. image: {
  7271. source: "./media/characters/ranek/back.svg"
  7272. }
  7273. },
  7274. feral: {
  7275. height: math.unit(30, "cm"),
  7276. weight: math.unit(1.6, "lbs"),
  7277. name: "Feral",
  7278. image: {
  7279. source: "./media/characters/ranek/feral.svg"
  7280. }
  7281. },
  7282. },
  7283. [
  7284. {
  7285. name: "Normal",
  7286. height: math.unit(194, "cm"),
  7287. default: true
  7288. },
  7289. {
  7290. name: "Macro",
  7291. height: math.unit(100, "meters")
  7292. },
  7293. ]
  7294. ))
  7295. characterMakers.push(() => makeCharacter(
  7296. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7297. {
  7298. front: {
  7299. height: math.unit(5 + 6 / 12, "feet"),
  7300. weight: math.unit(153, "lbs"),
  7301. name: "Front",
  7302. image: {
  7303. source: "./media/characters/andrew-cooper/front.svg"
  7304. }
  7305. },
  7306. },
  7307. [
  7308. {
  7309. name: "Nano",
  7310. height: math.unit(1, "mm")
  7311. },
  7312. {
  7313. name: "Micro",
  7314. height: math.unit(2, "inches")
  7315. },
  7316. {
  7317. name: "Normal",
  7318. height: math.unit(5 + 6 / 12, "feet"),
  7319. default: true
  7320. }
  7321. ]
  7322. ))
  7323. characterMakers.push(() => makeCharacter(
  7324. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7325. {
  7326. front: {
  7327. height: math.unit(6, "feet"),
  7328. weight: math.unit(180, "lbs"),
  7329. name: "Front",
  7330. image: {
  7331. source: "./media/characters/akane-sato/front.svg",
  7332. extra: 1219 / 1140
  7333. }
  7334. },
  7335. back: {
  7336. height: math.unit(6, "feet"),
  7337. weight: math.unit(180, "lbs"),
  7338. name: "Back",
  7339. image: {
  7340. source: "./media/characters/akane-sato/back.svg",
  7341. extra: 1219 / 1170
  7342. }
  7343. },
  7344. },
  7345. [
  7346. {
  7347. name: "Normal",
  7348. height: math.unit(2.5, "meters")
  7349. },
  7350. {
  7351. name: "Macro",
  7352. height: math.unit(250, "meters"),
  7353. default: true
  7354. },
  7355. {
  7356. name: "Megamacro",
  7357. height: math.unit(25, "km")
  7358. },
  7359. ]
  7360. ))
  7361. characterMakers.push(() => makeCharacter(
  7362. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7363. {
  7364. front: {
  7365. height: math.unit(6, "feet"),
  7366. weight: math.unit(65, "kg"),
  7367. name: "Front",
  7368. image: {
  7369. source: "./media/characters/rook/front.svg",
  7370. extra: 960 / 950
  7371. }
  7372. }
  7373. },
  7374. [
  7375. {
  7376. name: "Normal",
  7377. height: math.unit(8.8, "feet")
  7378. },
  7379. {
  7380. name: "Macro",
  7381. height: math.unit(88, "feet"),
  7382. default: true
  7383. },
  7384. {
  7385. name: "Megamacro",
  7386. height: math.unit(8, "miles")
  7387. },
  7388. ]
  7389. ))
  7390. characterMakers.push(() => makeCharacter(
  7391. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7392. {
  7393. front: {
  7394. height: math.unit(12 + 2 / 12, "feet"),
  7395. weight: math.unit(808, "lbs"),
  7396. name: "Front",
  7397. image: {
  7398. source: "./media/characters/prodigy/front.svg"
  7399. }
  7400. }
  7401. },
  7402. [
  7403. {
  7404. name: "Normal",
  7405. height: math.unit(12 + 2 / 12, "feet"),
  7406. default: true
  7407. },
  7408. {
  7409. name: "Macro",
  7410. height: math.unit(143, "feet")
  7411. },
  7412. {
  7413. name: "Macro+",
  7414. height: math.unit(400, "feet")
  7415. },
  7416. ]
  7417. ))
  7418. characterMakers.push(() => makeCharacter(
  7419. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7420. {
  7421. front: {
  7422. height: math.unit(6, "feet"),
  7423. weight: math.unit(225, "lbs"),
  7424. name: "Front",
  7425. image: {
  7426. source: "./media/characters/daniel/front.svg"
  7427. }
  7428. },
  7429. leaning: {
  7430. height: math.unit(6, "feet"),
  7431. weight: math.unit(225, "lbs"),
  7432. name: "Leaning",
  7433. image: {
  7434. source: "./media/characters/daniel/leaning.svg"
  7435. }
  7436. },
  7437. },
  7438. [
  7439. {
  7440. name: "Macro",
  7441. height: math.unit(1000, "feet"),
  7442. default: true
  7443. },
  7444. ]
  7445. ))
  7446. characterMakers.push(() => makeCharacter(
  7447. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7448. {
  7449. front: {
  7450. height: math.unit(6, "feet"),
  7451. weight: math.unit(88, "lbs"),
  7452. name: "Front",
  7453. image: {
  7454. source: "./media/characters/chiros/front.svg",
  7455. extra: 306 / 226
  7456. }
  7457. },
  7458. side: {
  7459. height: math.unit(6, "feet"),
  7460. weight: math.unit(88, "lbs"),
  7461. name: "Side",
  7462. image: {
  7463. source: "./media/characters/chiros/side.svg",
  7464. extra: 306 / 226
  7465. }
  7466. },
  7467. },
  7468. [
  7469. {
  7470. name: "Normal",
  7471. height: math.unit(6, "cm"),
  7472. default: true
  7473. },
  7474. ]
  7475. ))
  7476. characterMakers.push(() => makeCharacter(
  7477. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7478. {
  7479. front: {
  7480. height: math.unit(6, "feet"),
  7481. weight: math.unit(100, "lbs"),
  7482. name: "Front",
  7483. image: {
  7484. source: "./media/characters/selka/front.svg",
  7485. extra: 947 / 887
  7486. }
  7487. }
  7488. },
  7489. [
  7490. {
  7491. name: "Normal",
  7492. height: math.unit(5, "cm"),
  7493. default: true
  7494. },
  7495. ]
  7496. ))
  7497. characterMakers.push(() => makeCharacter(
  7498. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7499. {
  7500. front: {
  7501. height: math.unit(8 + 3 / 12, "feet"),
  7502. weight: math.unit(424, "lbs"),
  7503. name: "Front",
  7504. image: {
  7505. source: "./media/characters/verin/front.svg",
  7506. extra: 1845 / 1550
  7507. }
  7508. },
  7509. frontArmored: {
  7510. height: math.unit(8 + 3 / 12, "feet"),
  7511. weight: math.unit(424, "lbs"),
  7512. name: "Front (Armored)",
  7513. image: {
  7514. source: "./media/characters/verin/front-armor.svg",
  7515. extra: 1845 / 1550,
  7516. bottom: 0.01
  7517. }
  7518. },
  7519. back: {
  7520. height: math.unit(8 + 3 / 12, "feet"),
  7521. weight: math.unit(424, "lbs"),
  7522. name: "Back",
  7523. image: {
  7524. source: "./media/characters/verin/back.svg",
  7525. bottom: 0.1,
  7526. extra: 1
  7527. }
  7528. },
  7529. foot: {
  7530. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7531. name: "Foot",
  7532. image: {
  7533. source: "./media/characters/verin/foot.svg"
  7534. }
  7535. },
  7536. },
  7537. [
  7538. {
  7539. name: "Normal",
  7540. height: math.unit(8 + 3 / 12, "feet")
  7541. },
  7542. {
  7543. name: "Minimacro",
  7544. height: math.unit(21, "feet"),
  7545. default: true
  7546. },
  7547. {
  7548. name: "Macro",
  7549. height: math.unit(626, "feet")
  7550. },
  7551. ]
  7552. ))
  7553. characterMakers.push(() => makeCharacter(
  7554. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7555. {
  7556. front: {
  7557. height: math.unit(2.718, "meters"),
  7558. weight: math.unit(150, "lbs"),
  7559. name: "Front",
  7560. image: {
  7561. source: "./media/characters/sovrim-terraquian/front.svg"
  7562. }
  7563. },
  7564. back: {
  7565. height: math.unit(2.718, "meters"),
  7566. weight: math.unit(150, "lbs"),
  7567. name: "Back",
  7568. image: {
  7569. source: "./media/characters/sovrim-terraquian/back.svg"
  7570. }
  7571. }
  7572. },
  7573. [
  7574. {
  7575. name: "Micro",
  7576. height: math.unit(2, "inches")
  7577. },
  7578. {
  7579. name: "Small",
  7580. height: math.unit(1, "meter")
  7581. },
  7582. {
  7583. name: "Normal",
  7584. height: math.unit(Math.E, "meters"),
  7585. default: true
  7586. },
  7587. {
  7588. name: "Macro",
  7589. height: math.unit(20, "meters")
  7590. },
  7591. {
  7592. name: "Macro+",
  7593. height: math.unit(400, "meters")
  7594. },
  7595. ]
  7596. ))
  7597. characterMakers.push(() => makeCharacter(
  7598. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7599. {
  7600. front: {
  7601. height: math.unit(7, "feet"),
  7602. weight: math.unit(489, "lbs"),
  7603. name: "Front",
  7604. image: {
  7605. source: "./media/characters/reece-silvermane/front.svg",
  7606. bottom: 0.02,
  7607. extra: 1
  7608. }
  7609. },
  7610. },
  7611. [
  7612. {
  7613. name: "Macro",
  7614. height: math.unit(1.5, "miles"),
  7615. default: true
  7616. },
  7617. ]
  7618. ))
  7619. characterMakers.push(() => makeCharacter(
  7620. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7621. {
  7622. front: {
  7623. height: math.unit(6, "feet"),
  7624. weight: math.unit(78, "kg"),
  7625. name: "Front",
  7626. image: {
  7627. source: "./media/characters/kane/front.svg",
  7628. extra: 978 / 899
  7629. }
  7630. },
  7631. },
  7632. [
  7633. {
  7634. name: "Normal",
  7635. height: math.unit(2.1, "m"),
  7636. },
  7637. {
  7638. name: "Macro",
  7639. height: math.unit(1, "km"),
  7640. default: true
  7641. },
  7642. ]
  7643. ))
  7644. characterMakers.push(() => makeCharacter(
  7645. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7646. {
  7647. front: {
  7648. height: math.unit(6, "feet"),
  7649. weight: math.unit(200, "kg"),
  7650. name: "Front",
  7651. image: {
  7652. source: "./media/characters/tegon/front.svg",
  7653. bottom: 0.01,
  7654. extra: 1
  7655. }
  7656. },
  7657. },
  7658. [
  7659. {
  7660. name: "Micro",
  7661. height: math.unit(1, "inch")
  7662. },
  7663. {
  7664. name: "Normal",
  7665. height: math.unit(6 + 3 / 12, "feet"),
  7666. default: true
  7667. },
  7668. {
  7669. name: "Macro",
  7670. height: math.unit(300, "feet")
  7671. },
  7672. {
  7673. name: "Megamacro",
  7674. height: math.unit(69, "miles")
  7675. },
  7676. ]
  7677. ))
  7678. characterMakers.push(() => makeCharacter(
  7679. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7680. {
  7681. side: {
  7682. height: math.unit(6, "feet"),
  7683. weight: math.unit(2304, "lbs"),
  7684. name: "Side",
  7685. image: {
  7686. source: "./media/characters/arcturax/side.svg",
  7687. extra: 790 / 376,
  7688. bottom: 0.01
  7689. }
  7690. },
  7691. },
  7692. [
  7693. {
  7694. name: "Micro",
  7695. height: math.unit(2, "inch")
  7696. },
  7697. {
  7698. name: "Normal",
  7699. height: math.unit(6, "feet")
  7700. },
  7701. {
  7702. name: "Macro",
  7703. height: math.unit(39, "feet"),
  7704. default: true
  7705. },
  7706. {
  7707. name: "Megamacro",
  7708. height: math.unit(7, "miles")
  7709. },
  7710. ]
  7711. ))
  7712. characterMakers.push(() => makeCharacter(
  7713. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7714. {
  7715. front: {
  7716. height: math.unit(6, "feet"),
  7717. weight: math.unit(50, "lbs"),
  7718. name: "Front",
  7719. image: {
  7720. source: "./media/characters/sentri/front.svg",
  7721. extra: 1750 / 1570,
  7722. bottom: 0.025
  7723. }
  7724. },
  7725. frontAlt: {
  7726. height: math.unit(6, "feet"),
  7727. weight: math.unit(50, "lbs"),
  7728. name: "Front (Alt)",
  7729. image: {
  7730. source: "./media/characters/sentri/front-alt.svg",
  7731. extra: 1750 / 1570,
  7732. bottom: 0.025
  7733. }
  7734. },
  7735. },
  7736. [
  7737. {
  7738. name: "Normal",
  7739. height: math.unit(15, "feet"),
  7740. default: true
  7741. },
  7742. {
  7743. name: "Macro",
  7744. height: math.unit(2500, "feet")
  7745. }
  7746. ]
  7747. ))
  7748. characterMakers.push(() => makeCharacter(
  7749. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7750. {
  7751. front: {
  7752. height: math.unit(5 + 8 / 12, "feet"),
  7753. weight: math.unit(130, "lbs"),
  7754. name: "Front",
  7755. image: {
  7756. source: "./media/characters/corvin/front.svg",
  7757. extra: 1803 / 1629
  7758. }
  7759. },
  7760. frontShirt: {
  7761. height: math.unit(5 + 8 / 12, "feet"),
  7762. weight: math.unit(130, "lbs"),
  7763. name: "Front (Shirt)",
  7764. image: {
  7765. source: "./media/characters/corvin/front-shirt.svg",
  7766. extra: 1803 / 1629
  7767. }
  7768. },
  7769. frontPoncho: {
  7770. height: math.unit(5 + 8 / 12, "feet"),
  7771. weight: math.unit(130, "lbs"),
  7772. name: "Front (Poncho)",
  7773. image: {
  7774. source: "./media/characters/corvin/front-poncho.svg",
  7775. extra: 1803 / 1629
  7776. }
  7777. },
  7778. side: {
  7779. height: math.unit(5 + 8 / 12, "feet"),
  7780. weight: math.unit(130, "lbs"),
  7781. name: "Side",
  7782. image: {
  7783. source: "./media/characters/corvin/side.svg",
  7784. extra: 1012 / 945
  7785. }
  7786. },
  7787. back: {
  7788. height: math.unit(5 + 8 / 12, "feet"),
  7789. weight: math.unit(130, "lbs"),
  7790. name: "Back",
  7791. image: {
  7792. source: "./media/characters/corvin/back.svg",
  7793. extra: 1803 / 1629
  7794. }
  7795. },
  7796. },
  7797. [
  7798. {
  7799. name: "Micro",
  7800. height: math.unit(3, "inches")
  7801. },
  7802. {
  7803. name: "Normal",
  7804. height: math.unit(5 + 8 / 12, "feet")
  7805. },
  7806. {
  7807. name: "Macro",
  7808. height: math.unit(300, "feet"),
  7809. default: true
  7810. },
  7811. {
  7812. name: "Megamacro",
  7813. height: math.unit(500, "miles")
  7814. }
  7815. ]
  7816. ))
  7817. characterMakers.push(() => makeCharacter(
  7818. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7819. {
  7820. front: {
  7821. height: math.unit(6, "feet"),
  7822. weight: math.unit(135, "lbs"),
  7823. name: "Front",
  7824. image: {
  7825. source: "./media/characters/q/front.svg",
  7826. extra: 854 / 752,
  7827. bottom: 0.005
  7828. }
  7829. },
  7830. back: {
  7831. height: math.unit(6, "feet"),
  7832. weight: math.unit(130, "lbs"),
  7833. name: "Back",
  7834. image: {
  7835. source: "./media/characters/q/back.svg",
  7836. extra: 854 / 752
  7837. }
  7838. },
  7839. },
  7840. [
  7841. {
  7842. name: "Macro",
  7843. height: math.unit(90, "feet"),
  7844. default: true
  7845. },
  7846. {
  7847. name: "Extra Macro",
  7848. height: math.unit(300, "feet"),
  7849. },
  7850. {
  7851. name: "BIG WALF",
  7852. height: math.unit(750, "feet"),
  7853. },
  7854. ]
  7855. ))
  7856. characterMakers.push(() => makeCharacter(
  7857. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7858. {
  7859. front: {
  7860. height: math.unit(6, "feet"),
  7861. weight: math.unit(150, "lbs"),
  7862. name: "Front",
  7863. image: {
  7864. source: "./media/characters/carley/front.svg",
  7865. extra: 3927 / 3540,
  7866. bottom: 29.2 / 735
  7867. }
  7868. }
  7869. },
  7870. [
  7871. {
  7872. name: "Normal",
  7873. height: math.unit(6 + 3 / 12, "feet")
  7874. },
  7875. {
  7876. name: "Macro",
  7877. height: math.unit(185, "feet"),
  7878. default: true
  7879. },
  7880. {
  7881. name: "Megamacro",
  7882. height: math.unit(8, "miles"),
  7883. },
  7884. ]
  7885. ))
  7886. characterMakers.push(() => makeCharacter(
  7887. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7888. {
  7889. front: {
  7890. height: math.unit(3, "feet"),
  7891. weight: math.unit(28, "lbs"),
  7892. name: "Front",
  7893. image: {
  7894. source: "./media/characters/citrine/front.svg"
  7895. }
  7896. }
  7897. },
  7898. [
  7899. {
  7900. name: "Normal",
  7901. height: math.unit(3, "feet"),
  7902. default: true
  7903. }
  7904. ]
  7905. ))
  7906. characterMakers.push(() => makeCharacter(
  7907. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7908. {
  7909. front: {
  7910. height: math.unit(14, "feet"),
  7911. weight: math.unit(1450, "kg"),
  7912. capacity: math.unit(15, "people"),
  7913. name: "Front",
  7914. image: {
  7915. source: "./media/characters/aura-starwind/front.svg",
  7916. extra: 1455 / 1335
  7917. }
  7918. },
  7919. side: {
  7920. height: math.unit(14, "feet"),
  7921. weight: math.unit(1450, "kg"),
  7922. capacity: math.unit(15, "people"),
  7923. name: "Side",
  7924. image: {
  7925. source: "./media/characters/aura-starwind/side.svg",
  7926. extra: 1654 / 1497
  7927. }
  7928. },
  7929. taur: {
  7930. height: math.unit(18, "feet"),
  7931. weight: math.unit(5500, "kg"),
  7932. capacity: math.unit(50, "people"),
  7933. name: "Taur",
  7934. image: {
  7935. source: "./media/characters/aura-starwind/taur.svg",
  7936. extra: 1760 / 1650
  7937. }
  7938. },
  7939. feral: {
  7940. height: math.unit(46, "feet"),
  7941. weight: math.unit(25000, "kg"),
  7942. capacity: math.unit(120, "people"),
  7943. name: "Feral",
  7944. image: {
  7945. source: "./media/characters/aura-starwind/feral.svg"
  7946. }
  7947. },
  7948. },
  7949. [
  7950. {
  7951. name: "Normal",
  7952. height: math.unit(14, "feet"),
  7953. default: true
  7954. },
  7955. {
  7956. name: "Macro",
  7957. height: math.unit(50, "meters")
  7958. },
  7959. {
  7960. name: "Megamacro",
  7961. height: math.unit(5000, "meters")
  7962. },
  7963. {
  7964. name: "Gigamacro",
  7965. height: math.unit(100000, "kilometers")
  7966. },
  7967. ]
  7968. ))
  7969. characterMakers.push(() => makeCharacter(
  7970. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7971. {
  7972. front: {
  7973. height: math.unit(2 + 7 / 12, "feet"),
  7974. weight: math.unit(32, "lbs"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/rivet/front.svg",
  7978. extra: 1716 / 1658,
  7979. bottom: 0.03
  7980. }
  7981. },
  7982. foot: {
  7983. height: math.unit(0.551, "feet"),
  7984. name: "Rivet's Foot",
  7985. image: {
  7986. source: "./media/characters/rivet/foot.svg"
  7987. },
  7988. rename: true
  7989. }
  7990. },
  7991. [
  7992. {
  7993. name: "Micro",
  7994. height: math.unit(1.5, "inches"),
  7995. },
  7996. {
  7997. name: "Normal",
  7998. height: math.unit(2 + 7 / 12, "feet"),
  7999. default: true
  8000. },
  8001. {
  8002. name: "Macro",
  8003. height: math.unit(85, "feet")
  8004. },
  8005. {
  8006. name: "Megamacro",
  8007. height: math.unit(2.2, "km")
  8008. }
  8009. ]
  8010. ))
  8011. characterMakers.push(() => makeCharacter(
  8012. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8013. {
  8014. front: {
  8015. height: math.unit(5 + 9 / 12, "feet"),
  8016. weight: math.unit(150, "lbs"),
  8017. name: "Front",
  8018. image: {
  8019. source: "./media/characters/coffee/front.svg",
  8020. extra: 3666 / 3032,
  8021. bottom: 0.04
  8022. }
  8023. },
  8024. foot: {
  8025. height: math.unit(1.29, "feet"),
  8026. name: "Foot",
  8027. image: {
  8028. source: "./media/characters/coffee/foot.svg"
  8029. }
  8030. },
  8031. },
  8032. [
  8033. {
  8034. name: "Micro",
  8035. height: math.unit(2, "inches"),
  8036. },
  8037. {
  8038. name: "Normal",
  8039. height: math.unit(5 + 9 / 12, "feet"),
  8040. default: true
  8041. },
  8042. {
  8043. name: "Macro",
  8044. height: math.unit(800, "feet")
  8045. },
  8046. {
  8047. name: "Megamacro",
  8048. height: math.unit(25, "miles")
  8049. }
  8050. ]
  8051. ))
  8052. characterMakers.push(() => makeCharacter(
  8053. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8054. {
  8055. front: {
  8056. height: math.unit(6, "feet"),
  8057. weight: math.unit(200, "lbs"),
  8058. name: "Front",
  8059. image: {
  8060. source: "./media/characters/chari-gal/front.svg",
  8061. extra: 1568 / 1385,
  8062. bottom: 0.047
  8063. }
  8064. },
  8065. gigantamax: {
  8066. height: math.unit(6 * 16, "feet"),
  8067. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8068. name: "Gigantamax",
  8069. image: {
  8070. source: "./media/characters/chari-gal/gigantamax.svg",
  8071. extra: 1124 / 888,
  8072. bottom: 0.03
  8073. }
  8074. },
  8075. },
  8076. [
  8077. {
  8078. name: "Normal",
  8079. height: math.unit(5 + 7 / 12, "feet")
  8080. },
  8081. {
  8082. name: "Macro",
  8083. height: math.unit(200, "feet"),
  8084. default: true
  8085. }
  8086. ]
  8087. ))
  8088. characterMakers.push(() => makeCharacter(
  8089. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8090. {
  8091. front: {
  8092. height: math.unit(6, "feet"),
  8093. weight: math.unit(150, "lbs"),
  8094. name: "Front",
  8095. image: {
  8096. source: "./media/characters/nova/front.svg",
  8097. extra: 5000 / 4722,
  8098. bottom: 0.02
  8099. }
  8100. }
  8101. },
  8102. [
  8103. {
  8104. name: "Micro-",
  8105. height: math.unit(0.8, "inches")
  8106. },
  8107. {
  8108. name: "Micro",
  8109. height: math.unit(2, "inches"),
  8110. default: true
  8111. },
  8112. ]
  8113. ))
  8114. characterMakers.push(() => makeCharacter(
  8115. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8116. {
  8117. front: {
  8118. height: math.unit(3 + 1 / 12, "feet"),
  8119. weight: math.unit(21.7, "lbs"),
  8120. name: "Front",
  8121. image: {
  8122. source: "./media/characters/argent/front.svg",
  8123. extra: 1471 / 1331,
  8124. bottom: 100.8 / 1575.5
  8125. }
  8126. }
  8127. },
  8128. [
  8129. {
  8130. name: "Micro",
  8131. height: math.unit(2, "inches")
  8132. },
  8133. {
  8134. name: "Normal",
  8135. height: math.unit(3 + 1 / 12, "feet"),
  8136. default: true
  8137. },
  8138. {
  8139. name: "Macro",
  8140. height: math.unit(120, "feet")
  8141. },
  8142. ]
  8143. ))
  8144. characterMakers.push(() => makeCharacter(
  8145. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8146. {
  8147. lamp: {
  8148. height: math.unit(7 * 1559 / 989, "feet"),
  8149. name: "Magic Lamp",
  8150. image: {
  8151. source: "./media/characters/mira-al-cul/lamp.svg",
  8152. extra: 1617 / 1559
  8153. }
  8154. },
  8155. front: {
  8156. height: math.unit(7, "feet"),
  8157. name: "Front",
  8158. image: {
  8159. source: "./media/characters/mira-al-cul/front.svg",
  8160. extra: 1044 / 990
  8161. }
  8162. },
  8163. },
  8164. [
  8165. {
  8166. name: "Heavily Restricted",
  8167. height: math.unit(7 * 1559 / 989, "feet")
  8168. },
  8169. {
  8170. name: "Freshly Freed",
  8171. height: math.unit(50 * 1559 / 989, "feet")
  8172. },
  8173. {
  8174. name: "World Encompassing",
  8175. height: math.unit(10000 * 1559 / 989, "miles")
  8176. },
  8177. {
  8178. name: "Galactic",
  8179. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8180. },
  8181. {
  8182. name: "Palmed Universe",
  8183. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8184. default: true
  8185. },
  8186. {
  8187. name: "Multiversal Matriarch",
  8188. height: math.unit(8.87e10, "yottameters")
  8189. },
  8190. {
  8191. name: "Void Mother",
  8192. height: math.unit(3.14e110, "yottaparsecs")
  8193. },
  8194. {
  8195. name: "Toying with Transcendence",
  8196. height: math.unit(1e307, "meters")
  8197. },
  8198. ]
  8199. ))
  8200. characterMakers.push(() => makeCharacter(
  8201. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8202. {
  8203. front: {
  8204. height: math.unit(17 + 1 / 12, "feet"),
  8205. weight: math.unit(476.2 * 5, "lbs"),
  8206. name: "Front",
  8207. image: {
  8208. source: "./media/characters/kuro-shi-uchū/front.svg",
  8209. extra: 2329 / 1835,
  8210. bottom: 0.02
  8211. }
  8212. },
  8213. },
  8214. [
  8215. {
  8216. name: "Micro",
  8217. height: math.unit(2, "inches")
  8218. },
  8219. {
  8220. name: "Normal",
  8221. height: math.unit(12, "meters")
  8222. },
  8223. {
  8224. name: "Planetary",
  8225. height: math.unit(0.00929, "AU"),
  8226. default: true
  8227. },
  8228. {
  8229. name: "Universal",
  8230. height: math.unit(20, "gigaparsecs")
  8231. },
  8232. ]
  8233. ))
  8234. characterMakers.push(() => makeCharacter(
  8235. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8236. {
  8237. front: {
  8238. height: math.unit(5 + 2 / 12, "feet"),
  8239. weight: math.unit(120, "lbs"),
  8240. name: "Front",
  8241. image: {
  8242. source: "./media/characters/katherine/front.svg",
  8243. extra: 2075 / 1969
  8244. }
  8245. },
  8246. dress: {
  8247. height: math.unit(5 + 2 / 12, "feet"),
  8248. weight: math.unit(120, "lbs"),
  8249. name: "Dress",
  8250. image: {
  8251. source: "./media/characters/katherine/dress.svg",
  8252. extra: 2258 / 2064
  8253. }
  8254. },
  8255. },
  8256. [
  8257. {
  8258. name: "Micro",
  8259. height: math.unit(1, "inches"),
  8260. default: true
  8261. },
  8262. {
  8263. name: "Normal",
  8264. height: math.unit(5 + 2 / 12, "feet")
  8265. },
  8266. {
  8267. name: "Macro",
  8268. height: math.unit(100, "meters")
  8269. },
  8270. {
  8271. name: "Megamacro",
  8272. height: math.unit(80, "miles")
  8273. },
  8274. ]
  8275. ))
  8276. characterMakers.push(() => makeCharacter(
  8277. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8278. {
  8279. front: {
  8280. height: math.unit(7 + 8 / 12, "feet"),
  8281. weight: math.unit(250, "lbs"),
  8282. name: "Front",
  8283. image: {
  8284. source: "./media/characters/yevis/front.svg",
  8285. extra: 1938 / 1755
  8286. }
  8287. }
  8288. },
  8289. [
  8290. {
  8291. name: "Mortal",
  8292. height: math.unit(7 + 8 / 12, "feet")
  8293. },
  8294. {
  8295. name: "Battle",
  8296. height: math.unit(25 + 11 / 12, "feet")
  8297. },
  8298. {
  8299. name: "Wrath",
  8300. height: math.unit(1654 + 11 / 12, "feet")
  8301. },
  8302. {
  8303. name: "Planet Destroyer",
  8304. height: math.unit(12000, "miles")
  8305. },
  8306. {
  8307. name: "Galaxy Conqueror",
  8308. height: math.unit(1.45, "zettameters"),
  8309. default: true
  8310. },
  8311. {
  8312. name: "Universal War",
  8313. height: math.unit(184, "gigaparsecs")
  8314. },
  8315. {
  8316. name: "Eternity War",
  8317. height: math.unit(1.98e55, "yottaparsecs")
  8318. },
  8319. ]
  8320. ))
  8321. characterMakers.push(() => makeCharacter(
  8322. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8323. {
  8324. front: {
  8325. height: math.unit(5 + 8 / 12, "feet"),
  8326. weight: math.unit(63, "kg"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/xavier/front.svg",
  8330. extra: 944 / 883
  8331. }
  8332. },
  8333. frontStretch: {
  8334. height: math.unit(5 + 8 / 12, "feet"),
  8335. weight: math.unit(63, "kg"),
  8336. name: "Stretching",
  8337. image: {
  8338. source: "./media/characters/xavier/front-stretch.svg",
  8339. extra: 962 / 820
  8340. }
  8341. },
  8342. },
  8343. [
  8344. {
  8345. name: "Normal",
  8346. height: math.unit(5 + 8 / 12, "feet")
  8347. },
  8348. {
  8349. name: "Macro",
  8350. height: math.unit(100, "meters"),
  8351. default: true
  8352. },
  8353. {
  8354. name: "McLargeHuge",
  8355. height: math.unit(10, "miles")
  8356. },
  8357. ]
  8358. ))
  8359. characterMakers.push(() => makeCharacter(
  8360. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8361. {
  8362. front: {
  8363. height: math.unit(5 + 5 / 12, "feet"),
  8364. weight: math.unit(150, "lb"),
  8365. name: "Front",
  8366. image: {
  8367. source: "./media/characters/joshii/front.svg",
  8368. extra: 765 / 653,
  8369. bottom: 51 / 816
  8370. }
  8371. },
  8372. foot: {
  8373. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8374. name: "Foot",
  8375. image: {
  8376. source: "./media/characters/joshii/foot.svg"
  8377. }
  8378. },
  8379. },
  8380. [
  8381. {
  8382. name: "Micro",
  8383. height: math.unit(2, "inches"),
  8384. default: true
  8385. },
  8386. {
  8387. name: "Normal",
  8388. height: math.unit(5 + 5 / 12, "feet")
  8389. },
  8390. {
  8391. name: "Macro",
  8392. height: math.unit(785, "feet")
  8393. },
  8394. {
  8395. name: "Megamacro",
  8396. height: math.unit(24.5, "miles")
  8397. },
  8398. ]
  8399. ))
  8400. characterMakers.push(() => makeCharacter(
  8401. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8402. {
  8403. front: {
  8404. height: math.unit(6, "feet"),
  8405. weight: math.unit(150, "lb"),
  8406. name: "Front",
  8407. image: {
  8408. source: "./media/characters/goddess-elizabeth/front.svg",
  8409. extra: 1800 / 1525,
  8410. bottom: 0.005
  8411. }
  8412. },
  8413. foot: {
  8414. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8415. name: "Foot",
  8416. image: {
  8417. source: "./media/characters/goddess-elizabeth/foot.svg"
  8418. }
  8419. },
  8420. mouth: {
  8421. height: math.unit(6, "feet"),
  8422. name: "Mouth",
  8423. image: {
  8424. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8425. }
  8426. },
  8427. },
  8428. [
  8429. {
  8430. name: "Micro",
  8431. height: math.unit(12, "feet")
  8432. },
  8433. {
  8434. name: "Normal",
  8435. height: math.unit(80, "miles"),
  8436. default: true
  8437. },
  8438. {
  8439. name: "Macro",
  8440. height: math.unit(15000, "parsecs")
  8441. },
  8442. ]
  8443. ))
  8444. characterMakers.push(() => makeCharacter(
  8445. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8446. {
  8447. front: {
  8448. height: math.unit(5 + 9 / 12, "feet"),
  8449. weight: math.unit(144, "lb"),
  8450. name: "Front",
  8451. image: {
  8452. source: "./media/characters/kara/front.svg"
  8453. }
  8454. },
  8455. feet: {
  8456. height: math.unit(6 / 6.765, "feet"),
  8457. name: "Kara's Feet",
  8458. rename: true,
  8459. image: {
  8460. source: "./media/characters/kara/feet.svg"
  8461. }
  8462. },
  8463. },
  8464. [
  8465. {
  8466. name: "Normal",
  8467. height: math.unit(5 + 9 / 12, "feet")
  8468. },
  8469. {
  8470. name: "Macro",
  8471. height: math.unit(174, "feet"),
  8472. default: true
  8473. },
  8474. ]
  8475. ))
  8476. characterMakers.push(() => makeCharacter(
  8477. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8478. {
  8479. front: {
  8480. height: math.unit(18, "feet"),
  8481. weight: math.unit(4050, "lb"),
  8482. name: "Front",
  8483. image: {
  8484. source: "./media/characters/tyrone/front.svg",
  8485. extra: 2405 / 2270,
  8486. bottom: 182 / 2587
  8487. }
  8488. },
  8489. },
  8490. [
  8491. {
  8492. name: "Normal",
  8493. height: math.unit(18, "feet"),
  8494. default: true
  8495. },
  8496. {
  8497. name: "Macro",
  8498. height: math.unit(300, "feet")
  8499. },
  8500. {
  8501. name: "Megamacro",
  8502. height: math.unit(15, "km")
  8503. },
  8504. {
  8505. name: "Gigamacro",
  8506. height: math.unit(500, "km")
  8507. },
  8508. {
  8509. name: "Teramacro",
  8510. height: math.unit(0.5, "gigameters")
  8511. },
  8512. {
  8513. name: "Omnimacro",
  8514. height: math.unit(1e252, "yottauniverse")
  8515. },
  8516. ]
  8517. ))
  8518. characterMakers.push(() => makeCharacter(
  8519. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8520. {
  8521. front: {
  8522. height: math.unit(7 + 8 / 12, "feet"),
  8523. weight: math.unit(120, "lb"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/danny/front.svg",
  8527. extra: 1490 / 1350
  8528. }
  8529. },
  8530. back: {
  8531. height: math.unit(7 + 8 / 12, "feet"),
  8532. weight: math.unit(120, "lb"),
  8533. name: "Back",
  8534. image: {
  8535. source: "./media/characters/danny/back.svg",
  8536. extra: 1490 / 1350
  8537. }
  8538. },
  8539. },
  8540. [
  8541. {
  8542. name: "Normal",
  8543. height: math.unit(7 + 8 / 12, "feet"),
  8544. default: true
  8545. },
  8546. ]
  8547. ))
  8548. characterMakers.push(() => makeCharacter(
  8549. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8550. {
  8551. front: {
  8552. height: math.unit(3.5, "inches"),
  8553. weight: math.unit(19, "grams"),
  8554. name: "Front",
  8555. image: {
  8556. source: "./media/characters/mallow/front.svg",
  8557. extra: 471 / 431
  8558. }
  8559. },
  8560. back: {
  8561. height: math.unit(3.5, "inches"),
  8562. weight: math.unit(19, "grams"),
  8563. name: "Back",
  8564. image: {
  8565. source: "./media/characters/mallow/back.svg",
  8566. extra: 471 / 431
  8567. }
  8568. },
  8569. },
  8570. [
  8571. {
  8572. name: "Normal",
  8573. height: math.unit(3.5, "inches"),
  8574. default: true
  8575. },
  8576. ]
  8577. ))
  8578. characterMakers.push(() => makeCharacter(
  8579. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8580. {
  8581. front: {
  8582. height: math.unit(9, "feet"),
  8583. weight: math.unit(230, "kg"),
  8584. name: "Front",
  8585. image: {
  8586. source: "./media/characters/starry-aqua/front.svg"
  8587. }
  8588. },
  8589. back: {
  8590. height: math.unit(9, "feet"),
  8591. weight: math.unit(230, "kg"),
  8592. name: "Back",
  8593. image: {
  8594. source: "./media/characters/starry-aqua/back.svg"
  8595. }
  8596. },
  8597. hand: {
  8598. height: math.unit(9 * 0.1168, "feet"),
  8599. name: "Hand",
  8600. image: {
  8601. source: "./media/characters/starry-aqua/hand.svg"
  8602. }
  8603. },
  8604. foot: {
  8605. height: math.unit(9 * 0.18, "feet"),
  8606. name: "Foot",
  8607. image: {
  8608. source: "./media/characters/starry-aqua/foot.svg"
  8609. }
  8610. }
  8611. },
  8612. [
  8613. {
  8614. name: "Micro",
  8615. height: math.unit(3, "inches")
  8616. },
  8617. {
  8618. name: "Normal",
  8619. height: math.unit(9, "feet")
  8620. },
  8621. {
  8622. name: "Macro",
  8623. height: math.unit(300, "feet"),
  8624. default: true
  8625. },
  8626. {
  8627. name: "Megamacro",
  8628. height: math.unit(3200, "feet")
  8629. }
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8634. {
  8635. front: {
  8636. height: math.unit(6, "feet"),
  8637. weight: math.unit(230, "lb"),
  8638. name: "Front",
  8639. image: {
  8640. source: "./media/characters/luka/front.svg",
  8641. extra: 1,
  8642. bottom: 0.025
  8643. }
  8644. },
  8645. },
  8646. [
  8647. {
  8648. name: "Normal",
  8649. height: math.unit(12 + 8 / 12, "feet"),
  8650. default: true
  8651. },
  8652. {
  8653. name: "Minimacro",
  8654. height: math.unit(20, "feet")
  8655. },
  8656. {
  8657. name: "Macro",
  8658. height: math.unit(250, "feet")
  8659. },
  8660. {
  8661. name: "Megamacro",
  8662. height: math.unit(5, "miles")
  8663. },
  8664. {
  8665. name: "Gigamacro",
  8666. height: math.unit(8000, "miles")
  8667. },
  8668. ]
  8669. ))
  8670. characterMakers.push(() => makeCharacter(
  8671. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8672. {
  8673. front: {
  8674. height: math.unit(6, "feet"),
  8675. weight: math.unit(150, "lb"),
  8676. name: "Front",
  8677. image: {
  8678. source: "./media/characters/natalie-nightring/front.svg",
  8679. extra: 1,
  8680. bottom: 0.06
  8681. }
  8682. },
  8683. },
  8684. [
  8685. {
  8686. name: "Uh Oh",
  8687. height: math.unit(0.1, "mm")
  8688. },
  8689. {
  8690. name: "Small",
  8691. height: math.unit(3, "inches")
  8692. },
  8693. {
  8694. name: "Human Scale",
  8695. height: math.unit(6, "feet")
  8696. },
  8697. {
  8698. name: "Librarian",
  8699. height: math.unit(50, "feet"),
  8700. default: true
  8701. },
  8702. {
  8703. name: "Immense",
  8704. height: math.unit(200, "miles")
  8705. },
  8706. ]
  8707. ))
  8708. characterMakers.push(() => makeCharacter(
  8709. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8710. {
  8711. front: {
  8712. height: math.unit(6, "feet"),
  8713. weight: math.unit(180, "lbs"),
  8714. name: "Front",
  8715. image: {
  8716. source: "./media/characters/danni-rosie/front.svg",
  8717. extra: 1260 / 1128,
  8718. bottom: 0.022
  8719. }
  8720. },
  8721. },
  8722. [
  8723. {
  8724. name: "Micro",
  8725. height: math.unit(2, "inches"),
  8726. default: true
  8727. },
  8728. ]
  8729. ))
  8730. characterMakers.push(() => makeCharacter(
  8731. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8732. {
  8733. front: {
  8734. height: math.unit(5 + 9 / 12, "feet"),
  8735. weight: math.unit(220, "lb"),
  8736. name: "Front",
  8737. image: {
  8738. source: "./media/characters/samantha-kruse/front.svg",
  8739. extra: (985 / 935),
  8740. bottom: 0.03
  8741. }
  8742. },
  8743. frontUndressed: {
  8744. height: math.unit(5 + 9 / 12, "feet"),
  8745. weight: math.unit(220, "lb"),
  8746. name: "Front (Undressed)",
  8747. image: {
  8748. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8749. extra: (973 / 923),
  8750. bottom: 0.025
  8751. }
  8752. },
  8753. fat: {
  8754. height: math.unit(5 + 9 / 12, "feet"),
  8755. weight: math.unit(900, "lb"),
  8756. name: "Front (Fat)",
  8757. image: {
  8758. source: "./media/characters/samantha-kruse/fat.svg",
  8759. extra: 2688 / 2561
  8760. }
  8761. },
  8762. },
  8763. [
  8764. {
  8765. name: "Normal",
  8766. height: math.unit(5 + 9 / 12, "feet"),
  8767. default: true
  8768. }
  8769. ]
  8770. ))
  8771. characterMakers.push(() => makeCharacter(
  8772. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8773. {
  8774. back: {
  8775. height: math.unit(5 + 4 / 12, "feet"),
  8776. weight: math.unit(4963, "lb"),
  8777. name: "Back",
  8778. image: {
  8779. source: "./media/characters/amelia-rosie/back.svg",
  8780. extra: 1113 / 963,
  8781. bottom: 0.01
  8782. }
  8783. },
  8784. },
  8785. [
  8786. {
  8787. name: "Level 0",
  8788. height: math.unit(5 + 4 / 12, "feet")
  8789. },
  8790. {
  8791. name: "Level 1",
  8792. height: math.unit(164597, "feet"),
  8793. default: true
  8794. },
  8795. {
  8796. name: "Level 2",
  8797. height: math.unit(956243, "miles")
  8798. },
  8799. {
  8800. name: "Level 3",
  8801. height: math.unit(29421709423, "miles")
  8802. },
  8803. {
  8804. name: "Level 4",
  8805. height: math.unit(154, "lightyears")
  8806. },
  8807. {
  8808. name: "Level 5",
  8809. height: math.unit(4738272, "lightyears")
  8810. },
  8811. {
  8812. name: "Level 6",
  8813. height: math.unit(145787152896, "lightyears")
  8814. },
  8815. ]
  8816. ))
  8817. characterMakers.push(() => makeCharacter(
  8818. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8819. {
  8820. front: {
  8821. height: math.unit(5 + 11 / 12, "feet"),
  8822. weight: math.unit(65, "kg"),
  8823. name: "Front",
  8824. image: {
  8825. source: "./media/characters/rook-kitara/front.svg",
  8826. extra: 1347 / 1274,
  8827. bottom: 0.005
  8828. }
  8829. },
  8830. },
  8831. [
  8832. {
  8833. name: "Totally Unfair",
  8834. height: math.unit(1.8, "mm")
  8835. },
  8836. {
  8837. name: "Lap Rookie",
  8838. height: math.unit(1.4, "feet")
  8839. },
  8840. {
  8841. name: "Normal",
  8842. height: math.unit(5 + 11 / 12, "feet"),
  8843. default: true
  8844. },
  8845. {
  8846. name: "How Did This Happen",
  8847. height: math.unit(80, "miles")
  8848. }
  8849. ]
  8850. ))
  8851. characterMakers.push(() => makeCharacter(
  8852. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8853. {
  8854. front: {
  8855. height: math.unit(7, "feet"),
  8856. weight: math.unit(300, "lb"),
  8857. name: "Front",
  8858. image: {
  8859. source: "./media/characters/pisces/front.svg",
  8860. extra: 2255 / 2115,
  8861. bottom: 0.03
  8862. }
  8863. },
  8864. back: {
  8865. height: math.unit(7, "feet"),
  8866. weight: math.unit(300, "lb"),
  8867. name: "Back",
  8868. image: {
  8869. source: "./media/characters/pisces/back.svg",
  8870. extra: 2146 / 2055,
  8871. bottom: 0.04
  8872. }
  8873. },
  8874. },
  8875. [
  8876. {
  8877. name: "Normal",
  8878. height: math.unit(7, "feet"),
  8879. default: true
  8880. },
  8881. {
  8882. name: "Swimming Pool",
  8883. height: math.unit(12.2, "meters")
  8884. },
  8885. {
  8886. name: "Olympic Swimming Pool",
  8887. height: math.unit(56.3, "meters")
  8888. },
  8889. {
  8890. name: "Lake Superior",
  8891. height: math.unit(93900, "meters")
  8892. },
  8893. {
  8894. name: "Mediterranean Sea",
  8895. height: math.unit(644457, "meters")
  8896. },
  8897. {
  8898. name: "World's Oceans",
  8899. height: math.unit(4567491, "meters")
  8900. },
  8901. ]
  8902. ))
  8903. characterMakers.push(() => makeCharacter(
  8904. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8905. {
  8906. front: {
  8907. height: math.unit(2.3, "meters"),
  8908. weight: math.unit(120, "kg"),
  8909. name: "Front",
  8910. image: {
  8911. source: "./media/characters/zelas/front.svg"
  8912. }
  8913. },
  8914. side: {
  8915. height: math.unit(2.3, "meters"),
  8916. weight: math.unit(120, "kg"),
  8917. name: "Side",
  8918. image: {
  8919. source: "./media/characters/zelas/side.svg"
  8920. }
  8921. },
  8922. back: {
  8923. height: math.unit(2.3, "meters"),
  8924. weight: math.unit(120, "kg"),
  8925. name: "Back",
  8926. image: {
  8927. source: "./media/characters/zelas/back.svg"
  8928. }
  8929. },
  8930. foot: {
  8931. height: math.unit(1.116, "feet"),
  8932. name: "Foot",
  8933. image: {
  8934. source: "./media/characters/zelas/foot.svg"
  8935. }
  8936. },
  8937. },
  8938. [
  8939. {
  8940. name: "Normal",
  8941. height: math.unit(2.3, "meters")
  8942. },
  8943. {
  8944. name: "Macro",
  8945. height: math.unit(30, "meters"),
  8946. default: true
  8947. },
  8948. ]
  8949. ))
  8950. characterMakers.push(() => makeCharacter(
  8951. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8952. {
  8953. front: {
  8954. height: math.unit(1, "inch"),
  8955. weight: math.unit(0.21, "grams"),
  8956. name: "Front",
  8957. image: {
  8958. source: "./media/characters/talbot/front.svg",
  8959. extra: 594 / 544
  8960. }
  8961. },
  8962. },
  8963. [
  8964. {
  8965. name: "Micro",
  8966. height: math.unit(1, "inch"),
  8967. default: true
  8968. },
  8969. ]
  8970. ))
  8971. characterMakers.push(() => makeCharacter(
  8972. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8973. {
  8974. front: {
  8975. height: math.unit(3 + 3 / 12, "feet"),
  8976. weight: math.unit(51.8, "lb"),
  8977. name: "Front",
  8978. image: {
  8979. source: "./media/characters/fliss/front.svg",
  8980. extra: 840 / 640
  8981. }
  8982. },
  8983. },
  8984. [
  8985. {
  8986. name: "Teeny Tiny",
  8987. height: math.unit(1, "mm")
  8988. },
  8989. {
  8990. name: "Small",
  8991. height: math.unit(1, "inch"),
  8992. default: true
  8993. },
  8994. {
  8995. name: "Standard Sylveon",
  8996. height: math.unit(3 + 3 / 12, "feet")
  8997. },
  8998. {
  8999. name: "Large Nuisance",
  9000. height: math.unit(33, "feet")
  9001. },
  9002. {
  9003. name: "City Filler",
  9004. height: math.unit(3000, "feet")
  9005. },
  9006. {
  9007. name: "New Horizon",
  9008. height: math.unit(6000, "miles")
  9009. },
  9010. ]
  9011. ))
  9012. characterMakers.push(() => makeCharacter(
  9013. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9014. {
  9015. front: {
  9016. height: math.unit(5, "cm"),
  9017. weight: math.unit(1.94, "g"),
  9018. name: "Front",
  9019. image: {
  9020. source: "./media/characters/fleta/front.svg",
  9021. extra: 835 / 803
  9022. }
  9023. },
  9024. back: {
  9025. height: math.unit(5, "cm"),
  9026. weight: math.unit(1.94, "g"),
  9027. name: "Back",
  9028. image: {
  9029. source: "./media/characters/fleta/back.svg",
  9030. extra: 835 / 803
  9031. }
  9032. },
  9033. },
  9034. [
  9035. {
  9036. name: "Micro",
  9037. height: math.unit(5, "cm"),
  9038. default: true
  9039. },
  9040. ]
  9041. ))
  9042. characterMakers.push(() => makeCharacter(
  9043. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9044. {
  9045. front: {
  9046. height: math.unit(6, "feet"),
  9047. weight: math.unit(225, "lb"),
  9048. name: "Front",
  9049. image: {
  9050. source: "./media/characters/dominic/front.svg",
  9051. extra: 1770 / 1620,
  9052. bottom: 0.025
  9053. }
  9054. },
  9055. back: {
  9056. height: math.unit(6, "feet"),
  9057. weight: math.unit(225, "lb"),
  9058. name: "Back",
  9059. image: {
  9060. source: "./media/characters/dominic/back.svg",
  9061. extra: 1745 / 1620,
  9062. bottom: 0.065
  9063. }
  9064. },
  9065. },
  9066. [
  9067. {
  9068. name: "Nano",
  9069. height: math.unit(0.1, "mm")
  9070. },
  9071. {
  9072. name: "Micro-",
  9073. height: math.unit(1, "mm")
  9074. },
  9075. {
  9076. name: "Micro",
  9077. height: math.unit(4, "inches")
  9078. },
  9079. {
  9080. name: "Normal",
  9081. height: math.unit(6 + 4 / 12, "feet"),
  9082. default: true
  9083. },
  9084. {
  9085. name: "Macro",
  9086. height: math.unit(115, "feet")
  9087. },
  9088. {
  9089. name: "Macro+",
  9090. height: math.unit(955, "feet")
  9091. },
  9092. {
  9093. name: "Megamacro",
  9094. height: math.unit(8990, "feet")
  9095. },
  9096. {
  9097. name: "Gigmacro",
  9098. height: math.unit(9310, "miles")
  9099. },
  9100. {
  9101. name: "Teramacro",
  9102. height: math.unit(1567005010, "miles")
  9103. },
  9104. {
  9105. name: "Examacro",
  9106. height: math.unit(1425, "parsecs")
  9107. },
  9108. ]
  9109. ))
  9110. characterMakers.push(() => makeCharacter(
  9111. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9112. {
  9113. front: {
  9114. height: math.unit(400, "feet"),
  9115. weight: math.unit(44444444, "lb"),
  9116. name: "Front",
  9117. image: {
  9118. source: "./media/characters/major-colonel/front.svg"
  9119. }
  9120. },
  9121. back: {
  9122. height: math.unit(400, "feet"),
  9123. weight: math.unit(44444444, "lb"),
  9124. name: "Back",
  9125. image: {
  9126. source: "./media/characters/major-colonel/back.svg"
  9127. }
  9128. },
  9129. },
  9130. [
  9131. {
  9132. name: "Macro",
  9133. height: math.unit(400, "feet"),
  9134. default: true
  9135. },
  9136. ]
  9137. ))
  9138. characterMakers.push(() => makeCharacter(
  9139. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9140. {
  9141. catFront: {
  9142. height: math.unit(6, "feet"),
  9143. weight: math.unit(120, "lb"),
  9144. name: "Front (Cat Side)",
  9145. image: {
  9146. source: "./media/characters/axel-lycan/cat-front.svg",
  9147. extra: 430 / 402,
  9148. bottom: 43 / 472.35
  9149. }
  9150. },
  9151. catBack: {
  9152. height: math.unit(6, "feet"),
  9153. weight: math.unit(120, "lb"),
  9154. name: "Back (Cat Side)",
  9155. image: {
  9156. source: "./media/characters/axel-lycan/cat-back.svg",
  9157. extra: 447 / 419,
  9158. bottom: 23.3 / 469
  9159. }
  9160. },
  9161. wolfFront: {
  9162. height: math.unit(6, "feet"),
  9163. weight: math.unit(120, "lb"),
  9164. name: "Front (Wolf Side)",
  9165. image: {
  9166. source: "./media/characters/axel-lycan/wolf-front.svg",
  9167. extra: 485 / 456,
  9168. bottom: 19 / 504
  9169. }
  9170. },
  9171. wolfBack: {
  9172. height: math.unit(6, "feet"),
  9173. weight: math.unit(120, "lb"),
  9174. name: "Back (Wolf Side)",
  9175. image: {
  9176. source: "./media/characters/axel-lycan/wolf-back.svg",
  9177. extra: 475 / 438,
  9178. bottom: 39.2 / 514
  9179. }
  9180. },
  9181. },
  9182. [
  9183. {
  9184. name: "Macro",
  9185. height: math.unit(1, "km"),
  9186. default: true
  9187. },
  9188. ]
  9189. ))
  9190. characterMakers.push(() => makeCharacter(
  9191. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9192. {
  9193. front: {
  9194. height: math.unit(5 + 9 / 12, "feet"),
  9195. weight: math.unit(175, "lb"),
  9196. name: "Front",
  9197. image: {
  9198. source: "./media/characters/vanrel-hyena/front.svg",
  9199. extra: 1086 / 1010,
  9200. bottom: 0.04
  9201. }
  9202. },
  9203. },
  9204. [
  9205. {
  9206. name: "Normal",
  9207. height: math.unit(5 + 9 / 12, "feet"),
  9208. default: true
  9209. },
  9210. ]
  9211. ))
  9212. characterMakers.push(() => makeCharacter(
  9213. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9214. {
  9215. front: {
  9216. height: math.unit(6, "feet"),
  9217. weight: math.unit(103, "lb"),
  9218. name: "Front",
  9219. image: {
  9220. source: "./media/characters/abbott-absol/front.svg",
  9221. extra: 2010 / 1842
  9222. }
  9223. },
  9224. },
  9225. [
  9226. {
  9227. name: "Megamicro",
  9228. height: math.unit(0.1, "mm")
  9229. },
  9230. {
  9231. name: "Micro",
  9232. height: math.unit(1, "inch")
  9233. },
  9234. {
  9235. name: "Normal",
  9236. height: math.unit(6, "feet"),
  9237. default: true
  9238. },
  9239. ]
  9240. ))
  9241. characterMakers.push(() => makeCharacter(
  9242. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9243. {
  9244. front: {
  9245. height: math.unit(6, "feet"),
  9246. weight: math.unit(264, "lb"),
  9247. name: "Front",
  9248. image: {
  9249. source: "./media/characters/hector/front.svg",
  9250. extra: 2280 / 2130,
  9251. bottom: 0.07
  9252. }
  9253. },
  9254. },
  9255. [
  9256. {
  9257. name: "Normal",
  9258. height: math.unit(12.25, "foot"),
  9259. default: true
  9260. },
  9261. {
  9262. name: "Macro",
  9263. height: math.unit(160, "feet")
  9264. },
  9265. ]
  9266. ))
  9267. characterMakers.push(() => makeCharacter(
  9268. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9269. {
  9270. front: {
  9271. height: math.unit(6, "feet"),
  9272. weight: math.unit(150, "lb"),
  9273. name: "Front",
  9274. image: {
  9275. source: "./media/characters/sal/front.svg",
  9276. extra: 1846 / 1699,
  9277. bottom: 0.04
  9278. }
  9279. },
  9280. },
  9281. [
  9282. {
  9283. name: "Megamacro",
  9284. height: math.unit(10, "miles"),
  9285. default: true
  9286. },
  9287. ]
  9288. ))
  9289. characterMakers.push(() => makeCharacter(
  9290. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9291. {
  9292. front: {
  9293. height: math.unit(3, "meters"),
  9294. weight: math.unit(450, "kg"),
  9295. name: "front",
  9296. image: {
  9297. source: "./media/characters/ranger/front.svg",
  9298. extra: 2401 / 2243,
  9299. bottom: 0.05
  9300. }
  9301. },
  9302. },
  9303. [
  9304. {
  9305. name: "Normal",
  9306. height: math.unit(3, "meters"),
  9307. default: true
  9308. },
  9309. ]
  9310. ))
  9311. characterMakers.push(() => makeCharacter(
  9312. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9313. {
  9314. front: {
  9315. height: math.unit(14, "feet"),
  9316. weight: math.unit(800, "kg"),
  9317. name: "Front",
  9318. image: {
  9319. source: "./media/characters/theresa/front.svg",
  9320. extra: 3575 / 3346,
  9321. bottom: 0.03
  9322. }
  9323. },
  9324. },
  9325. [
  9326. {
  9327. name: "Normal",
  9328. height: math.unit(14, "feet"),
  9329. default: true
  9330. },
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9335. {
  9336. front: {
  9337. height: math.unit(6, "feet"),
  9338. weight: math.unit(3, "kg"),
  9339. name: "Front",
  9340. image: {
  9341. source: "./media/characters/ine/front.svg",
  9342. extra: 678 / 539,
  9343. bottom: 0.023
  9344. }
  9345. },
  9346. },
  9347. [
  9348. {
  9349. name: "Normal",
  9350. height: math.unit(2.265, "feet"),
  9351. default: true
  9352. },
  9353. ]
  9354. ))
  9355. characterMakers.push(() => makeCharacter(
  9356. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9357. {
  9358. front: {
  9359. height: math.unit(5, "feet"),
  9360. weight: math.unit(30, "kg"),
  9361. name: "Front",
  9362. image: {
  9363. source: "./media/characters/vial/front.svg",
  9364. extra: 1365 / 1277,
  9365. bottom: 0.04
  9366. }
  9367. },
  9368. },
  9369. [
  9370. {
  9371. name: "Normal",
  9372. height: math.unit(5, "feet"),
  9373. default: true
  9374. },
  9375. ]
  9376. ))
  9377. characterMakers.push(() => makeCharacter(
  9378. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9379. {
  9380. side: {
  9381. height: math.unit(3.4, "meters"),
  9382. weight: math.unit(1000, "lb"),
  9383. name: "Side",
  9384. image: {
  9385. source: "./media/characters/rovoska/side.svg",
  9386. extra: 4403 / 1515
  9387. }
  9388. },
  9389. },
  9390. [
  9391. {
  9392. name: "Normal",
  9393. height: math.unit(3.4, "meters"),
  9394. default: true
  9395. },
  9396. ]
  9397. ))
  9398. characterMakers.push(() => makeCharacter(
  9399. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9400. {
  9401. front: {
  9402. height: math.unit(8, "feet"),
  9403. weight: math.unit(315, "lb"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/gunner-rotthbauer/front.svg"
  9407. }
  9408. },
  9409. back: {
  9410. height: math.unit(8, "feet"),
  9411. weight: math.unit(315, "lb"),
  9412. name: "Back",
  9413. image: {
  9414. source: "./media/characters/gunner-rotthbauer/back.svg"
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Micro",
  9421. height: math.unit(3.5, "inches")
  9422. },
  9423. {
  9424. name: "Normal",
  9425. height: math.unit(8, "feet"),
  9426. default: true
  9427. },
  9428. {
  9429. name: "Macro",
  9430. height: math.unit(250, "feet")
  9431. },
  9432. {
  9433. name: "Megamacro",
  9434. height: math.unit(1, "AU")
  9435. },
  9436. ]
  9437. ))
  9438. characterMakers.push(() => makeCharacter(
  9439. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9440. {
  9441. front: {
  9442. height: math.unit(5 + 5 / 12, "feet"),
  9443. weight: math.unit(140, "lb"),
  9444. name: "Front",
  9445. image: {
  9446. source: "./media/characters/allatia/front.svg",
  9447. extra: 1227 / 1180,
  9448. bottom: 0.027
  9449. }
  9450. },
  9451. },
  9452. [
  9453. {
  9454. name: "Normal",
  9455. height: math.unit(5 + 5 / 12, "feet")
  9456. },
  9457. {
  9458. name: "Macro",
  9459. height: math.unit(250, "feet"),
  9460. default: true
  9461. },
  9462. {
  9463. name: "Megamacro",
  9464. height: math.unit(8, "miles")
  9465. }
  9466. ]
  9467. ))
  9468. characterMakers.push(() => makeCharacter(
  9469. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9470. {
  9471. front: {
  9472. height: math.unit(6, "feet"),
  9473. weight: math.unit(120, "lb"),
  9474. name: "Front",
  9475. image: {
  9476. source: "./media/characters/tene/front.svg",
  9477. extra: 1728 / 1578,
  9478. bottom: 0.022
  9479. }
  9480. },
  9481. stomping: {
  9482. height: math.unit(2.025, "meters"),
  9483. weight: math.unit(120, "lb"),
  9484. name: "Stomping",
  9485. image: {
  9486. source: "./media/characters/tene/stomping.svg",
  9487. extra: 938 / 873,
  9488. bottom: 0.01
  9489. }
  9490. },
  9491. sitting: {
  9492. height: math.unit(1, "meter"),
  9493. weight: math.unit(120, "lb"),
  9494. name: "Sitting",
  9495. image: {
  9496. source: "./media/characters/tene/sitting.svg",
  9497. extra: 437 / 415,
  9498. bottom: 0.1
  9499. }
  9500. },
  9501. feral: {
  9502. height: math.unit(3.9, "feet"),
  9503. weight: math.unit(250, "lb"),
  9504. name: "Feral",
  9505. image: {
  9506. source: "./media/characters/tene/feral.svg",
  9507. extra: 717 / 458,
  9508. bottom: 0.179
  9509. }
  9510. },
  9511. },
  9512. [
  9513. {
  9514. name: "Normal",
  9515. height: math.unit(6, "feet")
  9516. },
  9517. {
  9518. name: "Macro",
  9519. height: math.unit(300, "feet"),
  9520. default: true
  9521. },
  9522. {
  9523. name: "Megamacro",
  9524. height: math.unit(5, "miles")
  9525. },
  9526. ]
  9527. ))
  9528. characterMakers.push(() => makeCharacter(
  9529. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9530. {
  9531. side: {
  9532. height: math.unit(6, "feet"),
  9533. name: "Side",
  9534. image: {
  9535. source: "./media/characters/evander/side.svg",
  9536. extra: 877 / 477
  9537. }
  9538. },
  9539. },
  9540. [
  9541. {
  9542. name: "Normal",
  9543. height: math.unit(0.83, "meters"),
  9544. default: true
  9545. },
  9546. ]
  9547. ))
  9548. characterMakers.push(() => makeCharacter(
  9549. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9550. {
  9551. front: {
  9552. height: math.unit(12, "feet"),
  9553. weight: math.unit(1000, "lb"),
  9554. name: "Front",
  9555. image: {
  9556. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9557. extra: 1762 / 1611
  9558. }
  9559. },
  9560. back: {
  9561. height: math.unit(12, "feet"),
  9562. weight: math.unit(1000, "lb"),
  9563. name: "Back",
  9564. image: {
  9565. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9566. extra: 1762 / 1611
  9567. }
  9568. },
  9569. },
  9570. [
  9571. {
  9572. name: "Normal",
  9573. height: math.unit(12, "feet"),
  9574. default: true
  9575. },
  9576. {
  9577. name: "Kaiju",
  9578. height: math.unit(150, "feet")
  9579. },
  9580. ]
  9581. ))
  9582. characterMakers.push(() => makeCharacter(
  9583. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9584. {
  9585. front: {
  9586. height: math.unit(6, "feet"),
  9587. weight: math.unit(150, "lb"),
  9588. name: "Front",
  9589. image: {
  9590. source: "./media/characters/zero-alurus/front.svg"
  9591. }
  9592. },
  9593. back: {
  9594. height: math.unit(6, "feet"),
  9595. weight: math.unit(150, "lb"),
  9596. name: "Back",
  9597. image: {
  9598. source: "./media/characters/zero-alurus/back.svg"
  9599. }
  9600. },
  9601. },
  9602. [
  9603. {
  9604. name: "Normal",
  9605. height: math.unit(5 + 10 / 12, "feet")
  9606. },
  9607. {
  9608. name: "Macro",
  9609. height: math.unit(60, "feet"),
  9610. default: true
  9611. },
  9612. {
  9613. name: "Macro+",
  9614. height: math.unit(450, "feet")
  9615. },
  9616. ]
  9617. ))
  9618. characterMakers.push(() => makeCharacter(
  9619. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9620. {
  9621. front: {
  9622. height: math.unit(6, "feet"),
  9623. weight: math.unit(200, "lb"),
  9624. name: "Front",
  9625. image: {
  9626. source: "./media/characters/mega-shi/front.svg",
  9627. extra: 1279 / 1250,
  9628. bottom: 0.02
  9629. }
  9630. },
  9631. back: {
  9632. height: math.unit(6, "feet"),
  9633. weight: math.unit(200, "lb"),
  9634. name: "Back",
  9635. image: {
  9636. source: "./media/characters/mega-shi/back.svg",
  9637. extra: 1279 / 1250,
  9638. bottom: 0.02
  9639. }
  9640. },
  9641. },
  9642. [
  9643. {
  9644. name: "Micro",
  9645. height: math.unit(16 + 6 / 12, "feet")
  9646. },
  9647. {
  9648. name: "Third Dimension",
  9649. height: math.unit(40, "meters")
  9650. },
  9651. {
  9652. name: "Normal",
  9653. height: math.unit(660, "feet"),
  9654. default: true
  9655. },
  9656. {
  9657. name: "Megamacro",
  9658. height: math.unit(10, "miles")
  9659. },
  9660. {
  9661. name: "Planetary Launch",
  9662. height: math.unit(500, "miles")
  9663. },
  9664. {
  9665. name: "Interstellar",
  9666. height: math.unit(1e9, "miles")
  9667. },
  9668. {
  9669. name: "Leaving the Universe",
  9670. height: math.unit(1, "gigaparsec")
  9671. },
  9672. {
  9673. name: "Travelling Universes",
  9674. height: math.unit(30e15, "parsecs")
  9675. },
  9676. ]
  9677. ))
  9678. characterMakers.push(() => makeCharacter(
  9679. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9680. {
  9681. front: {
  9682. height: math.unit(6, "feet"),
  9683. weight: math.unit(150, "lb"),
  9684. name: "Front",
  9685. image: {
  9686. source: "./media/characters/odyssey/front.svg",
  9687. extra: 1782 / 1582,
  9688. bottom: 0.01
  9689. }
  9690. },
  9691. side: {
  9692. height: math.unit(5.7, "feet"),
  9693. weight: math.unit(140, "lb"),
  9694. name: "Side",
  9695. image: {
  9696. source: "./media/characters/odyssey/side.svg",
  9697. extra: 6462 / 5700
  9698. }
  9699. },
  9700. },
  9701. [
  9702. {
  9703. name: "Normal",
  9704. height: math.unit(5 + 4 / 12, "feet")
  9705. },
  9706. {
  9707. name: "Macro",
  9708. height: math.unit(1, "km")
  9709. },
  9710. {
  9711. name: "Megamacro",
  9712. height: math.unit(3000, "km")
  9713. },
  9714. {
  9715. name: "Gigamacro",
  9716. height: math.unit(1, "AU"),
  9717. default: true
  9718. },
  9719. {
  9720. name: "Omniversal",
  9721. height: math.unit(100e14, "lightyears")
  9722. },
  9723. ]
  9724. ))
  9725. characterMakers.push(() => makeCharacter(
  9726. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9727. {
  9728. front: {
  9729. height: math.unit(6, "feet"),
  9730. weight: math.unit(300, "lb"),
  9731. name: "Front",
  9732. image: {
  9733. source: "./media/characters/mekuto/front.svg",
  9734. extra: 921 / 832,
  9735. bottom: 0.03
  9736. }
  9737. },
  9738. hand: {
  9739. height: math.unit(6 / 10.24, "feet"),
  9740. name: "Hand",
  9741. image: {
  9742. source: "./media/characters/mekuto/hand.svg"
  9743. }
  9744. },
  9745. foot: {
  9746. height: math.unit(6 / 5.05, "feet"),
  9747. name: "Foot",
  9748. image: {
  9749. source: "./media/characters/mekuto/foot.svg"
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Minimicro",
  9756. height: math.unit(0.2, "inches")
  9757. },
  9758. {
  9759. name: "Micro",
  9760. height: math.unit(1.5, "inches")
  9761. },
  9762. {
  9763. name: "Normal",
  9764. height: math.unit(5 + 11 / 12, "feet"),
  9765. default: true
  9766. },
  9767. {
  9768. name: "Minimacro",
  9769. height: math.unit(17 + 9 / 12, "feet")
  9770. },
  9771. {
  9772. name: "Macro",
  9773. height: math.unit(177.5, "feet")
  9774. },
  9775. {
  9776. name: "Megamacro",
  9777. height: math.unit(152, "miles")
  9778. },
  9779. ]
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9783. {
  9784. front: {
  9785. height: math.unit(6.5, "inches"),
  9786. weight: math.unit(13, "oz"),
  9787. name: "Front",
  9788. image: {
  9789. source: "./media/characters/dafydd-tomos/front.svg",
  9790. extra: 2990 / 2603,
  9791. bottom: 0.03
  9792. }
  9793. },
  9794. },
  9795. [
  9796. {
  9797. name: "Micro",
  9798. height: math.unit(6.5, "inches"),
  9799. default: true
  9800. },
  9801. ]
  9802. ))
  9803. characterMakers.push(() => makeCharacter(
  9804. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9805. {
  9806. front: {
  9807. height: math.unit(6, "feet"),
  9808. weight: math.unit(150, "lb"),
  9809. name: "Front",
  9810. image: {
  9811. source: "./media/characters/splinter/front.svg",
  9812. extra: 2990 / 2882,
  9813. bottom: 0.04
  9814. }
  9815. },
  9816. back: {
  9817. height: math.unit(6, "feet"),
  9818. weight: math.unit(150, "lb"),
  9819. name: "Back",
  9820. image: {
  9821. source: "./media/characters/splinter/back.svg",
  9822. extra: 2990 / 2882,
  9823. bottom: 0.04
  9824. }
  9825. },
  9826. },
  9827. [
  9828. {
  9829. name: "Normal",
  9830. height: math.unit(6, "feet")
  9831. },
  9832. {
  9833. name: "Macro",
  9834. height: math.unit(230, "meters"),
  9835. default: true
  9836. },
  9837. ]
  9838. ))
  9839. characterMakers.push(() => makeCharacter(
  9840. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9841. {
  9842. front: {
  9843. height: math.unit(4 + 10 / 12, "feet"),
  9844. weight: math.unit(480, "lb"),
  9845. name: "Front",
  9846. image: {
  9847. source: "./media/characters/snow-gabumon/front.svg",
  9848. extra: 1140 / 963,
  9849. bottom: 0.058
  9850. }
  9851. },
  9852. back: {
  9853. height: math.unit(4 + 10 / 12, "feet"),
  9854. weight: math.unit(480, "lb"),
  9855. name: "Back",
  9856. image: {
  9857. source: "./media/characters/snow-gabumon/back.svg",
  9858. extra: 1115 / 962,
  9859. bottom: 0.041
  9860. }
  9861. },
  9862. frontUndresed: {
  9863. height: math.unit(4 + 10 / 12, "feet"),
  9864. weight: math.unit(480, "lb"),
  9865. name: "Front (Undressed)",
  9866. image: {
  9867. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9868. extra: 1061 / 960,
  9869. bottom: 0.045
  9870. }
  9871. },
  9872. },
  9873. [
  9874. {
  9875. name: "Micro",
  9876. height: math.unit(1, "inch")
  9877. },
  9878. {
  9879. name: "Normal",
  9880. height: math.unit(4 + 10 / 12, "feet"),
  9881. default: true
  9882. },
  9883. {
  9884. name: "Macro",
  9885. height: math.unit(200, "feet")
  9886. },
  9887. {
  9888. name: "Megamacro",
  9889. height: math.unit(120, "miles")
  9890. },
  9891. {
  9892. name: "Gigamacro",
  9893. height: math.unit(9800, "miles")
  9894. },
  9895. ]
  9896. ))
  9897. characterMakers.push(() => makeCharacter(
  9898. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9899. {
  9900. front: {
  9901. height: math.unit(1.7, "meters"),
  9902. weight: math.unit(140, "lb"),
  9903. name: "Front",
  9904. image: {
  9905. source: "./media/characters/moody/front.svg",
  9906. extra: 3226 / 3007,
  9907. bottom: 0.087
  9908. }
  9909. },
  9910. },
  9911. [
  9912. {
  9913. name: "Micro",
  9914. height: math.unit(1, "mm")
  9915. },
  9916. {
  9917. name: "Normal",
  9918. height: math.unit(1.7, "meters"),
  9919. default: true
  9920. },
  9921. {
  9922. name: "Macro",
  9923. height: math.unit(80, "meters")
  9924. },
  9925. {
  9926. name: "Macro+",
  9927. height: math.unit(500, "meters")
  9928. },
  9929. ]
  9930. ))
  9931. characterMakers.push(() => makeCharacter(
  9932. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9933. {
  9934. front: {
  9935. height: math.unit(6, "feet"),
  9936. weight: math.unit(150, "lb"),
  9937. name: "Front",
  9938. image: {
  9939. source: "./media/characters/zyas/front.svg",
  9940. extra: 1180 / 1120,
  9941. bottom: 0.045
  9942. }
  9943. },
  9944. },
  9945. [
  9946. {
  9947. name: "Normal",
  9948. height: math.unit(10, "feet"),
  9949. default: true
  9950. },
  9951. {
  9952. name: "Macro",
  9953. height: math.unit(500, "feet")
  9954. },
  9955. {
  9956. name: "Megamacro",
  9957. height: math.unit(5, "miles")
  9958. },
  9959. {
  9960. name: "Teramacro",
  9961. height: math.unit(150000, "miles")
  9962. },
  9963. ]
  9964. ))
  9965. characterMakers.push(() => makeCharacter(
  9966. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9967. {
  9968. front: {
  9969. height: math.unit(6, "feet"),
  9970. weight: math.unit(150, "lb"),
  9971. name: "Front",
  9972. image: {
  9973. source: "./media/characters/cuon/front.svg",
  9974. extra: 1390 / 1320,
  9975. bottom: 0.008
  9976. }
  9977. },
  9978. },
  9979. [
  9980. {
  9981. name: "Micro",
  9982. height: math.unit(3, "inches")
  9983. },
  9984. {
  9985. name: "Normal",
  9986. height: math.unit(18 + 9 / 12, "feet"),
  9987. default: true
  9988. },
  9989. {
  9990. name: "Macro",
  9991. height: math.unit(360, "feet")
  9992. },
  9993. {
  9994. name: "Megamacro",
  9995. height: math.unit(360, "miles")
  9996. },
  9997. ]
  9998. ))
  9999. characterMakers.push(() => makeCharacter(
  10000. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10001. {
  10002. front: {
  10003. height: math.unit(2.4, "meters"),
  10004. weight: math.unit(70, "kg"),
  10005. name: "Front",
  10006. image: {
  10007. source: "./media/characters/nyanuxk/front.svg",
  10008. extra: 1172 / 1084,
  10009. bottom: 0.065
  10010. }
  10011. },
  10012. side: {
  10013. height: math.unit(2.4, "meters"),
  10014. weight: math.unit(70, "kg"),
  10015. name: "Side",
  10016. image: {
  10017. source: "./media/characters/nyanuxk/side.svg",
  10018. extra: 1190 / 1132,
  10019. bottom: 0.007
  10020. }
  10021. },
  10022. back: {
  10023. height: math.unit(2.4, "meters"),
  10024. weight: math.unit(70, "kg"),
  10025. name: "Back",
  10026. image: {
  10027. source: "./media/characters/nyanuxk/back.svg",
  10028. extra: 1200 / 1141,
  10029. bottom: 0.015
  10030. }
  10031. },
  10032. foot: {
  10033. height: math.unit(0.52, "meters"),
  10034. name: "Foot",
  10035. image: {
  10036. source: "./media/characters/nyanuxk/foot.svg"
  10037. }
  10038. },
  10039. },
  10040. [
  10041. {
  10042. name: "Micro",
  10043. height: math.unit(2, "cm")
  10044. },
  10045. {
  10046. name: "Normal",
  10047. height: math.unit(2.4, "meters"),
  10048. default: true
  10049. },
  10050. {
  10051. name: "Smaller Macro",
  10052. height: math.unit(120, "meters")
  10053. },
  10054. {
  10055. name: "Bigger Macro",
  10056. height: math.unit(1.2, "km")
  10057. },
  10058. {
  10059. name: "Megamacro",
  10060. height: math.unit(15, "kilometers")
  10061. },
  10062. {
  10063. name: "Gigamacro",
  10064. height: math.unit(2000, "km")
  10065. },
  10066. {
  10067. name: "Teramacro",
  10068. height: math.unit(500000, "km")
  10069. },
  10070. ]
  10071. ))
  10072. characterMakers.push(() => makeCharacter(
  10073. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10074. {
  10075. side: {
  10076. height: math.unit(6, "feet"),
  10077. name: "Side",
  10078. image: {
  10079. source: "./media/characters/ailbhe/side.svg",
  10080. extra: 757 / 464,
  10081. bottom: 0.041
  10082. }
  10083. },
  10084. },
  10085. [
  10086. {
  10087. name: "Normal",
  10088. height: math.unit(1.07, "meters"),
  10089. default: true
  10090. },
  10091. ]
  10092. ))
  10093. characterMakers.push(() => makeCharacter(
  10094. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10095. {
  10096. front: {
  10097. height: math.unit(6, "feet"),
  10098. weight: math.unit(120, "kg"),
  10099. name: "Front",
  10100. image: {
  10101. source: "./media/characters/zevulfius/front.svg",
  10102. extra: 965 / 903
  10103. }
  10104. },
  10105. side: {
  10106. height: math.unit(6, "feet"),
  10107. weight: math.unit(120, "kg"),
  10108. name: "Side",
  10109. image: {
  10110. source: "./media/characters/zevulfius/side.svg",
  10111. extra: 939 / 900
  10112. }
  10113. },
  10114. back: {
  10115. height: math.unit(6, "feet"),
  10116. weight: math.unit(120, "kg"),
  10117. name: "Back",
  10118. image: {
  10119. source: "./media/characters/zevulfius/back.svg",
  10120. extra: 918 / 854,
  10121. bottom: 0.005
  10122. }
  10123. },
  10124. foot: {
  10125. height: math.unit(6 / 3.72, "feet"),
  10126. name: "Foot",
  10127. image: {
  10128. source: "./media/characters/zevulfius/foot.svg"
  10129. }
  10130. },
  10131. },
  10132. [
  10133. {
  10134. name: "Macro",
  10135. height: math.unit(750, "meters")
  10136. },
  10137. {
  10138. name: "Megamacro",
  10139. height: math.unit(20, "km"),
  10140. default: true
  10141. },
  10142. {
  10143. name: "Gigamacro",
  10144. height: math.unit(2000, "km")
  10145. },
  10146. {
  10147. name: "Teramacro",
  10148. height: math.unit(250000, "km")
  10149. },
  10150. ]
  10151. ))
  10152. characterMakers.push(() => makeCharacter(
  10153. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10154. {
  10155. front: {
  10156. height: math.unit(100, "feet"),
  10157. weight: math.unit(350, "kg"),
  10158. name: "Front",
  10159. image: {
  10160. source: "./media/characters/rikes/front.svg",
  10161. extra: 1565 / 1483,
  10162. bottom: 0.017
  10163. }
  10164. },
  10165. },
  10166. [
  10167. {
  10168. name: "Macro",
  10169. height: math.unit(100, "feet"),
  10170. default: true
  10171. },
  10172. ]
  10173. ))
  10174. characterMakers.push(() => makeCharacter(
  10175. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10176. {
  10177. anthro: {
  10178. height: math.unit(8, "feet"),
  10179. weight: math.unit(120, "kg"),
  10180. name: "Anthro",
  10181. image: {
  10182. source: "./media/characters/adam-silver-mane/anthro.svg",
  10183. extra: 5743 / 5339,
  10184. bottom: 0.07
  10185. }
  10186. },
  10187. taur: {
  10188. height: math.unit(16, "feet"),
  10189. weight: math.unit(1500, "kg"),
  10190. name: "Taur",
  10191. image: {
  10192. source: "./media/characters/adam-silver-mane/taur.svg",
  10193. extra: 1713 / 1571,
  10194. bottom: 0.01
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Normal",
  10201. height: math.unit(8, "feet")
  10202. },
  10203. {
  10204. name: "Minimacro",
  10205. height: math.unit(80, "feet")
  10206. },
  10207. {
  10208. name: "Macro",
  10209. height: math.unit(800, "feet"),
  10210. default: true
  10211. },
  10212. {
  10213. name: "Megamacro",
  10214. height: math.unit(8000, "feet")
  10215. },
  10216. {
  10217. name: "Gigamacro",
  10218. height: math.unit(800, "miles")
  10219. },
  10220. {
  10221. name: "Teramacro",
  10222. height: math.unit(80000, "miles")
  10223. },
  10224. {
  10225. name: "Celestial",
  10226. height: math.unit(8e6, "miles")
  10227. },
  10228. {
  10229. name: "Star Dragon",
  10230. height: math.unit(800000, "parsecs")
  10231. },
  10232. {
  10233. name: "Godly",
  10234. height: math.unit(800, "teraparsecs")
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(6, "feet"),
  10243. weight: math.unit(150, "lb"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/ky'owin/front.svg",
  10247. extra: 3888 / 3068,
  10248. bottom: 0.015
  10249. }
  10250. },
  10251. },
  10252. [
  10253. {
  10254. name: "Normal",
  10255. height: math.unit(6 + 8 / 12, "feet")
  10256. },
  10257. {
  10258. name: "Large",
  10259. height: math.unit(68, "feet")
  10260. },
  10261. {
  10262. name: "Macro",
  10263. height: math.unit(132, "feet")
  10264. },
  10265. {
  10266. name: "Macro+",
  10267. height: math.unit(340, "feet")
  10268. },
  10269. {
  10270. name: "Macro++",
  10271. height: math.unit(680, "feet"),
  10272. default: true
  10273. },
  10274. {
  10275. name: "Megamacro",
  10276. height: math.unit(1, "mile")
  10277. },
  10278. {
  10279. name: "Megamacro+",
  10280. height: math.unit(10, "miles")
  10281. },
  10282. ]
  10283. ))
  10284. characterMakers.push(() => makeCharacter(
  10285. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10286. {
  10287. front: {
  10288. height: math.unit(4, "feet"),
  10289. weight: math.unit(50, "lb"),
  10290. name: "Front",
  10291. image: {
  10292. source: "./media/characters/mal/front.svg",
  10293. extra: 785 / 724,
  10294. bottom: 0.07
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Micro",
  10301. height: math.unit(4, "inches")
  10302. },
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(4, "feet"),
  10306. default: true
  10307. },
  10308. {
  10309. name: "Macro",
  10310. height: math.unit(200, "feet")
  10311. },
  10312. ]
  10313. ))
  10314. characterMakers.push(() => makeCharacter(
  10315. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10316. {
  10317. front: {
  10318. height: math.unit(6, "feet"),
  10319. weight: math.unit(150, "lb"),
  10320. name: "Front",
  10321. image: {
  10322. source: "./media/characters/jordan-deware/front.svg",
  10323. extra: 1191 / 1012
  10324. }
  10325. },
  10326. },
  10327. [
  10328. {
  10329. name: "Nano",
  10330. height: math.unit(0.01, "mm")
  10331. },
  10332. {
  10333. name: "Minimicro",
  10334. height: math.unit(1, "mm")
  10335. },
  10336. {
  10337. name: "Micro",
  10338. height: math.unit(0.5, "inches")
  10339. },
  10340. {
  10341. name: "Normal",
  10342. height: math.unit(4, "feet"),
  10343. default: true
  10344. },
  10345. {
  10346. name: "Minimacro",
  10347. height: math.unit(40, "meters")
  10348. },
  10349. {
  10350. name: "Small Macro",
  10351. height: math.unit(400, "meters")
  10352. },
  10353. {
  10354. name: "Macro",
  10355. height: math.unit(4, "miles")
  10356. },
  10357. {
  10358. name: "Megamacro",
  10359. height: math.unit(40, "miles")
  10360. },
  10361. {
  10362. name: "Megamacro+",
  10363. height: math.unit(400, "miles")
  10364. },
  10365. {
  10366. name: "Gigamacro",
  10367. height: math.unit(400000, "miles")
  10368. },
  10369. ]
  10370. ))
  10371. characterMakers.push(() => makeCharacter(
  10372. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10373. {
  10374. side: {
  10375. height: math.unit(6, "feet"),
  10376. weight: math.unit(150, "lb"),
  10377. name: "Side",
  10378. image: {
  10379. source: "./media/characters/kimiko/side.svg",
  10380. extra: 600 / 358
  10381. }
  10382. },
  10383. },
  10384. [
  10385. {
  10386. name: "Normal",
  10387. height: math.unit(15, "feet"),
  10388. default: true
  10389. },
  10390. {
  10391. name: "Macro",
  10392. height: math.unit(220, "feet")
  10393. },
  10394. {
  10395. name: "Macro+",
  10396. height: math.unit(1450, "feet")
  10397. },
  10398. {
  10399. name: "Megamacro",
  10400. height: math.unit(11500, "feet")
  10401. },
  10402. {
  10403. name: "Gigamacro",
  10404. height: math.unit(9500, "miles")
  10405. },
  10406. {
  10407. name: "Teramacro",
  10408. height: math.unit(2208005005, "miles")
  10409. },
  10410. {
  10411. name: "Examacro",
  10412. height: math.unit(2750, "parsecs")
  10413. },
  10414. {
  10415. name: "Zettamacro",
  10416. height: math.unit(101500, "parsecs")
  10417. },
  10418. ]
  10419. ))
  10420. characterMakers.push(() => makeCharacter(
  10421. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10422. {
  10423. front: {
  10424. height: math.unit(6, "feet"),
  10425. weight: math.unit(70, "kg"),
  10426. name: "Front",
  10427. image: {
  10428. source: "./media/characters/andrew-sleepy/front.svg"
  10429. }
  10430. },
  10431. side: {
  10432. height: math.unit(6, "feet"),
  10433. weight: math.unit(70, "kg"),
  10434. name: "Side",
  10435. image: {
  10436. source: "./media/characters/andrew-sleepy/side.svg"
  10437. }
  10438. },
  10439. },
  10440. [
  10441. {
  10442. name: "Micro",
  10443. height: math.unit(1, "mm"),
  10444. default: true
  10445. },
  10446. ]
  10447. ))
  10448. characterMakers.push(() => makeCharacter(
  10449. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10450. {
  10451. front: {
  10452. height: math.unit(6, "feet"),
  10453. weight: math.unit(150, "lb"),
  10454. name: "Front",
  10455. image: {
  10456. source: "./media/characters/judio/front.svg",
  10457. extra: 1258 / 1110
  10458. }
  10459. },
  10460. },
  10461. [
  10462. {
  10463. name: "Normal",
  10464. height: math.unit(5 + 6 / 12, "feet")
  10465. },
  10466. {
  10467. name: "Macro",
  10468. height: math.unit(1000, "feet"),
  10469. default: true
  10470. },
  10471. {
  10472. name: "Megamacro",
  10473. height: math.unit(10, "miles")
  10474. },
  10475. ]
  10476. ))
  10477. characterMakers.push(() => makeCharacter(
  10478. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10479. {
  10480. front: {
  10481. height: math.unit(6, "feet"),
  10482. weight: math.unit(68, "kg"),
  10483. name: "Front",
  10484. image: {
  10485. source: "./media/characters/nomaxice/front.svg",
  10486. extra: 1498 / 1073,
  10487. bottom: 0.075
  10488. }
  10489. },
  10490. foot: {
  10491. height: math.unit(1.1, "feet"),
  10492. name: "Foot",
  10493. image: {
  10494. source: "./media/characters/nomaxice/foot.svg"
  10495. }
  10496. },
  10497. },
  10498. [
  10499. {
  10500. name: "Micro",
  10501. height: math.unit(8, "cm")
  10502. },
  10503. {
  10504. name: "Norm",
  10505. height: math.unit(1.82, "m")
  10506. },
  10507. {
  10508. name: "Norm+",
  10509. height: math.unit(8.8, "feet")
  10510. },
  10511. {
  10512. name: "Big",
  10513. height: math.unit(8, "meters"),
  10514. default: true
  10515. },
  10516. {
  10517. name: "Macro",
  10518. height: math.unit(18, "meters")
  10519. },
  10520. {
  10521. name: "Macro+",
  10522. height: math.unit(88, "meters")
  10523. },
  10524. ]
  10525. ))
  10526. characterMakers.push(() => makeCharacter(
  10527. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10528. {
  10529. front: {
  10530. height: math.unit(12, "feet"),
  10531. weight: math.unit(1.5, "tons"),
  10532. name: "Front",
  10533. image: {
  10534. source: "./media/characters/dydros/front.svg",
  10535. extra: 863 / 800,
  10536. bottom: 0.015
  10537. }
  10538. },
  10539. back: {
  10540. height: math.unit(12, "feet"),
  10541. weight: math.unit(1.5, "tons"),
  10542. name: "Back",
  10543. image: {
  10544. source: "./media/characters/dydros/back.svg",
  10545. extra: 900 / 843,
  10546. bottom: 0.005
  10547. }
  10548. },
  10549. },
  10550. [
  10551. {
  10552. name: "Normal",
  10553. height: math.unit(12, "feet"),
  10554. default: true
  10555. },
  10556. ]
  10557. ))
  10558. characterMakers.push(() => makeCharacter(
  10559. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10560. {
  10561. front: {
  10562. height: math.unit(6, "feet"),
  10563. weight: math.unit(100, "kg"),
  10564. name: "Front",
  10565. image: {
  10566. source: "./media/characters/riggi/front.svg",
  10567. extra: 5787 / 5303
  10568. }
  10569. },
  10570. hyper: {
  10571. height: math.unit(6 * 5 / 3, "feet"),
  10572. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10573. name: "Hyper",
  10574. image: {
  10575. source: "./media/characters/riggi/hyper.svg",
  10576. extra: 3595 / 3485
  10577. }
  10578. },
  10579. },
  10580. [
  10581. {
  10582. name: "Small Macro",
  10583. height: math.unit(50, "feet")
  10584. },
  10585. {
  10586. name: "Default",
  10587. height: math.unit(200, "feet"),
  10588. default: true
  10589. },
  10590. {
  10591. name: "Loom",
  10592. height: math.unit(10000, "feet")
  10593. },
  10594. {
  10595. name: "Cruising Altitude",
  10596. height: math.unit(30000, "feet")
  10597. },
  10598. {
  10599. name: "Megamacro",
  10600. height: math.unit(100, "miles")
  10601. },
  10602. {
  10603. name: "Continent Sized",
  10604. height: math.unit(2800, "miles")
  10605. },
  10606. {
  10607. name: "Earth Sized",
  10608. height: math.unit(8000, "miles")
  10609. },
  10610. ]
  10611. ))
  10612. characterMakers.push(() => makeCharacter(
  10613. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10614. {
  10615. front: {
  10616. height: math.unit(6, "feet"),
  10617. weight: math.unit(250, "lb"),
  10618. name: "Front",
  10619. image: {
  10620. source: "./media/characters/alexi/front.svg",
  10621. extra: 3483 / 3291,
  10622. bottom: 0.04
  10623. }
  10624. },
  10625. back: {
  10626. height: math.unit(6, "feet"),
  10627. weight: math.unit(250, "lb"),
  10628. name: "Back",
  10629. image: {
  10630. source: "./media/characters/alexi/back.svg",
  10631. extra: 3533 / 3356,
  10632. bottom: 0.021
  10633. }
  10634. },
  10635. frontTransforming: {
  10636. height: math.unit(8.58, "feet"),
  10637. weight: math.unit(1300, "lb"),
  10638. name: "Transforming",
  10639. image: {
  10640. source: "./media/characters/alexi/front-transforming.svg",
  10641. extra: 437 / 409,
  10642. bottom: 19 / 458.66
  10643. }
  10644. },
  10645. frontTransformed: {
  10646. height: math.unit(12.5, "feet"),
  10647. weight: math.unit(4000, "lb"),
  10648. name: "Transformed",
  10649. image: {
  10650. source: "./media/characters/alexi/front-transformed.svg",
  10651. extra: 639 / 614,
  10652. bottom: 30.55 / 671
  10653. }
  10654. },
  10655. },
  10656. [
  10657. {
  10658. name: "Normal",
  10659. height: math.unit(14, "feet"),
  10660. default: true
  10661. },
  10662. {
  10663. name: "Minimacro",
  10664. height: math.unit(30, "meters")
  10665. },
  10666. {
  10667. name: "Macro",
  10668. height: math.unit(500, "meters")
  10669. },
  10670. {
  10671. name: "Megamacro",
  10672. height: math.unit(9000, "km")
  10673. },
  10674. {
  10675. name: "Teramacro",
  10676. height: math.unit(384000, "km")
  10677. },
  10678. ]
  10679. ))
  10680. characterMakers.push(() => makeCharacter(
  10681. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10682. {
  10683. front: {
  10684. height: math.unit(6, "feet"),
  10685. weight: math.unit(150, "lb"),
  10686. name: "Front",
  10687. image: {
  10688. source: "./media/characters/kayroo/front.svg",
  10689. extra: 1153 / 1038,
  10690. bottom: 0.06
  10691. }
  10692. },
  10693. foot: {
  10694. height: math.unit(6, "feet"),
  10695. weight: math.unit(150, "lb"),
  10696. name: "Foot",
  10697. image: {
  10698. source: "./media/characters/kayroo/foot.svg"
  10699. }
  10700. },
  10701. },
  10702. [
  10703. {
  10704. name: "Normal",
  10705. height: math.unit(8, "feet"),
  10706. default: true
  10707. },
  10708. {
  10709. name: "Minimacro",
  10710. height: math.unit(250, "feet")
  10711. },
  10712. {
  10713. name: "Macro",
  10714. height: math.unit(2800, "feet")
  10715. },
  10716. {
  10717. name: "Megamacro",
  10718. height: math.unit(5200, "feet")
  10719. },
  10720. {
  10721. name: "Gigamacro",
  10722. height: math.unit(27000, "feet")
  10723. },
  10724. {
  10725. name: "Omega",
  10726. height: math.unit(45000, "feet")
  10727. },
  10728. ]
  10729. ))
  10730. characterMakers.push(() => makeCharacter(
  10731. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10732. {
  10733. front: {
  10734. height: math.unit(18, "feet"),
  10735. weight: math.unit(5800, "lb"),
  10736. name: "Front",
  10737. image: {
  10738. source: "./media/characters/rhys/front.svg",
  10739. extra: 3386 / 3090,
  10740. bottom: 0.07
  10741. }
  10742. },
  10743. },
  10744. [
  10745. {
  10746. name: "Normal",
  10747. height: math.unit(18, "feet"),
  10748. default: true
  10749. },
  10750. {
  10751. name: "Working Size",
  10752. height: math.unit(200, "feet")
  10753. },
  10754. {
  10755. name: "Demolition Size",
  10756. height: math.unit(2000, "feet")
  10757. },
  10758. {
  10759. name: "Maximum Licensed Size",
  10760. height: math.unit(5, "miles")
  10761. },
  10762. {
  10763. name: "Maximum Observed Size",
  10764. height: math.unit(10, "yottameters")
  10765. },
  10766. ]
  10767. ))
  10768. characterMakers.push(() => makeCharacter(
  10769. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10770. {
  10771. front: {
  10772. height: math.unit(6, "feet"),
  10773. weight: math.unit(250, "lb"),
  10774. name: "Front",
  10775. image: {
  10776. source: "./media/characters/toto/front.svg",
  10777. extra: 527 / 479,
  10778. bottom: 0.05
  10779. }
  10780. },
  10781. },
  10782. [
  10783. {
  10784. name: "Micro",
  10785. height: math.unit(3, "feet")
  10786. },
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(10, "feet")
  10790. },
  10791. {
  10792. name: "Macro",
  10793. height: math.unit(150, "feet"),
  10794. default: true
  10795. },
  10796. {
  10797. name: "Megamacro",
  10798. height: math.unit(1200, "feet")
  10799. },
  10800. ]
  10801. ))
  10802. characterMakers.push(() => makeCharacter(
  10803. { name: "King", species: ["lion"], tags: ["anthro"] },
  10804. {
  10805. back: {
  10806. height: math.unit(6, "feet"),
  10807. weight: math.unit(150, "lb"),
  10808. name: "Back",
  10809. image: {
  10810. source: "./media/characters/king/back.svg"
  10811. }
  10812. },
  10813. },
  10814. [
  10815. {
  10816. name: "Micro",
  10817. height: math.unit(2, "inches")
  10818. },
  10819. {
  10820. name: "Normal",
  10821. height: math.unit(8, "feet")
  10822. },
  10823. {
  10824. name: "Macro",
  10825. height: math.unit(200, "feet"),
  10826. default: true
  10827. },
  10828. {
  10829. name: "Megamacro",
  10830. height: math.unit(50, "miles")
  10831. },
  10832. ]
  10833. ))
  10834. characterMakers.push(() => makeCharacter(
  10835. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10836. {
  10837. anthro: {
  10838. height: math.unit(6 + 5 / 12, "feet"),
  10839. weight: math.unit(280, "lb"),
  10840. name: "Anthro",
  10841. image: {
  10842. source: "./media/characters/cordite/anthro.svg",
  10843. extra: 1986 / 1905,
  10844. bottom: 0.025
  10845. }
  10846. },
  10847. feral: {
  10848. height: math.unit(2, "feet"),
  10849. weight: math.unit(90, "lb"),
  10850. name: "Feral",
  10851. image: {
  10852. source: "./media/characters/cordite/feral.svg",
  10853. extra: 1260 / 755,
  10854. bottom: 0.05
  10855. }
  10856. },
  10857. },
  10858. [
  10859. {
  10860. name: "Normal",
  10861. height: math.unit(6 + 5 / 12, "feet"),
  10862. default: true
  10863. },
  10864. ]
  10865. ))
  10866. characterMakers.push(() => makeCharacter(
  10867. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10868. {
  10869. front: {
  10870. height: math.unit(6, "feet"),
  10871. weight: math.unit(150, "lb"),
  10872. name: "Front",
  10873. image: {
  10874. source: "./media/characters/pianostrong/front.svg",
  10875. extra: 6577 / 6254,
  10876. bottom: 0.02
  10877. }
  10878. },
  10879. side: {
  10880. height: math.unit(6, "feet"),
  10881. weight: math.unit(150, "lb"),
  10882. name: "Side",
  10883. image: {
  10884. source: "./media/characters/pianostrong/side.svg",
  10885. extra: 6106 / 5730
  10886. }
  10887. },
  10888. back: {
  10889. height: math.unit(6, "feet"),
  10890. weight: math.unit(150, "lb"),
  10891. name: "Back",
  10892. image: {
  10893. source: "./media/characters/pianostrong/back.svg",
  10894. extra: 6085 / 5733,
  10895. bottom: 0.01
  10896. }
  10897. },
  10898. },
  10899. [
  10900. {
  10901. name: "Macro",
  10902. height: math.unit(100, "feet")
  10903. },
  10904. {
  10905. name: "Macro+",
  10906. height: math.unit(300, "feet"),
  10907. default: true
  10908. },
  10909. {
  10910. name: "Macro++",
  10911. height: math.unit(1000, "feet")
  10912. },
  10913. ]
  10914. ))
  10915. characterMakers.push(() => makeCharacter(
  10916. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10917. {
  10918. front: {
  10919. height: math.unit(6, "feet"),
  10920. weight: math.unit(150, "lb"),
  10921. name: "Front",
  10922. image: {
  10923. source: "./media/characters/kona/front.svg",
  10924. extra: 2960 / 2629,
  10925. bottom: 0.005
  10926. }
  10927. },
  10928. },
  10929. [
  10930. {
  10931. name: "Normal",
  10932. height: math.unit(11 + 8 / 12, "feet")
  10933. },
  10934. {
  10935. name: "Macro",
  10936. height: math.unit(850, "feet"),
  10937. default: true
  10938. },
  10939. {
  10940. name: "Macro+",
  10941. height: math.unit(1.5, "km"),
  10942. default: true
  10943. },
  10944. {
  10945. name: "Megamacro",
  10946. height: math.unit(80, "miles")
  10947. },
  10948. {
  10949. name: "Gigamacro",
  10950. height: math.unit(3500, "miles")
  10951. },
  10952. ]
  10953. ))
  10954. characterMakers.push(() => makeCharacter(
  10955. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10956. {
  10957. side: {
  10958. height: math.unit(1.9, "meters"),
  10959. weight: math.unit(326, "kg"),
  10960. name: "Side",
  10961. image: {
  10962. source: "./media/characters/levi/side.svg",
  10963. extra: 1704 / 1334,
  10964. bottom: 0.02
  10965. }
  10966. },
  10967. },
  10968. [
  10969. {
  10970. name: "Normal",
  10971. height: math.unit(1.9, "meters"),
  10972. default: true
  10973. },
  10974. {
  10975. name: "Macro",
  10976. height: math.unit(20, "meters")
  10977. },
  10978. {
  10979. name: "Macro+",
  10980. height: math.unit(200, "meters")
  10981. },
  10982. {
  10983. name: "Megamacro",
  10984. height: math.unit(2, "km")
  10985. },
  10986. {
  10987. name: "Megamacro+",
  10988. height: math.unit(20, "km")
  10989. },
  10990. {
  10991. name: "Gigamacro",
  10992. height: math.unit(2500, "km")
  10993. },
  10994. {
  10995. name: "Gigamacro+",
  10996. height: math.unit(120000, "km")
  10997. },
  10998. {
  10999. name: "Teramacro",
  11000. height: math.unit(7.77e6, "km")
  11001. },
  11002. ]
  11003. ))
  11004. characterMakers.push(() => makeCharacter(
  11005. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11006. {
  11007. front: {
  11008. height: math.unit(6 + 4 / 12, "feet"),
  11009. weight: math.unit(188, "lb"),
  11010. name: "Front",
  11011. image: {
  11012. source: "./media/characters/bmc/front.svg",
  11013. extra: 1067 / 1022,
  11014. bottom: 0.047
  11015. }
  11016. },
  11017. },
  11018. [
  11019. {
  11020. name: "Human-sized",
  11021. height: math.unit(6 + 4 / 12, "feet")
  11022. },
  11023. {
  11024. name: "Small",
  11025. height: math.unit(250, "feet")
  11026. },
  11027. {
  11028. name: "Normal",
  11029. height: math.unit(1250, "feet"),
  11030. default: true
  11031. },
  11032. {
  11033. name: "Good Day",
  11034. height: math.unit(88, "miles")
  11035. },
  11036. {
  11037. name: "Largest Measured Size",
  11038. height: math.unit(11.2e6, "lightyears")
  11039. },
  11040. ]
  11041. ))
  11042. characterMakers.push(() => makeCharacter(
  11043. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11044. {
  11045. front: {
  11046. height: math.unit(20, "feet"),
  11047. weight: math.unit(2016, "kg"),
  11048. name: "Front",
  11049. image: {
  11050. source: "./media/characters/sven-the-kaiju/front.svg",
  11051. extra: 1479 / 1449,
  11052. bottom: 0.05
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Fairy",
  11059. height: math.unit(6, "inches")
  11060. },
  11061. {
  11062. name: "Normal",
  11063. height: math.unit(20, "feet"),
  11064. default: true
  11065. },
  11066. {
  11067. name: "Rampage",
  11068. height: math.unit(200, "feet")
  11069. },
  11070. {
  11071. name: "Archfey Forest Guardian",
  11072. height: math.unit(1, "mile")
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11078. {
  11079. front: {
  11080. height: math.unit(4, "meters"),
  11081. weight: math.unit(2, "tons"),
  11082. name: "Front",
  11083. image: {
  11084. source: "./media/characters/marik/front.svg",
  11085. extra: 1057 / 1003,
  11086. bottom: 0.08
  11087. }
  11088. },
  11089. },
  11090. [
  11091. {
  11092. name: "Normal",
  11093. height: math.unit(4, "meters"),
  11094. default: true
  11095. },
  11096. {
  11097. name: "Macro",
  11098. height: math.unit(20, "meters")
  11099. },
  11100. {
  11101. name: "Megamacro",
  11102. height: math.unit(50, "km")
  11103. },
  11104. {
  11105. name: "Gigamacro",
  11106. height: math.unit(100, "km")
  11107. },
  11108. {
  11109. name: "Alpha Macro",
  11110. height: math.unit(7.88e7, "yottameters")
  11111. },
  11112. ]
  11113. ))
  11114. characterMakers.push(() => makeCharacter(
  11115. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11116. {
  11117. front: {
  11118. height: math.unit(6, "feet"),
  11119. weight: math.unit(110, "lb"),
  11120. name: "Front",
  11121. image: {
  11122. source: "./media/characters/mel/front.svg",
  11123. extra: 736 / 617,
  11124. bottom: 0.017
  11125. }
  11126. },
  11127. },
  11128. [
  11129. {
  11130. name: "Pico",
  11131. height: math.unit(3, "pm")
  11132. },
  11133. {
  11134. name: "Nano",
  11135. height: math.unit(3, "nm")
  11136. },
  11137. {
  11138. name: "Micro",
  11139. height: math.unit(0.3, "mm"),
  11140. default: true
  11141. },
  11142. {
  11143. name: "Micro+",
  11144. height: math.unit(3, "mm")
  11145. },
  11146. {
  11147. name: "Normal",
  11148. height: math.unit(5 + 10.5 / 12, "feet")
  11149. },
  11150. ]
  11151. ))
  11152. characterMakers.push(() => makeCharacter(
  11153. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11154. {
  11155. kaiju: {
  11156. height: math.unit(1.75, "meters"),
  11157. weight: math.unit(55, "kg"),
  11158. name: "Kaiju",
  11159. image: {
  11160. source: "./media/characters/lykonous/kaiju.svg",
  11161. extra: 1055 / 946,
  11162. bottom: 0.135
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Normal",
  11169. height: math.unit(2.5, "meters"),
  11170. default: true
  11171. },
  11172. {
  11173. name: "Kaiju Dragon",
  11174. height: math.unit(60, "meters")
  11175. },
  11176. {
  11177. name: "Mega Kaiju",
  11178. height: math.unit(120, "km")
  11179. },
  11180. {
  11181. name: "Giga Kaiju",
  11182. height: math.unit(200, "megameters")
  11183. },
  11184. {
  11185. name: "Terra Kaiju",
  11186. height: math.unit(400, "gigameters")
  11187. },
  11188. {
  11189. name: "Kaiju Dragon God",
  11190. height: math.unit(13000, "exaparsecs")
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11196. {
  11197. front: {
  11198. height: math.unit(6, "feet"),
  11199. weight: math.unit(150, "lb"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/blü/front.svg",
  11203. extra: 1883 / 1564,
  11204. bottom: 0.031
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Normal",
  11211. height: math.unit(13, "feet"),
  11212. default: true
  11213. },
  11214. {
  11215. name: "Big Boi",
  11216. height: math.unit(150, "meters")
  11217. },
  11218. {
  11219. name: "Mini Stomper",
  11220. height: math.unit(300, "meters")
  11221. },
  11222. {
  11223. name: "Macro",
  11224. height: math.unit(1000, "meters")
  11225. },
  11226. {
  11227. name: "Megamacro",
  11228. height: math.unit(11000, "meters")
  11229. },
  11230. {
  11231. name: "Gigamacro",
  11232. height: math.unit(11000, "km")
  11233. },
  11234. {
  11235. name: "Teramacro",
  11236. height: math.unit(420000, "km")
  11237. },
  11238. {
  11239. name: "Examacro",
  11240. height: math.unit(120, "parsecs")
  11241. },
  11242. {
  11243. name: "God Tho",
  11244. height: math.unit(98000000000, "parsecs")
  11245. },
  11246. ]
  11247. ))
  11248. characterMakers.push(() => makeCharacter(
  11249. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11250. {
  11251. taurFront: {
  11252. height: math.unit(6, "feet"),
  11253. weight: math.unit(200, "lb"),
  11254. name: "Taur (Front)",
  11255. image: {
  11256. source: "./media/characters/scales/taur-front.svg",
  11257. extra: 1,
  11258. bottom: 0.05
  11259. }
  11260. },
  11261. taurBack: {
  11262. height: math.unit(6, "feet"),
  11263. weight: math.unit(200, "lb"),
  11264. name: "Taur (Back)",
  11265. image: {
  11266. source: "./media/characters/scales/taur-back.svg",
  11267. extra: 1,
  11268. bottom: 0.08
  11269. }
  11270. },
  11271. anthro: {
  11272. height: math.unit(6 * 7 / 12, "feet"),
  11273. weight: math.unit(100, "lb"),
  11274. name: "Anthro",
  11275. image: {
  11276. source: "./media/characters/scales/anthro.svg",
  11277. extra: 1,
  11278. bottom: 0.06
  11279. }
  11280. },
  11281. },
  11282. [
  11283. {
  11284. name: "Normal",
  11285. height: math.unit(12, "feet"),
  11286. default: true
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(6, "feet"),
  11295. weight: math.unit(150, "lb"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/koragos/front.svg",
  11299. extra: 841 / 794,
  11300. bottom: 0.035
  11301. }
  11302. },
  11303. back: {
  11304. height: math.unit(6, "feet"),
  11305. weight: math.unit(150, "lb"),
  11306. name: "Back",
  11307. image: {
  11308. source: "./media/characters/koragos/back.svg",
  11309. extra: 841 / 810,
  11310. bottom: 0.022
  11311. }
  11312. },
  11313. },
  11314. [
  11315. {
  11316. name: "Normal",
  11317. height: math.unit(6 + 11 / 12, "feet"),
  11318. default: true
  11319. },
  11320. {
  11321. name: "Macro",
  11322. height: math.unit(490, "feet")
  11323. },
  11324. {
  11325. name: "Megamacro",
  11326. height: math.unit(10, "miles")
  11327. },
  11328. {
  11329. name: "Gigamacro",
  11330. height: math.unit(50, "miles")
  11331. },
  11332. ]
  11333. ))
  11334. characterMakers.push(() => makeCharacter(
  11335. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11336. {
  11337. front: {
  11338. height: math.unit(6, "feet"),
  11339. weight: math.unit(250, "lb"),
  11340. name: "Front",
  11341. image: {
  11342. source: "./media/characters/xylrem/front.svg",
  11343. extra: 3323 / 3050,
  11344. bottom: 0.065
  11345. }
  11346. },
  11347. },
  11348. [
  11349. {
  11350. name: "Micro",
  11351. height: math.unit(4, "feet")
  11352. },
  11353. {
  11354. name: "Normal",
  11355. height: math.unit(16, "feet"),
  11356. default: true
  11357. },
  11358. {
  11359. name: "Macro",
  11360. height: math.unit(2720, "feet")
  11361. },
  11362. {
  11363. name: "Megamacro",
  11364. height: math.unit(25000, "miles")
  11365. },
  11366. ]
  11367. ))
  11368. characterMakers.push(() => makeCharacter(
  11369. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11370. {
  11371. front: {
  11372. height: math.unit(8, "feet"),
  11373. weight: math.unit(250, "kg"),
  11374. name: "Front",
  11375. image: {
  11376. source: "./media/characters/ikideru/front.svg",
  11377. extra: 930 / 870,
  11378. bottom: 0.087
  11379. }
  11380. },
  11381. back: {
  11382. height: math.unit(8, "feet"),
  11383. weight: math.unit(250, "kg"),
  11384. name: "Back",
  11385. image: {
  11386. source: "./media/characters/ikideru/back.svg",
  11387. extra: 919 / 852,
  11388. bottom: 0.055
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Rare",
  11395. height: math.unit(8, "feet"),
  11396. default: true
  11397. },
  11398. {
  11399. name: "Playful Loom",
  11400. height: math.unit(80, "feet")
  11401. },
  11402. {
  11403. name: "City Leaner",
  11404. height: math.unit(230, "feet")
  11405. },
  11406. {
  11407. name: "Megamacro",
  11408. height: math.unit(2500, "feet")
  11409. },
  11410. {
  11411. name: "Gigamacro",
  11412. height: math.unit(26400, "feet")
  11413. },
  11414. {
  11415. name: "Tectonic Shifter",
  11416. height: math.unit(1.7, "megameters")
  11417. },
  11418. {
  11419. name: "Planet Carer",
  11420. height: math.unit(21, "megameters")
  11421. },
  11422. {
  11423. name: "God",
  11424. height: math.unit(11157.22, "parsecs")
  11425. },
  11426. ]
  11427. ))
  11428. characterMakers.push(() => makeCharacter(
  11429. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11430. {
  11431. front: {
  11432. height: math.unit(6, "feet"),
  11433. weight: math.unit(120, "lb"),
  11434. name: "Front",
  11435. image: {
  11436. source: "./media/characters/neo/front.svg"
  11437. }
  11438. },
  11439. },
  11440. [
  11441. {
  11442. name: "Micro",
  11443. height: math.unit(2, "inches"),
  11444. default: true
  11445. },
  11446. {
  11447. name: "Human Size",
  11448. height: math.unit(5 + 8 / 12, "feet")
  11449. },
  11450. ]
  11451. ))
  11452. characterMakers.push(() => makeCharacter(
  11453. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11454. {
  11455. front: {
  11456. height: math.unit(13 + 10 / 12, "feet"),
  11457. weight: math.unit(5320, "lb"),
  11458. name: "Front",
  11459. image: {
  11460. source: "./media/characters/chauncey-chantz/front.svg",
  11461. extra: 1587 / 1435,
  11462. bottom: 0.02
  11463. }
  11464. },
  11465. },
  11466. [
  11467. {
  11468. name: "Normal",
  11469. height: math.unit(13 + 10 / 12, "feet"),
  11470. default: true
  11471. },
  11472. {
  11473. name: "Macro",
  11474. height: math.unit(45, "feet")
  11475. },
  11476. {
  11477. name: "Megamacro",
  11478. height: math.unit(250, "miles")
  11479. },
  11480. {
  11481. name: "Planetary",
  11482. height: math.unit(10000, "miles")
  11483. },
  11484. {
  11485. name: "Galactic",
  11486. height: math.unit(40000, "parsecs")
  11487. },
  11488. {
  11489. name: "Universal",
  11490. height: math.unit(1, "yottameter")
  11491. },
  11492. ]
  11493. ))
  11494. characterMakers.push(() => makeCharacter(
  11495. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11496. {
  11497. front: {
  11498. height: math.unit(6, "feet"),
  11499. weight: math.unit(150, "lb"),
  11500. name: "Front",
  11501. image: {
  11502. source: "./media/characters/epifox/front.svg",
  11503. extra: 1,
  11504. bottom: 0.075
  11505. }
  11506. },
  11507. },
  11508. [
  11509. {
  11510. name: "Micro",
  11511. height: math.unit(6, "inches")
  11512. },
  11513. {
  11514. name: "Normal",
  11515. height: math.unit(12, "feet"),
  11516. default: true
  11517. },
  11518. {
  11519. name: "Macro",
  11520. height: math.unit(3810, "feet")
  11521. },
  11522. {
  11523. name: "Megamacro",
  11524. height: math.unit(500, "miles")
  11525. },
  11526. ]
  11527. ))
  11528. characterMakers.push(() => makeCharacter(
  11529. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11530. {
  11531. front: {
  11532. height: math.unit(1.8796, "m"),
  11533. weight: math.unit(230, "lb"),
  11534. name: "Front",
  11535. image: {
  11536. source: "./media/characters/colin-t/front.svg",
  11537. extra: 1272 / 1193,
  11538. bottom: 0.07
  11539. }
  11540. },
  11541. },
  11542. [
  11543. {
  11544. name: "Micro",
  11545. height: math.unit(0.571, "meters")
  11546. },
  11547. {
  11548. name: "Normal",
  11549. height: math.unit(1.8796, "meters"),
  11550. default: true
  11551. },
  11552. {
  11553. name: "Tall",
  11554. height: math.unit(4, "meters")
  11555. },
  11556. {
  11557. name: "Macro",
  11558. height: math.unit(67.241, "meters")
  11559. },
  11560. {
  11561. name: "Megamacro",
  11562. height: math.unit(371.856, "meters")
  11563. },
  11564. {
  11565. name: "Planetary",
  11566. height: math.unit(12631.5689, "km")
  11567. },
  11568. ]
  11569. ))
  11570. characterMakers.push(() => makeCharacter(
  11571. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11572. {
  11573. front: {
  11574. height: math.unit(1.85, "meters"),
  11575. weight: math.unit(80, "kg"),
  11576. name: "Front",
  11577. image: {
  11578. source: "./media/characters/matvei/front.svg",
  11579. extra: 614 / 594,
  11580. bottom: 0.01
  11581. }
  11582. },
  11583. },
  11584. [
  11585. {
  11586. name: "Normal",
  11587. height: math.unit(1.85, "meters"),
  11588. default: true
  11589. },
  11590. ]
  11591. ))
  11592. characterMakers.push(() => makeCharacter(
  11593. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11594. {
  11595. front: {
  11596. height: math.unit(5 + 9 / 12, "feet"),
  11597. weight: math.unit(70, "lb"),
  11598. name: "Front",
  11599. image: {
  11600. source: "./media/characters/quincy/front.svg",
  11601. extra: 3041 / 2751
  11602. }
  11603. },
  11604. back: {
  11605. height: math.unit(5 + 9 / 12, "feet"),
  11606. weight: math.unit(70, "lb"),
  11607. name: "Back",
  11608. image: {
  11609. source: "./media/characters/quincy/back.svg",
  11610. extra: 3041 / 2751
  11611. }
  11612. },
  11613. flying: {
  11614. height: math.unit(5 + 4 / 12, "feet"),
  11615. weight: math.unit(70, "lb"),
  11616. name: "Flying",
  11617. image: {
  11618. source: "./media/characters/quincy/flying.svg",
  11619. extra: 1044 / 930
  11620. }
  11621. },
  11622. },
  11623. [
  11624. {
  11625. name: "Micro",
  11626. height: math.unit(3, "cm")
  11627. },
  11628. {
  11629. name: "Normal",
  11630. height: math.unit(5 + 9 / 12, "feet")
  11631. },
  11632. {
  11633. name: "Macro",
  11634. height: math.unit(200, "meters"),
  11635. default: true
  11636. },
  11637. {
  11638. name: "Megamacro",
  11639. height: math.unit(1000, "meters")
  11640. },
  11641. ]
  11642. ))
  11643. characterMakers.push(() => makeCharacter(
  11644. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11645. {
  11646. front: {
  11647. height: math.unit(4 + 7 / 12, "feet"),
  11648. weight: math.unit(50, "lb"),
  11649. name: "Front",
  11650. image: {
  11651. source: "./media/characters/vanrel/front.svg",
  11652. extra: 1,
  11653. bottom: 0.02
  11654. }
  11655. },
  11656. frontAlt: {
  11657. height: math.unit(4 + 7 / 12, "feet"),
  11658. weight: math.unit(50, "lb"),
  11659. name: "Front-alt",
  11660. image: {
  11661. source: "./media/characters/vanrel/front-alt.svg",
  11662. extra: 1,
  11663. bottom: 15 / 1511
  11664. }
  11665. },
  11666. elemental: {
  11667. height: math.unit(3, "feet"),
  11668. weight: math.unit(50, "lb"),
  11669. name: "Elemental",
  11670. image: {
  11671. source: "./media/characters/vanrel/elemental.svg",
  11672. extra: 192.3 / 162.8,
  11673. bottom: 1.79 / 194.17
  11674. }
  11675. },
  11676. side: {
  11677. height: math.unit(4 + 7 / 12, "feet"),
  11678. weight: math.unit(50, "lb"),
  11679. name: "Side",
  11680. image: {
  11681. source: "./media/characters/vanrel/side.svg",
  11682. extra: 1,
  11683. bottom: 0.025
  11684. }
  11685. },
  11686. tome: {
  11687. height: math.unit(1.35, "feet"),
  11688. weight: math.unit(10, "lb"),
  11689. name: "Vanrel's Tome",
  11690. rename: true,
  11691. image: {
  11692. source: "./media/characters/vanrel/tome.svg"
  11693. }
  11694. },
  11695. beans: {
  11696. height: math.unit(0.89, "feet"),
  11697. name: "Beans",
  11698. image: {
  11699. source: "./media/characters/vanrel/beans.svg"
  11700. }
  11701. },
  11702. },
  11703. [
  11704. {
  11705. name: "Normal",
  11706. height: math.unit(4 + 7 / 12, "feet"),
  11707. default: true
  11708. },
  11709. ]
  11710. ))
  11711. characterMakers.push(() => makeCharacter(
  11712. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11713. {
  11714. front: {
  11715. height: math.unit(7 + 5 / 12, "feet"),
  11716. weight: math.unit(150, "lb"),
  11717. name: "Front",
  11718. image: {
  11719. source: "./media/characters/kuiper-vanrel/front.svg",
  11720. extra: 1118 / 1068,
  11721. bottom: 0.09
  11722. }
  11723. },
  11724. foot: {
  11725. height: math.unit(0.55, "meters"),
  11726. name: "Foot",
  11727. image: {
  11728. source: "./media/characters/kuiper-vanrel/foot.svg",
  11729. }
  11730. },
  11731. battle: {
  11732. height: math.unit(6.824, "feet"),
  11733. weight: math.unit(150, "lb"),
  11734. name: "Battle",
  11735. image: {
  11736. source: "./media/characters/kuiper-vanrel/battle.svg",
  11737. extra: 1466 / 1327,
  11738. bottom: 29 / 1492.5
  11739. }
  11740. },
  11741. battleAlt: {
  11742. height: math.unit(6.824, "feet"),
  11743. weight: math.unit(150, "lb"),
  11744. name: "Battle (Alt)",
  11745. image: {
  11746. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11747. extra: 2081 / 1965,
  11748. bottom: 40 / 2121
  11749. }
  11750. },
  11751. },
  11752. [
  11753. {
  11754. name: "Normal",
  11755. height: math.unit(7 + 5 / 12, "feet"),
  11756. default: true
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11762. {
  11763. front: {
  11764. height: math.unit(8 + 5 / 12, "feet"),
  11765. weight: math.unit(150, "lb"),
  11766. name: "Front",
  11767. image: {
  11768. source: "./media/characters/keset-vanrel/front.svg",
  11769. extra: 1150 / 1084,
  11770. bottom: 0.05
  11771. }
  11772. },
  11773. hand: {
  11774. height: math.unit(0.6, "meters"),
  11775. name: "Hand",
  11776. image: {
  11777. source: "./media/characters/keset-vanrel/hand.svg"
  11778. }
  11779. },
  11780. foot: {
  11781. height: math.unit(0.94978, "meters"),
  11782. name: "Foot",
  11783. image: {
  11784. source: "./media/characters/keset-vanrel/foot.svg"
  11785. }
  11786. },
  11787. battle: {
  11788. height: math.unit(7.408, "feet"),
  11789. weight: math.unit(150, "lb"),
  11790. name: "Battle",
  11791. image: {
  11792. source: "./media/characters/keset-vanrel/battle.svg",
  11793. extra: 1890 / 1386,
  11794. bottom: 73.28 / 1970
  11795. }
  11796. },
  11797. },
  11798. [
  11799. {
  11800. name: "Normal",
  11801. height: math.unit(8 + 5 / 12, "feet"),
  11802. default: true
  11803. },
  11804. ]
  11805. ))
  11806. characterMakers.push(() => makeCharacter(
  11807. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11808. {
  11809. front: {
  11810. height: math.unit(6, "feet"),
  11811. weight: math.unit(150, "lb"),
  11812. name: "Front",
  11813. image: {
  11814. source: "./media/characters/neos/front.svg",
  11815. extra: 1696 / 992,
  11816. bottom: 0.14
  11817. }
  11818. },
  11819. },
  11820. [
  11821. {
  11822. name: "Normal",
  11823. height: math.unit(54, "cm"),
  11824. default: true
  11825. },
  11826. {
  11827. name: "Macro",
  11828. height: math.unit(100, "m")
  11829. },
  11830. {
  11831. name: "Megamacro",
  11832. height: math.unit(10, "km")
  11833. },
  11834. {
  11835. name: "Megamacro+",
  11836. height: math.unit(100, "km")
  11837. },
  11838. {
  11839. name: "Gigamacro",
  11840. height: math.unit(100, "Mm")
  11841. },
  11842. {
  11843. name: "Teramacro",
  11844. height: math.unit(100, "Gm")
  11845. },
  11846. {
  11847. name: "Examacro",
  11848. height: math.unit(100, "Em")
  11849. },
  11850. {
  11851. name: "Godly",
  11852. height: math.unit(10000, "Ym")
  11853. },
  11854. {
  11855. name: "Beyond Godly",
  11856. height: math.unit(25, "multiverses")
  11857. },
  11858. ]
  11859. ))
  11860. characterMakers.push(() => makeCharacter(
  11861. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11862. {
  11863. feminine: {
  11864. height: math.unit(5, "feet"),
  11865. weight: math.unit(100, "lb"),
  11866. name: "Feminine",
  11867. image: {
  11868. source: "./media/characters/sammy-mouse/feminine.svg",
  11869. extra: 2526 / 2425,
  11870. bottom: 0.123
  11871. }
  11872. },
  11873. masculine: {
  11874. height: math.unit(5, "feet"),
  11875. weight: math.unit(100, "lb"),
  11876. name: "Masculine",
  11877. image: {
  11878. source: "./media/characters/sammy-mouse/masculine.svg",
  11879. extra: 2526 / 2425,
  11880. bottom: 0.123
  11881. }
  11882. },
  11883. },
  11884. [
  11885. {
  11886. name: "Micro",
  11887. height: math.unit(5, "inches")
  11888. },
  11889. {
  11890. name: "Normal",
  11891. height: math.unit(5, "feet"),
  11892. default: true
  11893. },
  11894. {
  11895. name: "Macro",
  11896. height: math.unit(60, "feet")
  11897. },
  11898. ]
  11899. ))
  11900. characterMakers.push(() => makeCharacter(
  11901. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11902. {
  11903. front: {
  11904. height: math.unit(4, "feet"),
  11905. weight: math.unit(50, "lb"),
  11906. name: "Front",
  11907. image: {
  11908. source: "./media/characters/kole/front.svg",
  11909. extra: 1423 / 1303,
  11910. bottom: 0.025
  11911. }
  11912. },
  11913. back: {
  11914. height: math.unit(4, "feet"),
  11915. weight: math.unit(50, "lb"),
  11916. name: "Back",
  11917. image: {
  11918. source: "./media/characters/kole/back.svg",
  11919. extra: 1426 / 1280,
  11920. bottom: 0.02
  11921. }
  11922. },
  11923. },
  11924. [
  11925. {
  11926. name: "Normal",
  11927. height: math.unit(4, "feet"),
  11928. default: true
  11929. },
  11930. ]
  11931. ))
  11932. characterMakers.push(() => makeCharacter(
  11933. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11934. {
  11935. front: {
  11936. height: math.unit(2 + 6 / 12, "feet"),
  11937. weight: math.unit(20, "lb"),
  11938. name: "Front",
  11939. image: {
  11940. source: "./media/characters/rufran/front.svg",
  11941. extra: 2041 / 1839,
  11942. bottom: 0.055
  11943. }
  11944. },
  11945. back: {
  11946. height: math.unit(2 + 6 / 12, "feet"),
  11947. weight: math.unit(20, "lb"),
  11948. name: "Back",
  11949. image: {
  11950. source: "./media/characters/rufran/back.svg",
  11951. extra: 2054 / 1839,
  11952. bottom: 0.01
  11953. }
  11954. },
  11955. hand: {
  11956. height: math.unit(0.2166, "meters"),
  11957. name: "Hand",
  11958. image: {
  11959. source: "./media/characters/rufran/hand.svg"
  11960. }
  11961. },
  11962. foot: {
  11963. height: math.unit(0.185, "meters"),
  11964. name: "Foot",
  11965. image: {
  11966. source: "./media/characters/rufran/foot.svg"
  11967. }
  11968. },
  11969. },
  11970. [
  11971. {
  11972. name: "Micro",
  11973. height: math.unit(1, "inch")
  11974. },
  11975. {
  11976. name: "Normal",
  11977. height: math.unit(2 + 6 / 12, "feet"),
  11978. default: true
  11979. },
  11980. {
  11981. name: "Big",
  11982. height: math.unit(60, "feet")
  11983. },
  11984. {
  11985. name: "Macro",
  11986. height: math.unit(325, "feet")
  11987. },
  11988. ]
  11989. ))
  11990. characterMakers.push(() => makeCharacter(
  11991. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11992. {
  11993. front: {
  11994. height: math.unit(0.3, "meters"),
  11995. weight: math.unit(3.5, "kg"),
  11996. name: "Front",
  11997. image: {
  11998. source: "./media/characters/chip/front.svg",
  11999. extra: 748 / 674
  12000. }
  12001. },
  12002. },
  12003. [
  12004. {
  12005. name: "Micro",
  12006. height: math.unit(1, "inch"),
  12007. default: true
  12008. },
  12009. ]
  12010. ))
  12011. characterMakers.push(() => makeCharacter(
  12012. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12013. {
  12014. side: {
  12015. height: math.unit(2.3, "meters"),
  12016. weight: math.unit(3500, "lb"),
  12017. name: "Side",
  12018. image: {
  12019. source: "./media/characters/torvid/side.svg",
  12020. extra: 1972 / 722,
  12021. bottom: 0.035
  12022. }
  12023. },
  12024. },
  12025. [
  12026. {
  12027. name: "Normal",
  12028. height: math.unit(2.3, "meters"),
  12029. default: true
  12030. },
  12031. ]
  12032. ))
  12033. characterMakers.push(() => makeCharacter(
  12034. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12035. {
  12036. front: {
  12037. height: math.unit(2, "meters"),
  12038. weight: math.unit(150.5, "kg"),
  12039. name: "Front",
  12040. image: {
  12041. source: "./media/characters/susan/front.svg",
  12042. extra: 693 / 635,
  12043. bottom: 0.05
  12044. }
  12045. },
  12046. },
  12047. [
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(505, "miles"),
  12051. default: true
  12052. },
  12053. ]
  12054. ))
  12055. characterMakers.push(() => makeCharacter(
  12056. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12057. {
  12058. front: {
  12059. height: math.unit(6, "feet"),
  12060. weight: math.unit(150, "lb"),
  12061. name: "Front",
  12062. image: {
  12063. source: "./media/characters/raindrops/front.svg",
  12064. extra: 2655 / 2461,
  12065. bottom: 49 / 2705
  12066. }
  12067. },
  12068. back: {
  12069. height: math.unit(6, "feet"),
  12070. weight: math.unit(150, "lb"),
  12071. name: "Back",
  12072. image: {
  12073. source: "./media/characters/raindrops/back.svg",
  12074. extra: 2574 / 2400,
  12075. bottom: 65 / 2634
  12076. }
  12077. },
  12078. },
  12079. [
  12080. {
  12081. name: "Micro",
  12082. height: math.unit(6, "inches")
  12083. },
  12084. {
  12085. name: "Normal",
  12086. height: math.unit(6 + 2 / 12, "feet")
  12087. },
  12088. {
  12089. name: "Macro",
  12090. height: math.unit(131, "feet"),
  12091. default: true
  12092. },
  12093. {
  12094. name: "Megamacro",
  12095. height: math.unit(15, "miles")
  12096. },
  12097. {
  12098. name: "Gigamacro",
  12099. height: math.unit(4000, "miles")
  12100. },
  12101. {
  12102. name: "Teramacro",
  12103. height: math.unit(315000, "miles")
  12104. },
  12105. ]
  12106. ))
  12107. characterMakers.push(() => makeCharacter(
  12108. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12109. {
  12110. front: {
  12111. height: math.unit(2.794, "meters"),
  12112. weight: math.unit(325, "kg"),
  12113. name: "Front",
  12114. image: {
  12115. source: "./media/characters/tezwa/front.svg",
  12116. extra: 2083 / 1906,
  12117. bottom: 0.031
  12118. }
  12119. },
  12120. foot: {
  12121. height: math.unit(0.687, "meters"),
  12122. name: "Foot",
  12123. image: {
  12124. source: "./media/characters/tezwa/foot.svg"
  12125. }
  12126. },
  12127. },
  12128. [
  12129. {
  12130. name: "Normal",
  12131. height: math.unit(9 + 2 / 12, "feet"),
  12132. default: true
  12133. },
  12134. ]
  12135. ))
  12136. characterMakers.push(() => makeCharacter(
  12137. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12138. {
  12139. front: {
  12140. height: math.unit(58, "feet"),
  12141. weight: math.unit(89000, "lb"),
  12142. name: "Front",
  12143. image: {
  12144. source: "./media/characters/typhus/front.svg",
  12145. extra: 816 / 800,
  12146. bottom: 0.065
  12147. }
  12148. },
  12149. },
  12150. [
  12151. {
  12152. name: "Macro",
  12153. height: math.unit(58, "feet"),
  12154. default: true
  12155. },
  12156. ]
  12157. ))
  12158. characterMakers.push(() => makeCharacter(
  12159. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12160. {
  12161. front: {
  12162. height: math.unit(12, "feet"),
  12163. weight: math.unit(6, "tonnes"),
  12164. name: "Front",
  12165. image: {
  12166. source: "./media/characters/lyra-von-wulf/front.svg",
  12167. extra: 1,
  12168. bottom: 0.10
  12169. }
  12170. },
  12171. frontMecha: {
  12172. height: math.unit(12, "feet"),
  12173. weight: math.unit(12, "tonnes"),
  12174. name: "Front (Mecha)",
  12175. image: {
  12176. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12177. extra: 1,
  12178. bottom: 0.042
  12179. }
  12180. },
  12181. maw: {
  12182. height: math.unit(2.2, "feet"),
  12183. name: "Maw",
  12184. image: {
  12185. source: "./media/characters/lyra-von-wulf/maw.svg"
  12186. }
  12187. },
  12188. },
  12189. [
  12190. {
  12191. name: "Normal",
  12192. height: math.unit(12, "feet"),
  12193. default: true
  12194. },
  12195. {
  12196. name: "Classic",
  12197. height: math.unit(50, "feet")
  12198. },
  12199. {
  12200. name: "Macro",
  12201. height: math.unit(500, "feet")
  12202. },
  12203. {
  12204. name: "Megamacro",
  12205. height: math.unit(1, "mile")
  12206. },
  12207. {
  12208. name: "Gigamacro",
  12209. height: math.unit(400, "miles")
  12210. },
  12211. {
  12212. name: "Teramacro",
  12213. height: math.unit(22000, "miles")
  12214. },
  12215. {
  12216. name: "Solarmacro",
  12217. height: math.unit(8600000, "miles")
  12218. },
  12219. {
  12220. name: "Galactic",
  12221. height: math.unit(1057000, "lightyears")
  12222. },
  12223. ]
  12224. ))
  12225. characterMakers.push(() => makeCharacter(
  12226. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12227. {
  12228. front: {
  12229. height: math.unit(6 + 10 / 12, "feet"),
  12230. weight: math.unit(150, "lb"),
  12231. name: "Front",
  12232. image: {
  12233. source: "./media/characters/dixon/front.svg",
  12234. extra: 3361 / 3209,
  12235. bottom: 0.01
  12236. }
  12237. },
  12238. },
  12239. [
  12240. {
  12241. name: "Normal",
  12242. height: math.unit(6 + 10 / 12, "feet"),
  12243. default: true
  12244. },
  12245. {
  12246. name: "Big",
  12247. height: math.unit(12, "meters")
  12248. },
  12249. {
  12250. name: "Macro",
  12251. height: math.unit(500, "meters")
  12252. },
  12253. {
  12254. name: "Megamacro",
  12255. height: math.unit(2, "km")
  12256. },
  12257. ]
  12258. ))
  12259. characterMakers.push(() => makeCharacter(
  12260. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12261. {
  12262. front: {
  12263. height: math.unit(185, "cm"),
  12264. weight: math.unit(68, "kg"),
  12265. name: "Front",
  12266. image: {
  12267. source: "./media/characters/kauko/front.svg",
  12268. extra: 1455 / 1421,
  12269. bottom: 0.03
  12270. }
  12271. },
  12272. back: {
  12273. height: math.unit(185, "cm"),
  12274. weight: math.unit(68, "kg"),
  12275. name: "Back",
  12276. image: {
  12277. source: "./media/characters/kauko/back.svg",
  12278. extra: 1455 / 1421,
  12279. bottom: 0.004
  12280. }
  12281. },
  12282. },
  12283. [
  12284. {
  12285. name: "Normal",
  12286. height: math.unit(185, "cm"),
  12287. default: true
  12288. },
  12289. ]
  12290. ))
  12291. characterMakers.push(() => makeCharacter(
  12292. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12293. {
  12294. front: {
  12295. height: math.unit(6, "feet"),
  12296. weight: math.unit(150, "kg"),
  12297. name: "Front",
  12298. image: {
  12299. source: "./media/characters/varg/front.svg",
  12300. extra: 1108 / 1018,
  12301. bottom: 0.0375
  12302. }
  12303. },
  12304. },
  12305. [
  12306. {
  12307. name: "Normal",
  12308. height: math.unit(5, "meters")
  12309. },
  12310. {
  12311. name: "Macro",
  12312. height: math.unit(200, "meters")
  12313. },
  12314. {
  12315. name: "Megamacro",
  12316. height: math.unit(20, "kilometers")
  12317. },
  12318. {
  12319. name: "True Size",
  12320. height: math.unit(211, "km"),
  12321. default: true
  12322. },
  12323. {
  12324. name: "Gigamacro",
  12325. height: math.unit(1000, "km")
  12326. },
  12327. {
  12328. name: "Gigamacro+",
  12329. height: math.unit(8000, "km")
  12330. },
  12331. {
  12332. name: "Teramacro",
  12333. height: math.unit(1000000, "km")
  12334. },
  12335. ]
  12336. ))
  12337. characterMakers.push(() => makeCharacter(
  12338. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12339. {
  12340. front: {
  12341. height: math.unit(7 + 7 / 12, "feet"),
  12342. weight: math.unit(267, "lb"),
  12343. name: "Front",
  12344. image: {
  12345. source: "./media/characters/dayza/front.svg",
  12346. extra: 1262 / 1200,
  12347. bottom: 0.035
  12348. }
  12349. },
  12350. side: {
  12351. height: math.unit(7 + 7 / 12, "feet"),
  12352. weight: math.unit(267, "lb"),
  12353. name: "Side",
  12354. image: {
  12355. source: "./media/characters/dayza/side.svg",
  12356. extra: 1295 / 1245,
  12357. bottom: 0.05
  12358. }
  12359. },
  12360. back: {
  12361. height: math.unit(7 + 7 / 12, "feet"),
  12362. weight: math.unit(267, "lb"),
  12363. name: "Back",
  12364. image: {
  12365. source: "./media/characters/dayza/back.svg",
  12366. extra: 1241 / 1170
  12367. }
  12368. },
  12369. },
  12370. [
  12371. {
  12372. name: "Normal",
  12373. height: math.unit(7 + 7 / 12, "feet"),
  12374. default: true
  12375. },
  12376. {
  12377. name: "Macro",
  12378. height: math.unit(155, "feet")
  12379. },
  12380. ]
  12381. ))
  12382. characterMakers.push(() => makeCharacter(
  12383. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12384. {
  12385. front: {
  12386. height: math.unit(6 + 5 / 12, "feet"),
  12387. weight: math.unit(160, "lb"),
  12388. name: "Front",
  12389. image: {
  12390. source: "./media/characters/xanthos/front.svg",
  12391. extra: 1,
  12392. bottom: 0.04
  12393. }
  12394. },
  12395. back: {
  12396. height: math.unit(6 + 5 / 12, "feet"),
  12397. weight: math.unit(160, "lb"),
  12398. name: "Back",
  12399. image: {
  12400. source: "./media/characters/xanthos/back.svg",
  12401. extra: 1,
  12402. bottom: 0.03
  12403. }
  12404. },
  12405. hand: {
  12406. height: math.unit(0.928, "feet"),
  12407. name: "Hand",
  12408. image: {
  12409. source: "./media/characters/xanthos/hand.svg"
  12410. }
  12411. },
  12412. foot: {
  12413. height: math.unit(1.286, "feet"),
  12414. name: "Foot",
  12415. image: {
  12416. source: "./media/characters/xanthos/foot.svg"
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Normal",
  12423. height: math.unit(6 + 5 / 12, "feet"),
  12424. default: true
  12425. },
  12426. {
  12427. name: "Normal+",
  12428. height: math.unit(6, "meters")
  12429. },
  12430. {
  12431. name: "Macro",
  12432. height: math.unit(40, "feet")
  12433. },
  12434. {
  12435. name: "Macro+",
  12436. height: math.unit(200, "meters")
  12437. },
  12438. {
  12439. name: "Megamacro",
  12440. height: math.unit(20, "km")
  12441. },
  12442. {
  12443. name: "Megamacro+",
  12444. height: math.unit(100, "km")
  12445. },
  12446. ]
  12447. ))
  12448. characterMakers.push(() => makeCharacter(
  12449. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12450. {
  12451. front: {
  12452. height: math.unit(6 + 3 / 12, "feet"),
  12453. weight: math.unit(215, "lb"),
  12454. name: "Front",
  12455. image: {
  12456. source: "./media/characters/grynn/front.svg",
  12457. extra: 4627 / 4209,
  12458. bottom: 0.047
  12459. }
  12460. },
  12461. },
  12462. [
  12463. {
  12464. name: "Micro",
  12465. height: math.unit(6, "inches")
  12466. },
  12467. {
  12468. name: "Normal",
  12469. height: math.unit(6 + 3 / 12, "feet"),
  12470. default: true
  12471. },
  12472. {
  12473. name: "Big",
  12474. height: math.unit(104, "feet")
  12475. },
  12476. {
  12477. name: "Macro",
  12478. height: math.unit(944, "feet")
  12479. },
  12480. {
  12481. name: "Macro+",
  12482. height: math.unit(9480, "feet")
  12483. },
  12484. {
  12485. name: "Megamacro",
  12486. height: math.unit(78752, "feet")
  12487. },
  12488. {
  12489. name: "Megamacro+",
  12490. height: math.unit(630128, "feet")
  12491. },
  12492. {
  12493. name: "Megamacro++",
  12494. height: math.unit(3150695, "feet")
  12495. },
  12496. ]
  12497. ))
  12498. characterMakers.push(() => makeCharacter(
  12499. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12500. {
  12501. front: {
  12502. height: math.unit(7 + 5 / 12, "feet"),
  12503. weight: math.unit(450, "lb"),
  12504. name: "Front",
  12505. image: {
  12506. source: "./media/characters/mocha-aura/front.svg",
  12507. extra: 1907 / 1817,
  12508. bottom: 0.04
  12509. }
  12510. },
  12511. back: {
  12512. height: math.unit(7 + 5 / 12, "feet"),
  12513. weight: math.unit(450, "lb"),
  12514. name: "Back",
  12515. image: {
  12516. source: "./media/characters/mocha-aura/back.svg",
  12517. extra: 1900 / 1825,
  12518. bottom: 0.045
  12519. }
  12520. },
  12521. },
  12522. [
  12523. {
  12524. name: "Nano",
  12525. height: math.unit(1, "nm")
  12526. },
  12527. {
  12528. name: "Megamicro",
  12529. height: math.unit(1, "mm")
  12530. },
  12531. {
  12532. name: "Micro",
  12533. height: math.unit(3, "inches")
  12534. },
  12535. {
  12536. name: "Normal",
  12537. height: math.unit(7 + 5 / 12, "feet"),
  12538. default: true
  12539. },
  12540. {
  12541. name: "Macro",
  12542. height: math.unit(30, "feet")
  12543. },
  12544. {
  12545. name: "Megamacro",
  12546. height: math.unit(3500, "feet")
  12547. },
  12548. {
  12549. name: "Teramacro",
  12550. height: math.unit(500000, "miles")
  12551. },
  12552. {
  12553. name: "Petamacro",
  12554. height: math.unit(50000000000000000, "parsecs")
  12555. },
  12556. ]
  12557. ))
  12558. characterMakers.push(() => makeCharacter(
  12559. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12560. {
  12561. front: {
  12562. height: math.unit(6, "feet"),
  12563. weight: math.unit(150, "lb"),
  12564. name: "Front",
  12565. image: {
  12566. source: "./media/characters/ilisha-devya/front.svg",
  12567. extra: 1,
  12568. bottom: 0.175
  12569. }
  12570. },
  12571. back: {
  12572. height: math.unit(6, "feet"),
  12573. weight: math.unit(150, "lb"),
  12574. name: "Back",
  12575. image: {
  12576. source: "./media/characters/ilisha-devya/back.svg",
  12577. extra: 1,
  12578. bottom: 0.015
  12579. }
  12580. },
  12581. },
  12582. [
  12583. {
  12584. name: "Macro",
  12585. height: math.unit(500, "feet"),
  12586. default: true
  12587. },
  12588. {
  12589. name: "Megamacro",
  12590. height: math.unit(10, "miles")
  12591. },
  12592. {
  12593. name: "Gigamacro",
  12594. height: math.unit(100000, "miles")
  12595. },
  12596. {
  12597. name: "Examacro",
  12598. height: math.unit(1e9, "lightyears")
  12599. },
  12600. {
  12601. name: "Omniversal",
  12602. height: math.unit(1e33, "lightyears")
  12603. },
  12604. {
  12605. name: "Beyond Infinite",
  12606. height: math.unit(1e100, "lightyears")
  12607. },
  12608. ]
  12609. ))
  12610. characterMakers.push(() => makeCharacter(
  12611. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12612. {
  12613. Side: {
  12614. height: math.unit(6, "feet"),
  12615. weight: math.unit(150, "lb"),
  12616. name: "Side",
  12617. image: {
  12618. source: "./media/characters/mira/side.svg",
  12619. extra: 900 / 799,
  12620. bottom: 0.02
  12621. }
  12622. },
  12623. },
  12624. [
  12625. {
  12626. name: "Human Size",
  12627. height: math.unit(6, "feet")
  12628. },
  12629. {
  12630. name: "Macro",
  12631. height: math.unit(100, "feet"),
  12632. default: true
  12633. },
  12634. {
  12635. name: "Megamacro",
  12636. height: math.unit(10, "miles")
  12637. },
  12638. {
  12639. name: "Gigamacro",
  12640. height: math.unit(25000, "miles")
  12641. },
  12642. {
  12643. name: "Teramacro",
  12644. height: math.unit(300, "AU")
  12645. },
  12646. {
  12647. name: "Full Size",
  12648. height: math.unit(4.5e10, "lightyears")
  12649. },
  12650. ]
  12651. ))
  12652. characterMakers.push(() => makeCharacter(
  12653. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12654. {
  12655. front: {
  12656. height: math.unit(6, "feet"),
  12657. weight: math.unit(150, "lb"),
  12658. name: "Front",
  12659. image: {
  12660. source: "./media/characters/holly/front.svg",
  12661. extra: 639 / 606
  12662. }
  12663. },
  12664. back: {
  12665. height: math.unit(6, "feet"),
  12666. weight: math.unit(150, "lb"),
  12667. name: "Back",
  12668. image: {
  12669. source: "./media/characters/holly/back.svg",
  12670. extra: 623 / 598
  12671. }
  12672. },
  12673. frontWorking: {
  12674. height: math.unit(6, "feet"),
  12675. weight: math.unit(150, "lb"),
  12676. name: "Front (Working)",
  12677. image: {
  12678. source: "./media/characters/holly/front-working.svg",
  12679. extra: 607 / 577,
  12680. bottom: 0.048
  12681. }
  12682. },
  12683. },
  12684. [
  12685. {
  12686. name: "Normal",
  12687. height: math.unit(12 + 3 / 12, "feet"),
  12688. default: true
  12689. },
  12690. ]
  12691. ))
  12692. characterMakers.push(() => makeCharacter(
  12693. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12694. {
  12695. front: {
  12696. height: math.unit(6, "feet"),
  12697. weight: math.unit(150, "lb"),
  12698. name: "Front",
  12699. image: {
  12700. source: "./media/characters/porter/front.svg",
  12701. extra: 1,
  12702. bottom: 0.01
  12703. }
  12704. },
  12705. frontRobes: {
  12706. height: math.unit(6, "feet"),
  12707. weight: math.unit(150, "lb"),
  12708. name: "Front (Robes)",
  12709. image: {
  12710. source: "./media/characters/porter/front-robes.svg",
  12711. extra: 1.01,
  12712. bottom: 0.01
  12713. }
  12714. },
  12715. },
  12716. [
  12717. {
  12718. name: "Normal",
  12719. height: math.unit(11 + 9 / 12, "feet"),
  12720. default: true
  12721. },
  12722. ]
  12723. ))
  12724. characterMakers.push(() => makeCharacter(
  12725. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12726. {
  12727. legendary: {
  12728. height: math.unit(6, "feet"),
  12729. weight: math.unit(150, "lb"),
  12730. name: "Legendary",
  12731. image: {
  12732. source: "./media/characters/lucy/legendary.svg",
  12733. extra: 1355 / 1100,
  12734. bottom: 0.045
  12735. }
  12736. },
  12737. },
  12738. [
  12739. {
  12740. name: "Legendary",
  12741. height: math.unit(86882 * 2, "miles"),
  12742. default: true
  12743. },
  12744. ]
  12745. ))
  12746. characterMakers.push(() => makeCharacter(
  12747. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12748. {
  12749. front: {
  12750. height: math.unit(6, "feet"),
  12751. weight: math.unit(150, "lb"),
  12752. name: "Front",
  12753. image: {
  12754. source: "./media/characters/drusilla/front.svg",
  12755. extra: 678 / 635,
  12756. bottom: 0.03
  12757. }
  12758. },
  12759. back: {
  12760. height: math.unit(6, "feet"),
  12761. weight: math.unit(150, "lb"),
  12762. name: "Back",
  12763. image: {
  12764. source: "./media/characters/drusilla/back.svg",
  12765. extra: 678 / 635,
  12766. bottom: 0.005
  12767. }
  12768. },
  12769. },
  12770. [
  12771. {
  12772. name: "Macro",
  12773. height: math.unit(100, "feet")
  12774. },
  12775. {
  12776. name: "Canon Height",
  12777. height: math.unit(2000, "feet"),
  12778. default: true
  12779. },
  12780. ]
  12781. ))
  12782. characterMakers.push(() => makeCharacter(
  12783. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12784. {
  12785. front: {
  12786. height: math.unit(6, "feet"),
  12787. weight: math.unit(180, "lb"),
  12788. name: "Front",
  12789. image: {
  12790. source: "./media/characters/renard-thatch/front.svg",
  12791. extra: 2411 / 2275,
  12792. bottom: 0.01
  12793. }
  12794. },
  12795. frontPosing: {
  12796. height: math.unit(6, "feet"),
  12797. weight: math.unit(180, "lb"),
  12798. name: "Front (Posing)",
  12799. image: {
  12800. source: "./media/characters/renard-thatch/front-posing.svg",
  12801. extra: 2381 / 2261,
  12802. bottom: 0.01
  12803. }
  12804. },
  12805. back: {
  12806. height: math.unit(6, "feet"),
  12807. weight: math.unit(180, "lb"),
  12808. name: "Back",
  12809. image: {
  12810. source: "./media/characters/renard-thatch/back.svg",
  12811. extra: 2428 / 2288
  12812. }
  12813. },
  12814. },
  12815. [
  12816. {
  12817. name: "Micro",
  12818. height: math.unit(3, "inches")
  12819. },
  12820. {
  12821. name: "Default",
  12822. height: math.unit(6, "feet"),
  12823. default: true
  12824. },
  12825. {
  12826. name: "Macro",
  12827. height: math.unit(75, "feet")
  12828. },
  12829. ]
  12830. ))
  12831. characterMakers.push(() => makeCharacter(
  12832. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12833. {
  12834. front: {
  12835. height: math.unit(1450, "feet"),
  12836. weight: math.unit(1.21e6, "tons"),
  12837. name: "Front",
  12838. image: {
  12839. source: "./media/characters/sekvra/front.svg",
  12840. extra: 1,
  12841. bottom: 0.03
  12842. }
  12843. },
  12844. frontClothed: {
  12845. height: math.unit(1450, "feet"),
  12846. weight: math.unit(1.21e6, "tons"),
  12847. name: "Front (Clothed)",
  12848. image: {
  12849. source: "./media/characters/sekvra/front-clothed.svg",
  12850. extra: 1,
  12851. bottom: 0.03
  12852. }
  12853. },
  12854. side: {
  12855. height: math.unit(1450, "feet"),
  12856. weight: math.unit(1.21e6, "tons"),
  12857. name: "Side",
  12858. image: {
  12859. source: "./media/characters/sekvra/side.svg",
  12860. extra: 1,
  12861. bottom: 0.025
  12862. }
  12863. },
  12864. back: {
  12865. height: math.unit(1450, "feet"),
  12866. weight: math.unit(1.21e6, "tons"),
  12867. name: "Back",
  12868. image: {
  12869. source: "./media/characters/sekvra/back.svg",
  12870. extra: 1,
  12871. bottom: 0.005
  12872. }
  12873. },
  12874. },
  12875. [
  12876. {
  12877. name: "Macro",
  12878. height: math.unit(1450, "feet"),
  12879. default: true
  12880. },
  12881. {
  12882. name: "Megamacro",
  12883. height: math.unit(15000, "feet")
  12884. },
  12885. ]
  12886. ))
  12887. characterMakers.push(() => makeCharacter(
  12888. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12889. {
  12890. front: {
  12891. height: math.unit(6, "feet"),
  12892. weight: math.unit(150, "lb"),
  12893. name: "Front",
  12894. image: {
  12895. source: "./media/characters/carmine/front.svg",
  12896. extra: 1,
  12897. bottom: 0.035
  12898. }
  12899. },
  12900. frontArmor: {
  12901. height: math.unit(6, "feet"),
  12902. weight: math.unit(150, "lb"),
  12903. name: "Front (Armor)",
  12904. image: {
  12905. source: "./media/characters/carmine/front-armor.svg",
  12906. extra: 1,
  12907. bottom: 0.035
  12908. }
  12909. },
  12910. },
  12911. [
  12912. {
  12913. name: "Large",
  12914. height: math.unit(1, "mile")
  12915. },
  12916. {
  12917. name: "Huge",
  12918. height: math.unit(40, "miles"),
  12919. default: true
  12920. },
  12921. {
  12922. name: "Colossal",
  12923. height: math.unit(2500, "miles")
  12924. },
  12925. ]
  12926. ))
  12927. characterMakers.push(() => makeCharacter(
  12928. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12929. {
  12930. front: {
  12931. height: math.unit(6, "feet"),
  12932. weight: math.unit(150, "lb"),
  12933. name: "Front",
  12934. image: {
  12935. source: "./media/characters/elyssia/front.svg",
  12936. extra: 2201 / 2035,
  12937. bottom: 0.05
  12938. }
  12939. },
  12940. frontClothed: {
  12941. height: math.unit(6, "feet"),
  12942. weight: math.unit(150, "lb"),
  12943. name: "Front (Clothed)",
  12944. image: {
  12945. source: "./media/characters/elyssia/front-clothed.svg",
  12946. extra: 2201 / 2035,
  12947. bottom: 0.05
  12948. }
  12949. },
  12950. back: {
  12951. height: math.unit(6, "feet"),
  12952. weight: math.unit(150, "lb"),
  12953. name: "Back",
  12954. image: {
  12955. source: "./media/characters/elyssia/back.svg",
  12956. extra: 2201 / 2035,
  12957. bottom: 0.013
  12958. }
  12959. },
  12960. },
  12961. [
  12962. {
  12963. name: "Smaller",
  12964. height: math.unit(150, "feet")
  12965. },
  12966. {
  12967. name: "Standard",
  12968. height: math.unit(1400, "feet"),
  12969. default: true
  12970. },
  12971. {
  12972. name: "Distracted",
  12973. height: math.unit(15000, "feet")
  12974. },
  12975. ]
  12976. ))
  12977. characterMakers.push(() => makeCharacter(
  12978. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12979. {
  12980. front: {
  12981. height: math.unit(7 + 4 / 12, "feet"),
  12982. weight: math.unit(500, "lb"),
  12983. name: "Front",
  12984. image: {
  12985. source: "./media/characters/geno-maxwell/front.svg",
  12986. extra: 2207 / 2040,
  12987. bottom: 0.015
  12988. }
  12989. },
  12990. },
  12991. [
  12992. {
  12993. name: "Micro",
  12994. height: math.unit(3, "inches")
  12995. },
  12996. {
  12997. name: "Normal",
  12998. height: math.unit(7 + 4 / 12, "feet"),
  12999. default: true
  13000. },
  13001. {
  13002. name: "Macro",
  13003. height: math.unit(220, "feet")
  13004. },
  13005. {
  13006. name: "Megamacro",
  13007. height: math.unit(11, "miles")
  13008. },
  13009. ]
  13010. ))
  13011. characterMakers.push(() => makeCharacter(
  13012. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13013. {
  13014. front: {
  13015. height: math.unit(7 + 4 / 12, "feet"),
  13016. weight: math.unit(500, "lb"),
  13017. name: "Front",
  13018. image: {
  13019. source: "./media/characters/regena-maxwell/front.svg",
  13020. extra: 3115 / 2770,
  13021. bottom: 0.02
  13022. }
  13023. },
  13024. },
  13025. [
  13026. {
  13027. name: "Normal",
  13028. height: math.unit(7 + 4 / 12, "feet"),
  13029. default: true
  13030. },
  13031. {
  13032. name: "Macro",
  13033. height: math.unit(220, "feet")
  13034. },
  13035. {
  13036. name: "Megamacro",
  13037. height: math.unit(11, "miles")
  13038. },
  13039. ]
  13040. ))
  13041. characterMakers.push(() => makeCharacter(
  13042. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13043. {
  13044. front: {
  13045. height: math.unit(6, "feet"),
  13046. weight: math.unit(150, "lb"),
  13047. name: "Front",
  13048. image: {
  13049. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13050. extra: 860 / 690,
  13051. bottom: 0.03
  13052. }
  13053. },
  13054. },
  13055. [
  13056. {
  13057. name: "Normal",
  13058. height: math.unit(1.7, "meters"),
  13059. default: true
  13060. },
  13061. ]
  13062. ))
  13063. characterMakers.push(() => makeCharacter(
  13064. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13065. {
  13066. front: {
  13067. height: math.unit(6, "feet"),
  13068. weight: math.unit(150, "lb"),
  13069. name: "Front",
  13070. image: {
  13071. source: "./media/characters/quilly/front.svg",
  13072. extra: 890 / 776
  13073. }
  13074. },
  13075. },
  13076. [
  13077. {
  13078. name: "Gigamacro",
  13079. height: math.unit(404090, "miles"),
  13080. default: true
  13081. },
  13082. ]
  13083. ))
  13084. characterMakers.push(() => makeCharacter(
  13085. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13086. {
  13087. front: {
  13088. height: math.unit(7 + 8 / 12, "feet"),
  13089. weight: math.unit(350, "lb"),
  13090. name: "Front",
  13091. image: {
  13092. source: "./media/characters/tempest/front.svg",
  13093. extra: 1175 / 1086,
  13094. bottom: 0.02
  13095. }
  13096. },
  13097. },
  13098. [
  13099. {
  13100. name: "Normal",
  13101. height: math.unit(7 + 8 / 12, "feet"),
  13102. default: true
  13103. },
  13104. ]
  13105. ))
  13106. characterMakers.push(() => makeCharacter(
  13107. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13108. {
  13109. side: {
  13110. height: math.unit(4 + 5 / 12, "feet"),
  13111. weight: math.unit(80, "lb"),
  13112. name: "Side",
  13113. image: {
  13114. source: "./media/characters/rodger/side.svg",
  13115. extra: 1235 / 1118
  13116. }
  13117. },
  13118. },
  13119. [
  13120. {
  13121. name: "Micro",
  13122. height: math.unit(1, "inch")
  13123. },
  13124. {
  13125. name: "Normal",
  13126. height: math.unit(4 + 5 / 12, "feet"),
  13127. default: true
  13128. },
  13129. {
  13130. name: "Macro",
  13131. height: math.unit(120, "feet")
  13132. },
  13133. ]
  13134. ))
  13135. characterMakers.push(() => makeCharacter(
  13136. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13137. {
  13138. front: {
  13139. height: math.unit(6, "feet"),
  13140. weight: math.unit(150, "lb"),
  13141. name: "Front",
  13142. image: {
  13143. source: "./media/characters/danyel/front.svg",
  13144. extra: 1185 / 1123,
  13145. bottom: 0.05
  13146. }
  13147. },
  13148. },
  13149. [
  13150. {
  13151. name: "Shrunken",
  13152. height: math.unit(0.5, "mm")
  13153. },
  13154. {
  13155. name: "Micro",
  13156. height: math.unit(1, "mm"),
  13157. default: true
  13158. },
  13159. {
  13160. name: "Upsized",
  13161. height: math.unit(5 + 5 / 12, "feet")
  13162. },
  13163. ]
  13164. ))
  13165. characterMakers.push(() => makeCharacter(
  13166. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13167. {
  13168. front: {
  13169. height: math.unit(5 + 6 / 12, "feet"),
  13170. weight: math.unit(200, "lb"),
  13171. name: "Front",
  13172. image: {
  13173. source: "./media/characters/vivian-bijoux/front.svg",
  13174. extra: 1,
  13175. bottom: 0.072
  13176. }
  13177. },
  13178. },
  13179. [
  13180. {
  13181. name: "Normal",
  13182. height: math.unit(5 + 6 / 12, "feet"),
  13183. default: true
  13184. },
  13185. {
  13186. name: "Bad Dream",
  13187. height: math.unit(500, "feet")
  13188. },
  13189. {
  13190. name: "Nightmare",
  13191. height: math.unit(500, "miles")
  13192. },
  13193. ]
  13194. ))
  13195. characterMakers.push(() => makeCharacter(
  13196. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13197. {
  13198. front: {
  13199. height: math.unit(6 + 1 / 12, "feet"),
  13200. weight: math.unit(260, "lb"),
  13201. name: "Front",
  13202. image: {
  13203. source: "./media/characters/zeta/front.svg",
  13204. extra: 1968 / 1889,
  13205. bottom: 0.06
  13206. }
  13207. },
  13208. back: {
  13209. height: math.unit(6 + 1 / 12, "feet"),
  13210. weight: math.unit(260, "lb"),
  13211. name: "Back",
  13212. image: {
  13213. source: "./media/characters/zeta/back.svg",
  13214. extra: 1944 / 1858,
  13215. bottom: 0.03
  13216. }
  13217. },
  13218. hand: {
  13219. height: math.unit(1.112, "feet"),
  13220. name: "Hand",
  13221. image: {
  13222. source: "./media/characters/zeta/hand.svg"
  13223. }
  13224. },
  13225. foot: {
  13226. height: math.unit(1.48, "feet"),
  13227. name: "Foot",
  13228. image: {
  13229. source: "./media/characters/zeta/foot.svg"
  13230. }
  13231. },
  13232. },
  13233. [
  13234. {
  13235. name: "Micro",
  13236. height: math.unit(6, "inches")
  13237. },
  13238. {
  13239. name: "Normal",
  13240. height: math.unit(6 + 1 / 12, "feet"),
  13241. default: true
  13242. },
  13243. {
  13244. name: "Macro",
  13245. height: math.unit(20, "feet")
  13246. },
  13247. ]
  13248. ))
  13249. characterMakers.push(() => makeCharacter(
  13250. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13251. {
  13252. front: {
  13253. height: math.unit(6, "feet"),
  13254. weight: math.unit(150, "lb"),
  13255. name: "Front",
  13256. image: {
  13257. source: "./media/characters/jamie-larsen/front.svg",
  13258. extra: 962 / 933,
  13259. bottom: 0.02
  13260. }
  13261. },
  13262. back: {
  13263. height: math.unit(6, "feet"),
  13264. weight: math.unit(150, "lb"),
  13265. name: "Back",
  13266. image: {
  13267. source: "./media/characters/jamie-larsen/back.svg",
  13268. extra: 997 / 946
  13269. }
  13270. },
  13271. },
  13272. [
  13273. {
  13274. name: "Macro",
  13275. height: math.unit(28 + 7 / 12, "feet"),
  13276. default: true
  13277. },
  13278. {
  13279. name: "Macro+",
  13280. height: math.unit(180, "feet")
  13281. },
  13282. {
  13283. name: "Megamacro",
  13284. height: math.unit(10, "miles")
  13285. },
  13286. {
  13287. name: "Gigamacro",
  13288. height: math.unit(200000, "miles")
  13289. },
  13290. ]
  13291. ))
  13292. characterMakers.push(() => makeCharacter(
  13293. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13294. {
  13295. front: {
  13296. height: math.unit(6, "feet"),
  13297. weight: math.unit(120, "lb"),
  13298. name: "Front",
  13299. image: {
  13300. source: "./media/characters/vance/front.svg",
  13301. extra: 1980 / 1890,
  13302. bottom: 0.09
  13303. }
  13304. },
  13305. back: {
  13306. height: math.unit(6, "feet"),
  13307. weight: math.unit(120, "lb"),
  13308. name: "Back",
  13309. image: {
  13310. source: "./media/characters/vance/back.svg",
  13311. extra: 2081 / 1994,
  13312. bottom: 0.014
  13313. }
  13314. },
  13315. hand: {
  13316. height: math.unit(0.88, "feet"),
  13317. name: "Hand",
  13318. image: {
  13319. source: "./media/characters/vance/hand.svg"
  13320. }
  13321. },
  13322. foot: {
  13323. height: math.unit(0.64, "feet"),
  13324. name: "Foot",
  13325. image: {
  13326. source: "./media/characters/vance/foot.svg"
  13327. }
  13328. },
  13329. },
  13330. [
  13331. {
  13332. name: "Small",
  13333. height: math.unit(90, "feet"),
  13334. default: true
  13335. },
  13336. {
  13337. name: "Macro",
  13338. height: math.unit(100, "meters")
  13339. },
  13340. {
  13341. name: "Megamacro",
  13342. height: math.unit(15, "miles")
  13343. },
  13344. ]
  13345. ))
  13346. characterMakers.push(() => makeCharacter(
  13347. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13348. {
  13349. front: {
  13350. height: math.unit(6, "feet"),
  13351. weight: math.unit(180, "lb"),
  13352. name: "Front",
  13353. image: {
  13354. source: "./media/characters/xochitl/front.svg",
  13355. extra: 2297 / 2261,
  13356. bottom: 0.065
  13357. }
  13358. },
  13359. back: {
  13360. height: math.unit(6, "feet"),
  13361. weight: math.unit(180, "lb"),
  13362. name: "Back",
  13363. image: {
  13364. source: "./media/characters/xochitl/back.svg",
  13365. extra: 2386 / 2354,
  13366. bottom: 0.01
  13367. }
  13368. },
  13369. foot: {
  13370. height: math.unit(6 / 5 * 1.15, "feet"),
  13371. weight: math.unit(150, "lb"),
  13372. name: "Foot",
  13373. image: {
  13374. source: "./media/characters/xochitl/foot.svg"
  13375. }
  13376. },
  13377. },
  13378. [
  13379. {
  13380. name: "Macro",
  13381. height: math.unit(80, "feet")
  13382. },
  13383. {
  13384. name: "Macro+",
  13385. height: math.unit(400, "feet"),
  13386. default: true
  13387. },
  13388. {
  13389. name: "Gigamacro",
  13390. height: math.unit(80000, "miles")
  13391. },
  13392. {
  13393. name: "Gigamacro+",
  13394. height: math.unit(400000, "miles")
  13395. },
  13396. {
  13397. name: "Teramacro",
  13398. height: math.unit(300, "AU")
  13399. },
  13400. ]
  13401. ))
  13402. characterMakers.push(() => makeCharacter(
  13403. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13404. {
  13405. front: {
  13406. height: math.unit(6, "feet"),
  13407. weight: math.unit(150, "lb"),
  13408. name: "Front",
  13409. image: {
  13410. source: "./media/characters/vincent/front.svg",
  13411. extra: 1130 / 1080,
  13412. bottom: 0.055
  13413. }
  13414. },
  13415. beak: {
  13416. height: math.unit(6 * 0.1, "feet"),
  13417. name: "Beak",
  13418. image: {
  13419. source: "./media/characters/vincent/beak.svg"
  13420. }
  13421. },
  13422. hand: {
  13423. height: math.unit(6 * 0.85, "feet"),
  13424. weight: math.unit(150, "lb"),
  13425. name: "Hand",
  13426. image: {
  13427. source: "./media/characters/vincent/hand.svg"
  13428. }
  13429. },
  13430. foot: {
  13431. height: math.unit(6 * 0.19, "feet"),
  13432. weight: math.unit(150, "lb"),
  13433. name: "Foot",
  13434. image: {
  13435. source: "./media/characters/vincent/foot.svg"
  13436. }
  13437. },
  13438. },
  13439. [
  13440. {
  13441. name: "Base",
  13442. height: math.unit(6 + 5 / 12, "feet"),
  13443. default: true
  13444. },
  13445. {
  13446. name: "Macro",
  13447. height: math.unit(300, "feet")
  13448. },
  13449. {
  13450. name: "Megamacro",
  13451. height: math.unit(2, "miles")
  13452. },
  13453. {
  13454. name: "Gigamacro",
  13455. height: math.unit(1000, "miles")
  13456. },
  13457. ]
  13458. ))
  13459. characterMakers.push(() => makeCharacter(
  13460. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13461. {
  13462. front: {
  13463. height: math.unit(2, "meters"),
  13464. weight: math.unit(500, "kg"),
  13465. name: "Front",
  13466. image: {
  13467. source: "./media/characters/coatl/front.svg",
  13468. extra: 3948 / 3500,
  13469. bottom: 0.082
  13470. }
  13471. },
  13472. },
  13473. [
  13474. {
  13475. name: "Normal",
  13476. height: math.unit(4, "meters")
  13477. },
  13478. {
  13479. name: "Macro",
  13480. height: math.unit(100, "meters"),
  13481. default: true
  13482. },
  13483. {
  13484. name: "Macro+",
  13485. height: math.unit(300, "meters")
  13486. },
  13487. {
  13488. name: "Megamacro",
  13489. height: math.unit(3, "gigameters")
  13490. },
  13491. {
  13492. name: "Megamacro+",
  13493. height: math.unit(300, "terameters")
  13494. },
  13495. {
  13496. name: "Megamacro++",
  13497. height: math.unit(3, "lightyears")
  13498. },
  13499. ]
  13500. ))
  13501. characterMakers.push(() => makeCharacter(
  13502. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13503. {
  13504. front: {
  13505. height: math.unit(6, "feet"),
  13506. weight: math.unit(50, "kg"),
  13507. name: "front",
  13508. image: {
  13509. source: "./media/characters/shiroryu/front.svg",
  13510. extra: 1990 / 1935
  13511. }
  13512. },
  13513. },
  13514. [
  13515. {
  13516. name: "Mortal Mingling",
  13517. height: math.unit(3, "meters")
  13518. },
  13519. {
  13520. name: "Kaiju-ish",
  13521. height: math.unit(250, "meters")
  13522. },
  13523. {
  13524. name: "Somewhat Godly",
  13525. height: math.unit(400, "km"),
  13526. default: true
  13527. },
  13528. {
  13529. name: "Planetary",
  13530. height: math.unit(300, "megameters")
  13531. },
  13532. {
  13533. name: "Galaxy-dwarfing",
  13534. height: math.unit(450, "kiloparsecs")
  13535. },
  13536. {
  13537. name: "Universe Eater",
  13538. height: math.unit(150, "gigaparsecs")
  13539. },
  13540. {
  13541. name: "Almost Immeasurable",
  13542. height: math.unit(1.3e266, "yottaparsecs")
  13543. },
  13544. ]
  13545. ))
  13546. characterMakers.push(() => makeCharacter(
  13547. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13548. {
  13549. front: {
  13550. height: math.unit(6, "feet"),
  13551. weight: math.unit(150, "lb"),
  13552. name: "Front",
  13553. image: {
  13554. source: "./media/characters/umeko/front.svg",
  13555. extra: 1,
  13556. bottom: 0.019
  13557. }
  13558. },
  13559. frontArmored: {
  13560. height: math.unit(6, "feet"),
  13561. weight: math.unit(150, "lb"),
  13562. name: "Front (Armored)",
  13563. image: {
  13564. source: "./media/characters/umeko/front-armored.svg",
  13565. extra: 1,
  13566. bottom: 0.021
  13567. }
  13568. },
  13569. },
  13570. [
  13571. {
  13572. name: "Macro",
  13573. height: math.unit(220, "feet"),
  13574. default: true
  13575. },
  13576. {
  13577. name: "Guardian Dragon",
  13578. height: math.unit(50, "miles")
  13579. },
  13580. {
  13581. name: "Cosmic",
  13582. height: math.unit(800000, "miles")
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13588. {
  13589. front: {
  13590. height: math.unit(6, "feet"),
  13591. weight: math.unit(150, "lb"),
  13592. name: "Front",
  13593. image: {
  13594. source: "./media/characters/cassidy/front.svg",
  13595. extra: 1,
  13596. bottom: 0.043
  13597. }
  13598. },
  13599. },
  13600. [
  13601. {
  13602. name: "Canon Height",
  13603. height: math.unit(120, "feet"),
  13604. default: true
  13605. },
  13606. {
  13607. name: "Macro+",
  13608. height: math.unit(400, "feet")
  13609. },
  13610. {
  13611. name: "Macro++",
  13612. height: math.unit(4000, "feet")
  13613. },
  13614. {
  13615. name: "Megamacro",
  13616. height: math.unit(3, "miles")
  13617. },
  13618. ]
  13619. ))
  13620. characterMakers.push(() => makeCharacter(
  13621. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13622. {
  13623. front: {
  13624. height: math.unit(6, "feet"),
  13625. weight: math.unit(150, "lb"),
  13626. name: "Front",
  13627. image: {
  13628. source: "./media/characters/isaac/front.svg",
  13629. extra: 896 / 815,
  13630. bottom: 0.11
  13631. }
  13632. },
  13633. },
  13634. [
  13635. {
  13636. name: "Human Size",
  13637. height: math.unit(8, "feet"),
  13638. default: true
  13639. },
  13640. {
  13641. name: "Macro",
  13642. height: math.unit(400, "feet")
  13643. },
  13644. {
  13645. name: "Megamacro",
  13646. height: math.unit(50, "miles")
  13647. },
  13648. {
  13649. name: "Canon Height",
  13650. height: math.unit(200, "AU")
  13651. },
  13652. ]
  13653. ))
  13654. characterMakers.push(() => makeCharacter(
  13655. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13656. {
  13657. front: {
  13658. height: math.unit(6, "feet"),
  13659. weight: math.unit(72, "kg"),
  13660. name: "Front",
  13661. image: {
  13662. source: "./media/characters/sleekit/front.svg",
  13663. extra: 4693 / 4487,
  13664. bottom: 0.012
  13665. }
  13666. },
  13667. },
  13668. [
  13669. {
  13670. name: "Minimum Height",
  13671. height: math.unit(10, "meters")
  13672. },
  13673. {
  13674. name: "Smaller",
  13675. height: math.unit(25, "meters")
  13676. },
  13677. {
  13678. name: "Larger",
  13679. height: math.unit(38, "meters"),
  13680. default: true
  13681. },
  13682. {
  13683. name: "Maximum height",
  13684. height: math.unit(100, "meters")
  13685. },
  13686. ]
  13687. ))
  13688. characterMakers.push(() => makeCharacter(
  13689. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13690. {
  13691. front: {
  13692. height: math.unit(6, "feet"),
  13693. weight: math.unit(150, "lb"),
  13694. name: "Front",
  13695. image: {
  13696. source: "./media/characters/nillia/front.svg",
  13697. extra: 2195 / 2037,
  13698. bottom: 0.005
  13699. }
  13700. },
  13701. back: {
  13702. height: math.unit(6, "feet"),
  13703. weight: math.unit(150, "lb"),
  13704. name: "Back",
  13705. image: {
  13706. source: "./media/characters/nillia/back.svg",
  13707. extra: 2195 / 2037,
  13708. bottom: 0.005
  13709. }
  13710. },
  13711. },
  13712. [
  13713. {
  13714. name: "Canon Height",
  13715. height: math.unit(489, "feet"),
  13716. default: true
  13717. }
  13718. ]
  13719. ))
  13720. characterMakers.push(() => makeCharacter(
  13721. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13722. {
  13723. front: {
  13724. height: math.unit(6, "feet"),
  13725. weight: math.unit(150, "lb"),
  13726. name: "Front",
  13727. image: {
  13728. source: "./media/characters/mesmyriza/front.svg",
  13729. extra: 2067 / 1784,
  13730. bottom: 0.035
  13731. }
  13732. },
  13733. foot: {
  13734. height: math.unit(6 / (250 / 35), "feet"),
  13735. name: "Foot",
  13736. image: {
  13737. source: "./media/characters/mesmyriza/foot.svg"
  13738. }
  13739. },
  13740. },
  13741. [
  13742. {
  13743. name: "Macro",
  13744. height: math.unit(457, "meters"),
  13745. default: true
  13746. },
  13747. {
  13748. name: "Megamacro",
  13749. height: math.unit(8, "megameters")
  13750. },
  13751. ]
  13752. ))
  13753. characterMakers.push(() => makeCharacter(
  13754. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13755. {
  13756. front: {
  13757. height: math.unit(6, "feet"),
  13758. weight: math.unit(250, "lb"),
  13759. name: "Front",
  13760. image: {
  13761. source: "./media/characters/saudade/front.svg",
  13762. extra: 1172 / 1139,
  13763. bottom: 0.035
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "Micro",
  13770. height: math.unit(3, "inches")
  13771. },
  13772. {
  13773. name: "Normal",
  13774. height: math.unit(6, "feet"),
  13775. default: true
  13776. },
  13777. {
  13778. name: "Macro",
  13779. height: math.unit(50, "feet")
  13780. },
  13781. {
  13782. name: "Megamacro",
  13783. height: math.unit(2800, "feet")
  13784. },
  13785. ]
  13786. ))
  13787. characterMakers.push(() => makeCharacter(
  13788. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13789. {
  13790. front: {
  13791. height: math.unit(5 + 4 / 12, "feet"),
  13792. weight: math.unit(100, "lb"),
  13793. name: "Front",
  13794. image: {
  13795. source: "./media/characters/keireer/front.svg",
  13796. extra: 716 / 666,
  13797. bottom: 0.05
  13798. }
  13799. },
  13800. },
  13801. [
  13802. {
  13803. name: "Normal",
  13804. height: math.unit(5 + 4 / 12, "feet"),
  13805. default: true
  13806. },
  13807. ]
  13808. ))
  13809. characterMakers.push(() => makeCharacter(
  13810. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13811. {
  13812. front: {
  13813. height: math.unit(6, "feet"),
  13814. weight: math.unit(90, "kg"),
  13815. name: "Front",
  13816. image: {
  13817. source: "./media/characters/mirja/front.svg",
  13818. extra: 1789 / 1683,
  13819. bottom: 0.05
  13820. }
  13821. },
  13822. frontDressed: {
  13823. height: math.unit(6, "feet"),
  13824. weight: math.unit(90, "lb"),
  13825. name: "Front (Dressed)",
  13826. image: {
  13827. source: "./media/characters/mirja/front-dressed.svg",
  13828. extra: 1789 / 1683,
  13829. bottom: 0.05
  13830. }
  13831. },
  13832. back: {
  13833. height: math.unit(6, "feet"),
  13834. weight: math.unit(90, "lb"),
  13835. name: "Back",
  13836. image: {
  13837. source: "./media/characters/mirja/back.svg",
  13838. extra: 953 / 917,
  13839. bottom: 0.017
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "\"Incognito\"",
  13846. height: math.unit(3, "meters")
  13847. },
  13848. {
  13849. name: "Strolling Size",
  13850. height: math.unit(15, "km")
  13851. },
  13852. {
  13853. name: "Larger Strolling Size",
  13854. height: math.unit(400, "km")
  13855. },
  13856. {
  13857. name: "Preferred Size",
  13858. height: math.unit(5000, "km")
  13859. },
  13860. {
  13861. name: "True Size",
  13862. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13863. default: true
  13864. },
  13865. ]
  13866. ))
  13867. characterMakers.push(() => makeCharacter(
  13868. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13869. {
  13870. front: {
  13871. height: math.unit(15, "feet"),
  13872. weight: math.unit(880, "kg"),
  13873. name: "Front",
  13874. image: {
  13875. source: "./media/characters/nightraver/front.svg",
  13876. extra: 2444 / 2160,
  13877. bottom: 0.027
  13878. }
  13879. },
  13880. back: {
  13881. height: math.unit(15, "feet"),
  13882. weight: math.unit(880, "kg"),
  13883. name: "Back",
  13884. image: {
  13885. source: "./media/characters/nightraver/back.svg",
  13886. extra: 2309 / 2180,
  13887. bottom: 0.005
  13888. }
  13889. },
  13890. sole: {
  13891. height: math.unit(2.878, "feet"),
  13892. name: "Sole",
  13893. image: {
  13894. source: "./media/characters/nightraver/sole.svg"
  13895. }
  13896. },
  13897. foot: {
  13898. height: math.unit(2.285, "feet"),
  13899. name: "Foot",
  13900. image: {
  13901. source: "./media/characters/nightraver/foot.svg"
  13902. }
  13903. },
  13904. maw: {
  13905. height: math.unit(2.67, "feet"),
  13906. name: "Maw",
  13907. image: {
  13908. source: "./media/characters/nightraver/maw.svg"
  13909. }
  13910. },
  13911. },
  13912. [
  13913. {
  13914. name: "Micro",
  13915. height: math.unit(1, "cm")
  13916. },
  13917. {
  13918. name: "Normal",
  13919. height: math.unit(15, "feet"),
  13920. default: true
  13921. },
  13922. {
  13923. name: "Macro",
  13924. height: math.unit(300, "feet")
  13925. },
  13926. {
  13927. name: "Megamacro",
  13928. height: math.unit(300, "miles")
  13929. },
  13930. {
  13931. name: "Gigamacro",
  13932. height: math.unit(10000, "miles")
  13933. },
  13934. ]
  13935. ))
  13936. characterMakers.push(() => makeCharacter(
  13937. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13938. {
  13939. side: {
  13940. height: math.unit(2, "inches"),
  13941. weight: math.unit(5, "grams"),
  13942. name: "Side",
  13943. image: {
  13944. source: "./media/characters/arc/side.svg"
  13945. }
  13946. },
  13947. },
  13948. [
  13949. {
  13950. name: "Micro",
  13951. height: math.unit(2, "inches"),
  13952. default: true
  13953. },
  13954. ]
  13955. ))
  13956. characterMakers.push(() => makeCharacter(
  13957. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13958. {
  13959. front: {
  13960. height: math.unit(1.1938, "meters"),
  13961. weight: math.unit(54, "kg"),
  13962. name: "Front",
  13963. image: {
  13964. source: "./media/characters/nebula-shahar/front.svg",
  13965. extra: 1642 / 1436,
  13966. bottom: 0.06
  13967. }
  13968. },
  13969. },
  13970. [
  13971. {
  13972. name: "Megamicro",
  13973. height: math.unit(0.3, "mm")
  13974. },
  13975. {
  13976. name: "Micro",
  13977. height: math.unit(3, "cm")
  13978. },
  13979. {
  13980. name: "Normal",
  13981. height: math.unit(138, "cm"),
  13982. default: true
  13983. },
  13984. {
  13985. name: "Macro",
  13986. height: math.unit(30, "m")
  13987. },
  13988. ]
  13989. ))
  13990. characterMakers.push(() => makeCharacter(
  13991. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13992. {
  13993. front: {
  13994. height: math.unit(5.24, "feet"),
  13995. weight: math.unit(150, "lb"),
  13996. name: "Front",
  13997. image: {
  13998. source: "./media/characters/shayla/front.svg",
  13999. extra: 1512 / 1414,
  14000. bottom: 0.01
  14001. }
  14002. },
  14003. back: {
  14004. height: math.unit(5.24, "feet"),
  14005. weight: math.unit(150, "lb"),
  14006. name: "Back",
  14007. image: {
  14008. source: "./media/characters/shayla/back.svg",
  14009. extra: 1512 / 1414
  14010. }
  14011. },
  14012. hand: {
  14013. height: math.unit(0.7781496062992126, "feet"),
  14014. name: "Hand",
  14015. image: {
  14016. source: "./media/characters/shayla/hand.svg"
  14017. }
  14018. },
  14019. foot: {
  14020. height: math.unit(1.4206036745406823, "feet"),
  14021. name: "Foot",
  14022. image: {
  14023. source: "./media/characters/shayla/foot.svg"
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Micro",
  14030. height: math.unit(0.32, "feet")
  14031. },
  14032. {
  14033. name: "Normal",
  14034. height: math.unit(5.24, "feet"),
  14035. default: true
  14036. },
  14037. {
  14038. name: "Macro",
  14039. height: math.unit(492.12, "feet")
  14040. },
  14041. {
  14042. name: "Megamacro",
  14043. height: math.unit(186.41, "miles")
  14044. },
  14045. ]
  14046. ))
  14047. characterMakers.push(() => makeCharacter(
  14048. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14049. {
  14050. front: {
  14051. height: math.unit(2.2, "m"),
  14052. weight: math.unit(120, "kg"),
  14053. name: "Front",
  14054. image: {
  14055. source: "./media/characters/pia-jr/front.svg",
  14056. extra: 1000 / 970,
  14057. bottom: 0.035
  14058. }
  14059. },
  14060. hand: {
  14061. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14062. name: "Hand",
  14063. image: {
  14064. source: "./media/characters/pia-jr/hand.svg"
  14065. }
  14066. },
  14067. paw: {
  14068. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14069. name: "Paw",
  14070. image: {
  14071. source: "./media/characters/pia-jr/paw.svg"
  14072. }
  14073. },
  14074. },
  14075. [
  14076. {
  14077. name: "Micro",
  14078. height: math.unit(1.2, "cm")
  14079. },
  14080. {
  14081. name: "Normal",
  14082. height: math.unit(2.2, "m"),
  14083. default: true
  14084. },
  14085. {
  14086. name: "Macro",
  14087. height: math.unit(180, "m")
  14088. },
  14089. {
  14090. name: "Megamacro",
  14091. height: math.unit(420, "km")
  14092. },
  14093. ]
  14094. ))
  14095. characterMakers.push(() => makeCharacter(
  14096. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14097. {
  14098. front: {
  14099. height: math.unit(2, "m"),
  14100. weight: math.unit(115, "kg"),
  14101. name: "Front",
  14102. image: {
  14103. source: "./media/characters/pia-sr/front.svg",
  14104. extra: 760 / 730,
  14105. bottom: 0.015
  14106. }
  14107. },
  14108. back: {
  14109. height: math.unit(2, "m"),
  14110. weight: math.unit(115, "kg"),
  14111. name: "Back",
  14112. image: {
  14113. source: "./media/characters/pia-sr/back.svg",
  14114. extra: 760 / 730,
  14115. bottom: 0.01
  14116. }
  14117. },
  14118. hand: {
  14119. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14120. name: "Hand",
  14121. image: {
  14122. source: "./media/characters/pia-sr/hand.svg"
  14123. }
  14124. },
  14125. foot: {
  14126. height: math.unit(1.83, "feet"),
  14127. name: "Foot",
  14128. image: {
  14129. source: "./media/characters/pia-sr/foot.svg"
  14130. }
  14131. },
  14132. },
  14133. [
  14134. {
  14135. name: "Micro",
  14136. height: math.unit(88, "mm")
  14137. },
  14138. {
  14139. name: "Normal",
  14140. height: math.unit(2, "m"),
  14141. default: true
  14142. },
  14143. {
  14144. name: "Macro",
  14145. height: math.unit(200, "m")
  14146. },
  14147. {
  14148. name: "Megamacro",
  14149. height: math.unit(420, "km")
  14150. },
  14151. ]
  14152. ))
  14153. characterMakers.push(() => makeCharacter(
  14154. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14155. {
  14156. front: {
  14157. height: math.unit(8 + 2 / 12, "feet"),
  14158. weight: math.unit(300, "lb"),
  14159. name: "Front",
  14160. image: {
  14161. source: "./media/characters/kibibyte/front.svg",
  14162. extra: 2221 / 2098,
  14163. bottom: 0.04
  14164. }
  14165. },
  14166. },
  14167. [
  14168. {
  14169. name: "Normal",
  14170. height: math.unit(8 + 2 / 12, "feet"),
  14171. default: true
  14172. },
  14173. {
  14174. name: "Socialable Macro",
  14175. height: math.unit(50, "feet")
  14176. },
  14177. {
  14178. name: "Macro",
  14179. height: math.unit(300, "feet")
  14180. },
  14181. {
  14182. name: "Megamacro",
  14183. height: math.unit(500, "miles")
  14184. },
  14185. ]
  14186. ))
  14187. characterMakers.push(() => makeCharacter(
  14188. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14189. {
  14190. front: {
  14191. height: math.unit(6, "feet"),
  14192. weight: math.unit(150, "lb"),
  14193. name: "Front",
  14194. image: {
  14195. source: "./media/characters/felix/front.svg",
  14196. extra: 762 / 722,
  14197. bottom: 0.02
  14198. }
  14199. },
  14200. frontClothed: {
  14201. height: math.unit(6, "feet"),
  14202. weight: math.unit(150, "lb"),
  14203. name: "Front (Clothed)",
  14204. image: {
  14205. source: "./media/characters/felix/front-clothed.svg",
  14206. extra: 762 / 722,
  14207. bottom: 0.02
  14208. }
  14209. },
  14210. },
  14211. [
  14212. {
  14213. name: "Normal",
  14214. height: math.unit(6 + 8 / 12, "feet"),
  14215. default: true
  14216. },
  14217. {
  14218. name: "Macro",
  14219. height: math.unit(2600, "feet")
  14220. },
  14221. {
  14222. name: "Megamacro",
  14223. height: math.unit(450, "miles")
  14224. },
  14225. ]
  14226. ))
  14227. characterMakers.push(() => makeCharacter(
  14228. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14229. {
  14230. front: {
  14231. height: math.unit(6 + 1 / 12, "feet"),
  14232. weight: math.unit(250, "lb"),
  14233. name: "Front",
  14234. image: {
  14235. source: "./media/characters/tobo/front.svg",
  14236. extra: 608 / 586,
  14237. bottom: 0.023
  14238. }
  14239. },
  14240. back: {
  14241. height: math.unit(6 + 1 / 12, "feet"),
  14242. weight: math.unit(250, "lb"),
  14243. name: "Back",
  14244. image: {
  14245. source: "./media/characters/tobo/back.svg",
  14246. extra: 608 / 586
  14247. }
  14248. },
  14249. },
  14250. [
  14251. {
  14252. name: "Nano",
  14253. height: math.unit(2, "nm")
  14254. },
  14255. {
  14256. name: "Megamicro",
  14257. height: math.unit(0.1, "mm")
  14258. },
  14259. {
  14260. name: "Micro",
  14261. height: math.unit(1, "inch"),
  14262. default: true
  14263. },
  14264. {
  14265. name: "Human-sized",
  14266. height: math.unit(6 + 1 / 12, "feet")
  14267. },
  14268. {
  14269. name: "Macro",
  14270. height: math.unit(250, "feet")
  14271. },
  14272. {
  14273. name: "Megamacro",
  14274. height: math.unit(75, "miles")
  14275. },
  14276. {
  14277. name: "Texas-sized",
  14278. height: math.unit(750, "miles")
  14279. },
  14280. {
  14281. name: "Teramacro",
  14282. height: math.unit(50000, "miles")
  14283. },
  14284. ]
  14285. ))
  14286. characterMakers.push(() => makeCharacter(
  14287. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14288. {
  14289. front: {
  14290. height: math.unit(6, "feet"),
  14291. weight: math.unit(269, "lb"),
  14292. name: "Front",
  14293. image: {
  14294. source: "./media/characters/danny-kapowsky/front.svg",
  14295. extra: 766 / 736,
  14296. bottom: 0.044
  14297. }
  14298. },
  14299. back: {
  14300. height: math.unit(6, "feet"),
  14301. weight: math.unit(269, "lb"),
  14302. name: "Back",
  14303. image: {
  14304. source: "./media/characters/danny-kapowsky/back.svg",
  14305. extra: 797 / 760,
  14306. bottom: 0.025
  14307. }
  14308. },
  14309. },
  14310. [
  14311. {
  14312. name: "Macro",
  14313. height: math.unit(150, "feet"),
  14314. default: true
  14315. },
  14316. {
  14317. name: "Macro+",
  14318. height: math.unit(200, "feet")
  14319. },
  14320. {
  14321. name: "Macro++",
  14322. height: math.unit(300, "feet")
  14323. },
  14324. {
  14325. name: "Macro+++",
  14326. height: math.unit(400, "feet")
  14327. },
  14328. ]
  14329. ))
  14330. characterMakers.push(() => makeCharacter(
  14331. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14332. {
  14333. side: {
  14334. height: math.unit(6, "feet"),
  14335. weight: math.unit(170, "lb"),
  14336. name: "Side",
  14337. image: {
  14338. source: "./media/characters/finn/side.svg",
  14339. extra: 1953 / 1807,
  14340. bottom: 0.057
  14341. }
  14342. },
  14343. },
  14344. [
  14345. {
  14346. name: "Megamacro",
  14347. height: math.unit(14445, "feet"),
  14348. default: true
  14349. },
  14350. ]
  14351. ))
  14352. characterMakers.push(() => makeCharacter(
  14353. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14354. {
  14355. front: {
  14356. height: math.unit(5 + 6 / 12, "feet"),
  14357. weight: math.unit(125, "lb"),
  14358. name: "Front",
  14359. image: {
  14360. source: "./media/characters/roy/front.svg",
  14361. extra: 1,
  14362. bottom: 0.11
  14363. }
  14364. },
  14365. },
  14366. [
  14367. {
  14368. name: "Micro",
  14369. height: math.unit(3, "inches"),
  14370. default: true
  14371. },
  14372. {
  14373. name: "Normal",
  14374. height: math.unit(5 + 6 / 12, "feet")
  14375. },
  14376. {
  14377. name: "Lesser Macro",
  14378. height: math.unit(60, "feet")
  14379. },
  14380. {
  14381. name: "Greater Macro",
  14382. height: math.unit(120, "feet")
  14383. },
  14384. ]
  14385. ))
  14386. characterMakers.push(() => makeCharacter(
  14387. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14388. {
  14389. front: {
  14390. height: math.unit(6, "feet"),
  14391. weight: math.unit(100, "lb"),
  14392. name: "Front",
  14393. image: {
  14394. source: "./media/characters/aevsivs/front.svg",
  14395. extra: 1,
  14396. bottom: 0.03
  14397. }
  14398. },
  14399. back: {
  14400. height: math.unit(6, "feet"),
  14401. weight: math.unit(100, "lb"),
  14402. name: "Back",
  14403. image: {
  14404. source: "./media/characters/aevsivs/back.svg"
  14405. }
  14406. },
  14407. },
  14408. [
  14409. {
  14410. name: "Micro",
  14411. height: math.unit(2, "inches"),
  14412. default: true
  14413. },
  14414. {
  14415. name: "Normal",
  14416. height: math.unit(5, "feet")
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14422. {
  14423. front: {
  14424. height: math.unit(5 + 7 / 12, "feet"),
  14425. weight: math.unit(159, "lb"),
  14426. name: "Front",
  14427. image: {
  14428. source: "./media/characters/hildegard/front.svg",
  14429. extra: 289 / 269,
  14430. bottom: 7.63 / 297.8
  14431. }
  14432. },
  14433. back: {
  14434. height: math.unit(5 + 7 / 12, "feet"),
  14435. weight: math.unit(159, "lb"),
  14436. name: "Back",
  14437. image: {
  14438. source: "./media/characters/hildegard/back.svg",
  14439. extra: 280 / 260,
  14440. bottom: 2.3 / 282
  14441. }
  14442. },
  14443. },
  14444. [
  14445. {
  14446. name: "Normal",
  14447. height: math.unit(5 + 7 / 12, "feet"),
  14448. default: true
  14449. },
  14450. ]
  14451. ))
  14452. characterMakers.push(() => makeCharacter(
  14453. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14454. {
  14455. bernard: {
  14456. height: math.unit(2 + 7 / 12, "feet"),
  14457. weight: math.unit(66, "lb"),
  14458. name: "Bernard",
  14459. rename: true,
  14460. image: {
  14461. source: "./media/characters/bernard-wilder/bernard.svg",
  14462. extra: 192 / 128,
  14463. bottom: 0.05
  14464. }
  14465. },
  14466. wilder: {
  14467. height: math.unit(5 + 8 / 12, "feet"),
  14468. weight: math.unit(143, "lb"),
  14469. name: "Wilder",
  14470. rename: true,
  14471. image: {
  14472. source: "./media/characters/bernard-wilder/wilder.svg",
  14473. extra: 361 / 312,
  14474. bottom: 0.02
  14475. }
  14476. },
  14477. },
  14478. [
  14479. {
  14480. name: "Normal",
  14481. height: math.unit(2 + 7 / 12, "feet"),
  14482. default: true
  14483. },
  14484. ]
  14485. ))
  14486. characterMakers.push(() => makeCharacter(
  14487. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14488. {
  14489. anthro: {
  14490. height: math.unit(6 + 1 / 12, "feet"),
  14491. weight: math.unit(155, "lb"),
  14492. name: "Anthro",
  14493. image: {
  14494. source: "./media/characters/hearth/anthro.svg",
  14495. extra: 260 / 250,
  14496. bottom: 0.02
  14497. }
  14498. },
  14499. feral: {
  14500. height: math.unit(3.78, "feet"),
  14501. weight: math.unit(35, "kg"),
  14502. name: "Feral",
  14503. image: {
  14504. source: "./media/characters/hearth/feral.svg",
  14505. extra: 153 / 135,
  14506. bottom: 0.03
  14507. }
  14508. },
  14509. },
  14510. [
  14511. {
  14512. name: "Normal",
  14513. height: math.unit(6 + 1 / 12, "feet"),
  14514. default: true
  14515. },
  14516. ]
  14517. ))
  14518. characterMakers.push(() => makeCharacter(
  14519. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14520. {
  14521. front: {
  14522. height: math.unit(6, "feet"),
  14523. weight: math.unit(182, "lb"),
  14524. name: "Front",
  14525. image: {
  14526. source: "./media/characters/ingrid/front.svg",
  14527. extra: 294 / 268,
  14528. bottom: 0.027
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Normal",
  14535. height: math.unit(6, "feet"),
  14536. default: true
  14537. },
  14538. ]
  14539. ))
  14540. characterMakers.push(() => makeCharacter(
  14541. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14542. {
  14543. eevee: {
  14544. height: math.unit(2 + 10 / 12, "feet"),
  14545. weight: math.unit(86, "lb"),
  14546. name: "Malgam",
  14547. image: {
  14548. source: "./media/characters/malgam/eevee.svg",
  14549. extra: 218 / 180,
  14550. bottom: 0.2
  14551. }
  14552. },
  14553. sylveon: {
  14554. height: math.unit(4, "feet"),
  14555. weight: math.unit(101, "lb"),
  14556. name: "Future Malgam",
  14557. rename: true,
  14558. image: {
  14559. source: "./media/characters/malgam/sylveon.svg",
  14560. extra: 371 / 325,
  14561. bottom: 0.015
  14562. }
  14563. },
  14564. gigantamax: {
  14565. height: math.unit(50, "feet"),
  14566. name: "Gigantamax Malgam",
  14567. rename: true,
  14568. image: {
  14569. source: "./media/characters/malgam/gigantamax.svg"
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Normal",
  14576. height: math.unit(2 + 10 / 12, "feet"),
  14577. default: true
  14578. },
  14579. ]
  14580. ))
  14581. characterMakers.push(() => makeCharacter(
  14582. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14583. {
  14584. front: {
  14585. height: math.unit(5 + 11 / 12, "feet"),
  14586. weight: math.unit(188, "lb"),
  14587. name: "Front",
  14588. image: {
  14589. source: "./media/characters/fleur/front.svg",
  14590. extra: 309 / 283,
  14591. bottom: 0.007
  14592. }
  14593. },
  14594. },
  14595. [
  14596. {
  14597. name: "Normal",
  14598. height: math.unit(5 + 11 / 12, "feet"),
  14599. default: true
  14600. },
  14601. ]
  14602. ))
  14603. characterMakers.push(() => makeCharacter(
  14604. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14605. {
  14606. front: {
  14607. height: math.unit(5 + 4 / 12, "feet"),
  14608. weight: math.unit(122, "lb"),
  14609. name: "Front",
  14610. image: {
  14611. source: "./media/characters/jude/front.svg",
  14612. extra: 288 / 273,
  14613. bottom: 0.03
  14614. }
  14615. },
  14616. },
  14617. [
  14618. {
  14619. name: "Normal",
  14620. height: math.unit(5 + 4 / 12, "feet"),
  14621. default: true
  14622. },
  14623. ]
  14624. ))
  14625. characterMakers.push(() => makeCharacter(
  14626. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14627. {
  14628. front: {
  14629. height: math.unit(5 + 11 / 12, "feet"),
  14630. weight: math.unit(190, "lb"),
  14631. name: "Front",
  14632. image: {
  14633. source: "./media/characters/seara/front.svg",
  14634. extra: 1,
  14635. bottom: 0.05
  14636. }
  14637. },
  14638. },
  14639. [
  14640. {
  14641. name: "Normal",
  14642. height: math.unit(5 + 11 / 12, "feet"),
  14643. default: true
  14644. },
  14645. ]
  14646. ))
  14647. characterMakers.push(() => makeCharacter(
  14648. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14649. {
  14650. front: {
  14651. height: math.unit(16 + 5 / 12, "feet"),
  14652. weight: math.unit(524, "lb"),
  14653. name: "Front",
  14654. image: {
  14655. source: "./media/characters/caspian/front.svg",
  14656. extra: 1,
  14657. bottom: 0.04
  14658. }
  14659. },
  14660. },
  14661. [
  14662. {
  14663. name: "Normal",
  14664. height: math.unit(16 + 5 / 12, "feet"),
  14665. default: true
  14666. },
  14667. ]
  14668. ))
  14669. characterMakers.push(() => makeCharacter(
  14670. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14671. {
  14672. front: {
  14673. height: math.unit(5 + 7 / 12, "feet"),
  14674. weight: math.unit(170, "lb"),
  14675. name: "Front",
  14676. image: {
  14677. source: "./media/characters/mika/front.svg",
  14678. extra: 1,
  14679. bottom: 0.016
  14680. }
  14681. },
  14682. },
  14683. [
  14684. {
  14685. name: "Normal",
  14686. height: math.unit(5 + 7 / 12, "feet"),
  14687. default: true
  14688. },
  14689. ]
  14690. ))
  14691. characterMakers.push(() => makeCharacter(
  14692. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14693. {
  14694. front: {
  14695. height: math.unit(6 + 2 / 12, "feet"),
  14696. weight: math.unit(268, "lb"),
  14697. name: "Front",
  14698. image: {
  14699. source: "./media/characters/sol/front.svg",
  14700. extra: 247 / 231,
  14701. bottom: 0.05
  14702. }
  14703. },
  14704. },
  14705. [
  14706. {
  14707. name: "Normal",
  14708. height: math.unit(6 + 2 / 12, "feet"),
  14709. default: true
  14710. },
  14711. ]
  14712. ))
  14713. characterMakers.push(() => makeCharacter(
  14714. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14715. {
  14716. buizel: {
  14717. height: math.unit(2 + 5 / 12, "feet"),
  14718. weight: math.unit(87, "lb"),
  14719. name: "Buizel",
  14720. image: {
  14721. source: "./media/characters/umiko/buizel.svg",
  14722. extra: 172 / 157,
  14723. bottom: 0.01
  14724. }
  14725. },
  14726. floatzel: {
  14727. height: math.unit(5 + 9 / 12, "feet"),
  14728. weight: math.unit(250, "lb"),
  14729. name: "Floatzel",
  14730. image: {
  14731. source: "./media/characters/umiko/floatzel.svg",
  14732. extra: 262 / 248
  14733. }
  14734. },
  14735. },
  14736. [
  14737. {
  14738. name: "Normal",
  14739. height: math.unit(2 + 5 / 12, "feet"),
  14740. default: true
  14741. },
  14742. ]
  14743. ))
  14744. characterMakers.push(() => makeCharacter(
  14745. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14746. {
  14747. front: {
  14748. height: math.unit(6 + 2 / 12, "feet"),
  14749. weight: math.unit(146, "lb"),
  14750. name: "Front",
  14751. image: {
  14752. source: "./media/characters/iliac/front.svg",
  14753. extra: 389 / 365,
  14754. bottom: 0.035
  14755. }
  14756. },
  14757. },
  14758. [
  14759. {
  14760. name: "Normal",
  14761. height: math.unit(6 + 2 / 12, "feet"),
  14762. default: true
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14768. {
  14769. front: {
  14770. height: math.unit(6, "feet"),
  14771. weight: math.unit(170, "lb"),
  14772. name: "Front",
  14773. image: {
  14774. source: "./media/characters/topaz/front.svg",
  14775. extra: 317 / 303,
  14776. bottom: 0.055
  14777. }
  14778. },
  14779. },
  14780. [
  14781. {
  14782. name: "Normal",
  14783. height: math.unit(6, "feet"),
  14784. default: true
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(5 + 11 / 12, "feet"),
  14793. weight: math.unit(144, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/gabriel/front.svg",
  14797. extra: 285 / 262,
  14798. bottom: 0.004
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Normal",
  14805. height: math.unit(5 + 11 / 12, "feet"),
  14806. default: true
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14812. {
  14813. side: {
  14814. height: math.unit(6 + 5 / 12, "feet"),
  14815. weight: math.unit(300, "lb"),
  14816. name: "Side",
  14817. image: {
  14818. source: "./media/characters/tempest-suicune/side.svg",
  14819. extra: 195 / 154,
  14820. bottom: 0.04
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Normal",
  14827. height: math.unit(6 + 5 / 12, "feet"),
  14828. default: true
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(7 + 2 / 12, "feet"),
  14837. weight: math.unit(322, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/vulcan/front.svg",
  14841. extra: 154 / 147,
  14842. bottom: 0.04
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(7 + 2 / 12, "feet"),
  14850. default: true
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14856. {
  14857. front: {
  14858. height: math.unit(5 + 10 / 12, "feet"),
  14859. weight: math.unit(264, "lb"),
  14860. name: "Front",
  14861. image: {
  14862. source: "./media/characters/gault/front.svg",
  14863. extra: 161 / 140,
  14864. bottom: 0.028
  14865. }
  14866. },
  14867. },
  14868. [
  14869. {
  14870. name: "Normal",
  14871. height: math.unit(5 + 10 / 12, "feet"),
  14872. default: true
  14873. },
  14874. ]
  14875. ))
  14876. characterMakers.push(() => makeCharacter(
  14877. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14878. {
  14879. front: {
  14880. height: math.unit(6, "feet"),
  14881. weight: math.unit(150, "lb"),
  14882. name: "Front",
  14883. image: {
  14884. source: "./media/characters/shard/front.svg",
  14885. extra: 273 / 238,
  14886. bottom: 0.02
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Normal",
  14893. height: math.unit(3 + 6 / 12, "feet"),
  14894. default: true
  14895. },
  14896. ]
  14897. ))
  14898. characterMakers.push(() => makeCharacter(
  14899. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14900. {
  14901. front: {
  14902. height: math.unit(5 + 11 / 12, "feet"),
  14903. weight: math.unit(146, "lb"),
  14904. name: "Front",
  14905. image: {
  14906. source: "./media/characters/ashe/front.svg",
  14907. extra: 400 / 373,
  14908. bottom: 0.01
  14909. }
  14910. },
  14911. },
  14912. [
  14913. {
  14914. name: "Normal",
  14915. height: math.unit(5 + 11 / 12, "feet"),
  14916. default: true
  14917. },
  14918. ]
  14919. ))
  14920. characterMakers.push(() => makeCharacter(
  14921. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14922. {
  14923. front: {
  14924. height: math.unit(5 + 5 / 12, "feet"),
  14925. weight: math.unit(135, "lb"),
  14926. name: "Front",
  14927. image: {
  14928. source: "./media/characters/beatrix/front.svg",
  14929. extra: 392 / 379,
  14930. bottom: 0.01
  14931. }
  14932. },
  14933. },
  14934. [
  14935. {
  14936. name: "Normal",
  14937. height: math.unit(6, "feet"),
  14938. default: true
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14944. {
  14945. front: {
  14946. height: math.unit(6, "feet"),
  14947. weight: math.unit(150, "lb"),
  14948. name: "Front",
  14949. image: {
  14950. source: "./media/characters/ignatius/front.svg",
  14951. extra: 245 / 222,
  14952. bottom: 0.01
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "Normal",
  14959. height: math.unit(5 + 5 / 12, "feet"),
  14960. default: true
  14961. },
  14962. ]
  14963. ))
  14964. characterMakers.push(() => makeCharacter(
  14965. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14966. {
  14967. front: {
  14968. height: math.unit(6 + 2 / 12, "feet"),
  14969. weight: math.unit(138, "lb"),
  14970. name: "Front",
  14971. image: {
  14972. source: "./media/characters/mei-li/front.svg",
  14973. extra: 237 / 229,
  14974. bottom: 0.03
  14975. }
  14976. },
  14977. },
  14978. [
  14979. {
  14980. name: "Normal",
  14981. height: math.unit(6 + 2 / 12, "feet"),
  14982. default: true
  14983. },
  14984. ]
  14985. ))
  14986. characterMakers.push(() => makeCharacter(
  14987. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14988. {
  14989. front: {
  14990. height: math.unit(2 + 4 / 12, "feet"),
  14991. weight: math.unit(62, "lb"),
  14992. name: "Front",
  14993. image: {
  14994. source: "./media/characters/puru/front.svg",
  14995. extra: 206 / 149,
  14996. bottom: 0.06
  14997. }
  14998. },
  14999. },
  15000. [
  15001. {
  15002. name: "Normal",
  15003. height: math.unit(2 + 4 / 12, "feet"),
  15004. default: true
  15005. },
  15006. ]
  15007. ))
  15008. characterMakers.push(() => makeCharacter(
  15009. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15010. {
  15011. anthro: {
  15012. height: math.unit(5 + 8/12, "feet"),
  15013. weight: math.unit(200, "lb"),
  15014. energyNeed: math.unit(2000, "kcal"),
  15015. name: "Anthro",
  15016. image: {
  15017. source: "./media/characters/kee/anthro.svg",
  15018. extra: 3251/3184,
  15019. bottom: 250/3501
  15020. }
  15021. },
  15022. taur: {
  15023. height: math.unit(11, "feet"),
  15024. weight: math.unit(500, "lb"),
  15025. energyNeed: math.unit(5000, "kcal"),
  15026. name: "Taur",
  15027. image: {
  15028. source: "./media/characters/kee/taur.svg",
  15029. extra: 1362/1320,
  15030. bottom: 83/1445
  15031. }
  15032. },
  15033. },
  15034. [
  15035. {
  15036. name: "Normal",
  15037. height: math.unit(5 + 8/12, "feet"),
  15038. default: true
  15039. },
  15040. {
  15041. name: "Macro",
  15042. height: math.unit(35, "feet")
  15043. },
  15044. ]
  15045. ))
  15046. characterMakers.push(() => makeCharacter(
  15047. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15048. {
  15049. anthro: {
  15050. height: math.unit(7, "feet"),
  15051. weight: math.unit(190, "lb"),
  15052. name: "Anthro",
  15053. image: {
  15054. source: "./media/characters/cobalt-dracha/anthro.svg",
  15055. extra: 231 / 225,
  15056. bottom: 0.04
  15057. }
  15058. },
  15059. feral: {
  15060. height: math.unit(9 + 7 / 12, "feet"),
  15061. weight: math.unit(294, "lb"),
  15062. name: "Feral",
  15063. image: {
  15064. source: "./media/characters/cobalt-dracha/feral.svg",
  15065. extra: 692 / 633,
  15066. bottom: 0.05
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(7, "feet"),
  15074. default: true
  15075. },
  15076. ]
  15077. ))
  15078. characterMakers.push(() => makeCharacter(
  15079. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15080. {
  15081. fallen: {
  15082. height: math.unit(11 + 8 / 12, "feet"),
  15083. weight: math.unit(485, "lb"),
  15084. name: "Java (Fallen)",
  15085. rename: true,
  15086. image: {
  15087. source: "./media/characters/java/fallen.svg",
  15088. extra: 226 / 208,
  15089. bottom: 0.005
  15090. }
  15091. },
  15092. godkin: {
  15093. height: math.unit(10 + 6 / 12, "feet"),
  15094. weight: math.unit(328, "lb"),
  15095. name: "Java (Godkin)",
  15096. rename: true,
  15097. image: {
  15098. source: "./media/characters/java/godkin.svg",
  15099. extra: 270 / 262,
  15100. bottom: 0.02
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Normal",
  15107. height: math.unit(11 + 8 / 12, "feet"),
  15108. default: true
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15114. {
  15115. front: {
  15116. height: math.unit(7 + 8 / 12, "feet"),
  15117. weight: math.unit(320, "lb"),
  15118. name: "Front",
  15119. image: {
  15120. source: "./media/characters/skoll/front.svg",
  15121. extra: 232 / 220,
  15122. bottom: 0.02
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(7 + 8 / 12, "feet"),
  15130. default: true
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15136. {
  15137. front: {
  15138. height: math.unit(5 + 9 / 12, "feet"),
  15139. weight: math.unit(170, "lb"),
  15140. name: "Front",
  15141. image: {
  15142. source: "./media/characters/purna/front.svg",
  15143. extra: 239 / 229,
  15144. bottom: 0.01
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Normal",
  15151. height: math.unit(5 + 9 / 12, "feet"),
  15152. default: true
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15158. {
  15159. front: {
  15160. height: math.unit(5 + 9 / 12, "feet"),
  15161. weight: math.unit(142, "lb"),
  15162. name: "Front",
  15163. image: {
  15164. source: "./media/characters/kuva/front.svg",
  15165. extra: 281 / 271,
  15166. bottom: 0.006
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(5 + 9 / 12, "feet"),
  15174. default: true
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15180. {
  15181. anthro: {
  15182. height: math.unit(9 + 2 / 12, "feet"),
  15183. weight: math.unit(270, "lb"),
  15184. name: "Anthro",
  15185. image: {
  15186. source: "./media/characters/embra/anthro.svg",
  15187. extra: 200 / 187,
  15188. bottom: 0.02
  15189. }
  15190. },
  15191. feral: {
  15192. height: math.unit(18 + 8 / 12, "feet"),
  15193. weight: math.unit(576, "lb"),
  15194. name: "Feral",
  15195. image: {
  15196. source: "./media/characters/embra/feral.svg",
  15197. extra: 152 / 137,
  15198. bottom: 0.037
  15199. }
  15200. },
  15201. },
  15202. [
  15203. {
  15204. name: "Normal",
  15205. height: math.unit(9 + 2 / 12, "feet"),
  15206. default: true
  15207. },
  15208. ]
  15209. ))
  15210. characterMakers.push(() => makeCharacter(
  15211. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15212. {
  15213. anthro: {
  15214. height: math.unit(10 + 9 / 12, "feet"),
  15215. weight: math.unit(224, "lb"),
  15216. name: "Anthro",
  15217. image: {
  15218. source: "./media/characters/grottos/anthro.svg",
  15219. extra: 350 / 332,
  15220. bottom: 0.045
  15221. }
  15222. },
  15223. feral: {
  15224. height: math.unit(20 + 7 / 12, "feet"),
  15225. weight: math.unit(629, "lb"),
  15226. name: "Feral",
  15227. image: {
  15228. source: "./media/characters/grottos/feral.svg",
  15229. extra: 207 / 190,
  15230. bottom: 0.05
  15231. }
  15232. },
  15233. },
  15234. [
  15235. {
  15236. name: "Normal",
  15237. height: math.unit(10 + 9 / 12, "feet"),
  15238. default: true
  15239. },
  15240. ]
  15241. ))
  15242. characterMakers.push(() => makeCharacter(
  15243. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15244. {
  15245. anthro: {
  15246. height: math.unit(9 + 6 / 12, "feet"),
  15247. weight: math.unit(298, "lb"),
  15248. name: "Anthro",
  15249. image: {
  15250. source: "./media/characters/frifna/anthro.svg",
  15251. extra: 282 / 269,
  15252. bottom: 0.015
  15253. }
  15254. },
  15255. feral: {
  15256. height: math.unit(16 + 2 / 12, "feet"),
  15257. weight: math.unit(624, "lb"),
  15258. name: "Feral",
  15259. image: {
  15260. source: "./media/characters/frifna/feral.svg"
  15261. }
  15262. },
  15263. },
  15264. [
  15265. {
  15266. name: "Normal",
  15267. height: math.unit(9 + 6 / 12, "feet"),
  15268. default: true
  15269. },
  15270. ]
  15271. ))
  15272. characterMakers.push(() => makeCharacter(
  15273. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15274. {
  15275. front: {
  15276. height: math.unit(6 + 2 / 12, "feet"),
  15277. weight: math.unit(168, "lb"),
  15278. name: "Front",
  15279. image: {
  15280. source: "./media/characters/elise/front.svg",
  15281. extra: 276 / 271
  15282. }
  15283. },
  15284. },
  15285. [
  15286. {
  15287. name: "Normal",
  15288. height: math.unit(6 + 2 / 12, "feet"),
  15289. default: true
  15290. },
  15291. ]
  15292. ))
  15293. characterMakers.push(() => makeCharacter(
  15294. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15295. {
  15296. front: {
  15297. height: math.unit(5 + 10 / 12, "feet"),
  15298. weight: math.unit(210, "lb"),
  15299. name: "Front",
  15300. image: {
  15301. source: "./media/characters/glade/front.svg",
  15302. extra: 258 / 247,
  15303. bottom: 0.008
  15304. }
  15305. },
  15306. },
  15307. [
  15308. {
  15309. name: "Normal",
  15310. height: math.unit(5 + 10 / 12, "feet"),
  15311. default: true
  15312. },
  15313. ]
  15314. ))
  15315. characterMakers.push(() => makeCharacter(
  15316. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15317. {
  15318. front: {
  15319. height: math.unit(5 + 10 / 12, "feet"),
  15320. weight: math.unit(129, "lb"),
  15321. name: "Front",
  15322. image: {
  15323. source: "./media/characters/rina/front.svg",
  15324. extra: 266 / 255,
  15325. bottom: 0.005
  15326. }
  15327. },
  15328. },
  15329. [
  15330. {
  15331. name: "Normal",
  15332. height: math.unit(5 + 10 / 12, "feet"),
  15333. default: true
  15334. },
  15335. ]
  15336. ))
  15337. characterMakers.push(() => makeCharacter(
  15338. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15339. {
  15340. front: {
  15341. height: math.unit(6 + 1 / 12, "feet"),
  15342. weight: math.unit(192, "lb"),
  15343. name: "Front",
  15344. image: {
  15345. source: "./media/characters/veronica/front.svg",
  15346. extra: 319 / 309,
  15347. bottom: 0.005
  15348. }
  15349. },
  15350. },
  15351. [
  15352. {
  15353. name: "Normal",
  15354. height: math.unit(6 + 1 / 12, "feet"),
  15355. default: true
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15361. {
  15362. front: {
  15363. height: math.unit(9 + 3 / 12, "feet"),
  15364. weight: math.unit(1100, "lb"),
  15365. name: "Front",
  15366. image: {
  15367. source: "./media/characters/braxton/front.svg",
  15368. extra: 1057 / 984,
  15369. bottom: 0.05
  15370. }
  15371. },
  15372. },
  15373. [
  15374. {
  15375. name: "Normal",
  15376. height: math.unit(9 + 3 / 12, "feet")
  15377. },
  15378. {
  15379. name: "Giant",
  15380. height: math.unit(300, "feet"),
  15381. default: true
  15382. },
  15383. {
  15384. name: "Macro",
  15385. height: math.unit(700, "feet")
  15386. },
  15387. {
  15388. name: "Megamacro",
  15389. height: math.unit(6000, "feet")
  15390. },
  15391. ]
  15392. ))
  15393. characterMakers.push(() => makeCharacter(
  15394. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15395. {
  15396. front: {
  15397. height: math.unit(6 + 7 / 12, "feet"),
  15398. weight: math.unit(150, "lb"),
  15399. name: "Front",
  15400. image: {
  15401. source: "./media/characters/blue-feyonics/front.svg",
  15402. extra: 1403 / 1306,
  15403. bottom: 0.047
  15404. }
  15405. },
  15406. },
  15407. [
  15408. {
  15409. name: "Normal",
  15410. height: math.unit(6 + 7 / 12, "feet"),
  15411. default: true
  15412. },
  15413. ]
  15414. ))
  15415. characterMakers.push(() => makeCharacter(
  15416. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15417. {
  15418. front: {
  15419. height: math.unit(1.8, "meters"),
  15420. weight: math.unit(60, "kg"),
  15421. name: "Front",
  15422. image: {
  15423. source: "./media/characters/maxwell/front.svg",
  15424. extra: 2060 / 1873
  15425. }
  15426. },
  15427. },
  15428. [
  15429. {
  15430. name: "Micro",
  15431. height: math.unit(1, "mm")
  15432. },
  15433. {
  15434. name: "Normal",
  15435. height: math.unit(1.8, "meter"),
  15436. default: true
  15437. },
  15438. {
  15439. name: "Macro",
  15440. height: math.unit(30, "meters")
  15441. },
  15442. {
  15443. name: "Megamacro",
  15444. height: math.unit(10, "km")
  15445. },
  15446. ]
  15447. ))
  15448. characterMakers.push(() => makeCharacter(
  15449. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15450. {
  15451. front: {
  15452. height: math.unit(6, "feet"),
  15453. weight: math.unit(150, "lb"),
  15454. name: "Front",
  15455. image: {
  15456. source: "./media/characters/jack/front.svg",
  15457. extra: 1754 / 1640,
  15458. bottom: 0.01
  15459. }
  15460. },
  15461. },
  15462. [
  15463. {
  15464. name: "Normal",
  15465. height: math.unit(80000, "feet"),
  15466. default: true
  15467. },
  15468. {
  15469. name: "Max size",
  15470. height: math.unit(10, "lightyears")
  15471. },
  15472. ]
  15473. ))
  15474. characterMakers.push(() => makeCharacter(
  15475. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15476. {
  15477. upright: {
  15478. height: math.unit(7, "feet"),
  15479. weight: math.unit(170, "lb"),
  15480. name: "Upright",
  15481. image: {
  15482. source: "./media/characters/cafat/upright.svg",
  15483. bottom: 0.01
  15484. }
  15485. },
  15486. uprightFull: {
  15487. height: math.unit(7, "feet"),
  15488. weight: math.unit(170, "lb"),
  15489. name: "Upright (Full)",
  15490. image: {
  15491. source: "./media/characters/cafat/upright-full.svg",
  15492. bottom: 0.01
  15493. }
  15494. },
  15495. side: {
  15496. height: math.unit(5, "feet"),
  15497. weight: math.unit(150, "lb"),
  15498. name: "Side",
  15499. image: {
  15500. source: "./media/characters/cafat/side.svg"
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Small",
  15507. height: math.unit(7, "feet"),
  15508. default: true
  15509. },
  15510. {
  15511. name: "Large",
  15512. height: math.unit(15.5, "feet")
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15518. {
  15519. front: {
  15520. height: math.unit(6, "feet"),
  15521. weight: math.unit(150, "lb"),
  15522. name: "Front",
  15523. image: {
  15524. source: "./media/characters/verin-raharra/front.svg",
  15525. extra: 5019 / 4835,
  15526. bottom: 0.023
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Normal",
  15533. height: math.unit(7 + 5 / 12, "feet"),
  15534. default: true
  15535. },
  15536. {
  15537. name: "Upsized",
  15538. height: math.unit(20, "feet")
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15544. {
  15545. front: {
  15546. height: math.unit(7, "feet"),
  15547. weight: math.unit(230, "lb"),
  15548. name: "Front",
  15549. image: {
  15550. source: "./media/characters/nakata/front.svg",
  15551. extra: 1.005,
  15552. bottom: 0.01
  15553. }
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Normal",
  15559. height: math.unit(7, "feet"),
  15560. default: true
  15561. },
  15562. {
  15563. name: "Big",
  15564. height: math.unit(14, "feet")
  15565. },
  15566. {
  15567. name: "Macro",
  15568. height: math.unit(400, "feet")
  15569. },
  15570. ]
  15571. ))
  15572. characterMakers.push(() => makeCharacter(
  15573. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15574. {
  15575. front: {
  15576. height: math.unit(4.91, "feet"),
  15577. weight: math.unit(100, "lb"),
  15578. name: "Front",
  15579. image: {
  15580. source: "./media/characters/lily/front.svg",
  15581. extra: 1585 / 1415,
  15582. bottom: 0.02
  15583. }
  15584. },
  15585. },
  15586. [
  15587. {
  15588. name: "Normal",
  15589. height: math.unit(4.91, "feet"),
  15590. default: true
  15591. },
  15592. ]
  15593. ))
  15594. characterMakers.push(() => makeCharacter(
  15595. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15596. {
  15597. laying: {
  15598. height: math.unit(4 + 4 / 12, "feet"),
  15599. weight: math.unit(600, "lb"),
  15600. name: "Laying",
  15601. image: {
  15602. source: "./media/characters/sheila/laying.svg",
  15603. extra: 1333 / 1265,
  15604. bottom: 0.16
  15605. }
  15606. },
  15607. },
  15608. [
  15609. {
  15610. name: "Normal",
  15611. height: math.unit(4 + 4 / 12, "feet"),
  15612. default: true
  15613. },
  15614. ]
  15615. ))
  15616. characterMakers.push(() => makeCharacter(
  15617. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15618. {
  15619. front: {
  15620. height: math.unit(6, "feet"),
  15621. weight: math.unit(190, "lb"),
  15622. name: "Front",
  15623. image: {
  15624. source: "./media/characters/sax/front.svg",
  15625. extra: 1187 / 973,
  15626. bottom: 0.042
  15627. }
  15628. },
  15629. },
  15630. [
  15631. {
  15632. name: "Micro",
  15633. height: math.unit(4, "inches"),
  15634. default: true
  15635. },
  15636. ]
  15637. ))
  15638. characterMakers.push(() => makeCharacter(
  15639. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15640. {
  15641. front: {
  15642. height: math.unit(6, "feet"),
  15643. weight: math.unit(150, "lb"),
  15644. name: "Front",
  15645. image: {
  15646. source: "./media/characters/pandora/front.svg",
  15647. extra: 2720 / 2556,
  15648. bottom: 0.015
  15649. }
  15650. },
  15651. back: {
  15652. height: math.unit(6, "feet"),
  15653. weight: math.unit(150, "lb"),
  15654. name: "Back",
  15655. image: {
  15656. source: "./media/characters/pandora/back.svg",
  15657. extra: 2720 / 2556,
  15658. bottom: 0.01
  15659. }
  15660. },
  15661. beans: {
  15662. height: math.unit(6 / 8, "feet"),
  15663. name: "Beans",
  15664. image: {
  15665. source: "./media/characters/pandora/beans.svg"
  15666. }
  15667. },
  15668. skirt: {
  15669. height: math.unit(6, "feet"),
  15670. weight: math.unit(150, "lb"),
  15671. name: "Skirt",
  15672. image: {
  15673. source: "./media/characters/pandora/skirt.svg",
  15674. extra: 1622 / 1525,
  15675. bottom: 0.015
  15676. }
  15677. },
  15678. hoodie: {
  15679. height: math.unit(6, "feet"),
  15680. weight: math.unit(150, "lb"),
  15681. name: "Hoodie",
  15682. image: {
  15683. source: "./media/characters/pandora/hoodie.svg",
  15684. extra: 1622 / 1525,
  15685. bottom: 0.015
  15686. }
  15687. },
  15688. casual: {
  15689. height: math.unit(6, "feet"),
  15690. weight: math.unit(150, "lb"),
  15691. name: "Casual",
  15692. image: {
  15693. source: "./media/characters/pandora/casual.svg",
  15694. extra: 1622 / 1525,
  15695. bottom: 0.015
  15696. }
  15697. },
  15698. },
  15699. [
  15700. {
  15701. name: "Normal",
  15702. height: math.unit(6, "feet")
  15703. },
  15704. {
  15705. name: "Big Steppy",
  15706. height: math.unit(1, "km"),
  15707. default: true
  15708. },
  15709. ]
  15710. ))
  15711. characterMakers.push(() => makeCharacter(
  15712. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15713. {
  15714. side: {
  15715. height: math.unit(10, "feet"),
  15716. weight: math.unit(800, "kg"),
  15717. name: "Side",
  15718. image: {
  15719. source: "./media/characters/venio-darcony/side.svg",
  15720. extra: 1373 / 1003,
  15721. bottom: 0.037
  15722. }
  15723. },
  15724. front: {
  15725. height: math.unit(19, "feet"),
  15726. weight: math.unit(800, "kg"),
  15727. name: "Front",
  15728. image: {
  15729. source: "./media/characters/venio-darcony/front.svg"
  15730. }
  15731. },
  15732. back: {
  15733. height: math.unit(19, "feet"),
  15734. weight: math.unit(800, "kg"),
  15735. name: "Back",
  15736. image: {
  15737. source: "./media/characters/venio-darcony/back.svg"
  15738. }
  15739. },
  15740. sideNsfw: {
  15741. height: math.unit(10, "feet"),
  15742. weight: math.unit(800, "kg"),
  15743. name: "Side (NSFW)",
  15744. image: {
  15745. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15746. extra: 1373 / 1003,
  15747. bottom: 0.037
  15748. }
  15749. },
  15750. frontNsfw: {
  15751. height: math.unit(19, "feet"),
  15752. weight: math.unit(800, "kg"),
  15753. name: "Front (NSFW)",
  15754. image: {
  15755. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15756. }
  15757. },
  15758. backNsfw: {
  15759. height: math.unit(19, "feet"),
  15760. weight: math.unit(800, "kg"),
  15761. name: "Back (NSFW)",
  15762. image: {
  15763. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15764. }
  15765. },
  15766. sideArmored: {
  15767. height: math.unit(10, "feet"),
  15768. weight: math.unit(800, "kg"),
  15769. name: "Side (Armored)",
  15770. image: {
  15771. source: "./media/characters/venio-darcony/side-armored.svg",
  15772. extra: 1373 / 1003,
  15773. bottom: 0.037
  15774. }
  15775. },
  15776. frontArmored: {
  15777. height: math.unit(19, "feet"),
  15778. weight: math.unit(900, "kg"),
  15779. name: "Front (Armored)",
  15780. image: {
  15781. source: "./media/characters/venio-darcony/front-armored.svg"
  15782. }
  15783. },
  15784. backArmored: {
  15785. height: math.unit(19, "feet"),
  15786. weight: math.unit(900, "kg"),
  15787. name: "Back (Armored)",
  15788. image: {
  15789. source: "./media/characters/venio-darcony/back-armored.svg"
  15790. }
  15791. },
  15792. sword: {
  15793. height: math.unit(10, "feet"),
  15794. weight: math.unit(50, "lb"),
  15795. name: "Sword",
  15796. image: {
  15797. source: "./media/characters/venio-darcony/sword.svg"
  15798. }
  15799. },
  15800. },
  15801. [
  15802. {
  15803. name: "Normal",
  15804. height: math.unit(10, "feet")
  15805. },
  15806. {
  15807. name: "Macro",
  15808. height: math.unit(130, "feet"),
  15809. default: true
  15810. },
  15811. {
  15812. name: "Macro+",
  15813. height: math.unit(240, "feet")
  15814. },
  15815. ]
  15816. ))
  15817. characterMakers.push(() => makeCharacter(
  15818. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15819. {
  15820. front: {
  15821. height: math.unit(6, "feet"),
  15822. weight: math.unit(150, "lb"),
  15823. name: "Front",
  15824. image: {
  15825. source: "./media/characters/veski/front.svg",
  15826. extra: 1299 / 1225,
  15827. bottom: 0.04
  15828. }
  15829. },
  15830. back: {
  15831. height: math.unit(6, "feet"),
  15832. weight: math.unit(150, "lb"),
  15833. name: "Back",
  15834. image: {
  15835. source: "./media/characters/veski/back.svg",
  15836. extra: 1299 / 1225,
  15837. bottom: 0.008
  15838. }
  15839. },
  15840. maw: {
  15841. height: math.unit(1.5 * 1.21, "feet"),
  15842. name: "Maw",
  15843. image: {
  15844. source: "./media/characters/veski/maw.svg"
  15845. }
  15846. },
  15847. },
  15848. [
  15849. {
  15850. name: "Macro",
  15851. height: math.unit(2, "km"),
  15852. default: true
  15853. },
  15854. ]
  15855. ))
  15856. characterMakers.push(() => makeCharacter(
  15857. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15858. {
  15859. front: {
  15860. height: math.unit(5 + 7 / 12, "feet"),
  15861. name: "Front",
  15862. image: {
  15863. source: "./media/characters/isabelle/front.svg",
  15864. extra: 2130 / 1976,
  15865. bottom: 0.05
  15866. }
  15867. },
  15868. },
  15869. [
  15870. {
  15871. name: "Supermicro",
  15872. height: math.unit(10, "micrometers")
  15873. },
  15874. {
  15875. name: "Micro",
  15876. height: math.unit(1, "inch")
  15877. },
  15878. {
  15879. name: "Tiny",
  15880. height: math.unit(5, "inches")
  15881. },
  15882. {
  15883. name: "Standard",
  15884. height: math.unit(5 + 7 / 12, "inches")
  15885. },
  15886. {
  15887. name: "Macro",
  15888. height: math.unit(80, "meters"),
  15889. default: true
  15890. },
  15891. {
  15892. name: "Megamacro",
  15893. height: math.unit(250, "meters")
  15894. },
  15895. {
  15896. name: "Gigamacro",
  15897. height: math.unit(5, "km")
  15898. },
  15899. {
  15900. name: "Cosmic",
  15901. height: math.unit(2.5e6, "miles")
  15902. },
  15903. ]
  15904. ))
  15905. characterMakers.push(() => makeCharacter(
  15906. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15907. {
  15908. front: {
  15909. height: math.unit(6, "feet"),
  15910. weight: math.unit(150, "lb"),
  15911. name: "Front",
  15912. image: {
  15913. source: "./media/characters/hanzo/front.svg",
  15914. extra: 374 / 344,
  15915. bottom: 0.02
  15916. }
  15917. },
  15918. },
  15919. [
  15920. {
  15921. name: "Normal",
  15922. height: math.unit(8, "feet"),
  15923. default: true
  15924. },
  15925. ]
  15926. ))
  15927. characterMakers.push(() => makeCharacter(
  15928. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15929. {
  15930. front: {
  15931. height: math.unit(7, "feet"),
  15932. weight: math.unit(130, "lb"),
  15933. name: "Front",
  15934. image: {
  15935. source: "./media/characters/anna/front.svg",
  15936. extra: 169 / 145,
  15937. bottom: 0.06
  15938. }
  15939. },
  15940. full: {
  15941. height: math.unit(4.96, "feet"),
  15942. weight: math.unit(220, "lb"),
  15943. name: "Full",
  15944. image: {
  15945. source: "./media/characters/anna/full.svg",
  15946. extra: 138 / 114,
  15947. bottom: 0.15
  15948. }
  15949. },
  15950. tongue: {
  15951. height: math.unit(2.53, "feet"),
  15952. name: "Tongue",
  15953. image: {
  15954. source: "./media/characters/anna/tongue.svg"
  15955. }
  15956. },
  15957. },
  15958. [
  15959. {
  15960. name: "Normal",
  15961. height: math.unit(7, "feet"),
  15962. default: true
  15963. },
  15964. ]
  15965. ))
  15966. characterMakers.push(() => makeCharacter(
  15967. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15968. {
  15969. front: {
  15970. height: math.unit(7, "feet"),
  15971. weight: math.unit(150, "lb"),
  15972. name: "Front",
  15973. image: {
  15974. source: "./media/characters/ian-corvid/front.svg",
  15975. extra: 150 / 142,
  15976. bottom: 0.02
  15977. }
  15978. },
  15979. back: {
  15980. height: math.unit(7, "feet"),
  15981. weight: math.unit(150, "lb"),
  15982. name: "Back",
  15983. image: {
  15984. source: "./media/characters/ian-corvid/back.svg",
  15985. extra: 150 / 143,
  15986. bottom: 0.01
  15987. }
  15988. },
  15989. stomping: {
  15990. height: math.unit(7, "feet"),
  15991. weight: math.unit(150, "lb"),
  15992. name: "Stomping",
  15993. image: {
  15994. source: "./media/characters/ian-corvid/stomping.svg",
  15995. extra: 76 / 72
  15996. }
  15997. },
  15998. sitting: {
  15999. height: math.unit(7 / 1.8, "feet"),
  16000. weight: math.unit(150, "lb"),
  16001. name: "Sitting",
  16002. image: {
  16003. source: "./media/characters/ian-corvid/sitting.svg",
  16004. extra: 1400 / 1269,
  16005. bottom: 0.15
  16006. }
  16007. },
  16008. },
  16009. [
  16010. {
  16011. name: "Tiny Microw",
  16012. height: math.unit(1, "inch")
  16013. },
  16014. {
  16015. name: "Microw",
  16016. height: math.unit(6, "inches")
  16017. },
  16018. {
  16019. name: "Crow",
  16020. height: math.unit(7 + 1 / 12, "feet"),
  16021. default: true
  16022. },
  16023. {
  16024. name: "Macrow",
  16025. height: math.unit(176, "feet")
  16026. },
  16027. ]
  16028. ))
  16029. characterMakers.push(() => makeCharacter(
  16030. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16031. {
  16032. front: {
  16033. height: math.unit(5 + 7 / 12, "feet"),
  16034. weight: math.unit(147, "lb"),
  16035. name: "Front",
  16036. image: {
  16037. source: "./media/characters/natalie-kellon/front.svg",
  16038. extra: 1214 / 1141,
  16039. bottom: 0.02
  16040. }
  16041. },
  16042. },
  16043. [
  16044. {
  16045. name: "Micro",
  16046. height: math.unit(1 / 16, "inch")
  16047. },
  16048. {
  16049. name: "Tiny",
  16050. height: math.unit(4, "inches")
  16051. },
  16052. {
  16053. name: "Normal",
  16054. height: math.unit(5 + 7 / 12, "feet"),
  16055. default: true
  16056. },
  16057. {
  16058. name: "Amazon",
  16059. height: math.unit(12, "feet")
  16060. },
  16061. {
  16062. name: "Giantess",
  16063. height: math.unit(160, "meters")
  16064. },
  16065. {
  16066. name: "Titaness",
  16067. height: math.unit(800, "meters")
  16068. },
  16069. ]
  16070. ))
  16071. characterMakers.push(() => makeCharacter(
  16072. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16073. {
  16074. front: {
  16075. height: math.unit(6, "feet"),
  16076. weight: math.unit(150, "lb"),
  16077. name: "Front",
  16078. image: {
  16079. source: "./media/characters/alluria/front.svg",
  16080. extra: 806 / 738,
  16081. bottom: 0.01
  16082. }
  16083. },
  16084. side: {
  16085. height: math.unit(6, "feet"),
  16086. weight: math.unit(150, "lb"),
  16087. name: "Side",
  16088. image: {
  16089. source: "./media/characters/alluria/side.svg",
  16090. extra: 800 / 750,
  16091. }
  16092. },
  16093. back: {
  16094. height: math.unit(6, "feet"),
  16095. weight: math.unit(150, "lb"),
  16096. name: "Back",
  16097. image: {
  16098. source: "./media/characters/alluria/back.svg",
  16099. extra: 806 / 738,
  16100. }
  16101. },
  16102. frontMaid: {
  16103. height: math.unit(6, "feet"),
  16104. weight: math.unit(150, "lb"),
  16105. name: "Front (Maid)",
  16106. image: {
  16107. source: "./media/characters/alluria/front-maid.svg",
  16108. extra: 806 / 738,
  16109. bottom: 0.01
  16110. }
  16111. },
  16112. sideMaid: {
  16113. height: math.unit(6, "feet"),
  16114. weight: math.unit(150, "lb"),
  16115. name: "Side (Maid)",
  16116. image: {
  16117. source: "./media/characters/alluria/side-maid.svg",
  16118. extra: 800 / 750,
  16119. bottom: 0.005
  16120. }
  16121. },
  16122. backMaid: {
  16123. height: math.unit(6, "feet"),
  16124. weight: math.unit(150, "lb"),
  16125. name: "Back (Maid)",
  16126. image: {
  16127. source: "./media/characters/alluria/back-maid.svg",
  16128. extra: 806 / 738,
  16129. }
  16130. },
  16131. },
  16132. [
  16133. {
  16134. name: "Micro",
  16135. height: math.unit(6, "inches"),
  16136. default: true
  16137. },
  16138. ]
  16139. ))
  16140. characterMakers.push(() => makeCharacter(
  16141. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16142. {
  16143. front: {
  16144. height: math.unit(6, "feet"),
  16145. weight: math.unit(150, "lb"),
  16146. name: "Front",
  16147. image: {
  16148. source: "./media/characters/kyle/front.svg",
  16149. extra: 1069 / 962,
  16150. bottom: 77.228 / 1727.45
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Macro",
  16157. height: math.unit(150, "feet"),
  16158. default: true
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(6, "feet"),
  16167. weight: math.unit(300, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/duncan/front.svg",
  16171. extra: 1650 / 1482,
  16172. bottom: 0.05
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Macro",
  16179. height: math.unit(100, "feet"),
  16180. default: true
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16186. {
  16187. front: {
  16188. height: math.unit(5 + 4 / 12, "feet"),
  16189. weight: math.unit(220, "lb"),
  16190. name: "Front",
  16191. image: {
  16192. source: "./media/characters/memory/front.svg",
  16193. extra: 3641 / 3545,
  16194. bottom: 0.03
  16195. }
  16196. },
  16197. back: {
  16198. height: math.unit(5 + 4 / 12, "feet"),
  16199. weight: math.unit(220, "lb"),
  16200. name: "Back",
  16201. image: {
  16202. source: "./media/characters/memory/back.svg",
  16203. extra: 3641 / 3545,
  16204. bottom: 0.025
  16205. }
  16206. },
  16207. frontSkirt: {
  16208. height: math.unit(5 + 4 / 12, "feet"),
  16209. weight: math.unit(220, "lb"),
  16210. name: "Front (Skirt)",
  16211. image: {
  16212. source: "./media/characters/memory/front-skirt.svg",
  16213. extra: 3641 / 3545,
  16214. bottom: 0.03
  16215. }
  16216. },
  16217. frontDress: {
  16218. height: math.unit(5 + 4 / 12, "feet"),
  16219. weight: math.unit(220, "lb"),
  16220. name: "Front (Dress)",
  16221. image: {
  16222. source: "./media/characters/memory/front-dress.svg",
  16223. extra: 3641 / 3545,
  16224. bottom: 0.03
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Micro",
  16231. height: math.unit(6, "inches"),
  16232. default: true
  16233. },
  16234. {
  16235. name: "Normal",
  16236. height: math.unit(5 + 4 / 12, "feet")
  16237. },
  16238. ]
  16239. ))
  16240. characterMakers.push(() => makeCharacter(
  16241. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16242. {
  16243. front: {
  16244. height: math.unit(4 + 11 / 12, "feet"),
  16245. weight: math.unit(100, "lb"),
  16246. name: "Front",
  16247. image: {
  16248. source: "./media/characters/luno/front.svg",
  16249. extra: 1535 / 1487,
  16250. bottom: 0.03
  16251. }
  16252. },
  16253. },
  16254. [
  16255. {
  16256. name: "Micro",
  16257. height: math.unit(3, "inches")
  16258. },
  16259. {
  16260. name: "Normal",
  16261. height: math.unit(4 + 11 / 12, "feet"),
  16262. default: true
  16263. },
  16264. {
  16265. name: "Macro",
  16266. height: math.unit(300, "feet")
  16267. },
  16268. {
  16269. name: "Megamacro",
  16270. height: math.unit(700, "miles")
  16271. },
  16272. ]
  16273. ))
  16274. characterMakers.push(() => makeCharacter(
  16275. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16276. {
  16277. front: {
  16278. height: math.unit(6 + 2 / 12, "feet"),
  16279. weight: math.unit(170, "lb"),
  16280. name: "Front",
  16281. image: {
  16282. source: "./media/characters/jamesy/front.svg",
  16283. extra: 440 / 382,
  16284. bottom: 0.005
  16285. }
  16286. },
  16287. },
  16288. [
  16289. {
  16290. name: "Micro",
  16291. height: math.unit(3, "inches")
  16292. },
  16293. {
  16294. name: "Normal",
  16295. height: math.unit(6 + 2 / 12, "feet"),
  16296. default: true
  16297. },
  16298. {
  16299. name: "Macro",
  16300. height: math.unit(300, "feet")
  16301. },
  16302. {
  16303. name: "Megamacro",
  16304. height: math.unit(700, "miles")
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16310. {
  16311. front: {
  16312. height: math.unit(6, "feet"),
  16313. weight: math.unit(160, "lb"),
  16314. name: "Front",
  16315. image: {
  16316. source: "./media/characters/mark/front.svg",
  16317. extra: 3300 / 3100,
  16318. bottom: 136.42 / 3440.47
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Macro",
  16325. height: math.unit(120, "meters")
  16326. },
  16327. {
  16328. name: "Bigger Macro",
  16329. height: math.unit(350, "meters")
  16330. },
  16331. {
  16332. name: "Megamacro",
  16333. height: math.unit(8, "km"),
  16334. default: true
  16335. },
  16336. {
  16337. name: "Continental",
  16338. height: math.unit(4550, "km")
  16339. },
  16340. {
  16341. name: "Planetary",
  16342. height: math.unit(65000, "km")
  16343. },
  16344. ]
  16345. ))
  16346. characterMakers.push(() => makeCharacter(
  16347. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16348. {
  16349. front: {
  16350. height: math.unit(6, "feet"),
  16351. weight: math.unit(400, "lb"),
  16352. name: "Front",
  16353. image: {
  16354. source: "./media/characters/mac/front.svg",
  16355. extra: 1048 / 987.7,
  16356. bottom: 60 / 1107.6,
  16357. }
  16358. },
  16359. },
  16360. [
  16361. {
  16362. name: "Macro",
  16363. height: math.unit(500, "feet"),
  16364. default: true
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16370. {
  16371. front: {
  16372. height: math.unit(5 + 2 / 12, "feet"),
  16373. weight: math.unit(190, "lb"),
  16374. name: "Front",
  16375. image: {
  16376. source: "./media/characters/bari/front.svg",
  16377. extra: 3156 / 2880,
  16378. bottom: 0.03
  16379. }
  16380. },
  16381. back: {
  16382. height: math.unit(5 + 2 / 12, "feet"),
  16383. weight: math.unit(190, "lb"),
  16384. name: "Back",
  16385. image: {
  16386. source: "./media/characters/bari/back.svg",
  16387. extra: 3260 / 2834,
  16388. bottom: 0.025
  16389. }
  16390. },
  16391. frontPlush: {
  16392. height: math.unit(5 + 2 / 12, "feet"),
  16393. weight: math.unit(190, "lb"),
  16394. name: "Front (Plush)",
  16395. image: {
  16396. source: "./media/characters/bari/front-plush.svg",
  16397. extra: 1112 / 1061,
  16398. bottom: 0.002
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Micro",
  16405. height: math.unit(3, "inches")
  16406. },
  16407. {
  16408. name: "Normal",
  16409. height: math.unit(5 + 2 / 12, "feet"),
  16410. default: true
  16411. },
  16412. {
  16413. name: "Macro",
  16414. height: math.unit(20, "feet")
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16420. {
  16421. front: {
  16422. height: math.unit(6 + 1 / 12, "feet"),
  16423. weight: math.unit(275, "lb"),
  16424. name: "Front",
  16425. image: {
  16426. source: "./media/characters/hunter-misha-raven/front.svg"
  16427. }
  16428. },
  16429. },
  16430. [
  16431. {
  16432. name: "Mortal",
  16433. height: math.unit(6 + 1 / 12, "feet")
  16434. },
  16435. {
  16436. name: "Divine",
  16437. height: math.unit(1.12134e34, "parsecs"),
  16438. default: true
  16439. },
  16440. ]
  16441. ))
  16442. characterMakers.push(() => makeCharacter(
  16443. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16444. {
  16445. front: {
  16446. height: math.unit(6 + 3 / 12, "feet"),
  16447. weight: math.unit(220, "lb"),
  16448. name: "Front",
  16449. image: {
  16450. source: "./media/characters/max-calore/front.svg",
  16451. extra: 1700 / 1648,
  16452. bottom: 0.01
  16453. }
  16454. },
  16455. back: {
  16456. height: math.unit(6 + 3 / 12, "feet"),
  16457. weight: math.unit(220, "lb"),
  16458. name: "Back",
  16459. image: {
  16460. source: "./media/characters/max-calore/back.svg",
  16461. extra: 1700 / 1648,
  16462. bottom: 0.01
  16463. }
  16464. },
  16465. },
  16466. [
  16467. {
  16468. name: "Normal",
  16469. height: math.unit(6 + 3 / 12, "feet"),
  16470. default: true
  16471. },
  16472. ]
  16473. ))
  16474. characterMakers.push(() => makeCharacter(
  16475. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16476. {
  16477. side: {
  16478. height: math.unit(2 + 8 / 12, "feet"),
  16479. weight: math.unit(99, "lb"),
  16480. name: "Side",
  16481. image: {
  16482. source: "./media/characters/aspen/side.svg",
  16483. extra: 152 / 138,
  16484. bottom: 0.032
  16485. }
  16486. },
  16487. },
  16488. [
  16489. {
  16490. name: "Normal",
  16491. height: math.unit(2 + 8 / 12, "feet"),
  16492. default: true
  16493. },
  16494. ]
  16495. ))
  16496. characterMakers.push(() => makeCharacter(
  16497. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16498. {
  16499. side: {
  16500. height: math.unit(3 + 2 / 12, "feet"),
  16501. weight: math.unit(224, "lb"),
  16502. name: "Side",
  16503. image: {
  16504. source: "./media/characters/sheila-feral-wolf/side.svg",
  16505. extra: 179 / 166,
  16506. bottom: 0.03
  16507. }
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Normal",
  16513. height: math.unit(3 + 2 / 12, "feet"),
  16514. default: true
  16515. },
  16516. ]
  16517. ))
  16518. characterMakers.push(() => makeCharacter(
  16519. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16520. {
  16521. side: {
  16522. height: math.unit(1 + 9 / 12, "feet"),
  16523. weight: math.unit(38, "lb"),
  16524. name: "Side",
  16525. image: {
  16526. source: "./media/characters/michelle/side.svg",
  16527. extra: 147 / 136.7,
  16528. bottom: 0.03
  16529. }
  16530. },
  16531. },
  16532. [
  16533. {
  16534. name: "Normal",
  16535. height: math.unit(1 + 9 / 12, "feet"),
  16536. default: true
  16537. },
  16538. ]
  16539. ))
  16540. characterMakers.push(() => makeCharacter(
  16541. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16542. {
  16543. front: {
  16544. height: math.unit(1 + 1 / 12, "feet"),
  16545. weight: math.unit(18, "lb"),
  16546. name: "Front",
  16547. image: {
  16548. source: "./media/characters/nino/front.svg"
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(1 + 1 / 12, "feet"),
  16556. default: true
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16562. {
  16563. front: {
  16564. height: math.unit(1, "feet"),
  16565. weight: math.unit(16, "lb"),
  16566. name: "Front",
  16567. image: {
  16568. source: "./media/characters/viola/front.svg"
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(1, "feet"),
  16576. default: true
  16577. },
  16578. ]
  16579. ))
  16580. characterMakers.push(() => makeCharacter(
  16581. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16582. {
  16583. front: {
  16584. height: math.unit(6 + 5 / 12, "feet"),
  16585. weight: math.unit(580, "lb"),
  16586. name: "Front",
  16587. image: {
  16588. source: "./media/characters/atlas/front.svg",
  16589. extra: 298.5 / 290,
  16590. bottom: 0.015
  16591. }
  16592. },
  16593. },
  16594. [
  16595. {
  16596. name: "Normal",
  16597. height: math.unit(6 + 5 / 12, "feet"),
  16598. default: true
  16599. },
  16600. ]
  16601. ))
  16602. characterMakers.push(() => makeCharacter(
  16603. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16604. {
  16605. side: {
  16606. height: math.unit(1 + 10 / 12, "feet"),
  16607. weight: math.unit(25, "lb"),
  16608. name: "Side",
  16609. image: {
  16610. source: "./media/characters/davy/side.svg",
  16611. extra: 200 / 170,
  16612. bottom: 0.01
  16613. }
  16614. },
  16615. },
  16616. [
  16617. {
  16618. name: "Normal",
  16619. height: math.unit(1 + 10 / 12, "feet"),
  16620. default: true
  16621. },
  16622. ]
  16623. ))
  16624. characterMakers.push(() => makeCharacter(
  16625. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16626. {
  16627. side: {
  16628. height: math.unit(4 + 8 / 12, "feet"),
  16629. weight: math.unit(166, "lb"),
  16630. name: "Side",
  16631. image: {
  16632. source: "./media/characters/fiona/side.svg",
  16633. extra: 232 / 220,
  16634. bottom: 0.03
  16635. }
  16636. },
  16637. },
  16638. [
  16639. {
  16640. name: "Normal",
  16641. height: math.unit(4 + 8 / 12, "feet"),
  16642. default: true
  16643. },
  16644. ]
  16645. ))
  16646. characterMakers.push(() => makeCharacter(
  16647. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16648. {
  16649. front: {
  16650. height: math.unit(2, "feet"),
  16651. weight: math.unit(62, "lb"),
  16652. name: "Front",
  16653. image: {
  16654. source: "./media/characters/lyla/front.svg",
  16655. bottom: 0.1
  16656. }
  16657. },
  16658. },
  16659. [
  16660. {
  16661. name: "Normal",
  16662. height: math.unit(2, "feet"),
  16663. default: true
  16664. },
  16665. ]
  16666. ))
  16667. characterMakers.push(() => makeCharacter(
  16668. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16669. {
  16670. side: {
  16671. height: math.unit(1.8, "feet"),
  16672. weight: math.unit(44, "lb"),
  16673. name: "Side",
  16674. image: {
  16675. source: "./media/characters/perseus/side.svg",
  16676. bottom: 0.21
  16677. }
  16678. },
  16679. },
  16680. [
  16681. {
  16682. name: "Normal",
  16683. height: math.unit(1.8, "feet"),
  16684. default: true
  16685. },
  16686. ]
  16687. ))
  16688. characterMakers.push(() => makeCharacter(
  16689. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16690. {
  16691. side: {
  16692. height: math.unit(4 + 2 / 12, "feet"),
  16693. weight: math.unit(20, "lb"),
  16694. name: "Side",
  16695. image: {
  16696. source: "./media/characters/remus/side.svg"
  16697. }
  16698. },
  16699. },
  16700. [
  16701. {
  16702. name: "Normal",
  16703. height: math.unit(4 + 2 / 12, "feet"),
  16704. default: true
  16705. },
  16706. ]
  16707. ))
  16708. characterMakers.push(() => makeCharacter(
  16709. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16710. {
  16711. front: {
  16712. height: math.unit(4 + 11 / 12, "feet"),
  16713. weight: math.unit(114, "lb"),
  16714. name: "Front",
  16715. image: {
  16716. source: "./media/characters/raf/front.svg",
  16717. bottom: 20.5 / 1863
  16718. }
  16719. },
  16720. side: {
  16721. height: math.unit(4 + 11 / 12, "feet"),
  16722. weight: math.unit(114, "lb"),
  16723. name: "Side",
  16724. image: {
  16725. source: "./media/characters/raf/side.svg",
  16726. bottom: 22 / 1822
  16727. }
  16728. },
  16729. },
  16730. [
  16731. {
  16732. name: "Micro",
  16733. height: math.unit(2, "inches")
  16734. },
  16735. {
  16736. name: "Normal",
  16737. height: math.unit(4 + 11 / 12, "feet"),
  16738. default: true
  16739. },
  16740. {
  16741. name: "Macro",
  16742. height: math.unit(70, "feet")
  16743. },
  16744. ]
  16745. ))
  16746. characterMakers.push(() => makeCharacter(
  16747. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16748. {
  16749. front: {
  16750. height: math.unit(1.5, "meters"),
  16751. weight: math.unit(68, "kg"),
  16752. name: "Front",
  16753. image: {
  16754. source: "./media/characters/liam-einarr/front.svg",
  16755. extra: 2822 / 2666
  16756. }
  16757. },
  16758. back: {
  16759. height: math.unit(1.5, "meters"),
  16760. weight: math.unit(68, "kg"),
  16761. name: "Back",
  16762. image: {
  16763. source: "./media/characters/liam-einarr/back.svg",
  16764. extra: 2822 / 2666,
  16765. bottom: 0.015
  16766. }
  16767. },
  16768. },
  16769. [
  16770. {
  16771. name: "Normal",
  16772. height: math.unit(1.5, "meters"),
  16773. default: true
  16774. },
  16775. {
  16776. name: "Macro",
  16777. height: math.unit(150, "meters")
  16778. },
  16779. {
  16780. name: "Megamacro",
  16781. height: math.unit(35, "km")
  16782. },
  16783. ]
  16784. ))
  16785. characterMakers.push(() => makeCharacter(
  16786. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16787. {
  16788. front: {
  16789. height: math.unit(6, "feet"),
  16790. weight: math.unit(75, "kg"),
  16791. name: "Front",
  16792. image: {
  16793. source: "./media/characters/linda/front.svg",
  16794. extra: 930 / 874,
  16795. bottom: 0.004
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(6, "feet"),
  16803. default: true
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16809. {
  16810. front: {
  16811. height: math.unit(6 + 8 / 12, "feet"),
  16812. weight: math.unit(220, "lb"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/caylex/front.svg",
  16816. extra: 821 / 772,
  16817. bottom: 0.07
  16818. }
  16819. },
  16820. back: {
  16821. height: math.unit(6 + 8 / 12, "feet"),
  16822. weight: math.unit(220, "lb"),
  16823. name: "Back",
  16824. image: {
  16825. source: "./media/characters/caylex/back.svg",
  16826. extra: 821 / 772,
  16827. bottom: 0.022
  16828. }
  16829. },
  16830. hand: {
  16831. height: math.unit(1.25, "feet"),
  16832. name: "Hand",
  16833. image: {
  16834. source: "./media/characters/caylex/hand.svg"
  16835. }
  16836. },
  16837. foot: {
  16838. height: math.unit(1.6, "feet"),
  16839. name: "Foot",
  16840. image: {
  16841. source: "./media/characters/caylex/foot.svg"
  16842. }
  16843. },
  16844. armored: {
  16845. height: math.unit(6 + 8 / 12, "feet"),
  16846. weight: math.unit(250, "lb"),
  16847. name: "Armored",
  16848. image: {
  16849. source: "./media/characters/caylex/armored.svg",
  16850. extra: 1420 / 1310,
  16851. bottom: 0.045
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Normal",
  16858. height: math.unit(6 + 8 / 12, "feet"),
  16859. default: true
  16860. },
  16861. {
  16862. name: "Normal+",
  16863. height: math.unit(12, "feet")
  16864. },
  16865. ]
  16866. ))
  16867. characterMakers.push(() => makeCharacter(
  16868. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16869. {
  16870. front: {
  16871. height: math.unit(7 + 6 / 12, "feet"),
  16872. weight: math.unit(288, "lb"),
  16873. name: "Front",
  16874. image: {
  16875. source: "./media/characters/alana/front.svg",
  16876. extra: 679 / 653,
  16877. bottom: 22.5 / 701
  16878. }
  16879. },
  16880. },
  16881. [
  16882. {
  16883. name: "Normal",
  16884. height: math.unit(7 + 6 / 12, "feet")
  16885. },
  16886. {
  16887. name: "Large",
  16888. height: math.unit(50, "feet")
  16889. },
  16890. {
  16891. name: "Macro",
  16892. height: math.unit(100, "feet"),
  16893. default: true
  16894. },
  16895. {
  16896. name: "Macro+",
  16897. height: math.unit(200, "feet")
  16898. },
  16899. ]
  16900. ))
  16901. characterMakers.push(() => makeCharacter(
  16902. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16903. {
  16904. front: {
  16905. height: math.unit(6 + 1 / 12, "feet"),
  16906. weight: math.unit(210, "lb"),
  16907. name: "Front",
  16908. image: {
  16909. source: "./media/characters/hasani/front.svg",
  16910. extra: 244 / 232,
  16911. bottom: 0.01
  16912. }
  16913. },
  16914. back: {
  16915. height: math.unit(6 + 1 / 12, "feet"),
  16916. weight: math.unit(210, "lb"),
  16917. name: "Back",
  16918. image: {
  16919. source: "./media/characters/hasani/back.svg",
  16920. extra: 244 / 232,
  16921. bottom: 0.01
  16922. }
  16923. },
  16924. },
  16925. [
  16926. {
  16927. name: "Normal",
  16928. height: math.unit(6 + 1 / 12, "feet")
  16929. },
  16930. {
  16931. name: "Macro",
  16932. height: math.unit(175, "feet"),
  16933. default: true
  16934. },
  16935. ]
  16936. ))
  16937. characterMakers.push(() => makeCharacter(
  16938. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16939. {
  16940. front: {
  16941. height: math.unit(1.82, "meters"),
  16942. weight: math.unit(140, "lb"),
  16943. name: "Front",
  16944. image: {
  16945. source: "./media/characters/nita/front.svg",
  16946. extra: 2473 / 2363,
  16947. bottom: 0.01
  16948. }
  16949. },
  16950. },
  16951. [
  16952. {
  16953. name: "Normal",
  16954. height: math.unit(1.82, "m")
  16955. },
  16956. {
  16957. name: "Macro",
  16958. height: math.unit(300, "m")
  16959. },
  16960. {
  16961. name: "Mistake Canon",
  16962. height: math.unit(0.5, "miles"),
  16963. default: true
  16964. },
  16965. {
  16966. name: "Big Mistake",
  16967. height: math.unit(13, "miles")
  16968. },
  16969. {
  16970. name: "Playing God",
  16971. height: math.unit(2450, "miles")
  16972. },
  16973. ]
  16974. ))
  16975. characterMakers.push(() => makeCharacter(
  16976. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16977. {
  16978. front: {
  16979. height: math.unit(4, "feet"),
  16980. weight: math.unit(120, "lb"),
  16981. name: "Front",
  16982. image: {
  16983. source: "./media/characters/shiriko/front.svg",
  16984. extra: 195 / 188
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Normal",
  16991. height: math.unit(4, "feet"),
  16992. default: true
  16993. },
  16994. ]
  16995. ))
  16996. characterMakers.push(() => makeCharacter(
  16997. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16998. {
  16999. front: {
  17000. height: math.unit(6, "feet"),
  17001. name: "front",
  17002. image: {
  17003. source: "./media/characters/deja/front.svg",
  17004. extra: 926 / 840,
  17005. bottom: 0.07
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Planck Length",
  17012. height: math.unit(1.6e-35, "meters")
  17013. },
  17014. {
  17015. name: "Normal",
  17016. height: math.unit(30.48, "meters"),
  17017. default: true
  17018. },
  17019. {
  17020. name: "Universal",
  17021. height: math.unit(8.8e26, "meters")
  17022. },
  17023. ]
  17024. ))
  17025. characterMakers.push(() => makeCharacter(
  17026. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17027. {
  17028. side: {
  17029. height: math.unit(8, "feet"),
  17030. weight: math.unit(6300, "lb"),
  17031. name: "Side",
  17032. image: {
  17033. source: "./media/characters/anima/side.svg",
  17034. bottom: 0.035
  17035. }
  17036. },
  17037. },
  17038. [
  17039. {
  17040. name: "Normal",
  17041. height: math.unit(8, "feet"),
  17042. default: true
  17043. },
  17044. ]
  17045. ))
  17046. characterMakers.push(() => makeCharacter(
  17047. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17048. {
  17049. front: {
  17050. height: math.unit(8, "feet"),
  17051. weight: math.unit(350, "lb"),
  17052. name: "Front",
  17053. image: {
  17054. source: "./media/characters/bianca/front.svg",
  17055. extra: 234 / 225,
  17056. bottom: 0.03
  17057. }
  17058. },
  17059. },
  17060. [
  17061. {
  17062. name: "Normal",
  17063. height: math.unit(8, "feet"),
  17064. default: true
  17065. },
  17066. ]
  17067. ))
  17068. characterMakers.push(() => makeCharacter(
  17069. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17070. {
  17071. front: {
  17072. height: math.unit(6, "feet"),
  17073. weight: math.unit(150, "lb"),
  17074. name: "Front",
  17075. image: {
  17076. source: "./media/characters/adinia/front.svg",
  17077. extra: 1845 / 1672,
  17078. bottom: 0.02
  17079. }
  17080. },
  17081. back: {
  17082. height: math.unit(6, "feet"),
  17083. weight: math.unit(150, "lb"),
  17084. name: "Back",
  17085. image: {
  17086. source: "./media/characters/adinia/back.svg",
  17087. extra: 1845 / 1672,
  17088. bottom: 0.002
  17089. }
  17090. },
  17091. },
  17092. [
  17093. {
  17094. name: "Normal",
  17095. height: math.unit(11 + 5 / 12, "feet"),
  17096. default: true
  17097. },
  17098. ]
  17099. ))
  17100. characterMakers.push(() => makeCharacter(
  17101. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17102. {
  17103. front: {
  17104. height: math.unit(3, "meters"),
  17105. weight: math.unit(200, "kg"),
  17106. name: "Front",
  17107. image: {
  17108. source: "./media/characters/lykasa/front.svg",
  17109. extra: 1076 / 976,
  17110. bottom: 0.06
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Normal",
  17117. height: math.unit(3, "meters")
  17118. },
  17119. {
  17120. name: "Kaiju",
  17121. height: math.unit(120, "meters"),
  17122. default: true
  17123. },
  17124. {
  17125. name: "Mega Kaiju",
  17126. height: math.unit(240, "km")
  17127. },
  17128. {
  17129. name: "Giga Kaiju",
  17130. height: math.unit(400, "megameters")
  17131. },
  17132. {
  17133. name: "Tera Kaiju",
  17134. height: math.unit(800, "gigameters")
  17135. },
  17136. {
  17137. name: "Kaiju Dragon Goddess",
  17138. height: math.unit(26, "zettaparsecs")
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17144. {
  17145. side: {
  17146. height: math.unit(283 / 124 * 6, "feet"),
  17147. weight: math.unit(35000, "lb"),
  17148. name: "Side",
  17149. image: {
  17150. source: "./media/characters/malfaren/side.svg",
  17151. extra: 2500 / 1010,
  17152. bottom: 0.01
  17153. }
  17154. },
  17155. front: {
  17156. height: math.unit(22.36, "feet"),
  17157. weight: math.unit(35000, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/malfaren/front.svg",
  17161. extra: 1631 / 1476,
  17162. bottom: 0.01
  17163. }
  17164. },
  17165. maw: {
  17166. height: math.unit(6.9, "feet"),
  17167. name: "Maw",
  17168. image: {
  17169. source: "./media/characters/malfaren/maw.svg"
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Big",
  17176. height: math.unit(283 / 162 * 6, "feet"),
  17177. },
  17178. {
  17179. name: "Bigger",
  17180. height: math.unit(283 / 124 * 6, "feet")
  17181. },
  17182. {
  17183. name: "Massive",
  17184. height: math.unit(283 / 92 * 6, "feet"),
  17185. default: true
  17186. },
  17187. {
  17188. name: "👀💦",
  17189. height: math.unit(283 / 73 * 6, "feet"),
  17190. },
  17191. ]
  17192. ))
  17193. characterMakers.push(() => makeCharacter(
  17194. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17195. {
  17196. front: {
  17197. height: math.unit(1.7, "m"),
  17198. weight: math.unit(70, "kg"),
  17199. name: "Front",
  17200. image: {
  17201. source: "./media/characters/kernel/front.svg",
  17202. extra: 222 / 210,
  17203. bottom: 0.007
  17204. }
  17205. },
  17206. },
  17207. [
  17208. {
  17209. name: "Nano",
  17210. height: math.unit(17, "micrometers")
  17211. },
  17212. {
  17213. name: "Micro",
  17214. height: math.unit(1.7, "mm")
  17215. },
  17216. {
  17217. name: "Small",
  17218. height: math.unit(1.7, "cm")
  17219. },
  17220. {
  17221. name: "Normal",
  17222. height: math.unit(1.7, "m"),
  17223. default: true
  17224. },
  17225. ]
  17226. ))
  17227. characterMakers.push(() => makeCharacter(
  17228. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17229. {
  17230. front: {
  17231. height: math.unit(1.75, "meters"),
  17232. weight: math.unit(65, "kg"),
  17233. name: "Front",
  17234. image: {
  17235. source: "./media/characters/jayne-folest/front.svg",
  17236. extra: 2115 / 2007,
  17237. bottom: 0.02
  17238. }
  17239. },
  17240. back: {
  17241. height: math.unit(1.75, "meters"),
  17242. weight: math.unit(65, "kg"),
  17243. name: "Back",
  17244. image: {
  17245. source: "./media/characters/jayne-folest/back.svg",
  17246. extra: 2115 / 2007,
  17247. bottom: 0.005
  17248. }
  17249. },
  17250. frontClothed: {
  17251. height: math.unit(1.75, "meters"),
  17252. weight: math.unit(65, "kg"),
  17253. name: "Front (Clothed)",
  17254. image: {
  17255. source: "./media/characters/jayne-folest/front-clothed.svg",
  17256. extra: 2115 / 2007,
  17257. bottom: 0.035
  17258. }
  17259. },
  17260. hand: {
  17261. height: math.unit(1 / 1.260, "feet"),
  17262. name: "Hand",
  17263. image: {
  17264. source: "./media/characters/jayne-folest/hand.svg"
  17265. }
  17266. },
  17267. foot: {
  17268. height: math.unit(1 / 0.918, "feet"),
  17269. name: "Foot",
  17270. image: {
  17271. source: "./media/characters/jayne-folest/foot.svg"
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Micro",
  17278. height: math.unit(4, "cm")
  17279. },
  17280. {
  17281. name: "Normal",
  17282. height: math.unit(1.75, "meters")
  17283. },
  17284. {
  17285. name: "Macro",
  17286. height: math.unit(47.5, "meters"),
  17287. default: true
  17288. },
  17289. ]
  17290. ))
  17291. characterMakers.push(() => makeCharacter(
  17292. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17293. {
  17294. front: {
  17295. height: math.unit(180, "cm"),
  17296. weight: math.unit(70, "kg"),
  17297. name: "Front",
  17298. image: {
  17299. source: "./media/characters/algier/front.svg",
  17300. extra: 596 / 572,
  17301. bottom: 0.04
  17302. }
  17303. },
  17304. back: {
  17305. height: math.unit(180, "cm"),
  17306. weight: math.unit(70, "kg"),
  17307. name: "Back",
  17308. image: {
  17309. source: "./media/characters/algier/back.svg",
  17310. extra: 596 / 572,
  17311. bottom: 0.025
  17312. }
  17313. },
  17314. frontdressed: {
  17315. height: math.unit(180, "cm"),
  17316. weight: math.unit(150, "kg"),
  17317. name: "Front-dressed",
  17318. image: {
  17319. source: "./media/characters/algier/front-dressed.svg",
  17320. extra: 596 / 572,
  17321. bottom: 0.038
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Micro",
  17328. height: math.unit(5, "cm")
  17329. },
  17330. {
  17331. name: "Normal",
  17332. height: math.unit(180, "cm"),
  17333. default: true
  17334. },
  17335. {
  17336. name: "Macro",
  17337. height: math.unit(64, "m")
  17338. },
  17339. ]
  17340. ))
  17341. characterMakers.push(() => makeCharacter(
  17342. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17343. {
  17344. upright: {
  17345. height: math.unit(7, "feet"),
  17346. weight: math.unit(300, "lb"),
  17347. name: "Upright",
  17348. image: {
  17349. source: "./media/characters/pretzel/upright.svg",
  17350. extra: 534 / 522,
  17351. bottom: 0.065
  17352. }
  17353. },
  17354. sprawling: {
  17355. height: math.unit(3.75, "feet"),
  17356. weight: math.unit(300, "lb"),
  17357. name: "Sprawling",
  17358. image: {
  17359. source: "./media/characters/pretzel/sprawling.svg",
  17360. extra: 314 / 281,
  17361. bottom: 0.1
  17362. }
  17363. },
  17364. tongue: {
  17365. height: math.unit(2, "feet"),
  17366. name: "Tongue",
  17367. image: {
  17368. source: "./media/characters/pretzel/tongue.svg"
  17369. }
  17370. },
  17371. },
  17372. [
  17373. {
  17374. name: "Normal",
  17375. height: math.unit(7, "feet"),
  17376. default: true
  17377. },
  17378. {
  17379. name: "Oversized",
  17380. height: math.unit(15, "feet")
  17381. },
  17382. {
  17383. name: "Huge",
  17384. height: math.unit(30, "feet")
  17385. },
  17386. {
  17387. name: "Macro",
  17388. height: math.unit(250, "feet")
  17389. },
  17390. ]
  17391. ))
  17392. characterMakers.push(() => makeCharacter(
  17393. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17394. {
  17395. sideFront: {
  17396. height: math.unit(5 + 2 / 12, "feet"),
  17397. weight: math.unit(120, "lb"),
  17398. name: "Front Side",
  17399. image: {
  17400. source: "./media/characters/roxi/side-front.svg",
  17401. extra: 2924 / 2717,
  17402. bottom: 0.08
  17403. }
  17404. },
  17405. sideBack: {
  17406. height: math.unit(5 + 2 / 12, "feet"),
  17407. weight: math.unit(120, "lb"),
  17408. name: "Back Side",
  17409. image: {
  17410. source: "./media/characters/roxi/side-back.svg",
  17411. extra: 2904 / 2693,
  17412. bottom: 0.06
  17413. }
  17414. },
  17415. front: {
  17416. height: math.unit(5 + 2 / 12, "feet"),
  17417. weight: math.unit(120, "lb"),
  17418. name: "Front",
  17419. image: {
  17420. source: "./media/characters/roxi/front.svg",
  17421. extra: 2028 / 1907,
  17422. bottom: 0.01
  17423. }
  17424. },
  17425. frontAlt: {
  17426. height: math.unit(5 + 2 / 12, "feet"),
  17427. weight: math.unit(120, "lb"),
  17428. name: "Front (Alt)",
  17429. image: {
  17430. source: "./media/characters/roxi/front-alt.svg",
  17431. extra: 1828 / 1798,
  17432. bottom: 0.01
  17433. }
  17434. },
  17435. sitting: {
  17436. height: math.unit(2.8, "feet"),
  17437. weight: math.unit(120, "lb"),
  17438. name: "Sitting",
  17439. image: {
  17440. source: "./media/characters/roxi/sitting.svg",
  17441. extra: 2660 / 2462,
  17442. bottom: 0.1
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(5 + 2 / 12, "feet"),
  17450. default: true
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17456. {
  17457. side: {
  17458. height: math.unit(55, "feet"),
  17459. weight: math.unit(153, "tons"),
  17460. name: "Side",
  17461. image: {
  17462. source: "./media/characters/shadow/side.svg",
  17463. extra: 701 / 628,
  17464. bottom: 0.02
  17465. }
  17466. },
  17467. flying: {
  17468. height: math.unit(145, "feet"),
  17469. weight: math.unit(153, "tons"),
  17470. name: "Flying",
  17471. image: {
  17472. source: "./media/characters/shadow/flying.svg"
  17473. }
  17474. },
  17475. },
  17476. [
  17477. {
  17478. name: "Normal",
  17479. height: math.unit(55, "feet"),
  17480. default: true
  17481. },
  17482. ]
  17483. ))
  17484. characterMakers.push(() => makeCharacter(
  17485. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17486. {
  17487. front: {
  17488. height: math.unit(6, "feet"),
  17489. weight: math.unit(200, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/marcie/front.svg",
  17493. extra: 960 / 876,
  17494. bottom: 58 / 1017.87
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Macro",
  17501. height: math.unit(1, "mile"),
  17502. default: true
  17503. },
  17504. ]
  17505. ))
  17506. characterMakers.push(() => makeCharacter(
  17507. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17508. {
  17509. front: {
  17510. height: math.unit(7, "feet"),
  17511. weight: math.unit(200, "lb"),
  17512. name: "Front",
  17513. image: {
  17514. source: "./media/characters/kachina/front.svg",
  17515. extra: 1290.68 / 1119,
  17516. bottom: 36.5 / 1327.18
  17517. }
  17518. },
  17519. },
  17520. [
  17521. {
  17522. name: "Normal",
  17523. height: math.unit(7, "feet"),
  17524. default: true
  17525. },
  17526. ]
  17527. ))
  17528. characterMakers.push(() => makeCharacter(
  17529. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17530. {
  17531. looking: {
  17532. height: math.unit(2, "meters"),
  17533. weight: math.unit(300, "kg"),
  17534. name: "Looking",
  17535. image: {
  17536. source: "./media/characters/kash/looking.svg",
  17537. extra: 474 / 344,
  17538. bottom: 0.03
  17539. }
  17540. },
  17541. side: {
  17542. height: math.unit(2, "meters"),
  17543. weight: math.unit(300, "kg"),
  17544. name: "Side",
  17545. image: {
  17546. source: "./media/characters/kash/side.svg",
  17547. extra: 302 / 251,
  17548. bottom: 0.03
  17549. }
  17550. },
  17551. front: {
  17552. height: math.unit(2, "meters"),
  17553. weight: math.unit(300, "kg"),
  17554. name: "Front",
  17555. image: {
  17556. source: "./media/characters/kash/front.svg",
  17557. extra: 495 / 360,
  17558. bottom: 0.015
  17559. }
  17560. },
  17561. },
  17562. [
  17563. {
  17564. name: "Normal",
  17565. height: math.unit(2, "meters"),
  17566. default: true
  17567. },
  17568. {
  17569. name: "Big",
  17570. height: math.unit(3, "meters")
  17571. },
  17572. {
  17573. name: "Large",
  17574. height: math.unit(5, "meters")
  17575. },
  17576. ]
  17577. ))
  17578. characterMakers.push(() => makeCharacter(
  17579. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17580. {
  17581. feeding: {
  17582. height: math.unit(6.7, "feet"),
  17583. weight: math.unit(350, "lb"),
  17584. name: "Feeding",
  17585. image: {
  17586. source: "./media/characters/lalim/feeding.svg",
  17587. }
  17588. },
  17589. },
  17590. [
  17591. {
  17592. name: "Normal",
  17593. height: math.unit(6.7, "feet"),
  17594. default: true
  17595. },
  17596. ]
  17597. ))
  17598. characterMakers.push(() => makeCharacter(
  17599. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17600. {
  17601. front: {
  17602. height: math.unit(9.5, "feet"),
  17603. weight: math.unit(600, "lb"),
  17604. name: "Front",
  17605. image: {
  17606. source: "./media/characters/de'vout/front.svg",
  17607. extra: 1443 / 1328,
  17608. bottom: 0.025
  17609. }
  17610. },
  17611. back: {
  17612. height: math.unit(9.5, "feet"),
  17613. weight: math.unit(600, "lb"),
  17614. name: "Back",
  17615. image: {
  17616. source: "./media/characters/de'vout/back.svg",
  17617. extra: 1443 / 1328
  17618. }
  17619. },
  17620. frontDressed: {
  17621. height: math.unit(9.5, "feet"),
  17622. weight: math.unit(600, "lb"),
  17623. name: "Front (Dressed",
  17624. image: {
  17625. source: "./media/characters/de'vout/front-dressed.svg",
  17626. extra: 1443 / 1328,
  17627. bottom: 0.025
  17628. }
  17629. },
  17630. backDressed: {
  17631. height: math.unit(9.5, "feet"),
  17632. weight: math.unit(600, "lb"),
  17633. name: "Back (Dressed",
  17634. image: {
  17635. source: "./media/characters/de'vout/back-dressed.svg",
  17636. extra: 1443 / 1328
  17637. }
  17638. },
  17639. },
  17640. [
  17641. {
  17642. name: "Normal",
  17643. height: math.unit(9.5, "feet"),
  17644. default: true
  17645. },
  17646. ]
  17647. ))
  17648. characterMakers.push(() => makeCharacter(
  17649. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17650. {
  17651. front: {
  17652. height: math.unit(8, "feet"),
  17653. weight: math.unit(225, "lb"),
  17654. name: "Front",
  17655. image: {
  17656. source: "./media/characters/talana/front.svg",
  17657. extra: 1410 / 1300,
  17658. bottom: 0.015
  17659. }
  17660. },
  17661. frontDressed: {
  17662. height: math.unit(8, "feet"),
  17663. weight: math.unit(225, "lb"),
  17664. name: "Front (Dressed",
  17665. image: {
  17666. source: "./media/characters/talana/front-dressed.svg",
  17667. extra: 1410 / 1300,
  17668. bottom: 0.015
  17669. }
  17670. },
  17671. },
  17672. [
  17673. {
  17674. name: "Normal",
  17675. height: math.unit(8, "feet"),
  17676. default: true
  17677. },
  17678. ]
  17679. ))
  17680. characterMakers.push(() => makeCharacter(
  17681. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17682. {
  17683. side: {
  17684. height: math.unit(7.2, "feet"),
  17685. weight: math.unit(150, "lb"),
  17686. name: "Side",
  17687. image: {
  17688. source: "./media/characters/xeauvok/side.svg",
  17689. extra: 1975 / 1523,
  17690. bottom: 0.07
  17691. }
  17692. },
  17693. },
  17694. [
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(7.2, "feet"),
  17698. default: true
  17699. },
  17700. ]
  17701. ))
  17702. characterMakers.push(() => makeCharacter(
  17703. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17704. {
  17705. side: {
  17706. height: math.unit(10, "feet"),
  17707. weight: math.unit(900, "kg"),
  17708. name: "Side",
  17709. image: {
  17710. source: "./media/characters/zara/side.svg",
  17711. extra: 504 / 498
  17712. }
  17713. },
  17714. },
  17715. [
  17716. {
  17717. name: "Normal",
  17718. height: math.unit(10, "feet"),
  17719. default: true
  17720. },
  17721. ]
  17722. ))
  17723. characterMakers.push(() => makeCharacter(
  17724. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17725. {
  17726. side: {
  17727. height: math.unit(6, "feet"),
  17728. weight: math.unit(150, "lb"),
  17729. name: "Side",
  17730. image: {
  17731. source: "./media/characters/richard-dragon/side.svg",
  17732. extra: 845 / 340,
  17733. bottom: 0.017
  17734. }
  17735. },
  17736. maw: {
  17737. height: math.unit(2.97, "feet"),
  17738. name: "Maw",
  17739. image: {
  17740. source: "./media/characters/richard-dragon/maw.svg"
  17741. }
  17742. },
  17743. },
  17744. [
  17745. ]
  17746. ))
  17747. characterMakers.push(() => makeCharacter(
  17748. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17749. {
  17750. front: {
  17751. height: math.unit(4, "feet"),
  17752. weight: math.unit(100, "lb"),
  17753. name: "Front",
  17754. image: {
  17755. source: "./media/characters/richard-smeargle/front.svg",
  17756. extra: 2952 / 2820,
  17757. bottom: 0.028
  17758. }
  17759. },
  17760. },
  17761. [
  17762. {
  17763. name: "Normal",
  17764. height: math.unit(4, "feet"),
  17765. default: true
  17766. },
  17767. {
  17768. name: "Dynamax",
  17769. height: math.unit(20, "meters")
  17770. },
  17771. ]
  17772. ))
  17773. characterMakers.push(() => makeCharacter(
  17774. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17775. {
  17776. front: {
  17777. height: math.unit(6, "feet"),
  17778. weight: math.unit(110, "lb"),
  17779. name: "Front",
  17780. image: {
  17781. source: "./media/characters/klay/front.svg",
  17782. extra: 962 / 883,
  17783. bottom: 0.04
  17784. }
  17785. },
  17786. back: {
  17787. height: math.unit(6, "feet"),
  17788. weight: math.unit(110, "lb"),
  17789. name: "Back",
  17790. image: {
  17791. source: "./media/characters/klay/back.svg",
  17792. extra: 962 / 883
  17793. }
  17794. },
  17795. beans: {
  17796. height: math.unit(1.15, "feet"),
  17797. name: "Beans",
  17798. image: {
  17799. source: "./media/characters/klay/beans.svg"
  17800. }
  17801. },
  17802. },
  17803. [
  17804. {
  17805. name: "Micro",
  17806. height: math.unit(6, "inches")
  17807. },
  17808. {
  17809. name: "Mini",
  17810. height: math.unit(3, "feet")
  17811. },
  17812. {
  17813. name: "Normal",
  17814. height: math.unit(6, "feet"),
  17815. default: true
  17816. },
  17817. {
  17818. name: "Big",
  17819. height: math.unit(25, "feet")
  17820. },
  17821. {
  17822. name: "Macro",
  17823. height: math.unit(100, "feet")
  17824. },
  17825. {
  17826. name: "Megamacro",
  17827. height: math.unit(400, "feet")
  17828. },
  17829. ]
  17830. ))
  17831. characterMakers.push(() => makeCharacter(
  17832. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17833. {
  17834. front: {
  17835. height: math.unit(6, "feet"),
  17836. weight: math.unit(160, "lb"),
  17837. name: "Front",
  17838. image: {
  17839. source: "./media/characters/marcus/front.svg",
  17840. extra: 734 / 676,
  17841. bottom: 0.03
  17842. }
  17843. },
  17844. },
  17845. [
  17846. {
  17847. name: "Little",
  17848. height: math.unit(6, "feet")
  17849. },
  17850. {
  17851. name: "Normal",
  17852. height: math.unit(110, "feet"),
  17853. default: true
  17854. },
  17855. {
  17856. name: "Macro",
  17857. height: math.unit(250, "feet")
  17858. },
  17859. {
  17860. name: "Megamacro",
  17861. height: math.unit(1000, "feet")
  17862. },
  17863. ]
  17864. ))
  17865. characterMakers.push(() => makeCharacter(
  17866. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17867. {
  17868. front: {
  17869. height: math.unit(7, "feet"),
  17870. weight: math.unit(275, "lb"),
  17871. name: "Front",
  17872. image: {
  17873. source: "./media/characters/claude-delroute/front.svg",
  17874. extra: 230 / 214,
  17875. bottom: 0.007
  17876. }
  17877. },
  17878. side: {
  17879. height: math.unit(7, "feet"),
  17880. weight: math.unit(275, "lb"),
  17881. name: "Side",
  17882. image: {
  17883. source: "./media/characters/claude-delroute/side.svg",
  17884. extra: 222 / 214,
  17885. bottom: 0.01
  17886. }
  17887. },
  17888. back: {
  17889. height: math.unit(7, "feet"),
  17890. weight: math.unit(275, "lb"),
  17891. name: "Back",
  17892. image: {
  17893. source: "./media/characters/claude-delroute/back.svg",
  17894. extra: 230 / 214,
  17895. bottom: 0.015
  17896. }
  17897. },
  17898. maw: {
  17899. height: math.unit(0.6407, "meters"),
  17900. name: "Maw",
  17901. image: {
  17902. source: "./media/characters/claude-delroute/maw.svg"
  17903. }
  17904. },
  17905. },
  17906. [
  17907. {
  17908. name: "Normal",
  17909. height: math.unit(7, "feet"),
  17910. default: true
  17911. },
  17912. {
  17913. name: "Lorge",
  17914. height: math.unit(20, "feet")
  17915. },
  17916. ]
  17917. ))
  17918. characterMakers.push(() => makeCharacter(
  17919. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17920. {
  17921. front: {
  17922. height: math.unit(8 + 4 / 12, "feet"),
  17923. weight: math.unit(600, "lb"),
  17924. name: "Front",
  17925. image: {
  17926. source: "./media/characters/dragonien/front.svg",
  17927. extra: 100 / 94,
  17928. bottom: 3.3 / 103.3445
  17929. }
  17930. },
  17931. back: {
  17932. height: math.unit(8 + 4 / 12, "feet"),
  17933. weight: math.unit(600, "lb"),
  17934. name: "Back",
  17935. image: {
  17936. source: "./media/characters/dragonien/back.svg",
  17937. extra: 776 / 746,
  17938. bottom: 6.4 / 782.0616
  17939. }
  17940. },
  17941. foot: {
  17942. height: math.unit(1.54, "feet"),
  17943. name: "Foot",
  17944. image: {
  17945. source: "./media/characters/dragonien/foot.svg",
  17946. }
  17947. },
  17948. },
  17949. [
  17950. {
  17951. name: "Normal",
  17952. height: math.unit(8 + 4 / 12, "feet"),
  17953. default: true
  17954. },
  17955. {
  17956. name: "Macro",
  17957. height: math.unit(200, "feet")
  17958. },
  17959. {
  17960. name: "Megamacro",
  17961. height: math.unit(1, "mile")
  17962. },
  17963. {
  17964. name: "Gigamacro",
  17965. height: math.unit(1000, "miles")
  17966. },
  17967. ]
  17968. ))
  17969. characterMakers.push(() => makeCharacter(
  17970. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17971. {
  17972. front: {
  17973. height: math.unit(5 + 2 / 12, "feet"),
  17974. weight: math.unit(110, "lb"),
  17975. name: "Front",
  17976. image: {
  17977. source: "./media/characters/desta/front.svg",
  17978. extra: 767 / 726,
  17979. bottom: 11.7 / 779
  17980. }
  17981. },
  17982. back: {
  17983. height: math.unit(5 + 2 / 12, "feet"),
  17984. weight: math.unit(110, "lb"),
  17985. name: "Back",
  17986. image: {
  17987. source: "./media/characters/desta/back.svg",
  17988. extra: 777 / 728,
  17989. bottom: 6 / 784
  17990. }
  17991. },
  17992. frontAlt: {
  17993. height: math.unit(5 + 2 / 12, "feet"),
  17994. weight: math.unit(110, "lb"),
  17995. name: "Front",
  17996. image: {
  17997. source: "./media/characters/desta/front-alt.svg",
  17998. extra: 1482 / 1417
  17999. }
  18000. },
  18001. side: {
  18002. height: math.unit(5 + 2 / 12, "feet"),
  18003. weight: math.unit(110, "lb"),
  18004. name: "Side",
  18005. image: {
  18006. source: "./media/characters/desta/side.svg",
  18007. extra: 2579 / 2491,
  18008. bottom: 0.053
  18009. }
  18010. },
  18011. },
  18012. [
  18013. {
  18014. name: "Micro",
  18015. height: math.unit(6, "inches")
  18016. },
  18017. {
  18018. name: "Normal",
  18019. height: math.unit(5 + 2 / 12, "feet"),
  18020. default: true
  18021. },
  18022. {
  18023. name: "Macro",
  18024. height: math.unit(62, "feet")
  18025. },
  18026. {
  18027. name: "Megamacro",
  18028. height: math.unit(1800, "feet")
  18029. },
  18030. ]
  18031. ))
  18032. characterMakers.push(() => makeCharacter(
  18033. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18034. {
  18035. front: {
  18036. height: math.unit(10, "feet"),
  18037. weight: math.unit(700, "lb"),
  18038. name: "Front",
  18039. image: {
  18040. source: "./media/characters/storm-alystar/front.svg",
  18041. extra: 2112 / 1898,
  18042. bottom: 0.034
  18043. }
  18044. },
  18045. },
  18046. [
  18047. {
  18048. name: "Micro",
  18049. height: math.unit(3.5, "inches")
  18050. },
  18051. {
  18052. name: "Normal",
  18053. height: math.unit(10, "feet"),
  18054. default: true
  18055. },
  18056. {
  18057. name: "Macro",
  18058. height: math.unit(400, "feet")
  18059. },
  18060. {
  18061. name: "Deific",
  18062. height: math.unit(60, "miles")
  18063. },
  18064. ]
  18065. ))
  18066. characterMakers.push(() => makeCharacter(
  18067. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18068. {
  18069. front: {
  18070. height: math.unit(2.35, "meters"),
  18071. weight: math.unit(119, "kg"),
  18072. name: "Front",
  18073. image: {
  18074. source: "./media/characters/ilia/front.svg",
  18075. extra: 1285 / 1255,
  18076. bottom: 0.06
  18077. }
  18078. },
  18079. },
  18080. [
  18081. {
  18082. name: "Normal",
  18083. height: math.unit(2.35, "meters")
  18084. },
  18085. {
  18086. name: "Macro",
  18087. height: math.unit(140, "meters"),
  18088. default: true
  18089. },
  18090. {
  18091. name: "Megamacro",
  18092. height: math.unit(100, "miles")
  18093. },
  18094. ]
  18095. ))
  18096. characterMakers.push(() => makeCharacter(
  18097. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18098. {
  18099. front: {
  18100. height: math.unit(6 + 5 / 12, "feet"),
  18101. weight: math.unit(190, "lb"),
  18102. name: "Front",
  18103. image: {
  18104. source: "./media/characters/kingdead/front.svg",
  18105. extra: 1228 / 1177
  18106. }
  18107. },
  18108. },
  18109. [
  18110. {
  18111. name: "Micro",
  18112. height: math.unit(7, "inches")
  18113. },
  18114. {
  18115. name: "Normal",
  18116. height: math.unit(6 + 5 / 12, "feet")
  18117. },
  18118. {
  18119. name: "Macro",
  18120. height: math.unit(150, "feet"),
  18121. default: true
  18122. },
  18123. {
  18124. name: "Megamacro",
  18125. height: math.unit(200, "miles")
  18126. },
  18127. ]
  18128. ))
  18129. characterMakers.push(() => makeCharacter(
  18130. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18131. {
  18132. front: {
  18133. height: math.unit(8, "feet"),
  18134. weight: math.unit(600, "lb"),
  18135. name: "Front",
  18136. image: {
  18137. source: "./media/characters/kyrehx/front.svg",
  18138. extra: 1195 / 1095,
  18139. bottom: 0.034
  18140. }
  18141. },
  18142. },
  18143. [
  18144. {
  18145. name: "Micro",
  18146. height: math.unit(2, "inches")
  18147. },
  18148. {
  18149. name: "Normal",
  18150. height: math.unit(8, "feet"),
  18151. default: true
  18152. },
  18153. {
  18154. name: "Macro",
  18155. height: math.unit(255, "feet")
  18156. },
  18157. ]
  18158. ))
  18159. characterMakers.push(() => makeCharacter(
  18160. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18161. {
  18162. front: {
  18163. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18164. weight: math.unit(184, "lb"),
  18165. name: "Front",
  18166. image: {
  18167. source: "./media/characters/xang/front.svg",
  18168. extra: 845 / 755
  18169. }
  18170. },
  18171. },
  18172. [
  18173. {
  18174. name: "Normal",
  18175. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18176. default: true
  18177. },
  18178. {
  18179. name: "Macro",
  18180. height: math.unit(0.935 * 146, "feet")
  18181. },
  18182. {
  18183. name: "Megamacro",
  18184. height: math.unit(0.935 * 3, "miles")
  18185. },
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18190. {
  18191. frontDressed: {
  18192. height: math.unit(5 + 7 / 12, "feet"),
  18193. weight: math.unit(140, "lb"),
  18194. name: "Front (Dressed)",
  18195. image: {
  18196. source: "./media/characters/doc-weardno/front-dressed.svg",
  18197. extra: 263 / 234
  18198. }
  18199. },
  18200. backDressed: {
  18201. height: math.unit(5 + 7 / 12, "feet"),
  18202. weight: math.unit(140, "lb"),
  18203. name: "Back (Dressed)",
  18204. image: {
  18205. source: "./media/characters/doc-weardno/back-dressed.svg",
  18206. extra: 266 / 238
  18207. }
  18208. },
  18209. front: {
  18210. height: math.unit(5 + 7 / 12, "feet"),
  18211. weight: math.unit(140, "lb"),
  18212. name: "Front",
  18213. image: {
  18214. source: "./media/characters/doc-weardno/front.svg",
  18215. extra: 254 / 233
  18216. }
  18217. },
  18218. },
  18219. [
  18220. {
  18221. name: "Micro",
  18222. height: math.unit(3, "inches")
  18223. },
  18224. {
  18225. name: "Normal",
  18226. height: math.unit(5 + 7 / 12, "feet"),
  18227. default: true
  18228. },
  18229. {
  18230. name: "Macro",
  18231. height: math.unit(25, "feet")
  18232. },
  18233. {
  18234. name: "Megamacro",
  18235. height: math.unit(2, "miles")
  18236. },
  18237. ]
  18238. ))
  18239. characterMakers.push(() => makeCharacter(
  18240. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18241. {
  18242. front: {
  18243. height: math.unit(6 + 2 / 12, "feet"),
  18244. weight: math.unit(153, "lb"),
  18245. name: "Front",
  18246. image: {
  18247. source: "./media/characters/seth-whilst/front.svg",
  18248. bottom: 0.07
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Micro",
  18255. height: math.unit(5, "inches")
  18256. },
  18257. {
  18258. name: "Normal",
  18259. height: math.unit(6 + 2 / 12, "feet"),
  18260. default: true
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18266. {
  18267. front: {
  18268. height: math.unit(3, "inches"),
  18269. weight: math.unit(8, "grams"),
  18270. name: "Front",
  18271. image: {
  18272. source: "./media/characters/pocket-jabari/front.svg",
  18273. extra: 1024 / 974,
  18274. bottom: 0.039
  18275. }
  18276. },
  18277. },
  18278. [
  18279. {
  18280. name: "Minimicro",
  18281. height: math.unit(8, "mm")
  18282. },
  18283. {
  18284. name: "Micro",
  18285. height: math.unit(3, "inches"),
  18286. default: true
  18287. },
  18288. {
  18289. name: "Normal",
  18290. height: math.unit(3, "feet")
  18291. },
  18292. ]
  18293. ))
  18294. characterMakers.push(() => makeCharacter(
  18295. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18296. {
  18297. front: {
  18298. height: math.unit(15, "feet"),
  18299. weight: math.unit(3280, "lb"),
  18300. name: "Front",
  18301. image: {
  18302. source: "./media/characters/sapphy/front.svg",
  18303. extra: 671 / 577,
  18304. bottom: 0.085
  18305. }
  18306. },
  18307. back: {
  18308. height: math.unit(15, "feet"),
  18309. weight: math.unit(3280, "lb"),
  18310. name: "Back",
  18311. image: {
  18312. source: "./media/characters/sapphy/back.svg",
  18313. extra: 631 / 607,
  18314. bottom: 0.045
  18315. }
  18316. },
  18317. },
  18318. [
  18319. {
  18320. name: "Normal",
  18321. height: math.unit(15, "feet")
  18322. },
  18323. {
  18324. name: "Casual Macro",
  18325. height: math.unit(120, "feet")
  18326. },
  18327. {
  18328. name: "Macro",
  18329. height: math.unit(2150, "feet"),
  18330. default: true
  18331. },
  18332. {
  18333. name: "Megamacro",
  18334. height: math.unit(8, "miles")
  18335. },
  18336. {
  18337. name: "Galaxy Mom",
  18338. height: math.unit(6, "megalightyears")
  18339. },
  18340. ]
  18341. ))
  18342. characterMakers.push(() => makeCharacter(
  18343. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18344. {
  18345. front: {
  18346. height: math.unit(6, "feet"),
  18347. weight: math.unit(170, "lb"),
  18348. name: "Front",
  18349. image: {
  18350. source: "./media/characters/kiro/front.svg",
  18351. extra: 1064 / 1012,
  18352. bottom: 0.052
  18353. }
  18354. },
  18355. },
  18356. [
  18357. {
  18358. name: "Micro",
  18359. height: math.unit(6, "inches")
  18360. },
  18361. {
  18362. name: "Normal",
  18363. height: math.unit(6, "feet"),
  18364. default: true
  18365. },
  18366. {
  18367. name: "Macro",
  18368. height: math.unit(72, "feet")
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18374. {
  18375. front: {
  18376. height: math.unit(5 + 9 / 12, "feet"),
  18377. weight: math.unit(175, "lb"),
  18378. name: "Front",
  18379. image: {
  18380. source: "./media/characters/irishfox/front.svg",
  18381. extra: 1912 / 1680,
  18382. bottom: 0.02
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Nano",
  18389. height: math.unit(1, "mm")
  18390. },
  18391. {
  18392. name: "Micro",
  18393. height: math.unit(2, "inches")
  18394. },
  18395. {
  18396. name: "Normal",
  18397. height: math.unit(5 + 9 / 12, "feet"),
  18398. default: true
  18399. },
  18400. {
  18401. name: "Macro",
  18402. height: math.unit(45, "feet")
  18403. },
  18404. ]
  18405. ))
  18406. characterMakers.push(() => makeCharacter(
  18407. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18408. {
  18409. front: {
  18410. height: math.unit(6 + 1 / 12, "feet"),
  18411. weight: math.unit(75, "lb"),
  18412. name: "Front",
  18413. image: {
  18414. source: "./media/characters/aronai-sieyes/front.svg",
  18415. extra: 1556 / 1480,
  18416. bottom: 0.015
  18417. }
  18418. },
  18419. side: {
  18420. height: math.unit(6 + 1 / 12, "feet"),
  18421. weight: math.unit(75, "lb"),
  18422. name: "Side",
  18423. image: {
  18424. source: "./media/characters/aronai-sieyes/side.svg",
  18425. extra: 1433 / 1390,
  18426. bottom: 0.0393
  18427. }
  18428. },
  18429. back: {
  18430. height: math.unit(6 + 1 / 12, "feet"),
  18431. weight: math.unit(75, "lb"),
  18432. name: "Back",
  18433. image: {
  18434. source: "./media/characters/aronai-sieyes/back.svg",
  18435. extra: 1544 / 1494,
  18436. bottom: 0.02
  18437. }
  18438. },
  18439. frontClothed: {
  18440. height: math.unit(6 + 1 / 12, "feet"),
  18441. weight: math.unit(75, "lb"),
  18442. name: "Front (Clothed)",
  18443. image: {
  18444. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18445. extra: 1582 / 1527
  18446. }
  18447. },
  18448. feral: {
  18449. height: math.unit(18, "feet"),
  18450. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18451. name: "Feral",
  18452. image: {
  18453. source: "./media/characters/aronai-sieyes/feral.svg",
  18454. extra: 1530 / 1240,
  18455. bottom: 0.035
  18456. }
  18457. },
  18458. },
  18459. [
  18460. {
  18461. name: "Micro",
  18462. height: math.unit(2, "inches")
  18463. },
  18464. {
  18465. name: "Normal",
  18466. height: math.unit(6 + 1 / 12, "feet"),
  18467. default: true
  18468. }
  18469. ]
  18470. ))
  18471. characterMakers.push(() => makeCharacter(
  18472. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18473. {
  18474. front: {
  18475. height: math.unit(12, "feet"),
  18476. weight: math.unit(410, "kg"),
  18477. name: "Front",
  18478. image: {
  18479. source: "./media/characters/xuna/front.svg",
  18480. extra: 2184 / 1980
  18481. }
  18482. },
  18483. side: {
  18484. height: math.unit(12, "feet"),
  18485. weight: math.unit(410, "kg"),
  18486. name: "Side",
  18487. image: {
  18488. source: "./media/characters/xuna/side.svg",
  18489. extra: 2184 / 1980
  18490. }
  18491. },
  18492. back: {
  18493. height: math.unit(12, "feet"),
  18494. weight: math.unit(410, "kg"),
  18495. name: "Back",
  18496. image: {
  18497. source: "./media/characters/xuna/back.svg",
  18498. extra: 2184 / 1980
  18499. }
  18500. },
  18501. },
  18502. [
  18503. {
  18504. name: "Nano glow",
  18505. height: math.unit(10, "nm")
  18506. },
  18507. {
  18508. name: "Micro floof",
  18509. height: math.unit(0.3, "m")
  18510. },
  18511. {
  18512. name: "Huggable softy boi",
  18513. height: math.unit(3.6576, "m"),
  18514. default: true
  18515. },
  18516. {
  18517. name: "Admirable floof",
  18518. height: math.unit(80, "meters")
  18519. },
  18520. {
  18521. name: "Gentle macro",
  18522. height: math.unit(300, "meters")
  18523. },
  18524. {
  18525. name: "Very careful floof",
  18526. height: math.unit(3200, "meters")
  18527. },
  18528. {
  18529. name: "The mega floof",
  18530. height: math.unit(36000, "meters")
  18531. },
  18532. {
  18533. name: "Giga-fur-Wicker",
  18534. height: math.unit(4800000, "meters")
  18535. },
  18536. {
  18537. name: "Licky world",
  18538. height: math.unit(20000000, "meters")
  18539. },
  18540. {
  18541. name: "Floofy cyan sun",
  18542. height: math.unit(1500000000, "meters")
  18543. },
  18544. {
  18545. name: "Milky Wicker",
  18546. height: math.unit(1000000000000000000000, "meters")
  18547. },
  18548. {
  18549. name: "The observing Wicker",
  18550. height: math.unit(999999999999999999999999999, "meters")
  18551. },
  18552. ]
  18553. ))
  18554. characterMakers.push(() => makeCharacter(
  18555. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18556. {
  18557. front: {
  18558. height: math.unit(5 + 9 / 12, "feet"),
  18559. weight: math.unit(150, "lb"),
  18560. name: "Front",
  18561. image: {
  18562. source: "./media/characters/arokha-sieyes/front.svg",
  18563. extra: 1425 / 1284,
  18564. bottom: 0.05
  18565. }
  18566. },
  18567. },
  18568. [
  18569. {
  18570. name: "Normal",
  18571. height: math.unit(5 + 9 / 12, "feet")
  18572. },
  18573. {
  18574. name: "Macro",
  18575. height: math.unit(30, "meters"),
  18576. default: true
  18577. },
  18578. ]
  18579. ))
  18580. characterMakers.push(() => makeCharacter(
  18581. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18582. {
  18583. front: {
  18584. height: math.unit(6, "feet"),
  18585. weight: math.unit(180, "lb"),
  18586. name: "Front",
  18587. image: {
  18588. source: "./media/characters/arokh-sieyes/front.svg",
  18589. extra: 1830 / 1769,
  18590. bottom: 0.01
  18591. }
  18592. },
  18593. },
  18594. [
  18595. {
  18596. name: "Normal",
  18597. height: math.unit(6, "feet")
  18598. },
  18599. {
  18600. name: "Macro",
  18601. height: math.unit(30, "meters"),
  18602. default: true
  18603. },
  18604. ]
  18605. ))
  18606. characterMakers.push(() => makeCharacter(
  18607. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18608. {
  18609. side: {
  18610. height: math.unit(13 + 1 / 12, "feet"),
  18611. weight: math.unit(8.5, "tonnes"),
  18612. name: "Side",
  18613. image: {
  18614. source: "./media/characters/goldeneye/side.svg",
  18615. extra: 1182 / 778,
  18616. bottom: 0.067
  18617. }
  18618. },
  18619. paw: {
  18620. height: math.unit(3.4, "feet"),
  18621. name: "Paw",
  18622. image: {
  18623. source: "./media/characters/goldeneye/paw.svg"
  18624. }
  18625. },
  18626. },
  18627. [
  18628. {
  18629. name: "Normal",
  18630. height: math.unit(13 + 1 / 12, "feet"),
  18631. default: true
  18632. },
  18633. ]
  18634. ))
  18635. characterMakers.push(() => makeCharacter(
  18636. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18637. {
  18638. front: {
  18639. height: math.unit(6 + 1 / 12, "feet"),
  18640. weight: math.unit(210, "lb"),
  18641. name: "Front",
  18642. image: {
  18643. source: "./media/characters/leonardo-lycheborne/front.svg",
  18644. extra: 390 / 365,
  18645. bottom: 0.032
  18646. }
  18647. },
  18648. side: {
  18649. height: math.unit(6 + 1 / 12, "feet"),
  18650. weight: math.unit(210, "lb"),
  18651. name: "Side",
  18652. image: {
  18653. source: "./media/characters/leonardo-lycheborne/side.svg",
  18654. extra: 390 / 365,
  18655. bottom: 0.005
  18656. }
  18657. },
  18658. back: {
  18659. height: math.unit(6 + 1 / 12, "feet"),
  18660. weight: math.unit(210, "lb"),
  18661. name: "Back",
  18662. image: {
  18663. source: "./media/characters/leonardo-lycheborne/back.svg",
  18664. extra: 392 / 366,
  18665. bottom: 0.01
  18666. }
  18667. },
  18668. hand: {
  18669. height: math.unit(1.08, "feet"),
  18670. name: "Hand",
  18671. image: {
  18672. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18673. }
  18674. },
  18675. foot: {
  18676. height: math.unit(1.32, "feet"),
  18677. name: "Foot",
  18678. image: {
  18679. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18680. }
  18681. },
  18682. were: {
  18683. height: math.unit(20, "feet"),
  18684. weight: math.unit(7800, "lb"),
  18685. name: "Were",
  18686. image: {
  18687. source: "./media/characters/leonardo-lycheborne/were.svg",
  18688. extra: 308 / 294,
  18689. bottom: 0.048
  18690. }
  18691. },
  18692. feral: {
  18693. height: math.unit(7.5, "feet"),
  18694. weight: math.unit(600, "lb"),
  18695. name: "Feral",
  18696. image: {
  18697. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18698. extra: 210 / 186,
  18699. bottom: 0.108
  18700. }
  18701. },
  18702. taur: {
  18703. height: math.unit(11, "feet"),
  18704. weight: math.unit(3300, "lb"),
  18705. name: "Taur",
  18706. image: {
  18707. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18708. extra: 320 / 303,
  18709. bottom: 0.025
  18710. }
  18711. },
  18712. barghest: {
  18713. height: math.unit(11, "feet"),
  18714. weight: math.unit(1300, "lb"),
  18715. name: "Barghest",
  18716. image: {
  18717. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18718. extra: 323 / 302,
  18719. bottom: 0.027
  18720. }
  18721. },
  18722. dick: {
  18723. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18724. name: "Dick",
  18725. image: {
  18726. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18727. }
  18728. },
  18729. dickWere: {
  18730. height: math.unit((20) / 3.8, "feet"),
  18731. name: "Dick (Were)",
  18732. image: {
  18733. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18734. }
  18735. },
  18736. },
  18737. [
  18738. {
  18739. name: "Normal",
  18740. height: math.unit(6 + 1 / 12, "feet"),
  18741. default: true
  18742. },
  18743. ]
  18744. ))
  18745. characterMakers.push(() => makeCharacter(
  18746. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18747. {
  18748. front: {
  18749. height: math.unit(10, "feet"),
  18750. weight: math.unit(350, "lb"),
  18751. name: "Front",
  18752. image: {
  18753. source: "./media/characters/jet/front.svg",
  18754. extra: 2050 / 1980,
  18755. bottom: 0.013
  18756. }
  18757. },
  18758. back: {
  18759. height: math.unit(10, "feet"),
  18760. weight: math.unit(350, "lb"),
  18761. name: "Back",
  18762. image: {
  18763. source: "./media/characters/jet/back.svg",
  18764. extra: 2050 / 1980,
  18765. bottom: 0.013
  18766. }
  18767. },
  18768. },
  18769. [
  18770. {
  18771. name: "Micro",
  18772. height: math.unit(6, "inches")
  18773. },
  18774. {
  18775. name: "Normal",
  18776. height: math.unit(10, "feet"),
  18777. default: true
  18778. },
  18779. {
  18780. name: "Macro",
  18781. height: math.unit(100, "feet")
  18782. },
  18783. ]
  18784. ))
  18785. characterMakers.push(() => makeCharacter(
  18786. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18787. {
  18788. front: {
  18789. height: math.unit(15, "feet"),
  18790. weight: math.unit(2800, "lb"),
  18791. name: "Front",
  18792. image: {
  18793. source: "./media/characters/tanarath/front.svg",
  18794. extra: 2392 / 2220,
  18795. bottom: 0.03
  18796. }
  18797. },
  18798. back: {
  18799. height: math.unit(15, "feet"),
  18800. weight: math.unit(2800, "lb"),
  18801. name: "Back",
  18802. image: {
  18803. source: "./media/characters/tanarath/back.svg",
  18804. extra: 2392 / 2220,
  18805. bottom: 0.03
  18806. }
  18807. },
  18808. },
  18809. [
  18810. {
  18811. name: "Normal",
  18812. height: math.unit(15, "feet"),
  18813. default: true
  18814. },
  18815. ]
  18816. ))
  18817. characterMakers.push(() => makeCharacter(
  18818. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18819. {
  18820. front: {
  18821. height: math.unit(7 + 1 / 12, "feet"),
  18822. weight: math.unit(175, "lb"),
  18823. name: "Front",
  18824. image: {
  18825. source: "./media/characters/patty-cattybatty/front.svg",
  18826. extra: 908 / 874,
  18827. bottom: 0.025
  18828. }
  18829. },
  18830. },
  18831. [
  18832. {
  18833. name: "Micro",
  18834. height: math.unit(1, "inch")
  18835. },
  18836. {
  18837. name: "Normal",
  18838. height: math.unit(7 + 1 / 12, "feet")
  18839. },
  18840. {
  18841. name: "Mini Macro",
  18842. height: math.unit(155, "feet")
  18843. },
  18844. {
  18845. name: "Macro",
  18846. height: math.unit(1077, "feet")
  18847. },
  18848. {
  18849. name: "Mega Macro",
  18850. height: math.unit(47650, "feet"),
  18851. default: true
  18852. },
  18853. {
  18854. name: "Giga Macro",
  18855. height: math.unit(440, "miles")
  18856. },
  18857. {
  18858. name: "Tera Macro",
  18859. height: math.unit(8700, "miles")
  18860. },
  18861. {
  18862. name: "Planetary Macro",
  18863. height: math.unit(32700, "miles")
  18864. },
  18865. {
  18866. name: "Solar Macro",
  18867. height: math.unit(550000, "miles")
  18868. },
  18869. {
  18870. name: "Celestial Macro",
  18871. height: math.unit(2.5, "AU")
  18872. },
  18873. ]
  18874. ))
  18875. characterMakers.push(() => makeCharacter(
  18876. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18877. {
  18878. front: {
  18879. height: math.unit(4 + 5 / 12, "feet"),
  18880. weight: math.unit(90, "lb"),
  18881. name: "Front",
  18882. image: {
  18883. source: "./media/characters/cappu/front.svg",
  18884. extra: 1247 / 1152,
  18885. bottom: 0.012
  18886. }
  18887. },
  18888. },
  18889. [
  18890. {
  18891. name: "Normal",
  18892. height: math.unit(4 + 5 / 12, "feet"),
  18893. default: true
  18894. },
  18895. ]
  18896. ))
  18897. characterMakers.push(() => makeCharacter(
  18898. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18899. {
  18900. frontDressed: {
  18901. height: math.unit(70, "cm"),
  18902. weight: math.unit(6, "kg"),
  18903. name: "Front (Dressed)",
  18904. image: {
  18905. source: "./media/characters/sebi/front-dressed.svg",
  18906. extra: 713.5 / 686.5,
  18907. bottom: 0.003
  18908. }
  18909. },
  18910. front: {
  18911. height: math.unit(70, "cm"),
  18912. weight: math.unit(5, "kg"),
  18913. name: "Front",
  18914. image: {
  18915. source: "./media/characters/sebi/front.svg",
  18916. extra: 713.5 / 686.5,
  18917. bottom: 0.003
  18918. }
  18919. }
  18920. },
  18921. [
  18922. {
  18923. name: "Normal",
  18924. height: math.unit(70, "cm"),
  18925. default: true
  18926. },
  18927. {
  18928. name: "Macro",
  18929. height: math.unit(8, "meters")
  18930. },
  18931. ]
  18932. ))
  18933. characterMakers.push(() => makeCharacter(
  18934. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18935. {
  18936. front: {
  18937. height: math.unit(6, "feet"),
  18938. weight: math.unit(150, "lb"),
  18939. name: "Front",
  18940. image: {
  18941. source: "./media/characters/typhek/front.svg",
  18942. extra: 1948 / 1929,
  18943. bottom: 0.025
  18944. }
  18945. },
  18946. side: {
  18947. height: math.unit(6, "feet"),
  18948. weight: math.unit(150, "lb"),
  18949. name: "Side",
  18950. image: {
  18951. source: "./media/characters/typhek/side.svg",
  18952. extra: 2034 / 2010,
  18953. bottom: 0.003
  18954. }
  18955. },
  18956. back: {
  18957. height: math.unit(6, "feet"),
  18958. weight: math.unit(150, "lb"),
  18959. name: "Back",
  18960. image: {
  18961. source: "./media/characters/typhek/back.svg",
  18962. extra: 2005 / 1978,
  18963. bottom: 0.004
  18964. }
  18965. },
  18966. palm: {
  18967. height: math.unit(1.2, "feet"),
  18968. name: "Palm",
  18969. image: {
  18970. source: "./media/characters/typhek/palm.svg"
  18971. }
  18972. },
  18973. fist: {
  18974. height: math.unit(1.1, "feet"),
  18975. name: "Fist",
  18976. image: {
  18977. source: "./media/characters/typhek/fist.svg"
  18978. }
  18979. },
  18980. foot: {
  18981. height: math.unit(1.57, "feet"),
  18982. name: "Foot",
  18983. image: {
  18984. source: "./media/characters/typhek/foot.svg"
  18985. }
  18986. },
  18987. sole: {
  18988. height: math.unit(2.05, "feet"),
  18989. name: "Sole",
  18990. image: {
  18991. source: "./media/characters/typhek/sole.svg"
  18992. }
  18993. },
  18994. },
  18995. [
  18996. {
  18997. name: "Macro",
  18998. height: math.unit(40, "stories"),
  18999. default: true
  19000. },
  19001. {
  19002. name: "Megamacro",
  19003. height: math.unit(1, "mile")
  19004. },
  19005. {
  19006. name: "Gigamacro",
  19007. height: math.unit(4000, "solarradii")
  19008. },
  19009. {
  19010. name: "Universal",
  19011. height: math.unit(1.1, "universes")
  19012. }
  19013. ]
  19014. ))
  19015. characterMakers.push(() => makeCharacter(
  19016. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19017. {
  19018. side: {
  19019. height: math.unit(5 + 7 / 12, "feet"),
  19020. weight: math.unit(150, "lb"),
  19021. name: "Side",
  19022. image: {
  19023. source: "./media/characters/kassy/side.svg",
  19024. extra: 1280 / 1225,
  19025. bottom: 0.002
  19026. }
  19027. },
  19028. front: {
  19029. height: math.unit(5 + 7 / 12, "feet"),
  19030. weight: math.unit(150, "lb"),
  19031. name: "Front",
  19032. image: {
  19033. source: "./media/characters/kassy/front.svg",
  19034. extra: 1280 / 1225,
  19035. bottom: 0.025
  19036. }
  19037. },
  19038. back: {
  19039. height: math.unit(5 + 7 / 12, "feet"),
  19040. weight: math.unit(150, "lb"),
  19041. name: "Back",
  19042. image: {
  19043. source: "./media/characters/kassy/back.svg",
  19044. extra: 1280 / 1225,
  19045. bottom: 0.002
  19046. }
  19047. },
  19048. foot: {
  19049. height: math.unit(1.266, "feet"),
  19050. name: "Foot",
  19051. image: {
  19052. source: "./media/characters/kassy/foot.svg"
  19053. }
  19054. },
  19055. },
  19056. [
  19057. {
  19058. name: "Normal",
  19059. height: math.unit(5 + 7 / 12, "feet")
  19060. },
  19061. {
  19062. name: "Macro",
  19063. height: math.unit(137, "feet"),
  19064. default: true
  19065. },
  19066. {
  19067. name: "Megamacro",
  19068. height: math.unit(1, "mile")
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19074. {
  19075. front: {
  19076. height: math.unit(6 + 1 / 12, "feet"),
  19077. weight: math.unit(200, "lb"),
  19078. name: "Front",
  19079. image: {
  19080. source: "./media/characters/neil/front.svg",
  19081. extra: 1326 / 1250,
  19082. bottom: 0.023
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Normal",
  19089. height: math.unit(6 + 1 / 12, "feet"),
  19090. default: true
  19091. },
  19092. {
  19093. name: "Macro",
  19094. height: math.unit(200, "feet")
  19095. },
  19096. ]
  19097. ))
  19098. characterMakers.push(() => makeCharacter(
  19099. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19100. {
  19101. front: {
  19102. height: math.unit(5 + 9 / 12, "feet"),
  19103. weight: math.unit(190, "lb"),
  19104. name: "Front",
  19105. image: {
  19106. source: "./media/characters/atticus/front.svg",
  19107. extra: 2934 / 2785,
  19108. bottom: 0.025
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(5 + 9 / 12, "feet"),
  19116. default: true
  19117. },
  19118. {
  19119. name: "Macro",
  19120. height: math.unit(180, "feet")
  19121. },
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19126. {
  19127. side: {
  19128. height: math.unit(9, "feet"),
  19129. weight: math.unit(650, "lb"),
  19130. name: "Side",
  19131. image: {
  19132. source: "./media/characters/milo/side.svg",
  19133. extra: 2644 / 2310,
  19134. bottom: 0.032
  19135. }
  19136. },
  19137. },
  19138. [
  19139. {
  19140. name: "Normal",
  19141. height: math.unit(9, "feet"),
  19142. default: true
  19143. },
  19144. {
  19145. name: "Macro",
  19146. height: math.unit(300, "feet")
  19147. },
  19148. ]
  19149. ))
  19150. characterMakers.push(() => makeCharacter(
  19151. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19152. {
  19153. side: {
  19154. height: math.unit(8, "meters"),
  19155. weight: math.unit(90000, "kg"),
  19156. name: "Side",
  19157. image: {
  19158. source: "./media/characters/ijzer/side.svg",
  19159. extra: 2756 / 1600,
  19160. bottom: 0.01
  19161. }
  19162. },
  19163. },
  19164. [
  19165. {
  19166. name: "Small",
  19167. height: math.unit(3, "meters")
  19168. },
  19169. {
  19170. name: "Normal",
  19171. height: math.unit(8, "meters"),
  19172. default: true
  19173. },
  19174. {
  19175. name: "Normal+",
  19176. height: math.unit(10, "meters")
  19177. },
  19178. {
  19179. name: "Bigger",
  19180. height: math.unit(24, "meters")
  19181. },
  19182. {
  19183. name: "Huge",
  19184. height: math.unit(80, "meters")
  19185. },
  19186. ]
  19187. ))
  19188. characterMakers.push(() => makeCharacter(
  19189. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19190. {
  19191. front: {
  19192. height: math.unit(6 + 2 / 12, "feet"),
  19193. weight: math.unit(153, "lb"),
  19194. name: "Front",
  19195. image: {
  19196. source: "./media/characters/luca-cervicum/front.svg",
  19197. extra: 370 / 327,
  19198. bottom: 0.015
  19199. }
  19200. },
  19201. back: {
  19202. height: math.unit(6 + 2 / 12, "feet"),
  19203. weight: math.unit(153, "lb"),
  19204. name: "Back",
  19205. image: {
  19206. source: "./media/characters/luca-cervicum/back.svg",
  19207. extra: 367 / 333,
  19208. bottom: 0.005
  19209. }
  19210. },
  19211. frontGear: {
  19212. height: math.unit(6 + 2 / 12, "feet"),
  19213. weight: math.unit(173, "lb"),
  19214. name: "Front (Gear)",
  19215. image: {
  19216. source: "./media/characters/luca-cervicum/front-gear.svg",
  19217. extra: 377 / 333,
  19218. bottom: 0.006
  19219. }
  19220. },
  19221. },
  19222. [
  19223. {
  19224. name: "Normal",
  19225. height: math.unit(6 + 2 / 12, "feet"),
  19226. default: true
  19227. },
  19228. ]
  19229. ))
  19230. characterMakers.push(() => makeCharacter(
  19231. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19232. {
  19233. front: {
  19234. height: math.unit(6 + 1 / 12, "feet"),
  19235. weight: math.unit(304, "lb"),
  19236. name: "Front",
  19237. image: {
  19238. source: "./media/characters/oliver/front.svg",
  19239. extra: 157 / 143,
  19240. bottom: 0.08
  19241. }
  19242. },
  19243. },
  19244. [
  19245. {
  19246. name: "Normal",
  19247. height: math.unit(6 + 1 / 12, "feet"),
  19248. default: true
  19249. },
  19250. ]
  19251. ))
  19252. characterMakers.push(() => makeCharacter(
  19253. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19254. {
  19255. front: {
  19256. height: math.unit(5 + 7 / 12, "feet"),
  19257. weight: math.unit(140, "lb"),
  19258. name: "Front",
  19259. image: {
  19260. source: "./media/characters/shane/front.svg",
  19261. extra: 304 / 289,
  19262. bottom: 0.005
  19263. }
  19264. },
  19265. },
  19266. [
  19267. {
  19268. name: "Normal",
  19269. height: math.unit(5 + 7 / 12, "feet"),
  19270. default: true
  19271. },
  19272. ]
  19273. ))
  19274. characterMakers.push(() => makeCharacter(
  19275. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19276. {
  19277. front: {
  19278. height: math.unit(5 + 9 / 12, "feet"),
  19279. weight: math.unit(178, "lb"),
  19280. name: "Front",
  19281. image: {
  19282. source: "./media/characters/shin/front.svg",
  19283. extra: 159 / 151,
  19284. bottom: 0.015
  19285. }
  19286. },
  19287. },
  19288. [
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(5 + 9 / 12, "feet"),
  19292. default: true
  19293. },
  19294. ]
  19295. ))
  19296. characterMakers.push(() => makeCharacter(
  19297. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19298. {
  19299. front: {
  19300. height: math.unit(5 + 10 / 12, "feet"),
  19301. weight: math.unit(168, "lb"),
  19302. name: "Front",
  19303. image: {
  19304. source: "./media/characters/xerxes/front.svg",
  19305. extra: 282 / 260,
  19306. bottom: 0.045
  19307. }
  19308. },
  19309. },
  19310. [
  19311. {
  19312. name: "Normal",
  19313. height: math.unit(5 + 10 / 12, "feet"),
  19314. default: true
  19315. },
  19316. ]
  19317. ))
  19318. characterMakers.push(() => makeCharacter(
  19319. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19320. {
  19321. front: {
  19322. height: math.unit(6 + 7 / 12, "feet"),
  19323. weight: math.unit(208, "lb"),
  19324. name: "Front",
  19325. image: {
  19326. source: "./media/characters/chaska/front.svg",
  19327. extra: 332 / 319,
  19328. bottom: 0.015
  19329. }
  19330. },
  19331. },
  19332. [
  19333. {
  19334. name: "Normal",
  19335. height: math.unit(6 + 7 / 12, "feet"),
  19336. default: true
  19337. },
  19338. ]
  19339. ))
  19340. characterMakers.push(() => makeCharacter(
  19341. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19342. {
  19343. front: {
  19344. height: math.unit(5 + 8 / 12, "feet"),
  19345. weight: math.unit(208, "lb"),
  19346. name: "Front",
  19347. image: {
  19348. source: "./media/characters/enuk/front.svg",
  19349. extra: 437 / 406,
  19350. bottom: 0.02
  19351. }
  19352. },
  19353. },
  19354. [
  19355. {
  19356. name: "Normal",
  19357. height: math.unit(5 + 8 / 12, "feet"),
  19358. default: true
  19359. },
  19360. ]
  19361. ))
  19362. characterMakers.push(() => makeCharacter(
  19363. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19364. {
  19365. front: {
  19366. height: math.unit(5 + 10 / 12, "feet"),
  19367. weight: math.unit(252, "lb"),
  19368. name: "Front",
  19369. image: {
  19370. source: "./media/characters/bruun/front.svg",
  19371. extra: 197 / 187,
  19372. bottom: 0.012
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Normal",
  19379. height: math.unit(5 + 10 / 12, "feet"),
  19380. default: true
  19381. },
  19382. ]
  19383. ))
  19384. characterMakers.push(() => makeCharacter(
  19385. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19386. {
  19387. front: {
  19388. height: math.unit(6 + 10 / 12, "feet"),
  19389. weight: math.unit(255, "lb"),
  19390. name: "Front",
  19391. image: {
  19392. source: "./media/characters/alexeev/front.svg",
  19393. extra: 213 / 200,
  19394. bottom: 0.05
  19395. }
  19396. },
  19397. },
  19398. [
  19399. {
  19400. name: "Normal",
  19401. height: math.unit(6 + 10 / 12, "feet"),
  19402. default: true
  19403. },
  19404. ]
  19405. ))
  19406. characterMakers.push(() => makeCharacter(
  19407. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19408. {
  19409. front: {
  19410. height: math.unit(2 + 8 / 12, "feet"),
  19411. weight: math.unit(22, "lb"),
  19412. name: "Front",
  19413. image: {
  19414. source: "./media/characters/evelyn/front.svg",
  19415. extra: 208 / 180
  19416. }
  19417. },
  19418. },
  19419. [
  19420. {
  19421. name: "Normal",
  19422. height: math.unit(2 + 8 / 12, "feet"),
  19423. default: true
  19424. },
  19425. ]
  19426. ))
  19427. characterMakers.push(() => makeCharacter(
  19428. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19429. {
  19430. front: {
  19431. height: math.unit(5 + 9 / 12, "feet"),
  19432. weight: math.unit(139, "lb"),
  19433. name: "Front",
  19434. image: {
  19435. source: "./media/characters/inca/front.svg",
  19436. extra: 294 / 291,
  19437. bottom: 0.03
  19438. }
  19439. },
  19440. },
  19441. [
  19442. {
  19443. name: "Normal",
  19444. height: math.unit(5 + 9 / 12, "feet"),
  19445. default: true
  19446. },
  19447. ]
  19448. ))
  19449. characterMakers.push(() => makeCharacter(
  19450. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19451. {
  19452. front: {
  19453. height: math.unit(5 + 1 / 12, "feet"),
  19454. weight: math.unit(84, "lb"),
  19455. name: "Front",
  19456. image: {
  19457. source: "./media/characters/magdalene/front.svg",
  19458. extra: 293 / 273
  19459. }
  19460. },
  19461. },
  19462. [
  19463. {
  19464. name: "Normal",
  19465. height: math.unit(5 + 1 / 12, "feet"),
  19466. default: true
  19467. },
  19468. ]
  19469. ))
  19470. characterMakers.push(() => makeCharacter(
  19471. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19472. {
  19473. front: {
  19474. height: math.unit(6 + 3 / 12, "feet"),
  19475. weight: math.unit(185, "lb"),
  19476. name: "Front",
  19477. image: {
  19478. source: "./media/characters/mera/front.svg",
  19479. extra: 291 / 277,
  19480. bottom: 0.03
  19481. }
  19482. },
  19483. },
  19484. [
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(6 + 3 / 12, "feet"),
  19488. default: true
  19489. },
  19490. ]
  19491. ))
  19492. characterMakers.push(() => makeCharacter(
  19493. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19494. {
  19495. front: {
  19496. height: math.unit(6 + 7 / 12, "feet"),
  19497. weight: math.unit(160, "lb"),
  19498. name: "Front",
  19499. image: {
  19500. source: "./media/characters/ceres/front.svg",
  19501. extra: 1023 / 950,
  19502. bottom: 0.027
  19503. }
  19504. },
  19505. back: {
  19506. height: math.unit(6 + 7 / 12, "feet"),
  19507. weight: math.unit(160, "lb"),
  19508. name: "Back",
  19509. image: {
  19510. source: "./media/characters/ceres/back.svg",
  19511. extra: 1023 / 950
  19512. }
  19513. },
  19514. },
  19515. [
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(6 + 7 / 12, "feet"),
  19519. default: true
  19520. },
  19521. ]
  19522. ))
  19523. characterMakers.push(() => makeCharacter(
  19524. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19525. {
  19526. front: {
  19527. height: math.unit(5 + 10 / 12, "feet"),
  19528. weight: math.unit(150, "lb"),
  19529. name: "Front",
  19530. image: {
  19531. source: "./media/characters/kris/front.svg",
  19532. extra: 885 / 803,
  19533. bottom: 0.03
  19534. }
  19535. },
  19536. },
  19537. [
  19538. {
  19539. name: "Normal",
  19540. height: math.unit(5 + 10 / 12, "feet"),
  19541. default: true
  19542. },
  19543. ]
  19544. ))
  19545. characterMakers.push(() => makeCharacter(
  19546. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19547. {
  19548. front: {
  19549. height: math.unit(7, "feet"),
  19550. weight: math.unit(120, "kg"),
  19551. name: "Front",
  19552. image: {
  19553. source: "./media/characters/taluthus/front.svg",
  19554. extra: 903 / 833,
  19555. bottom: 0.015
  19556. }
  19557. },
  19558. },
  19559. [
  19560. {
  19561. name: "Normal",
  19562. height: math.unit(7, "feet"),
  19563. default: true
  19564. },
  19565. {
  19566. name: "Macro",
  19567. height: math.unit(300, "feet")
  19568. },
  19569. ]
  19570. ))
  19571. characterMakers.push(() => makeCharacter(
  19572. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19573. {
  19574. front: {
  19575. height: math.unit(5 + 9 / 12, "feet"),
  19576. weight: math.unit(145, "lb"),
  19577. name: "Front",
  19578. image: {
  19579. source: "./media/characters/dawn/front.svg",
  19580. extra: 2094 / 2016,
  19581. bottom: 0.025
  19582. }
  19583. },
  19584. back: {
  19585. height: math.unit(5 + 9 / 12, "feet"),
  19586. weight: math.unit(160, "lb"),
  19587. name: "Back",
  19588. image: {
  19589. source: "./media/characters/dawn/back.svg",
  19590. extra: 2112 / 2080,
  19591. bottom: 0.005
  19592. }
  19593. },
  19594. },
  19595. [
  19596. {
  19597. name: "Normal",
  19598. height: math.unit(6 + 7 / 12, "feet"),
  19599. default: true
  19600. },
  19601. ]
  19602. ))
  19603. characterMakers.push(() => makeCharacter(
  19604. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19605. {
  19606. anthro: {
  19607. height: math.unit(8 + 3 / 12, "feet"),
  19608. weight: math.unit(450, "lb"),
  19609. name: "Anthro",
  19610. image: {
  19611. source: "./media/characters/arador/anthro.svg",
  19612. extra: 1835 / 1718,
  19613. bottom: 0.025
  19614. }
  19615. },
  19616. feral: {
  19617. height: math.unit(4, "feet"),
  19618. weight: math.unit(200, "lb"),
  19619. name: "Feral",
  19620. image: {
  19621. source: "./media/characters/arador/feral.svg",
  19622. extra: 1683 / 1514,
  19623. bottom: 0.07
  19624. }
  19625. },
  19626. },
  19627. [
  19628. {
  19629. name: "Normal",
  19630. height: math.unit(8 + 3 / 12, "feet")
  19631. },
  19632. {
  19633. name: "Macro",
  19634. height: math.unit(82.5, "feet"),
  19635. default: true
  19636. },
  19637. ]
  19638. ))
  19639. characterMakers.push(() => makeCharacter(
  19640. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19641. {
  19642. front: {
  19643. height: math.unit(5 + 10 / 12, "feet"),
  19644. weight: math.unit(125, "lb"),
  19645. name: "Front",
  19646. image: {
  19647. source: "./media/characters/dharsi/front.svg",
  19648. extra: 716 / 630,
  19649. bottom: 0.035
  19650. }
  19651. },
  19652. },
  19653. [
  19654. {
  19655. name: "Nano",
  19656. height: math.unit(100, "nm")
  19657. },
  19658. {
  19659. name: "Micro",
  19660. height: math.unit(2, "inches")
  19661. },
  19662. {
  19663. name: "Normal",
  19664. height: math.unit(5 + 10 / 12, "feet"),
  19665. default: true
  19666. },
  19667. {
  19668. name: "Macro",
  19669. height: math.unit(1000, "feet")
  19670. },
  19671. {
  19672. name: "Megamacro",
  19673. height: math.unit(10, "miles")
  19674. },
  19675. {
  19676. name: "Gigamacro",
  19677. height: math.unit(3000, "miles")
  19678. },
  19679. {
  19680. name: "Teramacro",
  19681. height: math.unit(500000, "miles")
  19682. },
  19683. {
  19684. name: "Teramacro+",
  19685. height: math.unit(30, "galaxies")
  19686. },
  19687. ]
  19688. ))
  19689. characterMakers.push(() => makeCharacter(
  19690. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19691. {
  19692. front: {
  19693. height: math.unit(6, "feet"),
  19694. weight: math.unit(150, "lb"),
  19695. name: "Front",
  19696. image: {
  19697. source: "./media/characters/deathy/front.svg",
  19698. extra: 1552 / 1463,
  19699. bottom: 0.025
  19700. }
  19701. },
  19702. side: {
  19703. height: math.unit(6, "feet"),
  19704. weight: math.unit(150, "lb"),
  19705. name: "Side",
  19706. image: {
  19707. source: "./media/characters/deathy/side.svg",
  19708. extra: 1604 / 1455,
  19709. bottom: 0.025
  19710. }
  19711. },
  19712. back: {
  19713. height: math.unit(6, "feet"),
  19714. weight: math.unit(150, "lb"),
  19715. name: "Back",
  19716. image: {
  19717. source: "./media/characters/deathy/back.svg",
  19718. extra: 1580 / 1463,
  19719. bottom: 0.005
  19720. }
  19721. },
  19722. },
  19723. [
  19724. {
  19725. name: "Micro",
  19726. height: math.unit(5, "millimeters")
  19727. },
  19728. {
  19729. name: "Normal",
  19730. height: math.unit(6 + 5 / 12, "feet"),
  19731. default: true
  19732. },
  19733. ]
  19734. ))
  19735. characterMakers.push(() => makeCharacter(
  19736. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19737. {
  19738. front: {
  19739. height: math.unit(16, "feet"),
  19740. weight: math.unit(4000, "lb"),
  19741. name: "Front",
  19742. image: {
  19743. source: "./media/characters/juniper/front.svg",
  19744. bottom: 0.04
  19745. }
  19746. },
  19747. },
  19748. [
  19749. {
  19750. name: "Normal",
  19751. height: math.unit(16, "feet"),
  19752. default: true
  19753. },
  19754. ]
  19755. ))
  19756. characterMakers.push(() => makeCharacter(
  19757. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19758. {
  19759. front: {
  19760. height: math.unit(6, "feet"),
  19761. weight: math.unit(150, "lb"),
  19762. name: "Front",
  19763. image: {
  19764. source: "./media/characters/hipster/front.svg",
  19765. extra: 1312 / 1209,
  19766. bottom: 0.025
  19767. }
  19768. },
  19769. back: {
  19770. height: math.unit(6, "feet"),
  19771. weight: math.unit(150, "lb"),
  19772. name: "Back",
  19773. image: {
  19774. source: "./media/characters/hipster/back.svg",
  19775. extra: 1281 / 1196,
  19776. bottom: 0.01
  19777. }
  19778. },
  19779. },
  19780. [
  19781. {
  19782. name: "Micro",
  19783. height: math.unit(1, "mm")
  19784. },
  19785. {
  19786. name: "Normal",
  19787. height: math.unit(4, "inches"),
  19788. default: true
  19789. },
  19790. {
  19791. name: "Macro",
  19792. height: math.unit(500, "feet")
  19793. },
  19794. {
  19795. name: "Megamacro",
  19796. height: math.unit(1000, "miles")
  19797. },
  19798. ]
  19799. ))
  19800. characterMakers.push(() => makeCharacter(
  19801. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19802. {
  19803. front: {
  19804. height: math.unit(6, "feet"),
  19805. weight: math.unit(150, "lb"),
  19806. name: "Front",
  19807. image: {
  19808. source: "./media/characters/tendirmuldr/front.svg",
  19809. extra: 1878 / 1772,
  19810. bottom: 0.015
  19811. }
  19812. },
  19813. },
  19814. [
  19815. {
  19816. name: "Megamacro",
  19817. height: math.unit(1500, "miles"),
  19818. default: true
  19819. },
  19820. ]
  19821. ))
  19822. characterMakers.push(() => makeCharacter(
  19823. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19824. {
  19825. front: {
  19826. height: math.unit(14, "feet"),
  19827. weight: math.unit(12000, "lb"),
  19828. name: "Front",
  19829. image: {
  19830. source: "./media/characters/mort/front.svg",
  19831. extra: 365 / 318,
  19832. bottom: 0.01
  19833. }
  19834. },
  19835. side: {
  19836. height: math.unit(14, "feet"),
  19837. weight: math.unit(12000, "lb"),
  19838. name: "Side",
  19839. image: {
  19840. source: "./media/characters/mort/side.svg",
  19841. extra: 365 / 318,
  19842. bottom: 0.052
  19843. },
  19844. default: true
  19845. },
  19846. back: {
  19847. height: math.unit(14, "feet"),
  19848. weight: math.unit(12000, "lb"),
  19849. name: "Back",
  19850. image: {
  19851. source: "./media/characters/mort/back.svg",
  19852. extra: 371 / 332,
  19853. bottom: 0.18
  19854. }
  19855. },
  19856. },
  19857. [
  19858. {
  19859. name: "Normal",
  19860. height: math.unit(14, "feet"),
  19861. default: true
  19862. },
  19863. ]
  19864. ))
  19865. characterMakers.push(() => makeCharacter(
  19866. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19867. {
  19868. front: {
  19869. height: math.unit(8, "feet"),
  19870. weight: math.unit(1, "ton"),
  19871. name: "Front",
  19872. image: {
  19873. source: "./media/characters/lycoa/front.svg",
  19874. extra: 1875 / 1789,
  19875. bottom: 0.022
  19876. }
  19877. },
  19878. back: {
  19879. height: math.unit(8, "feet"),
  19880. weight: math.unit(1, "ton"),
  19881. name: "Back",
  19882. image: {
  19883. source: "./media/characters/lycoa/back.svg",
  19884. extra: 1835 / 1781,
  19885. bottom: 0.03
  19886. }
  19887. },
  19888. head: {
  19889. height: math.unit(2.1, "feet"),
  19890. name: "Head",
  19891. image: {
  19892. source: "./media/characters/lycoa/head.svg"
  19893. }
  19894. },
  19895. tailmaw: {
  19896. height: math.unit(1.9, "feet"),
  19897. name: "Tailmaw",
  19898. image: {
  19899. source: "./media/characters/lycoa/tailmaw.svg"
  19900. }
  19901. },
  19902. tentacles: {
  19903. height: math.unit(2.1, "feet"),
  19904. name: "Tentacles",
  19905. image: {
  19906. source: "./media/characters/lycoa/tentacles.svg"
  19907. }
  19908. },
  19909. dick: {
  19910. height: math.unit(1.73, "feet"),
  19911. name: "Dick",
  19912. image: {
  19913. source: "./media/characters/lycoa/dick.svg"
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(8, "feet"),
  19921. default: true
  19922. },
  19923. {
  19924. name: "Macro",
  19925. height: math.unit(30, "feet")
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19931. {
  19932. front: {
  19933. height: math.unit(4 + 2 / 12, "feet"),
  19934. weight: math.unit(70, "lb"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/naldara/front.svg",
  19938. extra: 841 / 720,
  19939. bottom: 0.04
  19940. }
  19941. },
  19942. naga: {
  19943. height: math.unit(23, "feet"),
  19944. weight: math.unit(15000, "kg"),
  19945. name: "Naga",
  19946. image: {
  19947. source: "./media/characters/naldara/naga.svg",
  19948. extra: 3290 / 2959,
  19949. bottom: 124 / 3432
  19950. }
  19951. },
  19952. },
  19953. [
  19954. {
  19955. name: "Normal",
  19956. height: math.unit(4 + 2 / 12, "feet"),
  19957. default: true
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19963. {
  19964. front: {
  19965. height: math.unit(13 + 7 / 12, "feet"),
  19966. weight: math.unit(1500, "lb"),
  19967. name: "Front",
  19968. image: {
  19969. source: "./media/characters/briar/front.svg",
  19970. extra: 626 / 596,
  19971. bottom: 0.08
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Normal",
  19978. height: math.unit(13 + 7 / 12, "feet"),
  19979. default: true
  19980. },
  19981. ]
  19982. ))
  19983. characterMakers.push(() => makeCharacter(
  19984. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19985. {
  19986. side: {
  19987. height: math.unit(10, "feet"),
  19988. weight: math.unit(500, "lb"),
  19989. name: "Side",
  19990. image: {
  19991. source: "./media/characters/vanguard/side.svg",
  19992. extra: 502 / 425,
  19993. bottom: 0.087
  19994. }
  19995. },
  19996. },
  19997. [
  19998. {
  19999. name: "Normal",
  20000. height: math.unit(10, "feet"),
  20001. default: true
  20002. },
  20003. ]
  20004. ))
  20005. characterMakers.push(() => makeCharacter(
  20006. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20007. {
  20008. front: {
  20009. height: math.unit(7.5, "feet"),
  20010. weight: math.unit(2, "lb"),
  20011. name: "Front",
  20012. image: {
  20013. source: "./media/characters/artemis/front.svg",
  20014. extra: 1192 / 1075,
  20015. bottom: 0.07
  20016. }
  20017. },
  20018. frontNsfw: {
  20019. height: math.unit(7.5, "feet"),
  20020. weight: math.unit(2, "lb"),
  20021. name: "Front (NSFW)",
  20022. image: {
  20023. source: "./media/characters/artemis/front-nsfw.svg",
  20024. extra: 1192 / 1075,
  20025. bottom: 0.07
  20026. }
  20027. },
  20028. frontNsfwer: {
  20029. height: math.unit(7.5, "feet"),
  20030. weight: math.unit(2, "lb"),
  20031. name: "Front (NSFW-er)",
  20032. image: {
  20033. source: "./media/characters/artemis/front-nsfwer.svg",
  20034. extra: 1192 / 1075,
  20035. bottom: 0.07
  20036. }
  20037. },
  20038. side: {
  20039. height: math.unit(7.5, "feet"),
  20040. weight: math.unit(2, "lb"),
  20041. name: "Side",
  20042. image: {
  20043. source: "./media/characters/artemis/side.svg",
  20044. extra: 1192 / 1075,
  20045. bottom: 0.07
  20046. }
  20047. },
  20048. sideNsfw: {
  20049. height: math.unit(7.5, "feet"),
  20050. weight: math.unit(2, "lb"),
  20051. name: "Side (NSFW)",
  20052. image: {
  20053. source: "./media/characters/artemis/side-nsfw.svg",
  20054. extra: 1192 / 1075,
  20055. bottom: 0.07
  20056. }
  20057. },
  20058. sideNsfwer: {
  20059. height: math.unit(7.5, "feet"),
  20060. weight: math.unit(2, "lb"),
  20061. name: "Side (NSFW-er)",
  20062. image: {
  20063. source: "./media/characters/artemis/side-nsfwer.svg",
  20064. extra: 1192 / 1075,
  20065. bottom: 0.07
  20066. }
  20067. },
  20068. maw: {
  20069. height: math.unit(1.1, "feet"),
  20070. name: "Maw",
  20071. image: {
  20072. source: "./media/characters/artemis/maw.svg"
  20073. }
  20074. },
  20075. stomach: {
  20076. height: math.unit(0.95, "feet"),
  20077. name: "Stomach",
  20078. image: {
  20079. source: "./media/characters/artemis/stomach.svg"
  20080. }
  20081. },
  20082. dickCanine: {
  20083. height: math.unit(1, "feet"),
  20084. name: "Dick (Canine)",
  20085. image: {
  20086. source: "./media/characters/artemis/dick-canine.svg"
  20087. }
  20088. },
  20089. dickEquine: {
  20090. height: math.unit(0.85, "feet"),
  20091. name: "Dick (Equine)",
  20092. image: {
  20093. source: "./media/characters/artemis/dick-equine.svg"
  20094. }
  20095. },
  20096. dickExotic: {
  20097. height: math.unit(0.85, "feet"),
  20098. name: "Dick (Exotic)",
  20099. image: {
  20100. source: "./media/characters/artemis/dick-exotic.svg"
  20101. }
  20102. },
  20103. },
  20104. [
  20105. {
  20106. name: "Normal",
  20107. height: math.unit(7.5, "feet"),
  20108. default: true
  20109. },
  20110. {
  20111. name: "Enlarged",
  20112. height: math.unit(12, "feet")
  20113. },
  20114. ]
  20115. ))
  20116. characterMakers.push(() => makeCharacter(
  20117. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20118. {
  20119. front: {
  20120. height: math.unit(5 + 3 / 12, "feet"),
  20121. weight: math.unit(160, "lb"),
  20122. name: "Front",
  20123. image: {
  20124. source: "./media/characters/kira/front.svg",
  20125. extra: 906 / 786,
  20126. bottom: 0.01
  20127. }
  20128. },
  20129. back: {
  20130. height: math.unit(5 + 3 / 12, "feet"),
  20131. weight: math.unit(160, "lb"),
  20132. name: "Back",
  20133. image: {
  20134. source: "./media/characters/kira/back.svg",
  20135. extra: 882 / 757,
  20136. bottom: 0.005
  20137. }
  20138. },
  20139. frontDressed: {
  20140. height: math.unit(5 + 3 / 12, "feet"),
  20141. weight: math.unit(160, "lb"),
  20142. name: "Front (Dressed)",
  20143. image: {
  20144. source: "./media/characters/kira/front-dressed.svg",
  20145. extra: 906 / 786,
  20146. bottom: 0.01
  20147. }
  20148. },
  20149. beans: {
  20150. height: math.unit(0.92, "feet"),
  20151. name: "Beans",
  20152. image: {
  20153. source: "./media/characters/kira/beans.svg"
  20154. }
  20155. },
  20156. },
  20157. [
  20158. {
  20159. name: "Normal",
  20160. height: math.unit(5 + 3 / 12, "feet"),
  20161. default: true
  20162. },
  20163. ]
  20164. ))
  20165. characterMakers.push(() => makeCharacter(
  20166. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20167. {
  20168. front: {
  20169. height: math.unit(5 + 4 / 12, "feet"),
  20170. weight: math.unit(145, "lb"),
  20171. name: "Front",
  20172. image: {
  20173. source: "./media/characters/scramble/front.svg",
  20174. extra: 763 / 727,
  20175. bottom: 0.05
  20176. }
  20177. },
  20178. back: {
  20179. height: math.unit(5 + 4 / 12, "feet"),
  20180. weight: math.unit(145, "lb"),
  20181. name: "Back",
  20182. image: {
  20183. source: "./media/characters/scramble/back.svg",
  20184. extra: 826 / 737,
  20185. bottom: 0.002
  20186. }
  20187. },
  20188. },
  20189. [
  20190. {
  20191. name: "Normal",
  20192. height: math.unit(5 + 4 / 12, "feet"),
  20193. default: true
  20194. },
  20195. ]
  20196. ))
  20197. characterMakers.push(() => makeCharacter(
  20198. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20199. {
  20200. side: {
  20201. height: math.unit(6 + 2 / 12, "feet"),
  20202. weight: math.unit(190, "lb"),
  20203. name: "Side",
  20204. image: {
  20205. source: "./media/characters/biscuit/side.svg",
  20206. extra: 858 / 791,
  20207. bottom: 0.044
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Normal",
  20214. height: math.unit(6 + 2 / 12, "feet"),
  20215. default: true
  20216. },
  20217. ]
  20218. ))
  20219. characterMakers.push(() => makeCharacter(
  20220. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20221. {
  20222. front: {
  20223. height: math.unit(5 + 2 / 12, "feet"),
  20224. weight: math.unit(120, "lb"),
  20225. name: "Front",
  20226. image: {
  20227. source: "./media/characters/poffin/front.svg",
  20228. extra: 786 / 680,
  20229. bottom: 0.005
  20230. }
  20231. },
  20232. },
  20233. [
  20234. {
  20235. name: "Normal",
  20236. height: math.unit(5 + 2 / 12, "feet"),
  20237. default: true
  20238. },
  20239. ]
  20240. ))
  20241. characterMakers.push(() => makeCharacter(
  20242. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20243. {
  20244. front: {
  20245. height: math.unit(6 + 3 / 12, "feet"),
  20246. weight: math.unit(519, "lb"),
  20247. name: "Front",
  20248. image: {
  20249. source: "./media/characters/dhari/front.svg",
  20250. extra: 1048 / 946,
  20251. bottom: 0.015
  20252. }
  20253. },
  20254. back: {
  20255. height: math.unit(6 + 3 / 12, "feet"),
  20256. weight: math.unit(519, "lb"),
  20257. name: "Back",
  20258. image: {
  20259. source: "./media/characters/dhari/back.svg",
  20260. extra: 1048 / 931,
  20261. bottom: 0.005
  20262. }
  20263. },
  20264. frontDressed: {
  20265. height: math.unit(6 + 3 / 12, "feet"),
  20266. weight: math.unit(519, "lb"),
  20267. name: "Front (Dressed)",
  20268. image: {
  20269. source: "./media/characters/dhari/front-dressed.svg",
  20270. extra: 1713 / 1546,
  20271. bottom: 0.02
  20272. }
  20273. },
  20274. backDressed: {
  20275. height: math.unit(6 + 3 / 12, "feet"),
  20276. weight: math.unit(519, "lb"),
  20277. name: "Back (Dressed)",
  20278. image: {
  20279. source: "./media/characters/dhari/back-dressed.svg",
  20280. extra: 1699 / 1537,
  20281. bottom: 0.01
  20282. }
  20283. },
  20284. maw: {
  20285. height: math.unit(0.95, "feet"),
  20286. name: "Maw",
  20287. image: {
  20288. source: "./media/characters/dhari/maw.svg"
  20289. }
  20290. },
  20291. wereFront: {
  20292. height: math.unit(12 + 8 / 12, "feet"),
  20293. weight: math.unit(4000, "lb"),
  20294. name: "Front (Were)",
  20295. image: {
  20296. source: "./media/characters/dhari/were-front.svg",
  20297. extra: 1065 / 969,
  20298. bottom: 0.015
  20299. }
  20300. },
  20301. wereBack: {
  20302. height: math.unit(12 + 8 / 12, "feet"),
  20303. weight: math.unit(4000, "lb"),
  20304. name: "Back (Were)",
  20305. image: {
  20306. source: "./media/characters/dhari/were-back.svg",
  20307. extra: 1065 / 969,
  20308. bottom: 0.012
  20309. }
  20310. },
  20311. wereMaw: {
  20312. height: math.unit(0.625, "meters"),
  20313. name: "Maw (Were)",
  20314. image: {
  20315. source: "./media/characters/dhari/were-maw.svg"
  20316. }
  20317. },
  20318. },
  20319. [
  20320. {
  20321. name: "Normal",
  20322. height: math.unit(6 + 3 / 12, "feet"),
  20323. default: true
  20324. },
  20325. ]
  20326. ))
  20327. characterMakers.push(() => makeCharacter(
  20328. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20329. {
  20330. anthro: {
  20331. height: math.unit(5 + 7 / 12, "feet"),
  20332. weight: math.unit(175, "lb"),
  20333. name: "Anthro",
  20334. image: {
  20335. source: "./media/characters/rena-dyne/anthro.svg",
  20336. extra: 1849 / 1785,
  20337. bottom: 0.005
  20338. }
  20339. },
  20340. taur: {
  20341. height: math.unit(15 + 6 / 12, "feet"),
  20342. weight: math.unit(8000, "lb"),
  20343. name: "Taur",
  20344. image: {
  20345. source: "./media/characters/rena-dyne/taur.svg",
  20346. extra: 2315 / 2234,
  20347. bottom: 0.033
  20348. }
  20349. },
  20350. },
  20351. [
  20352. {
  20353. name: "Normal",
  20354. height: math.unit(5 + 7 / 12, "feet"),
  20355. default: true
  20356. },
  20357. ]
  20358. ))
  20359. characterMakers.push(() => makeCharacter(
  20360. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20361. {
  20362. front: {
  20363. height: math.unit(8, "feet"),
  20364. weight: math.unit(600, "lb"),
  20365. name: "Front",
  20366. image: {
  20367. source: "./media/characters/weremeep/front.svg",
  20368. extra: 967 / 862,
  20369. bottom: 0.01
  20370. }
  20371. },
  20372. },
  20373. [
  20374. {
  20375. name: "Normal",
  20376. height: math.unit(8, "feet"),
  20377. default: true
  20378. },
  20379. {
  20380. name: "Lorg",
  20381. height: math.unit(12, "feet")
  20382. },
  20383. {
  20384. name: "Oh Lawd She Comin'",
  20385. height: math.unit(20, "feet")
  20386. },
  20387. ]
  20388. ))
  20389. characterMakers.push(() => makeCharacter(
  20390. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20391. {
  20392. front: {
  20393. height: math.unit(4, "feet"),
  20394. weight: math.unit(90, "lb"),
  20395. name: "Front",
  20396. image: {
  20397. source: "./media/characters/reza/front.svg",
  20398. extra: 1183 / 1111,
  20399. bottom: 0.017
  20400. }
  20401. },
  20402. back: {
  20403. height: math.unit(4, "feet"),
  20404. weight: math.unit(90, "lb"),
  20405. name: "Back",
  20406. image: {
  20407. source: "./media/characters/reza/back.svg",
  20408. extra: 1183 / 1111,
  20409. bottom: 0.01
  20410. }
  20411. },
  20412. drake: {
  20413. height: math.unit(30, "feet"),
  20414. weight: math.unit(246960, "lb"),
  20415. name: "Drake",
  20416. image: {
  20417. source: "./media/characters/reza/drake.svg",
  20418. extra: 2350 / 2024,
  20419. bottom: 60.7 / 2403
  20420. }
  20421. },
  20422. },
  20423. [
  20424. {
  20425. name: "Normal",
  20426. height: math.unit(4, "feet"),
  20427. default: true
  20428. },
  20429. ]
  20430. ))
  20431. characterMakers.push(() => makeCharacter(
  20432. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20433. {
  20434. side: {
  20435. height: math.unit(15, "feet"),
  20436. weight: math.unit(14, "tons"),
  20437. name: "Side",
  20438. image: {
  20439. source: "./media/characters/athea/side.svg",
  20440. extra: 960 / 540,
  20441. bottom: 0.003
  20442. }
  20443. },
  20444. sitting: {
  20445. height: math.unit(6 * 2.85, "feet"),
  20446. weight: math.unit(14, "tons"),
  20447. name: "Sitting",
  20448. image: {
  20449. source: "./media/characters/athea/sitting.svg",
  20450. extra: 621 / 581,
  20451. bottom: 0.075
  20452. }
  20453. },
  20454. maw: {
  20455. height: math.unit(7.59498031496063, "feet"),
  20456. name: "Maw",
  20457. image: {
  20458. source: "./media/characters/athea/maw.svg"
  20459. }
  20460. },
  20461. },
  20462. [
  20463. {
  20464. name: "Lap Cat",
  20465. height: math.unit(2.5, "feet")
  20466. },
  20467. {
  20468. name: "Minimacro",
  20469. height: math.unit(15, "feet"),
  20470. default: true
  20471. },
  20472. {
  20473. name: "Macro",
  20474. height: math.unit(120, "feet")
  20475. },
  20476. {
  20477. name: "Macro+",
  20478. height: math.unit(640, "feet")
  20479. },
  20480. {
  20481. name: "Colossus",
  20482. height: math.unit(2.2, "miles")
  20483. },
  20484. ]
  20485. ))
  20486. characterMakers.push(() => makeCharacter(
  20487. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20488. {
  20489. front: {
  20490. height: math.unit(8 + 8 / 12, "feet"),
  20491. weight: math.unit(130, "kg"),
  20492. name: "Front",
  20493. image: {
  20494. source: "./media/characters/seroko/front.svg",
  20495. extra: 1385 / 1280,
  20496. bottom: 0.025
  20497. }
  20498. },
  20499. back: {
  20500. height: math.unit(8 + 8 / 12, "feet"),
  20501. weight: math.unit(130, "kg"),
  20502. name: "Back",
  20503. image: {
  20504. source: "./media/characters/seroko/back.svg",
  20505. extra: 1369 / 1238,
  20506. bottom: 0.018
  20507. }
  20508. },
  20509. frontDressed: {
  20510. height: math.unit(8 + 8 / 12, "feet"),
  20511. weight: math.unit(130, "kg"),
  20512. name: "Front (Dressed)",
  20513. image: {
  20514. source: "./media/characters/seroko/front-dressed.svg",
  20515. extra: 1366 / 1275,
  20516. bottom: 0.03
  20517. }
  20518. },
  20519. },
  20520. [
  20521. {
  20522. name: "Normal",
  20523. height: math.unit(8 + 8 / 12, "feet"),
  20524. default: true
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20530. {
  20531. front: {
  20532. height: math.unit(5.5, "feet"),
  20533. weight: math.unit(160, "lb"),
  20534. name: "Front",
  20535. image: {
  20536. source: "./media/characters/quatzi/front.svg",
  20537. extra: 2346 / 2242,
  20538. bottom: 0.015
  20539. }
  20540. },
  20541. },
  20542. [
  20543. {
  20544. name: "Normal",
  20545. height: math.unit(5.5, "feet"),
  20546. default: true
  20547. },
  20548. {
  20549. name: "Big",
  20550. height: math.unit(7.7, "feet")
  20551. },
  20552. ]
  20553. ))
  20554. characterMakers.push(() => makeCharacter(
  20555. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20556. {
  20557. front: {
  20558. height: math.unit(5 + 11 / 12, "feet"),
  20559. weight: math.unit(180, "lb"),
  20560. name: "Front",
  20561. image: {
  20562. source: "./media/characters/sen/front.svg",
  20563. extra: 1321 / 1254,
  20564. bottom: 0.015
  20565. }
  20566. },
  20567. side: {
  20568. height: math.unit(5 + 11 / 12, "feet"),
  20569. weight: math.unit(180, "lb"),
  20570. name: "Side",
  20571. image: {
  20572. source: "./media/characters/sen/side.svg",
  20573. extra: 1321 / 1254,
  20574. bottom: 0.007
  20575. }
  20576. },
  20577. back: {
  20578. height: math.unit(5 + 11 / 12, "feet"),
  20579. weight: math.unit(180, "lb"),
  20580. name: "Back",
  20581. image: {
  20582. source: "./media/characters/sen/back.svg",
  20583. extra: 1321 / 1254
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Normal",
  20590. height: math.unit(5 + 11 / 12, "feet"),
  20591. default: true
  20592. },
  20593. ]
  20594. ))
  20595. characterMakers.push(() => makeCharacter(
  20596. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20597. {
  20598. front: {
  20599. height: math.unit(166.6, "cm"),
  20600. weight: math.unit(66.6, "kg"),
  20601. name: "Front",
  20602. image: {
  20603. source: "./media/characters/fruity/front.svg",
  20604. extra: 1510 / 1386,
  20605. bottom: 0.04
  20606. }
  20607. },
  20608. back: {
  20609. height: math.unit(166.6, "cm"),
  20610. weight: math.unit(66.6, "lb"),
  20611. name: "Back",
  20612. image: {
  20613. source: "./media/characters/fruity/back.svg",
  20614. extra: 1563 / 1435,
  20615. bottom: 0.005
  20616. }
  20617. },
  20618. },
  20619. [
  20620. {
  20621. name: "Normal",
  20622. height: math.unit(166.6, "cm"),
  20623. default: true
  20624. },
  20625. {
  20626. name: "Demonic",
  20627. height: math.unit(166.6, "feet")
  20628. },
  20629. ]
  20630. ))
  20631. characterMakers.push(() => makeCharacter(
  20632. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20633. {
  20634. side: {
  20635. height: math.unit(10, "feet"),
  20636. weight: math.unit(500, "lb"),
  20637. name: "Side",
  20638. image: {
  20639. source: "./media/characters/zost/side.svg",
  20640. extra: 966 / 880,
  20641. bottom: 0.075
  20642. }
  20643. },
  20644. mawFront: {
  20645. height: math.unit(1.08, "meters"),
  20646. name: "Maw (Front)",
  20647. image: {
  20648. source: "./media/characters/zost/maw-front.svg"
  20649. }
  20650. },
  20651. mawSide: {
  20652. height: math.unit(2.66, "feet"),
  20653. name: "Maw (Side)",
  20654. image: {
  20655. source: "./media/characters/zost/maw-side.svg"
  20656. }
  20657. },
  20658. },
  20659. [
  20660. {
  20661. name: "Normal",
  20662. height: math.unit(10, "feet"),
  20663. default: true
  20664. },
  20665. ]
  20666. ))
  20667. characterMakers.push(() => makeCharacter(
  20668. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20669. {
  20670. front: {
  20671. height: math.unit(5 + 4 / 12, "feet"),
  20672. weight: math.unit(120, "lb"),
  20673. name: "Front",
  20674. image: {
  20675. source: "./media/characters/luci/front.svg",
  20676. extra: 1985 / 1884,
  20677. bottom: 0.04
  20678. }
  20679. },
  20680. back: {
  20681. height: math.unit(5 + 4 / 12, "feet"),
  20682. weight: math.unit(120, "lb"),
  20683. name: "Back",
  20684. image: {
  20685. source: "./media/characters/luci/back.svg",
  20686. extra: 1892 / 1791,
  20687. bottom: 0.002
  20688. }
  20689. },
  20690. },
  20691. [
  20692. {
  20693. name: "Normal",
  20694. height: math.unit(5 + 4 / 12, "feet"),
  20695. default: true
  20696. },
  20697. ]
  20698. ))
  20699. characterMakers.push(() => makeCharacter(
  20700. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20701. {
  20702. front: {
  20703. height: math.unit(1500, "feet"),
  20704. weight: math.unit(3.8e6, "tons"),
  20705. name: "Front",
  20706. image: {
  20707. source: "./media/characters/2th/front.svg",
  20708. extra: 3489 / 3350,
  20709. bottom: 0.1
  20710. }
  20711. },
  20712. foot: {
  20713. height: math.unit(461, "feet"),
  20714. name: "Foot",
  20715. image: {
  20716. source: "./media/characters/2th/foot.svg"
  20717. }
  20718. },
  20719. },
  20720. [
  20721. {
  20722. name: "\"Micro\"",
  20723. height: math.unit(15 + 7 / 12, "feet")
  20724. },
  20725. {
  20726. name: "Normal",
  20727. height: math.unit(1500, "feet"),
  20728. default: true
  20729. },
  20730. {
  20731. name: "Macro",
  20732. height: math.unit(5000, "feet")
  20733. },
  20734. {
  20735. name: "Megamacro",
  20736. height: math.unit(15, "miles")
  20737. },
  20738. {
  20739. name: "Gigamacro",
  20740. height: math.unit(4000, "miles")
  20741. },
  20742. {
  20743. name: "Galactic",
  20744. height: math.unit(50, "AU")
  20745. },
  20746. ]
  20747. ))
  20748. characterMakers.push(() => makeCharacter(
  20749. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20750. {
  20751. front: {
  20752. height: math.unit(5 + 6 / 12, "feet"),
  20753. weight: math.unit(220, "lb"),
  20754. name: "Front",
  20755. image: {
  20756. source: "./media/characters/amethyst/front.svg",
  20757. extra: 2078 / 2040,
  20758. bottom: 0.045
  20759. }
  20760. },
  20761. back: {
  20762. height: math.unit(5 + 6 / 12, "feet"),
  20763. weight: math.unit(220, "lb"),
  20764. name: "Back",
  20765. image: {
  20766. source: "./media/characters/amethyst/back.svg",
  20767. extra: 2021 / 1989,
  20768. bottom: 0.02
  20769. }
  20770. },
  20771. },
  20772. [
  20773. {
  20774. name: "Normal",
  20775. height: math.unit(5 + 6 / 12, "feet"),
  20776. default: true
  20777. },
  20778. ]
  20779. ))
  20780. characterMakers.push(() => makeCharacter(
  20781. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20782. {
  20783. front: {
  20784. height: math.unit(4 + 11 / 12, "feet"),
  20785. weight: math.unit(120, "lb"),
  20786. name: "Front",
  20787. image: {
  20788. source: "./media/characters/yumi-akiyama/front.svg",
  20789. extra: 1327 / 1235,
  20790. bottom: 0.02
  20791. }
  20792. },
  20793. back: {
  20794. height: math.unit(4 + 11 / 12, "feet"),
  20795. weight: math.unit(120, "lb"),
  20796. name: "Back",
  20797. image: {
  20798. source: "./media/characters/yumi-akiyama/back.svg",
  20799. extra: 1287 / 1245,
  20800. bottom: 0.002
  20801. }
  20802. },
  20803. },
  20804. [
  20805. {
  20806. name: "Galactic",
  20807. height: math.unit(50, "galaxies"),
  20808. default: true
  20809. },
  20810. {
  20811. name: "Universal",
  20812. height: math.unit(100, "universes")
  20813. },
  20814. ]
  20815. ))
  20816. characterMakers.push(() => makeCharacter(
  20817. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20818. {
  20819. front: {
  20820. height: math.unit(8, "feet"),
  20821. weight: math.unit(500, "lb"),
  20822. name: "Front",
  20823. image: {
  20824. source: "./media/characters/rifter-yrmori/front.svg",
  20825. extra: 1180 / 1125,
  20826. bottom: 0.02
  20827. }
  20828. },
  20829. back: {
  20830. height: math.unit(8, "feet"),
  20831. weight: math.unit(500, "lb"),
  20832. name: "Back",
  20833. image: {
  20834. source: "./media/characters/rifter-yrmori/back.svg",
  20835. extra: 1190 / 1145,
  20836. bottom: 0.001
  20837. }
  20838. },
  20839. wings: {
  20840. height: math.unit(7.75, "feet"),
  20841. weight: math.unit(500, "lb"),
  20842. name: "Wings",
  20843. image: {
  20844. source: "./media/characters/rifter-yrmori/wings.svg",
  20845. extra: 1357 / 1285
  20846. }
  20847. },
  20848. maw: {
  20849. height: math.unit(0.8, "feet"),
  20850. name: "Maw",
  20851. image: {
  20852. source: "./media/characters/rifter-yrmori/maw.svg"
  20853. }
  20854. },
  20855. mawfront: {
  20856. height: math.unit(1.45, "feet"),
  20857. name: "Maw (Front)",
  20858. image: {
  20859. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20860. }
  20861. },
  20862. },
  20863. [
  20864. {
  20865. name: "Normal",
  20866. height: math.unit(8, "feet"),
  20867. default: true
  20868. },
  20869. {
  20870. name: "Macro",
  20871. height: math.unit(42, "meters")
  20872. },
  20873. ]
  20874. ))
  20875. characterMakers.push(() => makeCharacter(
  20876. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20877. {
  20878. were: {
  20879. height: math.unit(25 + 6 / 12, "feet"),
  20880. weight: math.unit(10000, "lb"),
  20881. name: "Were",
  20882. image: {
  20883. source: "./media/characters/tahajin/were.svg",
  20884. extra: 801 / 770,
  20885. bottom: 0.042
  20886. }
  20887. },
  20888. aquatic: {
  20889. height: math.unit(6 + 4 / 12, "feet"),
  20890. weight: math.unit(160, "lb"),
  20891. name: "Aquatic",
  20892. image: {
  20893. source: "./media/characters/tahajin/aquatic.svg",
  20894. extra: 572 / 542,
  20895. bottom: 0.04
  20896. }
  20897. },
  20898. chow: {
  20899. height: math.unit(8 + 11 / 12, "feet"),
  20900. weight: math.unit(450, "lb"),
  20901. name: "Chow",
  20902. image: {
  20903. source: "./media/characters/tahajin/chow.svg",
  20904. extra: 660 / 640,
  20905. bottom: 0.015
  20906. }
  20907. },
  20908. demiNaga: {
  20909. height: math.unit(6 + 8 / 12, "feet"),
  20910. weight: math.unit(300, "lb"),
  20911. name: "Demi Naga",
  20912. image: {
  20913. source: "./media/characters/tahajin/demi-naga.svg",
  20914. extra: 643 / 615,
  20915. bottom: 0.1
  20916. }
  20917. },
  20918. data: {
  20919. height: math.unit(5, "inches"),
  20920. weight: math.unit(0.1, "lb"),
  20921. name: "Data",
  20922. image: {
  20923. source: "./media/characters/tahajin/data.svg"
  20924. }
  20925. },
  20926. fluu: {
  20927. height: math.unit(5 + 7 / 12, "feet"),
  20928. weight: math.unit(140, "lb"),
  20929. name: "Fluu",
  20930. image: {
  20931. source: "./media/characters/tahajin/fluu.svg",
  20932. extra: 628 / 592,
  20933. bottom: 0.02
  20934. }
  20935. },
  20936. starWarrior: {
  20937. height: math.unit(4 + 5 / 12, "feet"),
  20938. weight: math.unit(50, "lb"),
  20939. name: "Star Warrior",
  20940. image: {
  20941. source: "./media/characters/tahajin/star-warrior.svg"
  20942. }
  20943. },
  20944. },
  20945. [
  20946. {
  20947. name: "Normal",
  20948. height: math.unit(25 + 6 / 12, "feet"),
  20949. default: true
  20950. },
  20951. ]
  20952. ))
  20953. characterMakers.push(() => makeCharacter(
  20954. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20955. {
  20956. front: {
  20957. height: math.unit(8, "feet"),
  20958. weight: math.unit(350, "lb"),
  20959. name: "Front",
  20960. image: {
  20961. source: "./media/characters/gabira/front.svg",
  20962. extra: 608 / 580,
  20963. bottom: 0.03
  20964. }
  20965. },
  20966. back: {
  20967. height: math.unit(8, "feet"),
  20968. weight: math.unit(350, "lb"),
  20969. name: "Back",
  20970. image: {
  20971. source: "./media/characters/gabira/back.svg",
  20972. extra: 608 / 580,
  20973. bottom: 0.03
  20974. }
  20975. },
  20976. },
  20977. [
  20978. {
  20979. name: "Normal",
  20980. height: math.unit(8, "feet"),
  20981. default: true
  20982. },
  20983. ]
  20984. ))
  20985. characterMakers.push(() => makeCharacter(
  20986. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20987. {
  20988. front: {
  20989. height: math.unit(5 + 3 / 12, "feet"),
  20990. weight: math.unit(137, "lb"),
  20991. name: "Front",
  20992. image: {
  20993. source: "./media/characters/sasha-katraine/front.svg",
  20994. bottom: 0.045
  20995. }
  20996. },
  20997. },
  20998. [
  20999. {
  21000. name: "Micro",
  21001. height: math.unit(5, "inches")
  21002. },
  21003. {
  21004. name: "Normal",
  21005. height: math.unit(5 + 3 / 12, "feet"),
  21006. default: true
  21007. },
  21008. ]
  21009. ))
  21010. characterMakers.push(() => makeCharacter(
  21011. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21012. {
  21013. side: {
  21014. height: math.unit(4, "inches"),
  21015. weight: math.unit(200, "grams"),
  21016. name: "Side",
  21017. image: {
  21018. source: "./media/characters/der/side.svg",
  21019. extra: 719 / 400,
  21020. bottom: 30.6 / 749.9187
  21021. }
  21022. },
  21023. },
  21024. [
  21025. {
  21026. name: "Micro",
  21027. height: math.unit(4, "inches"),
  21028. default: true
  21029. },
  21030. ]
  21031. ))
  21032. characterMakers.push(() => makeCharacter(
  21033. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21034. {
  21035. side: {
  21036. height: math.unit(30, "meters"),
  21037. weight: math.unit(700, "tonnes"),
  21038. name: "Side",
  21039. image: {
  21040. source: "./media/characters/fixerdragon/side.svg",
  21041. extra: (1293.0514 - 116.03) / 1106.86,
  21042. bottom: 116.03 / 1293.0514
  21043. }
  21044. },
  21045. },
  21046. [
  21047. {
  21048. name: "Planck",
  21049. height: math.unit(1.6e-35, "meters")
  21050. },
  21051. {
  21052. name: "Micro",
  21053. height: math.unit(0.4, "meters")
  21054. },
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(30, "meters"),
  21058. default: true
  21059. },
  21060. {
  21061. name: "Megamacro",
  21062. height: math.unit(1.2, "megameters")
  21063. },
  21064. {
  21065. name: "Teramacro",
  21066. height: math.unit(130, "terameters")
  21067. },
  21068. {
  21069. name: "Yottamacro",
  21070. height: math.unit(6200, "yottameters")
  21071. },
  21072. ]
  21073. ));
  21074. characterMakers.push(() => makeCharacter(
  21075. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21076. {
  21077. front: {
  21078. height: math.unit(8, "feet"),
  21079. weight: math.unit(250, "lb"),
  21080. name: "Front",
  21081. image: {
  21082. source: "./media/characters/kite/front.svg",
  21083. extra: 2796 / 2659,
  21084. bottom: 0.002
  21085. }
  21086. },
  21087. },
  21088. [
  21089. {
  21090. name: "Normal",
  21091. height: math.unit(8, "feet"),
  21092. default: true
  21093. },
  21094. {
  21095. name: "Macro",
  21096. height: math.unit(360, "feet")
  21097. },
  21098. {
  21099. name: "Megamacro",
  21100. height: math.unit(1500, "feet")
  21101. },
  21102. ]
  21103. ))
  21104. characterMakers.push(() => makeCharacter(
  21105. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21106. {
  21107. front: {
  21108. height: math.unit(5 + 10 / 12, "feet"),
  21109. weight: math.unit(150, "lb"),
  21110. name: "Front",
  21111. image: {
  21112. source: "./media/characters/poojawa-vynar/front.svg",
  21113. extra: (1506.1547 - 55) / 1356.6,
  21114. bottom: 55 / 1506.1547
  21115. }
  21116. },
  21117. frontTailless: {
  21118. height: math.unit(5 + 10 / 12, "feet"),
  21119. weight: math.unit(150, "lb"),
  21120. name: "Front (Tailless)",
  21121. image: {
  21122. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21123. extra: (1506.1547 - 55) / 1356.6,
  21124. bottom: 55 / 1506.1547
  21125. }
  21126. },
  21127. },
  21128. [
  21129. {
  21130. name: "Normal",
  21131. height: math.unit(5 + 10 / 12, "feet"),
  21132. default: true
  21133. },
  21134. ]
  21135. ))
  21136. characterMakers.push(() => makeCharacter(
  21137. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21138. {
  21139. front: {
  21140. height: math.unit(293, "meters"),
  21141. weight: math.unit(70400, "tons"),
  21142. name: "Front",
  21143. image: {
  21144. source: "./media/characters/violette/front.svg",
  21145. extra: 1227 / 1180,
  21146. bottom: 0.005
  21147. }
  21148. },
  21149. back: {
  21150. height: math.unit(293, "meters"),
  21151. weight: math.unit(70400, "tons"),
  21152. name: "Back",
  21153. image: {
  21154. source: "./media/characters/violette/back.svg",
  21155. extra: 1227 / 1180,
  21156. bottom: 0.005
  21157. }
  21158. },
  21159. },
  21160. [
  21161. {
  21162. name: "Macro",
  21163. height: math.unit(293, "meters"),
  21164. default: true
  21165. },
  21166. ]
  21167. ))
  21168. characterMakers.push(() => makeCharacter(
  21169. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21170. {
  21171. front: {
  21172. height: math.unit(1050, "feet"),
  21173. weight: math.unit(200000, "tons"),
  21174. name: "Front",
  21175. image: {
  21176. source: "./media/characters/alessandra/front.svg",
  21177. extra: 960 / 912,
  21178. bottom: 0.06
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Macro",
  21185. height: math.unit(1050, "feet")
  21186. },
  21187. {
  21188. name: "Macro+",
  21189. height: math.unit(900, "meters"),
  21190. default: true
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21196. {
  21197. front: {
  21198. height: math.unit(5, "feet"),
  21199. weight: math.unit(187, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/person/front.svg",
  21203. extra: 3087 / 2945,
  21204. bottom: 91 / 3181
  21205. }
  21206. },
  21207. },
  21208. [
  21209. {
  21210. name: "Micro",
  21211. height: math.unit(3, "inches")
  21212. },
  21213. {
  21214. name: "Normal",
  21215. height: math.unit(5, "feet"),
  21216. default: true
  21217. },
  21218. {
  21219. name: "Macro",
  21220. height: math.unit(90, "feet")
  21221. },
  21222. {
  21223. name: "Max Size",
  21224. height: math.unit(280, "feet")
  21225. },
  21226. ]
  21227. ))
  21228. characterMakers.push(() => makeCharacter(
  21229. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21230. {
  21231. front: {
  21232. height: math.unit(4.5, "meters"),
  21233. weight: math.unit(3200, "lb"),
  21234. name: "Front",
  21235. image: {
  21236. source: "./media/characters/ty/front.svg",
  21237. extra: 1038 / 960,
  21238. bottom: 31.156 / 1068
  21239. }
  21240. },
  21241. back: {
  21242. height: math.unit(4.5, "meters"),
  21243. weight: math.unit(3200, "lb"),
  21244. name: "Back",
  21245. image: {
  21246. source: "./media/characters/ty/back.svg",
  21247. extra: 1044 / 966,
  21248. bottom: 7.48 / 1049
  21249. }
  21250. },
  21251. },
  21252. [
  21253. {
  21254. name: "Normal",
  21255. height: math.unit(4.5, "meters"),
  21256. default: true
  21257. },
  21258. ]
  21259. ))
  21260. characterMakers.push(() => makeCharacter(
  21261. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21262. {
  21263. front: {
  21264. height: math.unit(5 + 4 / 12, "feet"),
  21265. weight: math.unit(115, "lb"),
  21266. name: "Front",
  21267. image: {
  21268. source: "./media/characters/rocky/front.svg",
  21269. extra: 1012 / 975,
  21270. bottom: 54 / 1066
  21271. }
  21272. },
  21273. },
  21274. [
  21275. {
  21276. name: "Normal",
  21277. height: math.unit(5 + 4 / 12, "feet"),
  21278. default: true
  21279. },
  21280. ]
  21281. ))
  21282. characterMakers.push(() => makeCharacter(
  21283. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21284. {
  21285. upright: {
  21286. height: math.unit(6, "meters"),
  21287. weight: math.unit(4000, "kg"),
  21288. name: "Upright",
  21289. image: {
  21290. source: "./media/characters/ruin/upright.svg",
  21291. extra: 668 / 661,
  21292. bottom: 42 / 799.8396
  21293. }
  21294. },
  21295. },
  21296. [
  21297. {
  21298. name: "Normal",
  21299. height: math.unit(6, "meters"),
  21300. default: true
  21301. },
  21302. ]
  21303. ))
  21304. characterMakers.push(() => makeCharacter(
  21305. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21306. {
  21307. front: {
  21308. height: math.unit(5, "feet"),
  21309. weight: math.unit(106, "lb"),
  21310. name: "Front",
  21311. image: {
  21312. source: "./media/characters/robin/front.svg",
  21313. extra: 862 / 799,
  21314. bottom: 42.4 / 914.8856
  21315. }
  21316. },
  21317. },
  21318. [
  21319. {
  21320. name: "Normal",
  21321. height: math.unit(5, "feet"),
  21322. default: true
  21323. },
  21324. ]
  21325. ))
  21326. characterMakers.push(() => makeCharacter(
  21327. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21328. {
  21329. side: {
  21330. height: math.unit(3, "feet"),
  21331. weight: math.unit(225, "lb"),
  21332. name: "Side",
  21333. image: {
  21334. source: "./media/characters/saian/side.svg",
  21335. extra: 566 / 356,
  21336. bottom: 79.7 / 643
  21337. }
  21338. },
  21339. maw: {
  21340. height: math.unit(2.85, "feet"),
  21341. name: "Maw",
  21342. image: {
  21343. source: "./media/characters/saian/maw.svg"
  21344. }
  21345. },
  21346. },
  21347. [
  21348. {
  21349. name: "Normal",
  21350. height: math.unit(3, "feet"),
  21351. default: true
  21352. },
  21353. ]
  21354. ))
  21355. characterMakers.push(() => makeCharacter(
  21356. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21357. {
  21358. side: {
  21359. height: math.unit(8, "feet"),
  21360. weight: math.unit(300, "lb"),
  21361. name: "Side",
  21362. image: {
  21363. source: "./media/characters/equus-silvermane/side.svg",
  21364. extra: 2176 / 2050,
  21365. bottom: 65.7 / 2245
  21366. }
  21367. },
  21368. front: {
  21369. height: math.unit(8, "feet"),
  21370. weight: math.unit(300, "lb"),
  21371. name: "Front",
  21372. image: {
  21373. source: "./media/characters/equus-silvermane/front.svg",
  21374. extra: 4633 / 4400,
  21375. bottom: 71.3 / 4706.915
  21376. }
  21377. },
  21378. sideStepping: {
  21379. height: math.unit(8, "feet"),
  21380. weight: math.unit(300, "lb"),
  21381. name: "Side (Stepping)",
  21382. image: {
  21383. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21384. extra: 1968 / 1860,
  21385. bottom: 16.4 / 1989
  21386. }
  21387. },
  21388. },
  21389. [
  21390. {
  21391. name: "Normal",
  21392. height: math.unit(8, "feet")
  21393. },
  21394. {
  21395. name: "Minimacro",
  21396. height: math.unit(75, "feet"),
  21397. default: true
  21398. },
  21399. {
  21400. name: "Macro",
  21401. height: math.unit(150, "feet")
  21402. },
  21403. {
  21404. name: "Macro+",
  21405. height: math.unit(1000, "feet")
  21406. },
  21407. {
  21408. name: "Megamacro",
  21409. height: math.unit(1, "mile")
  21410. },
  21411. ]
  21412. ))
  21413. characterMakers.push(() => makeCharacter(
  21414. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21415. {
  21416. side: {
  21417. height: math.unit(20, "feet"),
  21418. weight: math.unit(30000, "kg"),
  21419. name: "Side",
  21420. image: {
  21421. source: "./media/characters/windar/side.svg",
  21422. extra: 1491 / 1248,
  21423. bottom: 82.56 / 1568
  21424. }
  21425. },
  21426. },
  21427. [
  21428. {
  21429. name: "Normal",
  21430. height: math.unit(20, "feet"),
  21431. default: true
  21432. },
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21437. {
  21438. side: {
  21439. height: math.unit(15.66, "feet"),
  21440. weight: math.unit(150, "lb"),
  21441. name: "Side",
  21442. image: {
  21443. source: "./media/characters/melody/side.svg",
  21444. extra: 1097 / 944,
  21445. bottom: 11.8 / 1109
  21446. }
  21447. },
  21448. sideOutfit: {
  21449. height: math.unit(15.66, "feet"),
  21450. weight: math.unit(150, "lb"),
  21451. name: "Side (Outfit)",
  21452. image: {
  21453. source: "./media/characters/melody/side-outfit.svg",
  21454. extra: 1097 / 944,
  21455. bottom: 11.8 / 1109
  21456. }
  21457. },
  21458. },
  21459. [
  21460. {
  21461. name: "Normal",
  21462. height: math.unit(15.66, "feet"),
  21463. default: true
  21464. },
  21465. ]
  21466. ))
  21467. characterMakers.push(() => makeCharacter(
  21468. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21469. {
  21470. front: {
  21471. height: math.unit(8, "feet"),
  21472. weight: math.unit(325, "lb"),
  21473. name: "Front",
  21474. image: {
  21475. source: "./media/characters/windera/front.svg",
  21476. extra: 3180 / 2845,
  21477. bottom: 178 / 3365
  21478. }
  21479. },
  21480. },
  21481. [
  21482. {
  21483. name: "Normal",
  21484. height: math.unit(8, "feet"),
  21485. default: true
  21486. },
  21487. ]
  21488. ))
  21489. characterMakers.push(() => makeCharacter(
  21490. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21491. {
  21492. front: {
  21493. height: math.unit(28.75, "feet"),
  21494. weight: math.unit(2000, "kg"),
  21495. name: "Front",
  21496. image: {
  21497. source: "./media/characters/sonear/front.svg",
  21498. extra: 1041.1 / 964.9,
  21499. bottom: 53.7 / 1096.6
  21500. }
  21501. },
  21502. },
  21503. [
  21504. {
  21505. name: "Normal",
  21506. height: math.unit(28.75, "feet"),
  21507. default: true
  21508. },
  21509. ]
  21510. ))
  21511. characterMakers.push(() => makeCharacter(
  21512. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21513. {
  21514. side: {
  21515. height: math.unit(25.5, "feet"),
  21516. weight: math.unit(23000, "kg"),
  21517. name: "Side",
  21518. image: {
  21519. source: "./media/characters/kanara/side.svg"
  21520. }
  21521. },
  21522. },
  21523. [
  21524. {
  21525. name: "Normal",
  21526. height: math.unit(25.5, "feet"),
  21527. default: true
  21528. },
  21529. ]
  21530. ))
  21531. characterMakers.push(() => makeCharacter(
  21532. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21533. {
  21534. side: {
  21535. height: math.unit(10, "feet"),
  21536. weight: math.unit(1000, "kg"),
  21537. name: "Side",
  21538. image: {
  21539. source: "./media/characters/ereus/side.svg",
  21540. extra: 1157 / 959,
  21541. bottom: 153 / 1312.5
  21542. }
  21543. },
  21544. },
  21545. [
  21546. {
  21547. name: "Normal",
  21548. height: math.unit(10, "feet"),
  21549. default: true
  21550. },
  21551. ]
  21552. ))
  21553. characterMakers.push(() => makeCharacter(
  21554. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21555. {
  21556. side: {
  21557. height: math.unit(4.5, "feet"),
  21558. weight: math.unit(500, "lb"),
  21559. name: "Side",
  21560. image: {
  21561. source: "./media/characters/e-ter/side.svg",
  21562. extra: 1550 / 1248,
  21563. bottom: 146 / 1694
  21564. }
  21565. },
  21566. },
  21567. [
  21568. {
  21569. name: "Normal",
  21570. height: math.unit(4.5, "feet"),
  21571. default: true
  21572. },
  21573. ]
  21574. ))
  21575. characterMakers.push(() => makeCharacter(
  21576. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21577. {
  21578. side: {
  21579. height: math.unit(9.7, "feet"),
  21580. weight: math.unit(4000, "kg"),
  21581. name: "Side",
  21582. image: {
  21583. source: "./media/characters/yamie/side.svg"
  21584. }
  21585. },
  21586. },
  21587. [
  21588. {
  21589. name: "Normal",
  21590. height: math.unit(9.7, "feet"),
  21591. default: true
  21592. },
  21593. ]
  21594. ))
  21595. characterMakers.push(() => makeCharacter(
  21596. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21597. {
  21598. front: {
  21599. height: math.unit(50, "feet"),
  21600. weight: math.unit(50000, "kg"),
  21601. name: "Front",
  21602. image: {
  21603. source: "./media/characters/anders/front.svg",
  21604. extra: 570 / 539,
  21605. bottom: 14.7 / 586.7
  21606. }
  21607. },
  21608. },
  21609. [
  21610. {
  21611. name: "Large",
  21612. height: math.unit(50, "feet")
  21613. },
  21614. {
  21615. name: "Macro",
  21616. height: math.unit(2000, "feet"),
  21617. default: true
  21618. },
  21619. {
  21620. name: "Megamacro",
  21621. height: math.unit(12, "miles")
  21622. },
  21623. ]
  21624. ))
  21625. characterMakers.push(() => makeCharacter(
  21626. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21627. {
  21628. front: {
  21629. height: math.unit(7 + 2 / 12, "feet"),
  21630. weight: math.unit(300, "lb"),
  21631. name: "Front",
  21632. image: {
  21633. source: "./media/characters/reban/front.svg",
  21634. extra: 516 / 487,
  21635. bottom: 42.82 / 558.356
  21636. }
  21637. },
  21638. dick: {
  21639. height: math.unit(7 / 5, "feet"),
  21640. name: "Dick",
  21641. image: {
  21642. source: "./media/characters/reban/dick.svg"
  21643. }
  21644. },
  21645. },
  21646. [
  21647. {
  21648. name: "Natural Height",
  21649. height: math.unit(7 + 2 / 12, "feet")
  21650. },
  21651. {
  21652. name: "Macro",
  21653. height: math.unit(500, "feet"),
  21654. default: true
  21655. },
  21656. {
  21657. name: "Canon Height",
  21658. height: math.unit(50, "AU")
  21659. },
  21660. ]
  21661. ))
  21662. characterMakers.push(() => makeCharacter(
  21663. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21664. {
  21665. front: {
  21666. height: math.unit(6, "feet"),
  21667. weight: math.unit(150, "lb"),
  21668. name: "Front",
  21669. image: {
  21670. source: "./media/characters/terrance-keayes/front.svg",
  21671. extra: 1.005,
  21672. bottom: 151 / 1615
  21673. }
  21674. },
  21675. side: {
  21676. height: math.unit(6, "feet"),
  21677. weight: math.unit(150, "lb"),
  21678. name: "Side",
  21679. image: {
  21680. source: "./media/characters/terrance-keayes/side.svg",
  21681. extra: 1.005,
  21682. bottom: 129.4 / 1544
  21683. }
  21684. },
  21685. back: {
  21686. height: math.unit(6, "feet"),
  21687. weight: math.unit(150, "lb"),
  21688. name: "Back",
  21689. image: {
  21690. source: "./media/characters/terrance-keayes/back.svg",
  21691. extra: 1.005,
  21692. bottom: 58.4 / 1557.3
  21693. }
  21694. },
  21695. dick: {
  21696. height: math.unit(6 * 0.208, "feet"),
  21697. name: "Dick",
  21698. image: {
  21699. source: "./media/characters/terrance-keayes/dick.svg"
  21700. }
  21701. },
  21702. },
  21703. [
  21704. {
  21705. name: "Canon Height",
  21706. height: math.unit(35, "miles"),
  21707. default: true
  21708. },
  21709. ]
  21710. ))
  21711. characterMakers.push(() => makeCharacter(
  21712. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21713. {
  21714. front: {
  21715. height: math.unit(6, "feet"),
  21716. weight: math.unit(150, "lb"),
  21717. name: "Front",
  21718. image: {
  21719. source: "./media/characters/ofelia/front.svg",
  21720. extra: 546 / 541,
  21721. bottom: 39 / 583
  21722. }
  21723. },
  21724. back: {
  21725. height: math.unit(6, "feet"),
  21726. weight: math.unit(150, "lb"),
  21727. name: "Back",
  21728. image: {
  21729. source: "./media/characters/ofelia/back.svg",
  21730. extra: 564 / 559.5,
  21731. bottom: 8.69 / 573.02
  21732. }
  21733. },
  21734. maw: {
  21735. height: math.unit(1, "feet"),
  21736. name: "Maw",
  21737. image: {
  21738. source: "./media/characters/ofelia/maw.svg"
  21739. }
  21740. },
  21741. foot: {
  21742. height: math.unit(1.949, "feet"),
  21743. name: "Foot",
  21744. image: {
  21745. source: "./media/characters/ofelia/foot.svg"
  21746. }
  21747. },
  21748. },
  21749. [
  21750. {
  21751. name: "Canon Height",
  21752. height: math.unit(2000, "miles"),
  21753. default: true
  21754. },
  21755. ]
  21756. ))
  21757. characterMakers.push(() => makeCharacter(
  21758. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21759. {
  21760. front: {
  21761. height: math.unit(6, "feet"),
  21762. weight: math.unit(150, "lb"),
  21763. name: "Front",
  21764. image: {
  21765. source: "./media/characters/samuel/front.svg",
  21766. extra: 265 / 258,
  21767. bottom: 2 / 266.1566
  21768. }
  21769. },
  21770. },
  21771. [
  21772. {
  21773. name: "Macro",
  21774. height: math.unit(100, "feet"),
  21775. default: true
  21776. },
  21777. {
  21778. name: "Full Size",
  21779. height: math.unit(1000, "miles")
  21780. },
  21781. ]
  21782. ))
  21783. characterMakers.push(() => makeCharacter(
  21784. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21785. {
  21786. front: {
  21787. height: math.unit(6, "feet"),
  21788. weight: math.unit(300, "lb"),
  21789. name: "Front",
  21790. image: {
  21791. source: "./media/characters/beishir-kiel/front.svg",
  21792. extra: 569 / 547,
  21793. bottom: 41.9 / 609
  21794. }
  21795. },
  21796. maw: {
  21797. height: math.unit(6 * 0.202, "feet"),
  21798. name: "Maw",
  21799. image: {
  21800. source: "./media/characters/beishir-kiel/maw.svg"
  21801. }
  21802. },
  21803. },
  21804. [
  21805. {
  21806. name: "Macro",
  21807. height: math.unit(300, "feet"),
  21808. default: true
  21809. },
  21810. ]
  21811. ))
  21812. characterMakers.push(() => makeCharacter(
  21813. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21814. {
  21815. front: {
  21816. height: math.unit(5 + 8 / 12, "feet"),
  21817. weight: math.unit(120, "lb"),
  21818. name: "Front",
  21819. image: {
  21820. source: "./media/characters/logan-grey/front.svg",
  21821. extra: 2539 / 2393,
  21822. bottom: 97.6 / 2636.37
  21823. }
  21824. },
  21825. frontAlt: {
  21826. height: math.unit(5 + 8 / 12, "feet"),
  21827. weight: math.unit(120, "lb"),
  21828. name: "Front (Alt)",
  21829. image: {
  21830. source: "./media/characters/logan-grey/front-alt.svg",
  21831. extra: 958 / 893,
  21832. bottom: 15 / 970.768
  21833. }
  21834. },
  21835. back: {
  21836. height: math.unit(5 + 8 / 12, "feet"),
  21837. weight: math.unit(120, "lb"),
  21838. name: "Back",
  21839. image: {
  21840. source: "./media/characters/logan-grey/back.svg",
  21841. extra: 958 / 893,
  21842. bottom: 2.1881 / 970.9788
  21843. }
  21844. },
  21845. dick: {
  21846. height: math.unit(1.437, "feet"),
  21847. name: "Dick",
  21848. image: {
  21849. source: "./media/characters/logan-grey/dick.svg"
  21850. }
  21851. },
  21852. },
  21853. [
  21854. {
  21855. name: "Normal",
  21856. height: math.unit(5 + 8 / 12, "feet")
  21857. },
  21858. {
  21859. name: "The 500 Foot Femboy",
  21860. height: math.unit(500, "feet"),
  21861. default: true
  21862. },
  21863. {
  21864. name: "Megmacro",
  21865. height: math.unit(20, "miles")
  21866. },
  21867. ]
  21868. ))
  21869. characterMakers.push(() => makeCharacter(
  21870. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21871. {
  21872. front: {
  21873. height: math.unit(8 + 2 / 12, "feet"),
  21874. weight: math.unit(275, "lb"),
  21875. name: "Front",
  21876. image: {
  21877. source: "./media/characters/draganta/front.svg",
  21878. extra: 1177 / 1135,
  21879. bottom: 33.46 / 1212.1
  21880. }
  21881. },
  21882. },
  21883. [
  21884. {
  21885. name: "Normal",
  21886. height: math.unit(8 + 6 / 12, "feet"),
  21887. default: true
  21888. },
  21889. {
  21890. name: "Macro",
  21891. height: math.unit(150, "feet")
  21892. },
  21893. {
  21894. name: "Megamacro",
  21895. height: math.unit(1000, "miles")
  21896. },
  21897. ]
  21898. ))
  21899. characterMakers.push(() => makeCharacter(
  21900. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21901. {
  21902. front: {
  21903. height: math.unit(1.72, "m"),
  21904. weight: math.unit(80, "lb"),
  21905. name: "Front",
  21906. image: {
  21907. source: "./media/characters/voski/front.svg",
  21908. extra: 2076.22 / 2022.4,
  21909. bottom: 102.7 / 2177.3866
  21910. }
  21911. },
  21912. frontNsfw: {
  21913. height: math.unit(1.72, "m"),
  21914. weight: math.unit(80, "lb"),
  21915. name: "Front (NSFW)",
  21916. image: {
  21917. source: "./media/characters/voski/front-nsfw.svg",
  21918. extra: 2076.22 / 2022.4,
  21919. bottom: 102.7 / 2177.3866
  21920. }
  21921. },
  21922. back: {
  21923. height: math.unit(1.72, "m"),
  21924. weight: math.unit(80, "lb"),
  21925. name: "Back",
  21926. image: {
  21927. source: "./media/characters/voski/back.svg",
  21928. extra: 2104 / 2051,
  21929. bottom: 10.45 / 2113.63
  21930. }
  21931. },
  21932. },
  21933. [
  21934. {
  21935. name: "Normal",
  21936. height: math.unit(1.72, "m")
  21937. },
  21938. {
  21939. name: "Macro",
  21940. height: math.unit(55, "m"),
  21941. default: true
  21942. },
  21943. {
  21944. name: "Macro+",
  21945. height: math.unit(300, "m")
  21946. },
  21947. {
  21948. name: "Macro++",
  21949. height: math.unit(700, "m")
  21950. },
  21951. {
  21952. name: "Macro+++",
  21953. height: math.unit(4500, "m")
  21954. },
  21955. {
  21956. name: "Macro++++",
  21957. height: math.unit(45, "km")
  21958. },
  21959. {
  21960. name: "Macro+++++",
  21961. height: math.unit(1220, "km")
  21962. },
  21963. ]
  21964. ))
  21965. characterMakers.push(() => makeCharacter(
  21966. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21967. {
  21968. front: {
  21969. height: math.unit(2.3, "m"),
  21970. weight: math.unit(304, "kg"),
  21971. name: "Front",
  21972. image: {
  21973. source: "./media/characters/icowom-lee/front.svg",
  21974. extra: 985 / 955,
  21975. bottom: 25.4 / 1012
  21976. }
  21977. },
  21978. fronttentacles: {
  21979. height: math.unit(2.3, "m"),
  21980. weight: math.unit(304, "kg"),
  21981. name: "Front-tentacles",
  21982. image: {
  21983. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21984. extra: 985 / 955,
  21985. bottom: 25.4 / 1012
  21986. }
  21987. },
  21988. back: {
  21989. height: math.unit(2.3, "m"),
  21990. weight: math.unit(304, "kg"),
  21991. name: "Back",
  21992. image: {
  21993. source: "./media/characters/icowom-lee/back.svg",
  21994. extra: 975 / 954,
  21995. bottom: 9.5 / 985
  21996. }
  21997. },
  21998. backtentacles: {
  21999. height: math.unit(2.3, "m"),
  22000. weight: math.unit(304, "kg"),
  22001. name: "Back-tentacles",
  22002. image: {
  22003. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22004. extra: 975 / 954,
  22005. bottom: 9.5 / 985
  22006. }
  22007. },
  22008. frontDressed: {
  22009. height: math.unit(2.3, "m"),
  22010. weight: math.unit(304, "kg"),
  22011. name: "Front (Dressed)",
  22012. image: {
  22013. source: "./media/characters/icowom-lee/front-dressed.svg",
  22014. extra: 3076 / 2933,
  22015. bottom: 51.4 / 3125.1889
  22016. }
  22017. },
  22018. rump: {
  22019. height: math.unit(0.776, "meters"),
  22020. name: "Rump",
  22021. image: {
  22022. source: "./media/characters/icowom-lee/rump.svg"
  22023. }
  22024. },
  22025. genitals: {
  22026. height: math.unit(0.78, "meters"),
  22027. name: "Genitals",
  22028. image: {
  22029. source: "./media/characters/icowom-lee/genitals.svg"
  22030. }
  22031. },
  22032. },
  22033. [
  22034. {
  22035. name: "Normal",
  22036. height: math.unit(2.3, "meters"),
  22037. default: true
  22038. },
  22039. {
  22040. name: "Macro",
  22041. height: math.unit(94, "meters"),
  22042. default: true
  22043. },
  22044. ]
  22045. ))
  22046. characterMakers.push(() => makeCharacter(
  22047. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22048. {
  22049. front: {
  22050. height: math.unit(22, "meters"),
  22051. weight: math.unit(21000, "kg"),
  22052. name: "Front",
  22053. image: {
  22054. source: "./media/characters/shock-diamond/front.svg",
  22055. extra: 2204 / 2053,
  22056. bottom: 65 / 2239.47
  22057. }
  22058. },
  22059. frontNude: {
  22060. height: math.unit(22, "meters"),
  22061. weight: math.unit(21000, "kg"),
  22062. name: "Front (Nude)",
  22063. image: {
  22064. source: "./media/characters/shock-diamond/front-nude.svg",
  22065. extra: 2514 / 2285,
  22066. bottom: 13 / 2527.56
  22067. }
  22068. },
  22069. },
  22070. [
  22071. {
  22072. name: "Normal",
  22073. height: math.unit(3, "meters")
  22074. },
  22075. {
  22076. name: "Macro",
  22077. height: math.unit(22, "meters"),
  22078. default: true
  22079. },
  22080. ]
  22081. ))
  22082. characterMakers.push(() => makeCharacter(
  22083. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22084. {
  22085. front: {
  22086. height: math.unit(5 + 4 / 12, "feet"),
  22087. weight: math.unit(120, "lb"),
  22088. name: "Front",
  22089. image: {
  22090. source: "./media/characters/rory/front.svg",
  22091. extra: 589 / 556,
  22092. bottom: 45.7 / 635.76
  22093. }
  22094. },
  22095. frontNude: {
  22096. height: math.unit(5 + 4 / 12, "feet"),
  22097. weight: math.unit(120, "lb"),
  22098. name: "Front (Nude)",
  22099. image: {
  22100. source: "./media/characters/rory/front-nude.svg",
  22101. extra: 589 / 556,
  22102. bottom: 45.7 / 635.76
  22103. }
  22104. },
  22105. side: {
  22106. height: math.unit(5 + 4 / 12, "feet"),
  22107. weight: math.unit(120, "lb"),
  22108. name: "Side",
  22109. image: {
  22110. source: "./media/characters/rory/side.svg",
  22111. extra: 597 / 564,
  22112. bottom: 55 / 653
  22113. }
  22114. },
  22115. back: {
  22116. height: math.unit(5 + 4 / 12, "feet"),
  22117. weight: math.unit(120, "lb"),
  22118. name: "Back",
  22119. image: {
  22120. source: "./media/characters/rory/back.svg",
  22121. extra: 620 / 585,
  22122. bottom: 8.86 / 630.43
  22123. }
  22124. },
  22125. dick: {
  22126. height: math.unit(0.86, "feet"),
  22127. name: "Dick",
  22128. image: {
  22129. source: "./media/characters/rory/dick.svg"
  22130. }
  22131. },
  22132. },
  22133. [
  22134. {
  22135. name: "Normal",
  22136. height: math.unit(5 + 4 / 12, "feet"),
  22137. default: true
  22138. },
  22139. {
  22140. name: "Macro",
  22141. height: math.unit(100, "feet")
  22142. },
  22143. {
  22144. name: "Macro+",
  22145. height: math.unit(140, "feet")
  22146. },
  22147. {
  22148. name: "Macro++",
  22149. height: math.unit(300, "feet")
  22150. },
  22151. ]
  22152. ))
  22153. characterMakers.push(() => makeCharacter(
  22154. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22155. {
  22156. front: {
  22157. height: math.unit(5 + 9 / 12, "feet"),
  22158. weight: math.unit(190, "lb"),
  22159. name: "Front",
  22160. image: {
  22161. source: "./media/characters/sprisk/front.svg",
  22162. extra: 1225 / 1180,
  22163. bottom: 42.7 / 1266.4
  22164. }
  22165. },
  22166. frontNsfw: {
  22167. height: math.unit(5 + 9 / 12, "feet"),
  22168. weight: math.unit(190, "lb"),
  22169. name: "Front (NSFW)",
  22170. image: {
  22171. source: "./media/characters/sprisk/front-nsfw.svg",
  22172. extra: 1225 / 1180,
  22173. bottom: 42.7 / 1266.4
  22174. }
  22175. },
  22176. back: {
  22177. height: math.unit(5 + 9 / 12, "feet"),
  22178. weight: math.unit(190, "lb"),
  22179. name: "Back",
  22180. image: {
  22181. source: "./media/characters/sprisk/back.svg",
  22182. extra: 1247 / 1200,
  22183. bottom: 5.6 / 1253.04
  22184. }
  22185. },
  22186. },
  22187. [
  22188. {
  22189. name: "Tiny",
  22190. height: math.unit(2, "inches")
  22191. },
  22192. {
  22193. name: "Normal",
  22194. height: math.unit(5 + 9 / 12, "feet"),
  22195. default: true
  22196. },
  22197. {
  22198. name: "Mini Macro",
  22199. height: math.unit(18, "feet")
  22200. },
  22201. {
  22202. name: "Macro",
  22203. height: math.unit(100, "feet")
  22204. },
  22205. {
  22206. name: "MACRO",
  22207. height: math.unit(50, "miles")
  22208. },
  22209. {
  22210. name: "M A C R O",
  22211. height: math.unit(300, "miles")
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22217. {
  22218. side: {
  22219. height: math.unit(15.6, "meters"),
  22220. weight: math.unit(700000, "kg"),
  22221. name: "Side",
  22222. image: {
  22223. source: "./media/characters/bunsen/side.svg",
  22224. extra: 1644 / 358
  22225. }
  22226. },
  22227. foot: {
  22228. height: math.unit(1.611 * 1644 / 358, "meter"),
  22229. name: "Foot",
  22230. image: {
  22231. source: "./media/characters/bunsen/foot.svg"
  22232. }
  22233. },
  22234. },
  22235. [
  22236. {
  22237. name: "Small",
  22238. height: math.unit(10, "feet")
  22239. },
  22240. {
  22241. name: "Normal",
  22242. height: math.unit(15.6, "meters"),
  22243. default: true
  22244. },
  22245. ]
  22246. ))
  22247. characterMakers.push(() => makeCharacter(
  22248. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22249. {
  22250. front: {
  22251. height: math.unit(4 + 11 / 12, "feet"),
  22252. weight: math.unit(140, "lb"),
  22253. name: "Front",
  22254. image: {
  22255. source: "./media/characters/sesh/front.svg",
  22256. extra: 3420 / 3231,
  22257. bottom: 72 / 3949.5
  22258. }
  22259. },
  22260. },
  22261. [
  22262. {
  22263. name: "Normal",
  22264. height: math.unit(4 + 11 / 12, "feet")
  22265. },
  22266. {
  22267. name: "Grown",
  22268. height: math.unit(15, "feet"),
  22269. default: true
  22270. },
  22271. {
  22272. name: "Macro",
  22273. height: math.unit(1500, "feet")
  22274. },
  22275. {
  22276. name: "Megamacro",
  22277. height: math.unit(30, "miles")
  22278. },
  22279. {
  22280. name: "Continental",
  22281. height: math.unit(3000, "miles")
  22282. },
  22283. {
  22284. name: "Gravity Mass",
  22285. height: math.unit(300000, "miles")
  22286. },
  22287. {
  22288. name: "Planet Buster",
  22289. height: math.unit(30000000, "miles")
  22290. },
  22291. {
  22292. name: "Big",
  22293. height: math.unit(3000000000, "miles")
  22294. },
  22295. ]
  22296. ))
  22297. characterMakers.push(() => makeCharacter(
  22298. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22299. {
  22300. front: {
  22301. height: math.unit(9, "feet"),
  22302. weight: math.unit(350, "lb"),
  22303. name: "Front",
  22304. image: {
  22305. source: "./media/characters/pepper/front.svg",
  22306. extra: 1448 / 1312,
  22307. bottom: 9.4 / 1457.88
  22308. }
  22309. },
  22310. back: {
  22311. height: math.unit(9, "feet"),
  22312. weight: math.unit(350, "lb"),
  22313. name: "Back",
  22314. image: {
  22315. source: "./media/characters/pepper/back.svg",
  22316. extra: 1423 / 1300,
  22317. bottom: 4.6 / 1429
  22318. }
  22319. },
  22320. maw: {
  22321. height: math.unit(0.932, "feet"),
  22322. name: "Maw",
  22323. image: {
  22324. source: "./media/characters/pepper/maw.svg"
  22325. }
  22326. },
  22327. },
  22328. [
  22329. {
  22330. name: "Normal",
  22331. height: math.unit(9, "feet"),
  22332. default: true
  22333. },
  22334. ]
  22335. ))
  22336. characterMakers.push(() => makeCharacter(
  22337. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22338. {
  22339. front: {
  22340. height: math.unit(6, "feet"),
  22341. weight: math.unit(150, "lb"),
  22342. name: "Front",
  22343. image: {
  22344. source: "./media/characters/maelstrom/front.svg",
  22345. extra: 2100 / 1883,
  22346. bottom: 94 / 2196.7
  22347. }
  22348. },
  22349. },
  22350. [
  22351. {
  22352. name: "Less Kaiju",
  22353. height: math.unit(200, "feet")
  22354. },
  22355. {
  22356. name: "Kaiju",
  22357. height: math.unit(400, "feet"),
  22358. default: true
  22359. },
  22360. {
  22361. name: "Kaiju-er",
  22362. height: math.unit(600, "feet")
  22363. },
  22364. ]
  22365. ))
  22366. characterMakers.push(() => makeCharacter(
  22367. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22368. {
  22369. front: {
  22370. height: math.unit(6 + 5 / 12, "feet"),
  22371. weight: math.unit(180, "lb"),
  22372. name: "Front",
  22373. image: {
  22374. source: "./media/characters/lexir/front.svg",
  22375. extra: 180 / 172,
  22376. bottom: 12 / 192
  22377. }
  22378. },
  22379. back: {
  22380. height: math.unit(6 + 5 / 12, "feet"),
  22381. weight: math.unit(180, "lb"),
  22382. name: "Back",
  22383. image: {
  22384. source: "./media/characters/lexir/back.svg",
  22385. extra: 183.84 / 175.5,
  22386. bottom: 3.1 / 187
  22387. }
  22388. },
  22389. },
  22390. [
  22391. {
  22392. name: "Very Smal",
  22393. height: math.unit(1, "nm")
  22394. },
  22395. {
  22396. name: "Normal",
  22397. height: math.unit(6 + 5 / 12, "feet"),
  22398. default: true
  22399. },
  22400. {
  22401. name: "Macro",
  22402. height: math.unit(1, "mile")
  22403. },
  22404. {
  22405. name: "Megamacro",
  22406. height: math.unit(50, "miles")
  22407. },
  22408. ]
  22409. ))
  22410. characterMakers.push(() => makeCharacter(
  22411. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22412. {
  22413. front: {
  22414. height: math.unit(1.5, "meters"),
  22415. weight: math.unit(100, "lb"),
  22416. name: "Front",
  22417. image: {
  22418. source: "./media/characters/maksio/front.svg",
  22419. extra: 1549 / 1531,
  22420. bottom: 123.7 / 1674.5429
  22421. }
  22422. },
  22423. back: {
  22424. height: math.unit(1.5, "meters"),
  22425. weight: math.unit(100, "lb"),
  22426. name: "Back",
  22427. image: {
  22428. source: "./media/characters/maksio/back.svg",
  22429. extra: 1541 / 1509,
  22430. bottom: 97 / 1639
  22431. }
  22432. },
  22433. hand: {
  22434. height: math.unit(0.621, "feet"),
  22435. name: "Hand",
  22436. image: {
  22437. source: "./media/characters/maksio/hand.svg"
  22438. }
  22439. },
  22440. foot: {
  22441. height: math.unit(1.611, "feet"),
  22442. name: "Foot",
  22443. image: {
  22444. source: "./media/characters/maksio/foot.svg"
  22445. }
  22446. },
  22447. },
  22448. [
  22449. {
  22450. name: "Shrunken",
  22451. height: math.unit(10, "cm")
  22452. },
  22453. {
  22454. name: "Normal",
  22455. height: math.unit(150, "cm"),
  22456. default: true
  22457. },
  22458. ]
  22459. ))
  22460. characterMakers.push(() => makeCharacter(
  22461. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22462. {
  22463. front: {
  22464. height: math.unit(100, "feet"),
  22465. name: "Front",
  22466. image: {
  22467. source: "./media/characters/erza-bear/front.svg",
  22468. extra: 2449 / 2390,
  22469. bottom: 46 / 2494
  22470. }
  22471. },
  22472. back: {
  22473. height: math.unit(100, "feet"),
  22474. name: "Back",
  22475. image: {
  22476. source: "./media/characters/erza-bear/back.svg",
  22477. extra: 2489 / 2430,
  22478. bottom: 85.4 / 2480
  22479. }
  22480. },
  22481. tail: {
  22482. height: math.unit(42, "feet"),
  22483. name: "Tail",
  22484. image: {
  22485. source: "./media/characters/erza-bear/tail.svg"
  22486. }
  22487. },
  22488. tongue: {
  22489. height: math.unit(8, "feet"),
  22490. name: "Tongue",
  22491. image: {
  22492. source: "./media/characters/erza-bear/tongue.svg"
  22493. }
  22494. },
  22495. dick: {
  22496. height: math.unit(10.5, "feet"),
  22497. name: "Dick",
  22498. image: {
  22499. source: "./media/characters/erza-bear/dick.svg"
  22500. }
  22501. },
  22502. dickVertical: {
  22503. height: math.unit(16.9, "feet"),
  22504. name: "Dick (Vertical)",
  22505. image: {
  22506. source: "./media/characters/erza-bear/dick-vertical.svg"
  22507. }
  22508. },
  22509. },
  22510. [
  22511. {
  22512. name: "Macro",
  22513. height: math.unit(100, "feet"),
  22514. default: true
  22515. },
  22516. ]
  22517. ))
  22518. characterMakers.push(() => makeCharacter(
  22519. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22520. {
  22521. front: {
  22522. height: math.unit(172, "cm"),
  22523. weight: math.unit(73, "kg"),
  22524. name: "Front",
  22525. image: {
  22526. source: "./media/characters/violet-flor/front.svg",
  22527. extra: 1530 / 1442,
  22528. bottom: 61.9 / 1588.8
  22529. }
  22530. },
  22531. back: {
  22532. height: math.unit(180, "cm"),
  22533. weight: math.unit(73, "kg"),
  22534. name: "Back",
  22535. image: {
  22536. source: "./media/characters/violet-flor/back.svg",
  22537. extra: 1692 / 1630,
  22538. bottom: 20 / 1712
  22539. }
  22540. },
  22541. },
  22542. [
  22543. {
  22544. name: "Normal",
  22545. height: math.unit(172, "cm"),
  22546. default: true
  22547. },
  22548. ]
  22549. ))
  22550. characterMakers.push(() => makeCharacter(
  22551. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22552. {
  22553. front: {
  22554. height: math.unit(6, "feet"),
  22555. weight: math.unit(220, "lb"),
  22556. name: "Front",
  22557. image: {
  22558. source: "./media/characters/lynn-rhea/front.svg",
  22559. extra: 310 / 273
  22560. }
  22561. },
  22562. back: {
  22563. height: math.unit(6, "feet"),
  22564. weight: math.unit(220, "lb"),
  22565. name: "Back",
  22566. image: {
  22567. source: "./media/characters/lynn-rhea/back.svg",
  22568. extra: 310 / 273
  22569. }
  22570. },
  22571. dicks: {
  22572. height: math.unit(0.9, "feet"),
  22573. name: "Dicks",
  22574. image: {
  22575. source: "./media/characters/lynn-rhea/dicks.svg"
  22576. }
  22577. },
  22578. slit: {
  22579. height: math.unit(0.4, "feet"),
  22580. name: "Slit",
  22581. image: {
  22582. source: "./media/characters/lynn-rhea/slit.svg"
  22583. }
  22584. },
  22585. },
  22586. [
  22587. {
  22588. name: "Micro",
  22589. height: math.unit(1, "inch")
  22590. },
  22591. {
  22592. name: "Macro",
  22593. height: math.unit(60, "feet"),
  22594. default: true
  22595. },
  22596. {
  22597. name: "Megamacro",
  22598. height: math.unit(2, "miles")
  22599. },
  22600. {
  22601. name: "Gigamacro",
  22602. height: math.unit(3, "earths")
  22603. },
  22604. {
  22605. name: "Galactic",
  22606. height: math.unit(0.8, "galaxies")
  22607. },
  22608. ]
  22609. ))
  22610. characterMakers.push(() => makeCharacter(
  22611. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22612. {
  22613. front: {
  22614. height: math.unit(1600, "feet"),
  22615. weight: math.unit(85758785169, "kg"),
  22616. name: "Front",
  22617. image: {
  22618. source: "./media/characters/valathos/front.svg",
  22619. extra: 1451 / 1339
  22620. }
  22621. },
  22622. },
  22623. [
  22624. {
  22625. name: "Macro",
  22626. height: math.unit(1600, "feet"),
  22627. default: true
  22628. },
  22629. ]
  22630. ))
  22631. characterMakers.push(() => makeCharacter(
  22632. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22633. {
  22634. front: {
  22635. height: math.unit(7 + 5 / 12, "feet"),
  22636. weight: math.unit(300, "lb"),
  22637. name: "Front",
  22638. image: {
  22639. source: "./media/characters/azula/front.svg",
  22640. extra: 3208 / 2880,
  22641. bottom: 80.2 / 3277
  22642. }
  22643. },
  22644. back: {
  22645. height: math.unit(7 + 5 / 12, "feet"),
  22646. weight: math.unit(300, "lb"),
  22647. name: "Back",
  22648. image: {
  22649. source: "./media/characters/azula/back.svg",
  22650. extra: 3169 / 2822,
  22651. bottom: 150.6 / 3321
  22652. }
  22653. },
  22654. },
  22655. [
  22656. {
  22657. name: "Normal",
  22658. height: math.unit(7 + 5 / 12, "feet"),
  22659. default: true
  22660. },
  22661. {
  22662. name: "Big",
  22663. height: math.unit(20, "feet")
  22664. },
  22665. ]
  22666. ))
  22667. characterMakers.push(() => makeCharacter(
  22668. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22669. {
  22670. front: {
  22671. height: math.unit(5 + 1 / 12, "feet"),
  22672. weight: math.unit(110, "lb"),
  22673. name: "Front",
  22674. image: {
  22675. source: "./media/characters/rupert/front.svg",
  22676. extra: 1549 / 1495,
  22677. bottom: 54.2 / 1604.4
  22678. }
  22679. },
  22680. },
  22681. [
  22682. {
  22683. name: "Normal",
  22684. height: math.unit(5 + 1 / 12, "feet"),
  22685. default: true
  22686. },
  22687. ]
  22688. ))
  22689. characterMakers.push(() => makeCharacter(
  22690. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22691. {
  22692. front: {
  22693. height: math.unit(8 + 4 / 12, "feet"),
  22694. weight: math.unit(350, "lb"),
  22695. name: "Front",
  22696. image: {
  22697. source: "./media/characters/sheera-castellar/front.svg",
  22698. extra: 1957 / 1894,
  22699. bottom: 26.97 / 1975.017
  22700. }
  22701. },
  22702. side: {
  22703. height: math.unit(8 + 4 / 12, "feet"),
  22704. weight: math.unit(350, "lb"),
  22705. name: "Side",
  22706. image: {
  22707. source: "./media/characters/sheera-castellar/side.svg",
  22708. extra: 1957 / 1894
  22709. }
  22710. },
  22711. back: {
  22712. height: math.unit(8 + 4 / 12, "feet"),
  22713. weight: math.unit(350, "lb"),
  22714. name: "Back",
  22715. image: {
  22716. source: "./media/characters/sheera-castellar/back.svg",
  22717. extra: 1957 / 1894
  22718. }
  22719. },
  22720. angled: {
  22721. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22722. weight: math.unit(350, "lb"),
  22723. name: "Angled",
  22724. image: {
  22725. source: "./media/characters/sheera-castellar/angled.svg",
  22726. extra: 1807 / 1707,
  22727. bottom: 68 / 1875
  22728. }
  22729. },
  22730. genitals: {
  22731. height: math.unit(2.2, "feet"),
  22732. name: "Genitals",
  22733. image: {
  22734. source: "./media/characters/sheera-castellar/genitals.svg"
  22735. }
  22736. },
  22737. taur: {
  22738. height: math.unit(10 + 6/12, "feet"),
  22739. name: "Taur",
  22740. image: {
  22741. source: "./media/characters/sheera-castellar/taur.svg",
  22742. extra: 2017/1909,
  22743. bottom: 185/2202
  22744. }
  22745. },
  22746. },
  22747. [
  22748. {
  22749. name: "Normal",
  22750. height: math.unit(8 + 4 / 12, "feet")
  22751. },
  22752. {
  22753. name: "Macro",
  22754. height: math.unit(150, "feet"),
  22755. default: true
  22756. },
  22757. {
  22758. name: "Macro+",
  22759. height: math.unit(800, "feet")
  22760. },
  22761. ]
  22762. ))
  22763. characterMakers.push(() => makeCharacter(
  22764. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22765. {
  22766. front: {
  22767. height: math.unit(6, "feet"),
  22768. weight: math.unit(150, "lb"),
  22769. name: "Front",
  22770. image: {
  22771. source: "./media/characters/jaipur/front.svg",
  22772. extra: 3860 / 3731,
  22773. bottom: 287 / 4140
  22774. }
  22775. },
  22776. back: {
  22777. height: math.unit(6, "feet"),
  22778. weight: math.unit(150, "lb"),
  22779. name: "Back",
  22780. image: {
  22781. source: "./media/characters/jaipur/back.svg",
  22782. extra: 4060 / 3930,
  22783. bottom: 151 / 4200
  22784. }
  22785. },
  22786. },
  22787. [
  22788. {
  22789. name: "Normal",
  22790. height: math.unit(1.85, "meters"),
  22791. default: true
  22792. },
  22793. {
  22794. name: "Macro",
  22795. height: math.unit(150, "meters")
  22796. },
  22797. {
  22798. name: "Macro+",
  22799. height: math.unit(0.5, "miles")
  22800. },
  22801. {
  22802. name: "Macro++",
  22803. height: math.unit(2.5, "miles")
  22804. },
  22805. {
  22806. name: "Macro+++",
  22807. height: math.unit(12, "miles")
  22808. },
  22809. {
  22810. name: "Macro++++",
  22811. height: math.unit(120, "miles")
  22812. },
  22813. {
  22814. name: "Macro+++++",
  22815. height: math.unit(1200, "miles")
  22816. },
  22817. ]
  22818. ))
  22819. characterMakers.push(() => makeCharacter(
  22820. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22821. {
  22822. front: {
  22823. height: math.unit(6, "feet"),
  22824. weight: math.unit(150, "lb"),
  22825. name: "Front",
  22826. image: {
  22827. source: "./media/characters/sheila-wolf/front.svg",
  22828. extra: 1931 / 1808,
  22829. bottom: 29.5 / 1960
  22830. }
  22831. },
  22832. dick: {
  22833. height: math.unit(1.464, "feet"),
  22834. name: "Dick",
  22835. image: {
  22836. source: "./media/characters/sheila-wolf/dick.svg"
  22837. }
  22838. },
  22839. muzzle: {
  22840. height: math.unit(0.513, "feet"),
  22841. name: "Muzzle",
  22842. image: {
  22843. source: "./media/characters/sheila-wolf/muzzle.svg"
  22844. }
  22845. },
  22846. },
  22847. [
  22848. {
  22849. name: "Macro",
  22850. height: math.unit(70, "feet"),
  22851. default: true
  22852. },
  22853. ]
  22854. ))
  22855. characterMakers.push(() => makeCharacter(
  22856. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22857. {
  22858. front: {
  22859. height: math.unit(32, "meters"),
  22860. weight: math.unit(300000, "kg"),
  22861. name: "Front",
  22862. image: {
  22863. source: "./media/characters/almor/front.svg",
  22864. extra: 1408 / 1322,
  22865. bottom: 94.6 / 1506.5
  22866. }
  22867. },
  22868. },
  22869. [
  22870. {
  22871. name: "Macro",
  22872. height: math.unit(32, "meters"),
  22873. default: true
  22874. },
  22875. ]
  22876. ))
  22877. characterMakers.push(() => makeCharacter(
  22878. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22879. {
  22880. front: {
  22881. height: math.unit(7, "feet"),
  22882. weight: math.unit(200, "lb"),
  22883. name: "Front",
  22884. image: {
  22885. source: "./media/characters/silver/front.svg",
  22886. extra: 472.1 / 450.5,
  22887. bottom: 26.5 / 499.424
  22888. }
  22889. },
  22890. },
  22891. [
  22892. {
  22893. name: "Normal",
  22894. height: math.unit(7, "feet"),
  22895. default: true
  22896. },
  22897. {
  22898. name: "Macro",
  22899. height: math.unit(800, "feet")
  22900. },
  22901. {
  22902. name: "Megamacro",
  22903. height: math.unit(250, "miles")
  22904. },
  22905. ]
  22906. ))
  22907. characterMakers.push(() => makeCharacter(
  22908. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22909. {
  22910. front: {
  22911. height: math.unit(6, "feet"),
  22912. weight: math.unit(150, "lb"),
  22913. name: "Front",
  22914. image: {
  22915. source: "./media/characters/pliskin/front.svg",
  22916. extra: 1469 / 1359,
  22917. bottom: 70 / 1540
  22918. }
  22919. },
  22920. },
  22921. [
  22922. {
  22923. name: "Micro",
  22924. height: math.unit(3, "inches")
  22925. },
  22926. {
  22927. name: "Normal",
  22928. height: math.unit(5 + 11 / 12, "feet"),
  22929. default: true
  22930. },
  22931. {
  22932. name: "Macro",
  22933. height: math.unit(120, "feet")
  22934. },
  22935. ]
  22936. ))
  22937. characterMakers.push(() => makeCharacter(
  22938. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22939. {
  22940. front: {
  22941. height: math.unit(6, "feet"),
  22942. weight: math.unit(150, "lb"),
  22943. name: "Front",
  22944. image: {
  22945. source: "./media/characters/sammy/front.svg",
  22946. extra: 1193 / 1089,
  22947. bottom: 30.5 / 1226
  22948. }
  22949. },
  22950. },
  22951. [
  22952. {
  22953. name: "Macro",
  22954. height: math.unit(1700, "feet"),
  22955. default: true
  22956. },
  22957. {
  22958. name: "Examacro",
  22959. height: math.unit(2.5e9, "lightyears")
  22960. },
  22961. ]
  22962. ))
  22963. characterMakers.push(() => makeCharacter(
  22964. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22965. {
  22966. front: {
  22967. height: math.unit(21, "meters"),
  22968. weight: math.unit(12, "tonnes"),
  22969. name: "Front",
  22970. image: {
  22971. source: "./media/characters/kuru/front.svg",
  22972. extra: 4301 / 3785,
  22973. bottom: 371.3 / 4691
  22974. }
  22975. },
  22976. },
  22977. [
  22978. {
  22979. name: "Macro",
  22980. height: math.unit(21, "meters"),
  22981. default: true
  22982. },
  22983. ]
  22984. ))
  22985. characterMakers.push(() => makeCharacter(
  22986. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22987. {
  22988. front: {
  22989. height: math.unit(23, "meters"),
  22990. weight: math.unit(12.2, "tonnes"),
  22991. name: "Front",
  22992. image: {
  22993. source: "./media/characters/rakka/front.svg",
  22994. extra: 4670 / 4169,
  22995. bottom: 301 / 4968.7
  22996. }
  22997. },
  22998. },
  22999. [
  23000. {
  23001. name: "Macro",
  23002. height: math.unit(23, "meters"),
  23003. default: true
  23004. },
  23005. ]
  23006. ))
  23007. characterMakers.push(() => makeCharacter(
  23008. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23009. {
  23010. front: {
  23011. height: math.unit(6, "feet"),
  23012. weight: math.unit(150, "lb"),
  23013. name: "Front",
  23014. image: {
  23015. source: "./media/characters/rhys-feline/front.svg",
  23016. extra: 2488 / 2308,
  23017. bottom: 35.67 / 2519.19
  23018. }
  23019. },
  23020. },
  23021. [
  23022. {
  23023. name: "Really Small",
  23024. height: math.unit(1, "nm")
  23025. },
  23026. {
  23027. name: "Micro",
  23028. height: math.unit(4, "inches")
  23029. },
  23030. {
  23031. name: "Normal",
  23032. height: math.unit(4 + 10 / 12, "feet"),
  23033. default: true
  23034. },
  23035. {
  23036. name: "Macro",
  23037. height: math.unit(100, "feet")
  23038. },
  23039. {
  23040. name: "Megamacto",
  23041. height: math.unit(50, "miles")
  23042. },
  23043. ]
  23044. ))
  23045. characterMakers.push(() => makeCharacter(
  23046. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23047. {
  23048. side: {
  23049. height: math.unit(30, "feet"),
  23050. weight: math.unit(35000, "kg"),
  23051. name: "Side",
  23052. image: {
  23053. source: "./media/characters/alydar/side.svg",
  23054. extra: 234 / 222,
  23055. bottom: 6.5 / 241
  23056. }
  23057. },
  23058. front: {
  23059. height: math.unit(30, "feet"),
  23060. weight: math.unit(35000, "kg"),
  23061. name: "Front",
  23062. image: {
  23063. source: "./media/characters/alydar/front.svg",
  23064. extra: 223.37 / 210.2,
  23065. bottom: 22.3 / 246.76
  23066. }
  23067. },
  23068. top: {
  23069. height: math.unit(64.54, "feet"),
  23070. weight: math.unit(35000, "kg"),
  23071. name: "Top",
  23072. image: {
  23073. source: "./media/characters/alydar/top.svg"
  23074. }
  23075. },
  23076. anthro: {
  23077. height: math.unit(30, "feet"),
  23078. weight: math.unit(9000, "kg"),
  23079. name: "Anthro",
  23080. image: {
  23081. source: "./media/characters/alydar/anthro.svg",
  23082. extra: 432 / 421,
  23083. bottom: 7.18 / 440
  23084. }
  23085. },
  23086. maw: {
  23087. height: math.unit(11.693, "feet"),
  23088. name: "Maw",
  23089. image: {
  23090. source: "./media/characters/alydar/maw.svg"
  23091. }
  23092. },
  23093. head: {
  23094. height: math.unit(11.693, "feet"),
  23095. name: "Head",
  23096. image: {
  23097. source: "./media/characters/alydar/head.svg"
  23098. }
  23099. },
  23100. headAlt: {
  23101. height: math.unit(12.861, "feet"),
  23102. name: "Head (Alt)",
  23103. image: {
  23104. source: "./media/characters/alydar/head-alt.svg"
  23105. }
  23106. },
  23107. wing: {
  23108. height: math.unit(20.712, "feet"),
  23109. name: "Wing",
  23110. image: {
  23111. source: "./media/characters/alydar/wing.svg"
  23112. }
  23113. },
  23114. wingFeather: {
  23115. height: math.unit(9.662, "feet"),
  23116. name: "Wing Feather",
  23117. image: {
  23118. source: "./media/characters/alydar/wing-feather.svg"
  23119. }
  23120. },
  23121. countourFeather: {
  23122. height: math.unit(4.154, "feet"),
  23123. name: "Contour Feather",
  23124. image: {
  23125. source: "./media/characters/alydar/contour-feather.svg"
  23126. }
  23127. },
  23128. },
  23129. [
  23130. {
  23131. name: "Diplomatic",
  23132. height: math.unit(13, "feet"),
  23133. default: true
  23134. },
  23135. {
  23136. name: "Small",
  23137. height: math.unit(30, "feet")
  23138. },
  23139. {
  23140. name: "Normal",
  23141. height: math.unit(95, "feet"),
  23142. default: true
  23143. },
  23144. {
  23145. name: "Large",
  23146. height: math.unit(285, "feet")
  23147. },
  23148. {
  23149. name: "Incomprehensible",
  23150. height: math.unit(450, "megameters")
  23151. },
  23152. ]
  23153. ))
  23154. characterMakers.push(() => makeCharacter(
  23155. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23156. {
  23157. side: {
  23158. height: math.unit(11, "feet"),
  23159. weight: math.unit(1750, "kg"),
  23160. name: "Side",
  23161. image: {
  23162. source: "./media/characters/selicia/side.svg",
  23163. extra: 440 / 396,
  23164. bottom: 24.8 / 465.979
  23165. }
  23166. },
  23167. maw: {
  23168. height: math.unit(4.665, "feet"),
  23169. name: "Maw",
  23170. image: {
  23171. source: "./media/characters/selicia/maw.svg"
  23172. }
  23173. },
  23174. },
  23175. [
  23176. {
  23177. name: "Normal",
  23178. height: math.unit(11, "feet"),
  23179. default: true
  23180. },
  23181. ]
  23182. ))
  23183. characterMakers.push(() => makeCharacter(
  23184. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23185. {
  23186. side: {
  23187. height: math.unit(2 + 6 / 12, "feet"),
  23188. weight: math.unit(30, "lb"),
  23189. name: "Side",
  23190. image: {
  23191. source: "./media/characters/layla/side.svg",
  23192. extra: 244 / 188,
  23193. bottom: 18.2 / 262.1
  23194. }
  23195. },
  23196. back: {
  23197. height: math.unit(2 + 6 / 12, "feet"),
  23198. weight: math.unit(30, "lb"),
  23199. name: "Back",
  23200. image: {
  23201. source: "./media/characters/layla/back.svg",
  23202. extra: 308 / 241.5,
  23203. bottom: 8.9 / 316.8
  23204. }
  23205. },
  23206. cumming: {
  23207. height: math.unit(2 + 6 / 12, "feet"),
  23208. weight: math.unit(30, "lb"),
  23209. name: "Cumming",
  23210. image: {
  23211. source: "./media/characters/layla/cumming.svg",
  23212. extra: 342 / 279,
  23213. bottom: 595 / 938
  23214. }
  23215. },
  23216. dickFlaccid: {
  23217. height: math.unit(2.595, "feet"),
  23218. name: "Flaccid Genitals",
  23219. image: {
  23220. source: "./media/characters/layla/dick-flaccid.svg"
  23221. }
  23222. },
  23223. dickErect: {
  23224. height: math.unit(2.359, "feet"),
  23225. name: "Erect Genitals",
  23226. image: {
  23227. source: "./media/characters/layla/dick-erect.svg"
  23228. }
  23229. },
  23230. dragon: {
  23231. height: math.unit(40, "feet"),
  23232. name: "Dragon",
  23233. image: {
  23234. source: "./media/characters/layla/dragon.svg",
  23235. extra: 610/535,
  23236. bottom: 367/977
  23237. }
  23238. },
  23239. taur: {
  23240. height: math.unit(30, "feet"),
  23241. name: "Taur",
  23242. image: {
  23243. source: "./media/characters/layla/taur.svg",
  23244. extra: 1268/1199,
  23245. bottom: 112/1380
  23246. }
  23247. },
  23248. },
  23249. [
  23250. {
  23251. name: "Micro",
  23252. height: math.unit(1, "inch")
  23253. },
  23254. {
  23255. name: "Small",
  23256. height: math.unit(1, "foot")
  23257. },
  23258. {
  23259. name: "Normal",
  23260. height: math.unit(2 + 6 / 12, "feet"),
  23261. default: true
  23262. },
  23263. {
  23264. name: "Macro",
  23265. height: math.unit(200, "feet")
  23266. },
  23267. {
  23268. name: "Megamacro",
  23269. height: math.unit(1000, "miles")
  23270. },
  23271. {
  23272. name: "Planetary",
  23273. height: math.unit(8000, "miles")
  23274. },
  23275. {
  23276. name: "True Layla",
  23277. height: math.unit(200000 * 7, "multiverses")
  23278. },
  23279. ]
  23280. ))
  23281. characterMakers.push(() => makeCharacter(
  23282. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23283. {
  23284. back: {
  23285. height: math.unit(10.5, "feet"),
  23286. weight: math.unit(800, "lb"),
  23287. name: "Back",
  23288. image: {
  23289. source: "./media/characters/knox/back.svg",
  23290. extra: 1486 / 1089,
  23291. bottom: 107 / 1601.4
  23292. }
  23293. },
  23294. side: {
  23295. height: math.unit(10.5, "feet"),
  23296. weight: math.unit(800, "lb"),
  23297. name: "Side",
  23298. image: {
  23299. source: "./media/characters/knox/side.svg",
  23300. extra: 244 / 218,
  23301. bottom: 14 / 260
  23302. }
  23303. },
  23304. },
  23305. [
  23306. {
  23307. name: "Compact",
  23308. height: math.unit(10.5, "feet"),
  23309. default: true
  23310. },
  23311. {
  23312. name: "Dynamax",
  23313. height: math.unit(210, "feet")
  23314. },
  23315. {
  23316. name: "Full Macro",
  23317. height: math.unit(850, "feet")
  23318. },
  23319. ]
  23320. ))
  23321. characterMakers.push(() => makeCharacter(
  23322. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23323. {
  23324. front: {
  23325. height: math.unit(6, "feet"),
  23326. weight: math.unit(152, "lb"),
  23327. name: "Front",
  23328. image: {
  23329. source: "./media/characters/shin-pikachu/front.svg",
  23330. extra: 1574 / 1480,
  23331. bottom: 53.3 / 1626
  23332. }
  23333. },
  23334. hand: {
  23335. height: math.unit(1.055, "feet"),
  23336. name: "Hand",
  23337. image: {
  23338. source: "./media/characters/shin-pikachu/hand.svg"
  23339. }
  23340. },
  23341. foot: {
  23342. height: math.unit(1.1, "feet"),
  23343. name: "Foot",
  23344. image: {
  23345. source: "./media/characters/shin-pikachu/foot.svg"
  23346. }
  23347. },
  23348. collar: {
  23349. height: math.unit(0.386, "feet"),
  23350. name: "Collar",
  23351. image: {
  23352. source: "./media/characters/shin-pikachu/collar.svg"
  23353. }
  23354. },
  23355. },
  23356. [
  23357. {
  23358. name: "Smallest",
  23359. height: math.unit(0.5, "inches")
  23360. },
  23361. {
  23362. name: "Micro",
  23363. height: math.unit(6, "inches")
  23364. },
  23365. {
  23366. name: "Normal",
  23367. height: math.unit(6, "feet"),
  23368. default: true
  23369. },
  23370. {
  23371. name: "Macro",
  23372. height: math.unit(150, "feet")
  23373. },
  23374. ]
  23375. ))
  23376. characterMakers.push(() => makeCharacter(
  23377. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23378. {
  23379. front: {
  23380. height: math.unit(28, "feet"),
  23381. weight: math.unit(10500, "lb"),
  23382. name: "Front",
  23383. image: {
  23384. source: "./media/characters/kayda/front.svg",
  23385. extra: 1536 / 1428,
  23386. bottom: 68.7 / 1603
  23387. }
  23388. },
  23389. back: {
  23390. height: math.unit(28, "feet"),
  23391. weight: math.unit(10500, "lb"),
  23392. name: "Back",
  23393. image: {
  23394. source: "./media/characters/kayda/back.svg",
  23395. extra: 1557 / 1464,
  23396. bottom: 39.5 / 1597.49
  23397. }
  23398. },
  23399. dick: {
  23400. height: math.unit(3.858, "feet"),
  23401. name: "Dick",
  23402. image: {
  23403. source: "./media/characters/kayda/dick.svg"
  23404. }
  23405. },
  23406. },
  23407. [
  23408. {
  23409. name: "Macro",
  23410. height: math.unit(28, "feet"),
  23411. default: true
  23412. },
  23413. ]
  23414. ))
  23415. characterMakers.push(() => makeCharacter(
  23416. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23417. {
  23418. front: {
  23419. height: math.unit(10 + 11 / 12, "feet"),
  23420. weight: math.unit(1400, "lb"),
  23421. name: "Front",
  23422. image: {
  23423. source: "./media/characters/brian/front.svg",
  23424. extra: 737 / 692,
  23425. bottom: 55.4 / 785
  23426. }
  23427. },
  23428. },
  23429. [
  23430. {
  23431. name: "Normal",
  23432. height: math.unit(10 + 11 / 12, "feet"),
  23433. default: true
  23434. },
  23435. ]
  23436. ))
  23437. characterMakers.push(() => makeCharacter(
  23438. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23439. {
  23440. front: {
  23441. height: math.unit(5 + 8 / 12, "feet"),
  23442. weight: math.unit(140, "lb"),
  23443. name: "Front",
  23444. image: {
  23445. source: "./media/characters/khemri/front.svg",
  23446. extra: 4780 / 4059,
  23447. bottom: 80.1 / 4859.25
  23448. }
  23449. },
  23450. },
  23451. [
  23452. {
  23453. name: "Micro",
  23454. height: math.unit(6, "inches")
  23455. },
  23456. {
  23457. name: "Normal",
  23458. height: math.unit(5 + 8 / 12, "feet"),
  23459. default: true
  23460. },
  23461. ]
  23462. ))
  23463. characterMakers.push(() => makeCharacter(
  23464. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23465. {
  23466. front: {
  23467. height: math.unit(13, "feet"),
  23468. weight: math.unit(1700, "lb"),
  23469. name: "Front",
  23470. image: {
  23471. source: "./media/characters/felix-braveheart/front.svg",
  23472. extra: 1222 / 1157,
  23473. bottom: 53.2 / 1280
  23474. }
  23475. },
  23476. back: {
  23477. height: math.unit(13, "feet"),
  23478. weight: math.unit(1700, "lb"),
  23479. name: "Back",
  23480. image: {
  23481. source: "./media/characters/felix-braveheart/back.svg",
  23482. extra: 1277 / 1203,
  23483. bottom: 50.2 / 1327
  23484. }
  23485. },
  23486. feral: {
  23487. height: math.unit(6, "feet"),
  23488. weight: math.unit(400, "lb"),
  23489. name: "Feral",
  23490. image: {
  23491. source: "./media/characters/felix-braveheart/feral.svg",
  23492. extra: 682 / 625,
  23493. bottom: 6.9 / 688
  23494. }
  23495. },
  23496. },
  23497. [
  23498. {
  23499. name: "Normal",
  23500. height: math.unit(13, "feet"),
  23501. default: true
  23502. },
  23503. ]
  23504. ))
  23505. characterMakers.push(() => makeCharacter(
  23506. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23507. {
  23508. side: {
  23509. height: math.unit(5 + 11 / 12, "feet"),
  23510. weight: math.unit(1400, "lb"),
  23511. name: "Side",
  23512. image: {
  23513. source: "./media/characters/shadow-blade/side.svg",
  23514. extra: 1726 / 1267,
  23515. bottom: 58.4 / 1785
  23516. }
  23517. },
  23518. },
  23519. [
  23520. {
  23521. name: "Normal",
  23522. height: math.unit(5 + 11 / 12, "feet"),
  23523. default: true
  23524. },
  23525. ]
  23526. ))
  23527. characterMakers.push(() => makeCharacter(
  23528. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23529. {
  23530. front: {
  23531. height: math.unit(1 + 6 / 12, "feet"),
  23532. weight: math.unit(25, "lb"),
  23533. name: "Front",
  23534. image: {
  23535. source: "./media/characters/karla-halldor/front.svg",
  23536. extra: 1459 / 1383,
  23537. bottom: 12 / 1472
  23538. }
  23539. },
  23540. },
  23541. [
  23542. {
  23543. name: "Normal",
  23544. height: math.unit(1 + 6 / 12, "feet"),
  23545. default: true
  23546. },
  23547. ]
  23548. ))
  23549. characterMakers.push(() => makeCharacter(
  23550. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23551. {
  23552. front: {
  23553. height: math.unit(6 + 2 / 12, "feet"),
  23554. weight: math.unit(160, "lb"),
  23555. name: "Front",
  23556. image: {
  23557. source: "./media/characters/ariam/front.svg",
  23558. extra: 714 / 617,
  23559. bottom: 23.4 / 737,
  23560. }
  23561. },
  23562. squatting: {
  23563. height: math.unit(4.1, "feet"),
  23564. weight: math.unit(160, "lb"),
  23565. name: "Squatting",
  23566. image: {
  23567. source: "./media/characters/ariam/squatting.svg",
  23568. extra: 2617 / 2112,
  23569. bottom: 61.2 / 2681,
  23570. }
  23571. },
  23572. },
  23573. [
  23574. {
  23575. name: "Normal",
  23576. height: math.unit(6 + 2 / 12, "feet"),
  23577. default: true
  23578. },
  23579. {
  23580. name: "Normal+",
  23581. height: math.unit(4, "meters")
  23582. },
  23583. {
  23584. name: "Macro",
  23585. height: math.unit(50, "meters")
  23586. },
  23587. {
  23588. name: "Macro+",
  23589. height: math.unit(100, "meters")
  23590. },
  23591. {
  23592. name: "Megamacro",
  23593. height: math.unit(20, "km")
  23594. },
  23595. ]
  23596. ))
  23597. characterMakers.push(() => makeCharacter(
  23598. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23599. {
  23600. front: {
  23601. height: math.unit(1.67, "meters"),
  23602. weight: math.unit(140, "lb"),
  23603. name: "Front",
  23604. image: {
  23605. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23606. extra: 438 / 410,
  23607. bottom: 0.75 / 439
  23608. }
  23609. },
  23610. },
  23611. [
  23612. {
  23613. name: "Shrunken",
  23614. height: math.unit(7.6, "cm")
  23615. },
  23616. {
  23617. name: "Human Scale",
  23618. height: math.unit(1.67, "meters")
  23619. },
  23620. {
  23621. name: "Wolxi Scale",
  23622. height: math.unit(36.7, "meters"),
  23623. default: true
  23624. },
  23625. ]
  23626. ))
  23627. characterMakers.push(() => makeCharacter(
  23628. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23629. {
  23630. front: {
  23631. height: math.unit(1.73, "meters"),
  23632. weight: math.unit(240, "lb"),
  23633. name: "Front",
  23634. image: {
  23635. source: "./media/characters/izue-two-mothers/front.svg",
  23636. extra: 469 / 437,
  23637. bottom: 1.24 / 470.6
  23638. }
  23639. },
  23640. },
  23641. [
  23642. {
  23643. name: "Shrunken",
  23644. height: math.unit(7.86, "cm")
  23645. },
  23646. {
  23647. name: "Human Scale",
  23648. height: math.unit(1.73, "meters")
  23649. },
  23650. {
  23651. name: "Wolxi Scale",
  23652. height: math.unit(38, "meters"),
  23653. default: true
  23654. },
  23655. ]
  23656. ))
  23657. characterMakers.push(() => makeCharacter(
  23658. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23659. {
  23660. front: {
  23661. height: math.unit(1.55, "meters"),
  23662. weight: math.unit(120, "lb"),
  23663. name: "Front",
  23664. image: {
  23665. source: "./media/characters/teeku-love-shack/front.svg",
  23666. extra: 387 / 362,
  23667. bottom: 1.51 / 388
  23668. }
  23669. },
  23670. },
  23671. [
  23672. {
  23673. name: "Shrunken",
  23674. height: math.unit(7, "cm")
  23675. },
  23676. {
  23677. name: "Human Scale",
  23678. height: math.unit(1.55, "meters")
  23679. },
  23680. {
  23681. name: "Wolxi Scale",
  23682. height: math.unit(34.1, "meters"),
  23683. default: true
  23684. },
  23685. ]
  23686. ))
  23687. characterMakers.push(() => makeCharacter(
  23688. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23689. {
  23690. front: {
  23691. height: math.unit(1.83, "meters"),
  23692. weight: math.unit(135, "lb"),
  23693. name: "Front",
  23694. image: {
  23695. source: "./media/characters/dejma-the-red/front.svg",
  23696. extra: 480 / 458,
  23697. bottom: 1.8 / 482
  23698. }
  23699. },
  23700. },
  23701. [
  23702. {
  23703. name: "Shrunken",
  23704. height: math.unit(8.3, "cm")
  23705. },
  23706. {
  23707. name: "Human Scale",
  23708. height: math.unit(1.83, "meters")
  23709. },
  23710. {
  23711. name: "Wolxi Scale",
  23712. height: math.unit(40, "meters"),
  23713. default: true
  23714. },
  23715. ]
  23716. ))
  23717. characterMakers.push(() => makeCharacter(
  23718. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23719. {
  23720. front: {
  23721. height: math.unit(1.78, "meters"),
  23722. weight: math.unit(65, "kg"),
  23723. name: "Front",
  23724. image: {
  23725. source: "./media/characters/aki/front.svg",
  23726. extra: 452 / 415
  23727. }
  23728. },
  23729. frontNsfw: {
  23730. height: math.unit(1.78, "meters"),
  23731. weight: math.unit(65, "kg"),
  23732. name: "Front (NSFW)",
  23733. image: {
  23734. source: "./media/characters/aki/front-nsfw.svg",
  23735. extra: 452 / 415
  23736. }
  23737. },
  23738. back: {
  23739. height: math.unit(1.78, "meters"),
  23740. weight: math.unit(65, "kg"),
  23741. name: "Back",
  23742. image: {
  23743. source: "./media/characters/aki/back.svg",
  23744. extra: 452 / 415
  23745. }
  23746. },
  23747. rump: {
  23748. height: math.unit(2.05, "feet"),
  23749. name: "Rump",
  23750. image: {
  23751. source: "./media/characters/aki/rump.svg"
  23752. }
  23753. },
  23754. dick: {
  23755. height: math.unit(0.95, "feet"),
  23756. name: "Dick",
  23757. image: {
  23758. source: "./media/characters/aki/dick.svg"
  23759. }
  23760. },
  23761. },
  23762. [
  23763. {
  23764. name: "Micro",
  23765. height: math.unit(15, "cm")
  23766. },
  23767. {
  23768. name: "Normal",
  23769. height: math.unit(178, "cm"),
  23770. default: true
  23771. },
  23772. {
  23773. name: "Macro",
  23774. height: math.unit(214, "m")
  23775. },
  23776. {
  23777. name: "Macro+",
  23778. height: math.unit(534, "m")
  23779. },
  23780. ]
  23781. ))
  23782. characterMakers.push(() => makeCharacter(
  23783. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23784. {
  23785. front: {
  23786. height: math.unit(5 + 5 / 12, "feet"),
  23787. weight: math.unit(120, "lb"),
  23788. name: "Front",
  23789. image: {
  23790. source: "./media/characters/ari/front.svg",
  23791. extra: 714.5 / 682,
  23792. bottom: 8 / 722.5
  23793. }
  23794. },
  23795. },
  23796. [
  23797. {
  23798. name: "Normal",
  23799. height: math.unit(5 + 5 / 12, "feet")
  23800. },
  23801. {
  23802. name: "Macro",
  23803. height: math.unit(100, "feet"),
  23804. default: true
  23805. },
  23806. {
  23807. name: "Megamacro",
  23808. height: math.unit(100, "miles")
  23809. },
  23810. {
  23811. name: "Gigamacro",
  23812. height: math.unit(80000, "miles")
  23813. },
  23814. ]
  23815. ))
  23816. characterMakers.push(() => makeCharacter(
  23817. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23818. {
  23819. side: {
  23820. height: math.unit(9, "feet"),
  23821. weight: math.unit(400, "kg"),
  23822. name: "Side",
  23823. image: {
  23824. source: "./media/characters/bolt/side.svg",
  23825. extra: 1126 / 896,
  23826. bottom: 60 / 1187.3,
  23827. }
  23828. },
  23829. },
  23830. [
  23831. {
  23832. name: "Micro",
  23833. height: math.unit(5, "inches")
  23834. },
  23835. {
  23836. name: "Normal",
  23837. height: math.unit(9, "feet"),
  23838. default: true
  23839. },
  23840. {
  23841. name: "Macro",
  23842. height: math.unit(700, "feet")
  23843. },
  23844. {
  23845. name: "Max Size",
  23846. height: math.unit(1.52e22, "yottameters")
  23847. },
  23848. ]
  23849. ))
  23850. characterMakers.push(() => makeCharacter(
  23851. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23852. {
  23853. front: {
  23854. height: math.unit(4.53, "meters"),
  23855. weight: math.unit(3, "tons"),
  23856. name: "Front",
  23857. image: {
  23858. source: "./media/characters/draekon-sylviar/front.svg",
  23859. extra: 1228 / 1068,
  23860. bottom: 41 / 1270
  23861. }
  23862. },
  23863. tail: {
  23864. height: math.unit(1.772, "meter"),
  23865. name: "Tail",
  23866. image: {
  23867. source: "./media/characters/draekon-sylviar/tail.svg"
  23868. }
  23869. },
  23870. head: {
  23871. height: math.unit(1.331, "meter"),
  23872. name: "Head",
  23873. image: {
  23874. source: "./media/characters/draekon-sylviar/head.svg"
  23875. }
  23876. },
  23877. hand: {
  23878. height: math.unit(0.564, "meter"),
  23879. name: "Hand",
  23880. image: {
  23881. source: "./media/characters/draekon-sylviar/hand.svg"
  23882. }
  23883. },
  23884. foot: {
  23885. height: math.unit(0.621, "meter"),
  23886. name: "Foot",
  23887. image: {
  23888. source: "./media/characters/draekon-sylviar/foot.svg",
  23889. bottom: 32 / 324
  23890. }
  23891. },
  23892. dick: {
  23893. height: math.unit(61, "cm"),
  23894. name: "Dick",
  23895. image: {
  23896. source: "./media/characters/draekon-sylviar/dick.svg"
  23897. }
  23898. },
  23899. dickseparated: {
  23900. height: math.unit(61, "cm"),
  23901. name: "Dick-separated",
  23902. image: {
  23903. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23904. }
  23905. },
  23906. },
  23907. [
  23908. {
  23909. name: "Small",
  23910. height: math.unit(4.53 / 2, "meters"),
  23911. default: true
  23912. },
  23913. {
  23914. name: "Normal",
  23915. height: math.unit(4.53, "meters"),
  23916. default: true
  23917. },
  23918. {
  23919. name: "Large",
  23920. height: math.unit(4.53 * 2, "meters"),
  23921. },
  23922. ]
  23923. ))
  23924. characterMakers.push(() => makeCharacter(
  23925. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23926. {
  23927. front: {
  23928. height: math.unit(6 + 2 / 12, "feet"),
  23929. weight: math.unit(180, "lb"),
  23930. name: "Front",
  23931. image: {
  23932. source: "./media/characters/brawler/front.svg",
  23933. extra: 3301 / 3027,
  23934. bottom: 138 / 3439
  23935. }
  23936. },
  23937. },
  23938. [
  23939. {
  23940. name: "Normal",
  23941. height: math.unit(6 + 2 / 12, "feet"),
  23942. default: true
  23943. },
  23944. ]
  23945. ))
  23946. characterMakers.push(() => makeCharacter(
  23947. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23948. {
  23949. front: {
  23950. height: math.unit(11, "feet"),
  23951. weight: math.unit(1000, "lb"),
  23952. name: "Front",
  23953. image: {
  23954. source: "./media/characters/alex/front.svg",
  23955. bottom: 44.5 / 620
  23956. }
  23957. },
  23958. },
  23959. [
  23960. {
  23961. name: "Micro",
  23962. height: math.unit(5, "inches")
  23963. },
  23964. {
  23965. name: "Normal",
  23966. height: math.unit(11, "feet"),
  23967. default: true
  23968. },
  23969. {
  23970. name: "Macro",
  23971. height: math.unit(9.5e9, "feet")
  23972. },
  23973. {
  23974. name: "Max Size",
  23975. height: math.unit(1.4e283, "yottameters")
  23976. },
  23977. ]
  23978. ))
  23979. characterMakers.push(() => makeCharacter(
  23980. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23981. {
  23982. female: {
  23983. height: math.unit(29.9, "m"),
  23984. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23985. name: "Female",
  23986. image: {
  23987. source: "./media/characters/zenari/female.svg",
  23988. extra: 3281.6 / 3217,
  23989. bottom: 72.2 / 3353
  23990. }
  23991. },
  23992. male: {
  23993. height: math.unit(27.7, "m"),
  23994. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23995. name: "Male",
  23996. image: {
  23997. source: "./media/characters/zenari/male.svg",
  23998. extra: 3008 / 2991,
  23999. bottom: 54.6 / 3069
  24000. }
  24001. },
  24002. },
  24003. [
  24004. {
  24005. name: "Macro",
  24006. height: math.unit(29.7, "meters"),
  24007. default: true
  24008. },
  24009. ]
  24010. ))
  24011. characterMakers.push(() => makeCharacter(
  24012. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24013. {
  24014. female: {
  24015. height: math.unit(23.8, "m"),
  24016. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24017. name: "Female",
  24018. image: {
  24019. source: "./media/characters/mactarian/female.svg",
  24020. extra: 2662 / 2569,
  24021. bottom: 73 / 2736
  24022. }
  24023. },
  24024. male: {
  24025. height: math.unit(23.8, "m"),
  24026. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24027. name: "Male",
  24028. image: {
  24029. source: "./media/characters/mactarian/male.svg",
  24030. extra: 2673 / 2600,
  24031. bottom: 76 / 2750
  24032. }
  24033. },
  24034. },
  24035. [
  24036. {
  24037. name: "Macro",
  24038. height: math.unit(23.8, "meters"),
  24039. default: true
  24040. },
  24041. ]
  24042. ))
  24043. characterMakers.push(() => makeCharacter(
  24044. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24045. {
  24046. female: {
  24047. height: math.unit(19.3, "m"),
  24048. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24049. name: "Female",
  24050. image: {
  24051. source: "./media/characters/umok/female.svg",
  24052. extra: 2186 / 2078,
  24053. bottom: 87 / 2277
  24054. }
  24055. },
  24056. male: {
  24057. height: math.unit(19.5, "m"),
  24058. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24059. name: "Male",
  24060. image: {
  24061. source: "./media/characters/umok/male.svg",
  24062. extra: 2233 / 2140,
  24063. bottom: 24.4 / 2258
  24064. }
  24065. },
  24066. },
  24067. [
  24068. {
  24069. name: "Macro",
  24070. height: math.unit(19.3, "meters"),
  24071. default: true
  24072. },
  24073. ]
  24074. ))
  24075. characterMakers.push(() => makeCharacter(
  24076. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24077. {
  24078. female: {
  24079. height: math.unit(26.15, "m"),
  24080. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24081. name: "Female",
  24082. image: {
  24083. source: "./media/characters/joraxian/female.svg",
  24084. extra: 2912 / 2824,
  24085. bottom: 36 / 2956
  24086. }
  24087. },
  24088. male: {
  24089. height: math.unit(25.4, "m"),
  24090. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24091. name: "Male",
  24092. image: {
  24093. source: "./media/characters/joraxian/male.svg",
  24094. extra: 2877 / 2721,
  24095. bottom: 82 / 2967
  24096. }
  24097. },
  24098. },
  24099. [
  24100. {
  24101. name: "Macro",
  24102. height: math.unit(26.15, "meters"),
  24103. default: true
  24104. },
  24105. ]
  24106. ))
  24107. characterMakers.push(() => makeCharacter(
  24108. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24109. {
  24110. female: {
  24111. height: math.unit(21.6, "m"),
  24112. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24113. name: "Female",
  24114. image: {
  24115. source: "./media/characters/sthara/female.svg",
  24116. extra: 2516 / 2347,
  24117. bottom: 21.5 / 2537
  24118. }
  24119. },
  24120. male: {
  24121. height: math.unit(24, "m"),
  24122. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24123. name: "Male",
  24124. image: {
  24125. source: "./media/characters/sthara/male.svg",
  24126. extra: 2732 / 2607,
  24127. bottom: 23 / 2732
  24128. }
  24129. },
  24130. },
  24131. [
  24132. {
  24133. name: "Macro",
  24134. height: math.unit(21.6, "meters"),
  24135. default: true
  24136. },
  24137. ]
  24138. ))
  24139. characterMakers.push(() => makeCharacter(
  24140. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24141. {
  24142. front: {
  24143. height: math.unit(6 + 4 / 12, "feet"),
  24144. weight: math.unit(175, "lb"),
  24145. name: "Front",
  24146. image: {
  24147. source: "./media/characters/luka-bryzant/front.svg",
  24148. extra: 311 / 289,
  24149. bottom: 4 / 315
  24150. }
  24151. },
  24152. back: {
  24153. height: math.unit(6 + 4 / 12, "feet"),
  24154. weight: math.unit(175, "lb"),
  24155. name: "Back",
  24156. image: {
  24157. source: "./media/characters/luka-bryzant/back.svg",
  24158. extra: 311 / 289,
  24159. bottom: 3.8 / 313.7
  24160. }
  24161. },
  24162. },
  24163. [
  24164. {
  24165. name: "Micro",
  24166. height: math.unit(10, "inches")
  24167. },
  24168. {
  24169. name: "Normal",
  24170. height: math.unit(6 + 4 / 12, "feet"),
  24171. default: true
  24172. },
  24173. {
  24174. name: "Large",
  24175. height: math.unit(12, "feet")
  24176. },
  24177. ]
  24178. ))
  24179. characterMakers.push(() => makeCharacter(
  24180. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24181. {
  24182. front: {
  24183. height: math.unit(5 + 7 / 12, "feet"),
  24184. weight: math.unit(185, "lb"),
  24185. name: "Front",
  24186. image: {
  24187. source: "./media/characters/aman-aquila/front.svg",
  24188. extra: 1013 / 976,
  24189. bottom: 45.6 / 1057
  24190. }
  24191. },
  24192. side: {
  24193. height: math.unit(5 + 7 / 12, "feet"),
  24194. weight: math.unit(185, "lb"),
  24195. name: "Side",
  24196. image: {
  24197. source: "./media/characters/aman-aquila/side.svg",
  24198. extra: 1054 / 1011,
  24199. bottom: 15 / 1070
  24200. }
  24201. },
  24202. back: {
  24203. height: math.unit(5 + 7 / 12, "feet"),
  24204. weight: math.unit(185, "lb"),
  24205. name: "Back",
  24206. image: {
  24207. source: "./media/characters/aman-aquila/back.svg",
  24208. extra: 1026 / 970,
  24209. bottom: 12 / 1039
  24210. }
  24211. },
  24212. head: {
  24213. height: math.unit(1.211, "feet"),
  24214. name: "Head",
  24215. image: {
  24216. source: "./media/characters/aman-aquila/head.svg",
  24217. }
  24218. },
  24219. },
  24220. [
  24221. {
  24222. name: "Minimicro",
  24223. height: math.unit(0.057, "inches")
  24224. },
  24225. {
  24226. name: "Micro",
  24227. height: math.unit(7, "inches")
  24228. },
  24229. {
  24230. name: "Mini",
  24231. height: math.unit(3 + 7 / 12, "feet")
  24232. },
  24233. {
  24234. name: "Normal",
  24235. height: math.unit(5 + 7 / 12, "feet"),
  24236. default: true
  24237. },
  24238. {
  24239. name: "Macro",
  24240. height: math.unit(157 + 7 / 12, "feet")
  24241. },
  24242. {
  24243. name: "Megamacro",
  24244. height: math.unit(1557 + 7 / 12, "feet")
  24245. },
  24246. {
  24247. name: "Gigamacro",
  24248. height: math.unit(15557 + 7 / 12, "feet")
  24249. },
  24250. ]
  24251. ))
  24252. characterMakers.push(() => makeCharacter(
  24253. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24254. {
  24255. front: {
  24256. height: math.unit(3 + 2 / 12, "inches"),
  24257. weight: math.unit(0.3, "ounces"),
  24258. name: "Front",
  24259. image: {
  24260. source: "./media/characters/hiphae/front.svg",
  24261. extra: 1931 / 1683,
  24262. bottom: 24 / 1955
  24263. }
  24264. },
  24265. },
  24266. [
  24267. {
  24268. name: "Normal",
  24269. height: math.unit(3 + 1 / 2, "inches"),
  24270. default: true
  24271. },
  24272. ]
  24273. ))
  24274. characterMakers.push(() => makeCharacter(
  24275. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24276. {
  24277. front: {
  24278. height: math.unit(5 + 10 / 12, "feet"),
  24279. weight: math.unit(165, "lb"),
  24280. name: "Front",
  24281. image: {
  24282. source: "./media/characters/nicky/front.svg",
  24283. extra: 3144 / 2886,
  24284. bottom: 45.6 / 3192
  24285. }
  24286. },
  24287. back: {
  24288. height: math.unit(5 + 10 / 12, "feet"),
  24289. weight: math.unit(165, "lb"),
  24290. name: "Back",
  24291. image: {
  24292. source: "./media/characters/nicky/back.svg",
  24293. extra: 3055 / 2804,
  24294. bottom: 28.4 / 3087
  24295. }
  24296. },
  24297. frontclothed: {
  24298. height: math.unit(5 + 10 / 12, "feet"),
  24299. weight: math.unit(165, "lb"),
  24300. name: "Front-clothed",
  24301. image: {
  24302. source: "./media/characters/nicky/front-clothed.svg",
  24303. extra: 3184.9 / 2926.9,
  24304. bottom: 86.5 / 3239.9
  24305. }
  24306. },
  24307. foot: {
  24308. height: math.unit(1.16, "feet"),
  24309. name: "Foot",
  24310. image: {
  24311. source: "./media/characters/nicky/foot.svg"
  24312. }
  24313. },
  24314. feet: {
  24315. height: math.unit(1.34, "feet"),
  24316. name: "Feet",
  24317. image: {
  24318. source: "./media/characters/nicky/feet.svg"
  24319. }
  24320. },
  24321. maw: {
  24322. height: math.unit(0.9, "feet"),
  24323. name: "Maw",
  24324. image: {
  24325. source: "./media/characters/nicky/maw.svg"
  24326. }
  24327. },
  24328. },
  24329. [
  24330. {
  24331. name: "Normal",
  24332. height: math.unit(5 + 10 / 12, "feet"),
  24333. default: true
  24334. },
  24335. {
  24336. name: "Macro",
  24337. height: math.unit(60, "feet")
  24338. },
  24339. {
  24340. name: "Megamacro",
  24341. height: math.unit(1, "mile")
  24342. },
  24343. ]
  24344. ))
  24345. characterMakers.push(() => makeCharacter(
  24346. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24347. {
  24348. side: {
  24349. height: math.unit(10, "feet"),
  24350. weight: math.unit(600, "lb"),
  24351. name: "Side",
  24352. image: {
  24353. source: "./media/characters/blair/side.svg",
  24354. bottom: 16.6 / 475,
  24355. extra: 458 / 431
  24356. }
  24357. },
  24358. },
  24359. [
  24360. {
  24361. name: "Micro",
  24362. height: math.unit(8, "inches")
  24363. },
  24364. {
  24365. name: "Normal",
  24366. height: math.unit(10, "feet"),
  24367. default: true
  24368. },
  24369. {
  24370. name: "Macro",
  24371. height: math.unit(180, "feet")
  24372. },
  24373. ]
  24374. ))
  24375. characterMakers.push(() => makeCharacter(
  24376. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24377. {
  24378. front: {
  24379. height: math.unit(5 + 4 / 12, "feet"),
  24380. weight: math.unit(125, "lb"),
  24381. name: "Front",
  24382. image: {
  24383. source: "./media/characters/fisher/front.svg",
  24384. extra: 444 / 390,
  24385. bottom: 2 / 444.8
  24386. }
  24387. },
  24388. },
  24389. [
  24390. {
  24391. name: "Micro",
  24392. height: math.unit(4, "inches")
  24393. },
  24394. {
  24395. name: "Normal",
  24396. height: math.unit(5 + 4 / 12, "feet"),
  24397. default: true
  24398. },
  24399. {
  24400. name: "Macro",
  24401. height: math.unit(100, "feet")
  24402. },
  24403. ]
  24404. ))
  24405. characterMakers.push(() => makeCharacter(
  24406. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24407. {
  24408. front: {
  24409. height: math.unit(6.71, "feet"),
  24410. weight: math.unit(200, "lb"),
  24411. capacity: math.unit(1000000, "people"),
  24412. name: "Front",
  24413. image: {
  24414. source: "./media/characters/gliss/front.svg",
  24415. extra: 2347 / 2231,
  24416. bottom: 113 / 2462
  24417. }
  24418. },
  24419. hammerspaceSize: {
  24420. height: math.unit(6.71 * 717, "feet"),
  24421. weight: math.unit(200, "lb"),
  24422. capacity: math.unit(1000000, "people"),
  24423. name: "Hammerspace Size",
  24424. image: {
  24425. source: "./media/characters/gliss/front.svg",
  24426. extra: 2347 / 2231,
  24427. bottom: 113 / 2462
  24428. }
  24429. },
  24430. },
  24431. [
  24432. {
  24433. name: "Normal",
  24434. height: math.unit(6.71, "feet"),
  24435. default: true
  24436. },
  24437. ]
  24438. ))
  24439. characterMakers.push(() => makeCharacter(
  24440. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24441. {
  24442. side: {
  24443. height: math.unit(1.44, "m"),
  24444. weight: math.unit(80, "kg"),
  24445. name: "Side",
  24446. image: {
  24447. source: "./media/characters/dune-anderson/side.svg",
  24448. bottom: 49 / 1426
  24449. }
  24450. },
  24451. },
  24452. [
  24453. {
  24454. name: "Wolf-sized",
  24455. height: math.unit(1.44, "meters")
  24456. },
  24457. {
  24458. name: "Normal",
  24459. height: math.unit(5.05, "meters"),
  24460. default: true
  24461. },
  24462. {
  24463. name: "Big",
  24464. height: math.unit(14.4, "meters")
  24465. },
  24466. {
  24467. name: "Huge",
  24468. height: math.unit(144, "meters")
  24469. },
  24470. ]
  24471. ))
  24472. characterMakers.push(() => makeCharacter(
  24473. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24474. {
  24475. front: {
  24476. height: math.unit(7, "feet"),
  24477. weight: math.unit(425, "lb"),
  24478. name: "Front",
  24479. image: {
  24480. source: "./media/characters/hind/front.svg",
  24481. extra: 2091 / 1860,
  24482. bottom: 129 / 2220
  24483. }
  24484. },
  24485. back: {
  24486. height: math.unit(7, "feet"),
  24487. weight: math.unit(425, "lb"),
  24488. name: "Back",
  24489. image: {
  24490. source: "./media/characters/hind/back.svg",
  24491. extra: 2091 / 1860,
  24492. bottom: 24.6 / 2309
  24493. }
  24494. },
  24495. tail: {
  24496. height: math.unit(2.8, "feet"),
  24497. name: "Tail",
  24498. image: {
  24499. source: "./media/characters/hind/tail.svg"
  24500. }
  24501. },
  24502. head: {
  24503. height: math.unit(2.55, "feet"),
  24504. name: "Head",
  24505. image: {
  24506. source: "./media/characters/hind/head.svg"
  24507. }
  24508. },
  24509. },
  24510. [
  24511. {
  24512. name: "XS",
  24513. height: math.unit(0.7, "feet")
  24514. },
  24515. {
  24516. name: "Normal",
  24517. height: math.unit(7, "feet"),
  24518. default: true
  24519. },
  24520. {
  24521. name: "XL",
  24522. height: math.unit(70, "feet")
  24523. },
  24524. ]
  24525. ))
  24526. characterMakers.push(() => makeCharacter(
  24527. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24528. {
  24529. front: {
  24530. height: math.unit(6, "feet"),
  24531. weight: math.unit(150, "lb"),
  24532. name: "Front",
  24533. image: {
  24534. source: "./media/characters/dylan-skaven/front.svg",
  24535. extra: 2318 / 2063,
  24536. bottom: 93.4 / 2410
  24537. }
  24538. },
  24539. },
  24540. [
  24541. {
  24542. name: "Nano",
  24543. height: math.unit(1, "mm")
  24544. },
  24545. {
  24546. name: "Micro",
  24547. height: math.unit(1, "cm")
  24548. },
  24549. {
  24550. name: "Normal",
  24551. height: math.unit(2.1, "meters"),
  24552. default: true
  24553. },
  24554. ]
  24555. ))
  24556. characterMakers.push(() => makeCharacter(
  24557. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24558. {
  24559. front: {
  24560. height: math.unit(7 + 5 / 12, "feet"),
  24561. weight: math.unit(357, "lb"),
  24562. name: "Front",
  24563. image: {
  24564. source: "./media/characters/solex-draconov/front.svg",
  24565. extra: 1993 / 1865,
  24566. bottom: 117 / 2111
  24567. }
  24568. },
  24569. },
  24570. [
  24571. {
  24572. name: "Natural Height",
  24573. height: math.unit(7 + 5 / 12, "feet"),
  24574. default: true
  24575. },
  24576. {
  24577. name: "Macro",
  24578. height: math.unit(350, "feet")
  24579. },
  24580. {
  24581. name: "Macro+",
  24582. height: math.unit(1000, "feet")
  24583. },
  24584. {
  24585. name: "Megamacro",
  24586. height: math.unit(20, "km")
  24587. },
  24588. {
  24589. name: "Megamacro+",
  24590. height: math.unit(1000, "km")
  24591. },
  24592. {
  24593. name: "Gigamacro",
  24594. height: math.unit(2.5, "Gm")
  24595. },
  24596. {
  24597. name: "Teramacro",
  24598. height: math.unit(15, "Tm")
  24599. },
  24600. {
  24601. name: "Galactic",
  24602. height: math.unit(30, "Zm")
  24603. },
  24604. {
  24605. name: "Universal",
  24606. height: math.unit(21000, "Ym")
  24607. },
  24608. {
  24609. name: "Omniversal",
  24610. height: math.unit(9.861e50, "Ym")
  24611. },
  24612. {
  24613. name: "Existential",
  24614. height: math.unit(1e300, "meters")
  24615. },
  24616. ]
  24617. ))
  24618. characterMakers.push(() => makeCharacter(
  24619. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24620. {
  24621. side: {
  24622. height: math.unit(25, "feet"),
  24623. weight: math.unit(90000, "lb"),
  24624. name: "Side",
  24625. image: {
  24626. source: "./media/characters/mandarax/side.svg",
  24627. extra: 614 / 332,
  24628. bottom: 55 / 630
  24629. }
  24630. },
  24631. head: {
  24632. height: math.unit(11.4, "feet"),
  24633. name: "Head",
  24634. image: {
  24635. source: "./media/characters/mandarax/head.svg"
  24636. }
  24637. },
  24638. belly: {
  24639. height: math.unit(33, "feet"),
  24640. name: "Belly",
  24641. capacity: math.unit(500, "people"),
  24642. image: {
  24643. source: "./media/characters/mandarax/belly.svg"
  24644. }
  24645. },
  24646. dick: {
  24647. height: math.unit(8.46, "feet"),
  24648. name: "Dick",
  24649. image: {
  24650. source: "./media/characters/mandarax/dick.svg"
  24651. }
  24652. },
  24653. top: {
  24654. height: math.unit(28, "meters"),
  24655. name: "Top",
  24656. image: {
  24657. source: "./media/characters/mandarax/top.svg"
  24658. }
  24659. },
  24660. },
  24661. [
  24662. {
  24663. name: "Normal",
  24664. height: math.unit(25, "feet"),
  24665. default: true
  24666. },
  24667. ]
  24668. ))
  24669. characterMakers.push(() => makeCharacter(
  24670. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24671. {
  24672. front: {
  24673. height: math.unit(5, "feet"),
  24674. weight: math.unit(90, "lb"),
  24675. name: "Front",
  24676. image: {
  24677. source: "./media/characters/pixil/front.svg",
  24678. extra: 2000 / 1618,
  24679. bottom: 12.3 / 2011
  24680. }
  24681. },
  24682. },
  24683. [
  24684. {
  24685. name: "Normal",
  24686. height: math.unit(5, "feet"),
  24687. default: true
  24688. },
  24689. {
  24690. name: "Megamacro",
  24691. height: math.unit(10, "miles"),
  24692. },
  24693. ]
  24694. ))
  24695. characterMakers.push(() => makeCharacter(
  24696. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24697. {
  24698. front: {
  24699. height: math.unit(7 + 2 / 12, "feet"),
  24700. weight: math.unit(200, "lb"),
  24701. name: "Front",
  24702. image: {
  24703. source: "./media/characters/angel/front.svg",
  24704. extra: 1830 / 1737,
  24705. bottom: 22.6 / 1854,
  24706. }
  24707. },
  24708. },
  24709. [
  24710. {
  24711. name: "Normal",
  24712. height: math.unit(7 + 2 / 12, "feet"),
  24713. default: true
  24714. },
  24715. {
  24716. name: "Macro",
  24717. height: math.unit(1000, "feet")
  24718. },
  24719. {
  24720. name: "Megamacro",
  24721. height: math.unit(2, "miles")
  24722. },
  24723. {
  24724. name: "Gigamacro",
  24725. height: math.unit(20, "earths")
  24726. },
  24727. ]
  24728. ))
  24729. characterMakers.push(() => makeCharacter(
  24730. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24731. {
  24732. front: {
  24733. height: math.unit(5, "feet"),
  24734. weight: math.unit(180, "lb"),
  24735. name: "Front",
  24736. image: {
  24737. source: "./media/characters/mekana/front.svg",
  24738. extra: 1671 / 1605,
  24739. bottom: 3.5 / 1691
  24740. }
  24741. },
  24742. side: {
  24743. height: math.unit(5, "feet"),
  24744. weight: math.unit(180, "lb"),
  24745. name: "Side",
  24746. image: {
  24747. source: "./media/characters/mekana/side.svg",
  24748. extra: 1671 / 1605,
  24749. bottom: 3.5 / 1691
  24750. }
  24751. },
  24752. back: {
  24753. height: math.unit(5, "feet"),
  24754. weight: math.unit(180, "lb"),
  24755. name: "Back",
  24756. image: {
  24757. source: "./media/characters/mekana/back.svg",
  24758. extra: 1671 / 1605,
  24759. bottom: 3.5 / 1691
  24760. }
  24761. },
  24762. },
  24763. [
  24764. {
  24765. name: "Normal",
  24766. height: math.unit(5, "feet"),
  24767. default: true
  24768. },
  24769. ]
  24770. ))
  24771. characterMakers.push(() => makeCharacter(
  24772. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24773. {
  24774. front: {
  24775. height: math.unit(4 + 6 / 12, "feet"),
  24776. weight: math.unit(80, "lb"),
  24777. name: "Front",
  24778. image: {
  24779. source: "./media/characters/pixie/front.svg",
  24780. extra: 1924 / 1825,
  24781. bottom: 22.4 / 1946
  24782. }
  24783. },
  24784. },
  24785. [
  24786. {
  24787. name: "Normal",
  24788. height: math.unit(4 + 6 / 12, "feet"),
  24789. default: true
  24790. },
  24791. {
  24792. name: "Macro",
  24793. height: math.unit(40, "feet")
  24794. },
  24795. ]
  24796. ))
  24797. characterMakers.push(() => makeCharacter(
  24798. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24799. {
  24800. front: {
  24801. height: math.unit(2.1, "meters"),
  24802. weight: math.unit(200, "lb"),
  24803. name: "Front",
  24804. image: {
  24805. source: "./media/characters/the-lascivious/front.svg",
  24806. extra: 1 / 0.893,
  24807. bottom: 3.5 / 573.7
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Human Scale",
  24814. height: math.unit(2.1, "meters")
  24815. },
  24816. {
  24817. name: "Wolxi Scale",
  24818. height: math.unit(46.2, "m"),
  24819. default: true
  24820. },
  24821. {
  24822. name: "Boinker of Buildings",
  24823. height: math.unit(10, "km")
  24824. },
  24825. {
  24826. name: "Shagger of Skyscrapers",
  24827. height: math.unit(40, "km")
  24828. },
  24829. {
  24830. name: "Banger of Boroughs",
  24831. height: math.unit(4000, "km")
  24832. },
  24833. {
  24834. name: "Screwer of States",
  24835. height: math.unit(100000, "km")
  24836. },
  24837. {
  24838. name: "Pounder of Planets",
  24839. height: math.unit(2000000, "km")
  24840. },
  24841. ]
  24842. ))
  24843. characterMakers.push(() => makeCharacter(
  24844. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24845. {
  24846. front: {
  24847. height: math.unit(6, "feet"),
  24848. weight: math.unit(150, "lb"),
  24849. name: "Front",
  24850. image: {
  24851. source: "./media/characters/aj/front.svg",
  24852. extra: 2039 / 1562,
  24853. bottom: 40 / 2079
  24854. }
  24855. },
  24856. },
  24857. [
  24858. {
  24859. name: "Normal",
  24860. height: math.unit(11 + 6 / 12, "feet"),
  24861. default: true
  24862. },
  24863. {
  24864. name: "Megamacro",
  24865. height: math.unit(60, "megameters")
  24866. },
  24867. ]
  24868. ))
  24869. characterMakers.push(() => makeCharacter(
  24870. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24871. {
  24872. side: {
  24873. height: math.unit(31 + 8 / 12, "feet"),
  24874. weight: math.unit(75000, "kg"),
  24875. name: "Side",
  24876. image: {
  24877. source: "./media/characters/koros/side.svg",
  24878. extra: 1442 / 1297,
  24879. bottom: 122.7 / 1562
  24880. }
  24881. },
  24882. dicksKingsCrown: {
  24883. height: math.unit(6, "feet"),
  24884. name: "Dicks (King's Crown)",
  24885. image: {
  24886. source: "./media/characters/koros/dicks-kings-crown.svg"
  24887. }
  24888. },
  24889. dicksTailSet: {
  24890. height: math.unit(3, "feet"),
  24891. name: "Dicks (Tail Set)",
  24892. image: {
  24893. source: "./media/characters/koros/dicks-tail-set.svg"
  24894. }
  24895. },
  24896. dickCumming: {
  24897. height: math.unit(7.98, "feet"),
  24898. name: "Dick (Cumming)",
  24899. image: {
  24900. source: "./media/characters/koros/dick-cumming.svg"
  24901. }
  24902. },
  24903. dicksBack: {
  24904. height: math.unit(5.9, "feet"),
  24905. name: "Dicks (Back)",
  24906. image: {
  24907. source: "./media/characters/koros/dicks-back.svg"
  24908. }
  24909. },
  24910. dicksFront: {
  24911. height: math.unit(3.72, "feet"),
  24912. name: "Dicks (Front)",
  24913. image: {
  24914. source: "./media/characters/koros/dicks-front.svg"
  24915. }
  24916. },
  24917. dicksPeeking: {
  24918. height: math.unit(3.0, "feet"),
  24919. name: "Dicks (Peeking)",
  24920. image: {
  24921. source: "./media/characters/koros/dicks-peeking.svg"
  24922. }
  24923. },
  24924. eye: {
  24925. height: math.unit(1.7, "feet"),
  24926. name: "Eye",
  24927. image: {
  24928. source: "./media/characters/koros/eye.svg"
  24929. }
  24930. },
  24931. headFront: {
  24932. height: math.unit(11.69, "feet"),
  24933. name: "Head (Front)",
  24934. image: {
  24935. source: "./media/characters/koros/head-front.svg"
  24936. }
  24937. },
  24938. headSide: {
  24939. height: math.unit(14, "feet"),
  24940. name: "Head (Side)",
  24941. image: {
  24942. source: "./media/characters/koros/head-side.svg"
  24943. }
  24944. },
  24945. leg: {
  24946. height: math.unit(17, "feet"),
  24947. name: "Leg",
  24948. image: {
  24949. source: "./media/characters/koros/leg.svg"
  24950. }
  24951. },
  24952. mawSide: {
  24953. height: math.unit(12.8, "feet"),
  24954. name: "Maw (Side)",
  24955. image: {
  24956. source: "./media/characters/koros/maw-side.svg"
  24957. }
  24958. },
  24959. mawSpitting: {
  24960. height: math.unit(17, "feet"),
  24961. name: "Maw (Spitting)",
  24962. image: {
  24963. source: "./media/characters/koros/maw-spitting.svg"
  24964. }
  24965. },
  24966. slit: {
  24967. height: math.unit(2.8, "feet"),
  24968. name: "Slit",
  24969. image: {
  24970. source: "./media/characters/koros/slit.svg"
  24971. }
  24972. },
  24973. stomach: {
  24974. height: math.unit(6.8, "feet"),
  24975. capacity: math.unit(20, "people"),
  24976. name: "Stomach",
  24977. image: {
  24978. source: "./media/characters/koros/stomach.svg"
  24979. }
  24980. },
  24981. wingspanBottom: {
  24982. height: math.unit(114, "feet"),
  24983. name: "Wingspan (Bottom)",
  24984. image: {
  24985. source: "./media/characters/koros/wingspan-bottom.svg"
  24986. }
  24987. },
  24988. wingspanTop: {
  24989. height: math.unit(104, "feet"),
  24990. name: "Wingspan (Top)",
  24991. image: {
  24992. source: "./media/characters/koros/wingspan-top.svg"
  24993. }
  24994. },
  24995. },
  24996. [
  24997. {
  24998. name: "Normal",
  24999. height: math.unit(31 + 8 / 12, "feet"),
  25000. default: true
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25006. {
  25007. front: {
  25008. height: math.unit(18 + 5 / 12, "feet"),
  25009. weight: math.unit(3750, "kg"),
  25010. name: "Front",
  25011. image: {
  25012. source: "./media/characters/vexx/front.svg",
  25013. extra: 426 / 396,
  25014. bottom: 31.5 / 458
  25015. }
  25016. },
  25017. maw: {
  25018. height: math.unit(6, "feet"),
  25019. name: "Maw",
  25020. image: {
  25021. source: "./media/characters/vexx/maw.svg"
  25022. }
  25023. },
  25024. },
  25025. [
  25026. {
  25027. name: "Normal",
  25028. height: math.unit(18 + 5 / 12, "feet"),
  25029. default: true
  25030. },
  25031. ]
  25032. ))
  25033. characterMakers.push(() => makeCharacter(
  25034. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25035. {
  25036. front: {
  25037. height: math.unit(17 + 6 / 12, "feet"),
  25038. weight: math.unit(150, "lb"),
  25039. name: "Front",
  25040. image: {
  25041. source: "./media/characters/baadra/front.svg",
  25042. extra: 3137 / 2890,
  25043. bottom: 168.4 / 3305
  25044. }
  25045. },
  25046. back: {
  25047. height: math.unit(17 + 6 / 12, "feet"),
  25048. weight: math.unit(150, "lb"),
  25049. name: "Back",
  25050. image: {
  25051. source: "./media/characters/baadra/back.svg",
  25052. extra: 3142 / 2890,
  25053. bottom: 220 / 3371
  25054. }
  25055. },
  25056. head: {
  25057. height: math.unit(5.45, "feet"),
  25058. name: "Head",
  25059. image: {
  25060. source: "./media/characters/baadra/head.svg"
  25061. }
  25062. },
  25063. headAngry: {
  25064. height: math.unit(4.95, "feet"),
  25065. name: "Head (Angry)",
  25066. image: {
  25067. source: "./media/characters/baadra/head-angry.svg"
  25068. }
  25069. },
  25070. headOpen: {
  25071. height: math.unit(6, "feet"),
  25072. name: "Head (Open)",
  25073. image: {
  25074. source: "./media/characters/baadra/head-open.svg"
  25075. }
  25076. },
  25077. },
  25078. [
  25079. {
  25080. name: "Normal",
  25081. height: math.unit(17 + 6 / 12, "feet"),
  25082. default: true
  25083. },
  25084. ]
  25085. ))
  25086. characterMakers.push(() => makeCharacter(
  25087. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25088. {
  25089. front: {
  25090. height: math.unit(7 + 3 / 12, "feet"),
  25091. weight: math.unit(180, "lb"),
  25092. name: "Front",
  25093. image: {
  25094. source: "./media/characters/juri/front.svg",
  25095. extra: 1401 / 1237,
  25096. bottom: 18.5 / 1418
  25097. }
  25098. },
  25099. side: {
  25100. height: math.unit(7 + 3 / 12, "feet"),
  25101. weight: math.unit(180, "lb"),
  25102. name: "Side",
  25103. image: {
  25104. source: "./media/characters/juri/side.svg",
  25105. extra: 1424 / 1242,
  25106. bottom: 18.5 / 1447
  25107. }
  25108. },
  25109. sitting: {
  25110. height: math.unit(6, "feet"),
  25111. weight: math.unit(180, "lb"),
  25112. name: "Sitting",
  25113. image: {
  25114. source: "./media/characters/juri/sitting.svg",
  25115. extra: 1270 / 1143,
  25116. bottom: 100 / 1343
  25117. }
  25118. },
  25119. back: {
  25120. height: math.unit(7 + 3 / 12, "feet"),
  25121. weight: math.unit(180, "lb"),
  25122. name: "Back",
  25123. image: {
  25124. source: "./media/characters/juri/back.svg",
  25125. extra: 1377 / 1240,
  25126. bottom: 23.7 / 1405
  25127. }
  25128. },
  25129. maw: {
  25130. height: math.unit(2.8, "feet"),
  25131. name: "Maw",
  25132. image: {
  25133. source: "./media/characters/juri/maw.svg"
  25134. }
  25135. },
  25136. stomach: {
  25137. height: math.unit(0.89, "feet"),
  25138. capacity: math.unit(4, "liters"),
  25139. name: "Stomach",
  25140. image: {
  25141. source: "./media/characters/juri/stomach.svg"
  25142. }
  25143. },
  25144. },
  25145. [
  25146. {
  25147. name: "Normal",
  25148. height: math.unit(7 + 3 / 12, "feet"),
  25149. default: true
  25150. },
  25151. ]
  25152. ))
  25153. characterMakers.push(() => makeCharacter(
  25154. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25155. {
  25156. fox: {
  25157. height: math.unit(5 + 6 / 12, "feet"),
  25158. weight: math.unit(140, "lb"),
  25159. name: "Fox",
  25160. image: {
  25161. source: "./media/characters/maxene-sita/fox.svg",
  25162. extra: 146 / 138,
  25163. bottom: 2.1 / 148.19
  25164. }
  25165. },
  25166. foxLaying: {
  25167. height: math.unit(1.70, "feet"),
  25168. weight: math.unit(140, "lb"),
  25169. name: "Fox (Laying)",
  25170. image: {
  25171. source: "./media/characters/maxene-sita/fox-laying.svg",
  25172. extra: 910 / 572,
  25173. bottom: 71 / 981
  25174. }
  25175. },
  25176. kitsune: {
  25177. height: math.unit(10, "feet"),
  25178. weight: math.unit(800, "lb"),
  25179. name: "Kitsune",
  25180. image: {
  25181. source: "./media/characters/maxene-sita/kitsune.svg",
  25182. extra: 185 / 176,
  25183. bottom: 4.7 / 189.9
  25184. }
  25185. },
  25186. hellhound: {
  25187. height: math.unit(10, "feet"),
  25188. weight: math.unit(700, "lb"),
  25189. name: "Hellhound",
  25190. image: {
  25191. source: "./media/characters/maxene-sita/hellhound.svg",
  25192. extra: 1600 / 1545,
  25193. bottom: 81 / 1681
  25194. }
  25195. },
  25196. },
  25197. [
  25198. {
  25199. name: "Normal",
  25200. height: math.unit(5 + 6 / 12, "feet"),
  25201. default: true
  25202. },
  25203. ]
  25204. ))
  25205. characterMakers.push(() => makeCharacter(
  25206. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25207. {
  25208. front: {
  25209. height: math.unit(3 + 4 / 12, "feet"),
  25210. weight: math.unit(70, "lb"),
  25211. name: "Front",
  25212. image: {
  25213. source: "./media/characters/maia/front.svg",
  25214. extra: 227 / 219.5,
  25215. bottom: 40 / 267
  25216. }
  25217. },
  25218. back: {
  25219. height: math.unit(3 + 4 / 12, "feet"),
  25220. weight: math.unit(70, "lb"),
  25221. name: "Back",
  25222. image: {
  25223. source: "./media/characters/maia/back.svg",
  25224. extra: 237 / 225
  25225. }
  25226. },
  25227. },
  25228. [
  25229. {
  25230. name: "Normal",
  25231. height: math.unit(3 + 4 / 12, "feet"),
  25232. default: true
  25233. },
  25234. ]
  25235. ))
  25236. characterMakers.push(() => makeCharacter(
  25237. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25238. {
  25239. front: {
  25240. height: math.unit(5 + 10 / 12, "feet"),
  25241. weight: math.unit(197, "lb"),
  25242. name: "Front",
  25243. image: {
  25244. source: "./media/characters/jabaro/front.svg",
  25245. extra: 225 / 216,
  25246. bottom: 5.06 / 230
  25247. }
  25248. },
  25249. back: {
  25250. height: math.unit(5 + 10 / 12, "feet"),
  25251. weight: math.unit(197, "lb"),
  25252. name: "Back",
  25253. image: {
  25254. source: "./media/characters/jabaro/back.svg",
  25255. extra: 225 / 219,
  25256. bottom: 1.9 / 227
  25257. }
  25258. },
  25259. },
  25260. [
  25261. {
  25262. name: "Normal",
  25263. height: math.unit(5 + 10 / 12, "feet"),
  25264. default: true
  25265. },
  25266. ]
  25267. ))
  25268. characterMakers.push(() => makeCharacter(
  25269. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25270. {
  25271. front: {
  25272. height: math.unit(5 + 8 / 12, "feet"),
  25273. weight: math.unit(139, "lb"),
  25274. name: "Front",
  25275. image: {
  25276. source: "./media/characters/risa/front.svg",
  25277. extra: 270 / 260,
  25278. bottom: 11.2 / 282
  25279. }
  25280. },
  25281. back: {
  25282. height: math.unit(5 + 8 / 12, "feet"),
  25283. weight: math.unit(139, "lb"),
  25284. name: "Back",
  25285. image: {
  25286. source: "./media/characters/risa/back.svg",
  25287. extra: 264 / 255,
  25288. bottom: 4 / 268
  25289. }
  25290. },
  25291. },
  25292. [
  25293. {
  25294. name: "Normal",
  25295. height: math.unit(5 + 8 / 12, "feet"),
  25296. default: true
  25297. },
  25298. ]
  25299. ))
  25300. characterMakers.push(() => makeCharacter(
  25301. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25302. {
  25303. front: {
  25304. height: math.unit(2 + 11 / 12, "feet"),
  25305. weight: math.unit(30, "lb"),
  25306. name: "Front",
  25307. image: {
  25308. source: "./media/characters/weatley/front.svg",
  25309. bottom: 10.7 / 414,
  25310. extra: 403.5 / 362
  25311. }
  25312. },
  25313. back: {
  25314. height: math.unit(2 + 11 / 12, "feet"),
  25315. weight: math.unit(30, "lb"),
  25316. name: "Back",
  25317. image: {
  25318. source: "./media/characters/weatley/back.svg",
  25319. bottom: 10.7 / 414,
  25320. extra: 403.5 / 362
  25321. }
  25322. },
  25323. },
  25324. [
  25325. {
  25326. name: "Normal",
  25327. height: math.unit(2 + 11 / 12, "feet"),
  25328. default: true
  25329. },
  25330. ]
  25331. ))
  25332. characterMakers.push(() => makeCharacter(
  25333. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25334. {
  25335. front: {
  25336. height: math.unit(5 + 2 / 12, "feet"),
  25337. weight: math.unit(50, "kg"),
  25338. name: "Front",
  25339. image: {
  25340. source: "./media/characters/mercury-crescent/front.svg",
  25341. extra: 1088 / 1033,
  25342. bottom: 18.9 / 1109
  25343. }
  25344. },
  25345. },
  25346. [
  25347. {
  25348. name: "Normal",
  25349. height: math.unit(5 + 2 / 12, "feet"),
  25350. default: true
  25351. },
  25352. ]
  25353. ))
  25354. characterMakers.push(() => makeCharacter(
  25355. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25356. {
  25357. front: {
  25358. height: math.unit(2, "feet"),
  25359. weight: math.unit(15, "kg"),
  25360. name: "Front",
  25361. image: {
  25362. source: "./media/characters/diamond-jones/front.svg",
  25363. bottom: 16 / 568
  25364. }
  25365. },
  25366. },
  25367. [
  25368. {
  25369. name: "Normal",
  25370. height: math.unit(2, "feet"),
  25371. default: true
  25372. },
  25373. ]
  25374. ))
  25375. characterMakers.push(() => makeCharacter(
  25376. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25377. {
  25378. front: {
  25379. height: math.unit(3, "feet"),
  25380. weight: math.unit(30, "kg"),
  25381. name: "Front",
  25382. image: {
  25383. source: "./media/characters/sweet-bit/front.svg",
  25384. extra: 675 / 567,
  25385. bottom: 27.7 / 703
  25386. }
  25387. },
  25388. },
  25389. [
  25390. {
  25391. name: "Normal",
  25392. height: math.unit(3, "feet"),
  25393. default: true
  25394. },
  25395. ]
  25396. ))
  25397. characterMakers.push(() => makeCharacter(
  25398. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25399. {
  25400. side: {
  25401. height: math.unit(9.178, "feet"),
  25402. weight: math.unit(500, "lb"),
  25403. name: "Side",
  25404. image: {
  25405. source: "./media/characters/umbrazen/side.svg",
  25406. extra: 1730 / 1473,
  25407. bottom: 34.6 / 1765
  25408. }
  25409. },
  25410. },
  25411. [
  25412. {
  25413. name: "Normal",
  25414. height: math.unit(9.178, "feet"),
  25415. default: true
  25416. },
  25417. ]
  25418. ))
  25419. characterMakers.push(() => makeCharacter(
  25420. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25421. {
  25422. front: {
  25423. height: math.unit(10, "feet"),
  25424. weight: math.unit(750, "lb"),
  25425. name: "Front",
  25426. image: {
  25427. source: "./media/characters/arlist/front.svg",
  25428. extra: 961 / 778,
  25429. bottom: 6.2 / 986
  25430. }
  25431. },
  25432. },
  25433. [
  25434. {
  25435. name: "Normal",
  25436. height: math.unit(10, "feet"),
  25437. default: true
  25438. },
  25439. ]
  25440. ))
  25441. characterMakers.push(() => makeCharacter(
  25442. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25443. {
  25444. front: {
  25445. height: math.unit(5 + 1 / 12, "feet"),
  25446. weight: math.unit(110, "lb"),
  25447. name: "Front",
  25448. image: {
  25449. source: "./media/characters/aradel/front.svg",
  25450. extra: 324 / 303,
  25451. bottom: 3.6 / 329.4
  25452. }
  25453. },
  25454. },
  25455. [
  25456. {
  25457. name: "Normal",
  25458. height: math.unit(5 + 1 / 12, "feet"),
  25459. default: true
  25460. },
  25461. ]
  25462. ))
  25463. characterMakers.push(() => makeCharacter(
  25464. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25465. {
  25466. front: {
  25467. height: math.unit(3 + 8 / 12, "feet"),
  25468. weight: math.unit(50, "lb"),
  25469. name: "Front",
  25470. image: {
  25471. source: "./media/characters/serryn/front.svg",
  25472. extra: 1792 / 1656,
  25473. bottom: 43.5 / 1840
  25474. }
  25475. },
  25476. },
  25477. [
  25478. {
  25479. name: "Normal",
  25480. height: math.unit(3 + 8 / 12, "feet"),
  25481. default: true
  25482. },
  25483. ]
  25484. ))
  25485. characterMakers.push(() => makeCharacter(
  25486. { name: "Xavier Thyme" },
  25487. {
  25488. front: {
  25489. height: math.unit(7 + 10 / 12, "feet"),
  25490. weight: math.unit(255, "lb"),
  25491. name: "Front",
  25492. image: {
  25493. source: "./media/characters/xavier-thyme/front.svg",
  25494. extra: 3733 / 3642,
  25495. bottom: 131 / 3869
  25496. }
  25497. },
  25498. frontRaven: {
  25499. height: math.unit(7 + 10 / 12, "feet"),
  25500. weight: math.unit(255, "lb"),
  25501. name: "Front (Raven)",
  25502. image: {
  25503. source: "./media/characters/xavier-thyme/front-raven.svg",
  25504. extra: 4385 / 3642,
  25505. bottom: 131 / 4517
  25506. }
  25507. },
  25508. },
  25509. [
  25510. {
  25511. name: "Normal",
  25512. height: math.unit(7 + 10 / 12, "feet"),
  25513. default: true
  25514. },
  25515. ]
  25516. ))
  25517. characterMakers.push(() => makeCharacter(
  25518. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25519. {
  25520. front: {
  25521. height: math.unit(1.6, "m"),
  25522. weight: math.unit(50, "kg"),
  25523. name: "Front",
  25524. image: {
  25525. source: "./media/characters/kiki/front.svg",
  25526. extra: 4682 / 3610,
  25527. bottom: 115 / 4777
  25528. }
  25529. },
  25530. },
  25531. [
  25532. {
  25533. name: "Normal",
  25534. height: math.unit(1.6, "meters"),
  25535. default: true
  25536. },
  25537. ]
  25538. ))
  25539. characterMakers.push(() => makeCharacter(
  25540. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25541. {
  25542. front: {
  25543. height: math.unit(50, "m"),
  25544. weight: math.unit(500, "tonnes"),
  25545. name: "Front",
  25546. image: {
  25547. source: "./media/characters/ryoko/front.svg",
  25548. extra: 4632 / 3926,
  25549. bottom: 193 / 4823
  25550. }
  25551. },
  25552. },
  25553. [
  25554. {
  25555. name: "Normal",
  25556. height: math.unit(50, "meters"),
  25557. default: true
  25558. },
  25559. ]
  25560. ))
  25561. characterMakers.push(() => makeCharacter(
  25562. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25563. {
  25564. front: {
  25565. height: math.unit(30, "m"),
  25566. weight: math.unit(22, "tonnes"),
  25567. name: "Front",
  25568. image: {
  25569. source: "./media/characters/elio/front.svg",
  25570. extra: 4582 / 3720,
  25571. bottom: 236 / 4828
  25572. }
  25573. },
  25574. },
  25575. [
  25576. {
  25577. name: "Normal",
  25578. height: math.unit(30, "meters"),
  25579. default: true
  25580. },
  25581. ]
  25582. ))
  25583. characterMakers.push(() => makeCharacter(
  25584. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25585. {
  25586. front: {
  25587. height: math.unit(6 + 3 / 12, "feet"),
  25588. weight: math.unit(120, "lb"),
  25589. name: "Front",
  25590. image: {
  25591. source: "./media/characters/azura/front.svg",
  25592. extra: 1149 / 1135,
  25593. bottom: 45 / 1194
  25594. }
  25595. },
  25596. frontClothed: {
  25597. height: math.unit(6 + 3 / 12, "feet"),
  25598. weight: math.unit(120, "lb"),
  25599. name: "Front (Clothed)",
  25600. image: {
  25601. source: "./media/characters/azura/front-clothed.svg",
  25602. extra: 1149 / 1135,
  25603. bottom: 45 / 1194
  25604. }
  25605. },
  25606. },
  25607. [
  25608. {
  25609. name: "Normal",
  25610. height: math.unit(6 + 3 / 12, "feet"),
  25611. default: true
  25612. },
  25613. {
  25614. name: "Macro",
  25615. height: math.unit(20 + 6 / 12, "feet")
  25616. },
  25617. {
  25618. name: "Megamacro",
  25619. height: math.unit(12, "miles")
  25620. },
  25621. {
  25622. name: "Gigamacro",
  25623. height: math.unit(10000, "miles")
  25624. },
  25625. {
  25626. name: "Teramacro",
  25627. height: math.unit(900000, "miles")
  25628. },
  25629. ]
  25630. ))
  25631. characterMakers.push(() => makeCharacter(
  25632. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25633. {
  25634. front: {
  25635. height: math.unit(12, "feet"),
  25636. weight: math.unit(1, "ton"),
  25637. capacity: math.unit(660000, "gallons"),
  25638. name: "Front",
  25639. image: {
  25640. source: "./media/characters/zeus/front.svg",
  25641. extra: 5005 / 4717,
  25642. bottom: 363 / 5388
  25643. }
  25644. },
  25645. },
  25646. [
  25647. {
  25648. name: "Normal",
  25649. height: math.unit(12, "feet")
  25650. },
  25651. {
  25652. name: "Preferred Size",
  25653. height: math.unit(0.5, "miles"),
  25654. default: true
  25655. },
  25656. {
  25657. name: "Giga Horse",
  25658. height: math.unit(300, "miles")
  25659. },
  25660. {
  25661. name: "Riding Planets",
  25662. height: math.unit(30, "megameters")
  25663. },
  25664. {
  25665. name: "Cosmic Giant",
  25666. height: math.unit(3, "zettameters")
  25667. },
  25668. {
  25669. name: "Breeding God",
  25670. height: math.unit(9.92e22, "yottameters")
  25671. },
  25672. ]
  25673. ))
  25674. characterMakers.push(() => makeCharacter(
  25675. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25676. {
  25677. side: {
  25678. height: math.unit(9, "feet"),
  25679. weight: math.unit(1500, "kg"),
  25680. name: "Side",
  25681. image: {
  25682. source: "./media/characters/fang/side.svg",
  25683. extra: 924 / 866,
  25684. bottom: 47.5 / 972.3
  25685. }
  25686. },
  25687. },
  25688. [
  25689. {
  25690. name: "Normal",
  25691. height: math.unit(9, "feet"),
  25692. default: true
  25693. },
  25694. {
  25695. name: "Macro",
  25696. height: math.unit(75 + 6 / 12, "feet")
  25697. },
  25698. {
  25699. name: "Teramacro",
  25700. height: math.unit(50000, "miles")
  25701. },
  25702. ]
  25703. ))
  25704. characterMakers.push(() => makeCharacter(
  25705. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25706. {
  25707. front: {
  25708. height: math.unit(10, "feet"),
  25709. weight: math.unit(2, "tons"),
  25710. name: "Front",
  25711. image: {
  25712. source: "./media/characters/rekhit/front.svg",
  25713. extra: 2796 / 2590,
  25714. bottom: 225 / 3022
  25715. }
  25716. },
  25717. },
  25718. [
  25719. {
  25720. name: "Normal",
  25721. height: math.unit(10, "feet"),
  25722. default: true
  25723. },
  25724. {
  25725. name: "Macro",
  25726. height: math.unit(500, "feet")
  25727. },
  25728. ]
  25729. ))
  25730. characterMakers.push(() => makeCharacter(
  25731. { name: "Dahlia Verrick" },
  25732. {
  25733. front: {
  25734. height: math.unit(7 + 6.451 / 12, "feet"),
  25735. weight: math.unit(310, "lb"),
  25736. name: "Front",
  25737. image: {
  25738. source: "./media/characters/dahlia-verrick/front.svg",
  25739. extra: 1488 / 1365,
  25740. bottom: 6.2 / 1495
  25741. }
  25742. },
  25743. back: {
  25744. height: math.unit(7 + 6.451 / 12, "feet"),
  25745. weight: math.unit(310, "lb"),
  25746. name: "Back",
  25747. image: {
  25748. source: "./media/characters/dahlia-verrick/back.svg",
  25749. extra: 1472 / 1351,
  25750. bottom: 5.28 / 1477
  25751. }
  25752. },
  25753. frontBusiness: {
  25754. height: math.unit(7 + 6.451 / 12, "feet"),
  25755. weight: math.unit(200, "lb"),
  25756. name: "Front (Business)",
  25757. image: {
  25758. source: "./media/characters/dahlia-verrick/front-business.svg",
  25759. extra: 1478 / 1381,
  25760. bottom: 5.5 / 1484
  25761. }
  25762. },
  25763. frontCasual: {
  25764. height: math.unit(7 + 6.451 / 12, "feet"),
  25765. weight: math.unit(200, "lb"),
  25766. name: "Front (Casual)",
  25767. image: {
  25768. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25769. extra: 1478 / 1381,
  25770. bottom: 5.5 / 1484
  25771. }
  25772. },
  25773. },
  25774. [
  25775. {
  25776. name: "Travel-Sized",
  25777. height: math.unit(7.45, "inches")
  25778. },
  25779. {
  25780. name: "Normal",
  25781. height: math.unit(7 + 6.451 / 12, "feet"),
  25782. default: true
  25783. },
  25784. {
  25785. name: "Hitting the Town",
  25786. height: math.unit(37 + 8 / 12, "feet")
  25787. },
  25788. {
  25789. name: "Stomp in the Suburbs",
  25790. height: math.unit(964 + 9.728 / 12, "feet")
  25791. },
  25792. {
  25793. name: "Sit on the City",
  25794. height: math.unit(61747 + 10.592 / 12, "feet")
  25795. },
  25796. {
  25797. name: "Glomp the Globe",
  25798. height: math.unit(252919327 + 4.832 / 12, "feet")
  25799. },
  25800. ]
  25801. ))
  25802. characterMakers.push(() => makeCharacter(
  25803. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25804. {
  25805. front: {
  25806. height: math.unit(6 + 4 / 12, "feet"),
  25807. weight: math.unit(320, "lb"),
  25808. name: "Front",
  25809. image: {
  25810. source: "./media/characters/balina-mahigan/front.svg",
  25811. extra: 447 / 428,
  25812. bottom: 18 / 466
  25813. }
  25814. },
  25815. back: {
  25816. height: math.unit(6 + 4 / 12, "feet"),
  25817. weight: math.unit(320, "lb"),
  25818. name: "Back",
  25819. image: {
  25820. source: "./media/characters/balina-mahigan/back.svg",
  25821. extra: 445 / 428,
  25822. bottom: 4.07 / 448
  25823. }
  25824. },
  25825. arm: {
  25826. height: math.unit(1.88, "feet"),
  25827. name: "Arm",
  25828. image: {
  25829. source: "./media/characters/balina-mahigan/arm.svg"
  25830. }
  25831. },
  25832. backPort: {
  25833. height: math.unit(0.685, "feet"),
  25834. name: "Back Port",
  25835. image: {
  25836. source: "./media/characters/balina-mahigan/back-port.svg"
  25837. }
  25838. },
  25839. hoofpaw: {
  25840. height: math.unit(1.41, "feet"),
  25841. name: "Hoofpaw",
  25842. image: {
  25843. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25844. }
  25845. },
  25846. leftHandBack: {
  25847. height: math.unit(0.938, "feet"),
  25848. name: "Left Hand (Back)",
  25849. image: {
  25850. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25851. }
  25852. },
  25853. leftHandFront: {
  25854. height: math.unit(0.938, "feet"),
  25855. name: "Left Hand (Front)",
  25856. image: {
  25857. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25858. }
  25859. },
  25860. rightHandBack: {
  25861. height: math.unit(0.95, "feet"),
  25862. name: "Right Hand (Back)",
  25863. image: {
  25864. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25865. }
  25866. },
  25867. rightHandFront: {
  25868. height: math.unit(0.95, "feet"),
  25869. name: "Right Hand (Front)",
  25870. image: {
  25871. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Normal",
  25878. height: math.unit(6 + 4 / 12, "feet"),
  25879. default: true
  25880. },
  25881. ]
  25882. ))
  25883. characterMakers.push(() => makeCharacter(
  25884. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25885. {
  25886. front: {
  25887. height: math.unit(6, "feet"),
  25888. weight: math.unit(320, "lb"),
  25889. name: "Front",
  25890. image: {
  25891. source: "./media/characters/balina-mejeri/front.svg",
  25892. extra: 517 / 488,
  25893. bottom: 44.2 / 561
  25894. }
  25895. },
  25896. },
  25897. [
  25898. {
  25899. name: "Normal",
  25900. height: math.unit(6 + 4 / 12, "feet")
  25901. },
  25902. {
  25903. name: "Business",
  25904. height: math.unit(155, "feet"),
  25905. default: true
  25906. },
  25907. ]
  25908. ))
  25909. characterMakers.push(() => makeCharacter(
  25910. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25911. {
  25912. kneeling: {
  25913. height: math.unit(6 + 4 / 12, "feet"),
  25914. weight: math.unit(300 * 20, "lb"),
  25915. name: "Kneeling",
  25916. image: {
  25917. source: "./media/characters/balbarian/kneeling.svg",
  25918. extra: 922 / 862,
  25919. bottom: 42.4 / 965
  25920. }
  25921. },
  25922. },
  25923. [
  25924. {
  25925. name: "Normal",
  25926. height: math.unit(6 + 4 / 12, "feet")
  25927. },
  25928. {
  25929. name: "Treasured",
  25930. height: math.unit(18 + 9 / 12, "feet"),
  25931. default: true
  25932. },
  25933. {
  25934. name: "Macro",
  25935. height: math.unit(900, "feet")
  25936. },
  25937. ]
  25938. ))
  25939. characterMakers.push(() => makeCharacter(
  25940. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25941. {
  25942. front: {
  25943. height: math.unit(6 + 4 / 12, "feet"),
  25944. weight: math.unit(325, "lb"),
  25945. name: "Front",
  25946. image: {
  25947. source: "./media/characters/balina-amarini/front.svg",
  25948. extra: 415 / 403,
  25949. bottom: 19 / 433.4
  25950. }
  25951. },
  25952. back: {
  25953. height: math.unit(6 + 4 / 12, "feet"),
  25954. weight: math.unit(325, "lb"),
  25955. name: "Back",
  25956. image: {
  25957. source: "./media/characters/balina-amarini/back.svg",
  25958. extra: 415 / 403,
  25959. bottom: 13.5 / 432
  25960. }
  25961. },
  25962. overdrive: {
  25963. height: math.unit(6 + 4 / 12, "feet"),
  25964. weight: math.unit(400, "lb"),
  25965. name: "Overdrive",
  25966. image: {
  25967. source: "./media/characters/balina-amarini/overdrive.svg",
  25968. extra: 269 / 259,
  25969. bottom: 12 / 282
  25970. }
  25971. },
  25972. },
  25973. [
  25974. {
  25975. name: "Boom",
  25976. height: math.unit(9 + 10 / 12, "feet"),
  25977. default: true
  25978. },
  25979. {
  25980. name: "Macro",
  25981. height: math.unit(280, "feet")
  25982. },
  25983. ]
  25984. ))
  25985. characterMakers.push(() => makeCharacter(
  25986. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25987. {
  25988. goddess: {
  25989. height: math.unit(600, "feet"),
  25990. weight: math.unit(2000000, "tons"),
  25991. name: "Goddess",
  25992. image: {
  25993. source: "./media/characters/lady-kubwa/goddess.svg",
  25994. extra: 1240.5 / 1223,
  25995. bottom: 22 / 1263
  25996. }
  25997. },
  25998. goddesser: {
  25999. height: math.unit(900, "feet"),
  26000. weight: math.unit(20000000, "lb"),
  26001. name: "Goddess-er",
  26002. image: {
  26003. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26004. extra: 899 / 888,
  26005. bottom: 12.6 / 912
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Macro",
  26012. height: math.unit(600, "feet"),
  26013. default: true
  26014. },
  26015. {
  26016. name: "Megamacro",
  26017. height: math.unit(250, "miles")
  26018. },
  26019. ]
  26020. ))
  26021. characterMakers.push(() => makeCharacter(
  26022. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26023. {
  26024. front: {
  26025. height: math.unit(7 + 7 / 12, "feet"),
  26026. weight: math.unit(250, "lb"),
  26027. name: "Front",
  26028. image: {
  26029. source: "./media/characters/tala-grovehorn/front.svg",
  26030. extra: 2636 / 2525,
  26031. bottom: 147 / 2781
  26032. }
  26033. },
  26034. back: {
  26035. height: math.unit(7 + 7 / 12, "feet"),
  26036. weight: math.unit(250, "lb"),
  26037. name: "Back",
  26038. image: {
  26039. source: "./media/characters/tala-grovehorn/back.svg",
  26040. extra: 2635 / 2539,
  26041. bottom: 100 / 2732.8
  26042. }
  26043. },
  26044. mouth: {
  26045. height: math.unit(1.15, "feet"),
  26046. name: "Mouth",
  26047. image: {
  26048. source: "./media/characters/tala-grovehorn/mouth.svg"
  26049. }
  26050. },
  26051. dick: {
  26052. height: math.unit(2.36, "feet"),
  26053. name: "Dick",
  26054. image: {
  26055. source: "./media/characters/tala-grovehorn/dick.svg"
  26056. }
  26057. },
  26058. slit: {
  26059. height: math.unit(0.61, "feet"),
  26060. name: "Slit",
  26061. image: {
  26062. source: "./media/characters/tala-grovehorn/slit.svg"
  26063. }
  26064. },
  26065. },
  26066. [
  26067. ]
  26068. ))
  26069. characterMakers.push(() => makeCharacter(
  26070. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26071. {
  26072. front: {
  26073. height: math.unit(7 + 7 / 12, "feet"),
  26074. weight: math.unit(225, "lb"),
  26075. name: "Front",
  26076. image: {
  26077. source: "./media/characters/epona/front.svg",
  26078. extra: 2445 / 2290,
  26079. bottom: 251 / 2696
  26080. }
  26081. },
  26082. back: {
  26083. height: math.unit(7 + 7 / 12, "feet"),
  26084. weight: math.unit(225, "lb"),
  26085. name: "Back",
  26086. image: {
  26087. source: "./media/characters/epona/back.svg",
  26088. extra: 2546 / 2408,
  26089. bottom: 44 / 2589
  26090. }
  26091. },
  26092. genitals: {
  26093. height: math.unit(1.5, "feet"),
  26094. name: "Genitals",
  26095. image: {
  26096. source: "./media/characters/epona/genitals.svg"
  26097. }
  26098. },
  26099. },
  26100. [
  26101. {
  26102. name: "Normal",
  26103. height: math.unit(7 + 7 / 12, "feet"),
  26104. default: true
  26105. },
  26106. ]
  26107. ))
  26108. characterMakers.push(() => makeCharacter(
  26109. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26110. {
  26111. front: {
  26112. height: math.unit(7, "feet"),
  26113. weight: math.unit(518, "lb"),
  26114. name: "Front",
  26115. image: {
  26116. source: "./media/characters/avia-bloodbourn/front.svg",
  26117. extra: 1466 / 1350,
  26118. bottom: 65 / 1527
  26119. }
  26120. },
  26121. },
  26122. [
  26123. ]
  26124. ))
  26125. characterMakers.push(() => makeCharacter(
  26126. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26127. {
  26128. front: {
  26129. height: math.unit(9.35, "feet"),
  26130. weight: math.unit(600, "lb"),
  26131. name: "Front",
  26132. image: {
  26133. source: "./media/characters/amera/front.svg",
  26134. extra: 891 / 818,
  26135. bottom: 30 / 922.7
  26136. }
  26137. },
  26138. back: {
  26139. height: math.unit(9.35, "feet"),
  26140. weight: math.unit(600, "lb"),
  26141. name: "Back",
  26142. image: {
  26143. source: "./media/characters/amera/back.svg",
  26144. extra: 876 / 824,
  26145. bottom: 6.8 / 884
  26146. }
  26147. },
  26148. dick: {
  26149. height: math.unit(2.14, "feet"),
  26150. name: "Dick",
  26151. image: {
  26152. source: "./media/characters/amera/dick.svg"
  26153. }
  26154. },
  26155. },
  26156. [
  26157. {
  26158. name: "Normal",
  26159. height: math.unit(9.35, "feet"),
  26160. default: true
  26161. },
  26162. ]
  26163. ))
  26164. characterMakers.push(() => makeCharacter(
  26165. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26166. {
  26167. kneeling: {
  26168. height: math.unit(3 + 4 / 12, "feet"),
  26169. weight: math.unit(90, "lb"),
  26170. name: "Kneeling",
  26171. image: {
  26172. source: "./media/characters/rosewen/kneeling.svg",
  26173. extra: 1835 / 1571,
  26174. bottom: 27.7 / 1862
  26175. }
  26176. },
  26177. },
  26178. [
  26179. {
  26180. name: "Normal",
  26181. height: math.unit(3 + 4 / 12, "feet"),
  26182. default: true
  26183. },
  26184. ]
  26185. ))
  26186. characterMakers.push(() => makeCharacter(
  26187. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26188. {
  26189. front: {
  26190. height: math.unit(5 + 10 / 12, "feet"),
  26191. weight: math.unit(200, "lb"),
  26192. name: "Front",
  26193. image: {
  26194. source: "./media/characters/sabah/front.svg",
  26195. extra: 849 / 763,
  26196. bottom: 33.9 / 881
  26197. }
  26198. },
  26199. },
  26200. [
  26201. {
  26202. name: "Normal",
  26203. height: math.unit(5 + 10 / 12, "feet"),
  26204. default: true
  26205. },
  26206. ]
  26207. ))
  26208. characterMakers.push(() => makeCharacter(
  26209. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26210. {
  26211. front: {
  26212. height: math.unit(3 + 5 / 12, "feet"),
  26213. weight: math.unit(40, "kg"),
  26214. name: "Front",
  26215. image: {
  26216. source: "./media/characters/purple-flame/front.svg",
  26217. extra: 1577 / 1412,
  26218. bottom: 97 / 1694
  26219. }
  26220. },
  26221. frontDressed: {
  26222. height: math.unit(3 + 5 / 12, "feet"),
  26223. weight: math.unit(40, "kg"),
  26224. name: "Front (Dressed)",
  26225. image: {
  26226. source: "./media/characters/purple-flame/front-dressed.svg",
  26227. extra: 1577 / 1412,
  26228. bottom: 97 / 1694
  26229. }
  26230. },
  26231. headphones: {
  26232. height: math.unit(0.85, "feet"),
  26233. name: "Headphones",
  26234. image: {
  26235. source: "./media/characters/purple-flame/headphones.svg"
  26236. }
  26237. },
  26238. },
  26239. [
  26240. {
  26241. name: "Really Small",
  26242. height: math.unit(5, "cm")
  26243. },
  26244. {
  26245. name: "Micro",
  26246. height: math.unit(1 + 5 / 12, "feet")
  26247. },
  26248. {
  26249. name: "Normal",
  26250. height: math.unit(3 + 5 / 12, "feet"),
  26251. default: true
  26252. },
  26253. {
  26254. name: "Minimacro",
  26255. height: math.unit(125, "feet")
  26256. },
  26257. {
  26258. name: "Macro",
  26259. height: math.unit(0.5, "miles")
  26260. },
  26261. {
  26262. name: "Megamacro",
  26263. height: math.unit(50, "miles")
  26264. },
  26265. {
  26266. name: "Gigantic",
  26267. height: math.unit(750, "miles")
  26268. },
  26269. {
  26270. name: "Planetary",
  26271. height: math.unit(15000, "miles")
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26277. {
  26278. front: {
  26279. height: math.unit(14, "feet"),
  26280. weight: math.unit(959, "lb"),
  26281. name: "Front",
  26282. image: {
  26283. source: "./media/characters/arsenal/front.svg",
  26284. extra: 2357 / 2157,
  26285. bottom: 93 / 2458
  26286. }
  26287. },
  26288. },
  26289. [
  26290. {
  26291. name: "Normal",
  26292. height: math.unit(14, "feet"),
  26293. default: true
  26294. },
  26295. ]
  26296. ))
  26297. characterMakers.push(() => makeCharacter(
  26298. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26299. {
  26300. front: {
  26301. height: math.unit(6, "feet"),
  26302. weight: math.unit(150, "lb"),
  26303. name: "Front",
  26304. image: {
  26305. source: "./media/characters/adira/front.svg",
  26306. extra: 1078 / 1029,
  26307. bottom: 87 / 1166
  26308. }
  26309. },
  26310. },
  26311. [
  26312. {
  26313. name: "Micro",
  26314. height: math.unit(4, "inches"),
  26315. default: true
  26316. },
  26317. {
  26318. name: "Macro",
  26319. height: math.unit(50, "feet")
  26320. },
  26321. ]
  26322. ))
  26323. characterMakers.push(() => makeCharacter(
  26324. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26325. {
  26326. front: {
  26327. height: math.unit(16, "feet"),
  26328. weight: math.unit(1000, "lb"),
  26329. name: "Front",
  26330. image: {
  26331. source: "./media/characters/grim/front.svg",
  26332. extra: 622 / 614,
  26333. bottom: 18.1 / 642
  26334. }
  26335. },
  26336. back: {
  26337. height: math.unit(16, "feet"),
  26338. weight: math.unit(1000, "lb"),
  26339. name: "Back",
  26340. image: {
  26341. source: "./media/characters/grim/back.svg",
  26342. extra: 610.6 / 602,
  26343. bottom: 40.8 / 652
  26344. }
  26345. },
  26346. hunched: {
  26347. height: math.unit(9.75, "feet"),
  26348. weight: math.unit(1000, "lb"),
  26349. name: "Hunched",
  26350. image: {
  26351. source: "./media/characters/grim/hunched.svg",
  26352. extra: 304 / 297,
  26353. bottom: 35.4 / 394
  26354. }
  26355. },
  26356. },
  26357. [
  26358. {
  26359. name: "Normal",
  26360. height: math.unit(16, "feet"),
  26361. default: true
  26362. },
  26363. ]
  26364. ))
  26365. characterMakers.push(() => makeCharacter(
  26366. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26367. {
  26368. front: {
  26369. height: math.unit(2.3, "meters"),
  26370. weight: math.unit(300, "lb"),
  26371. name: "Front",
  26372. image: {
  26373. source: "./media/characters/sinja/front-sfw.svg",
  26374. extra: 1393 / 1294,
  26375. bottom: 70 / 1463
  26376. }
  26377. },
  26378. frontNsfw: {
  26379. height: math.unit(2.3, "meters"),
  26380. weight: math.unit(300, "lb"),
  26381. name: "Front (NSFW)",
  26382. image: {
  26383. source: "./media/characters/sinja/front-nsfw.svg",
  26384. extra: 1393 / 1294,
  26385. bottom: 70 / 1463
  26386. }
  26387. },
  26388. back: {
  26389. height: math.unit(2.3, "meters"),
  26390. weight: math.unit(300, "lb"),
  26391. name: "Back",
  26392. image: {
  26393. source: "./media/characters/sinja/back.svg",
  26394. extra: 1393 / 1294,
  26395. bottom: 70 / 1463
  26396. }
  26397. },
  26398. head: {
  26399. height: math.unit(1.771, "feet"),
  26400. name: "Head",
  26401. image: {
  26402. source: "./media/characters/sinja/head.svg"
  26403. }
  26404. },
  26405. slit: {
  26406. height: math.unit(0.8, "feet"),
  26407. name: "Slit",
  26408. image: {
  26409. source: "./media/characters/sinja/slit.svg"
  26410. }
  26411. },
  26412. },
  26413. [
  26414. {
  26415. name: "Normal",
  26416. height: math.unit(2.3, "meters")
  26417. },
  26418. {
  26419. name: "Macro",
  26420. height: math.unit(91, "meters"),
  26421. default: true
  26422. },
  26423. {
  26424. name: "Megamacro",
  26425. height: math.unit(91440, "meters")
  26426. },
  26427. {
  26428. name: "Gigamacro",
  26429. height: math.unit(60960000, "meters")
  26430. },
  26431. {
  26432. name: "Teramacro",
  26433. height: math.unit(9144000000, "meters")
  26434. },
  26435. ]
  26436. ))
  26437. characterMakers.push(() => makeCharacter(
  26438. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26439. {
  26440. front: {
  26441. height: math.unit(1.7, "meters"),
  26442. weight: math.unit(130, "lb"),
  26443. name: "Front",
  26444. image: {
  26445. source: "./media/characters/kyu/front.svg",
  26446. extra: 415 / 395,
  26447. bottom: 5 / 420
  26448. }
  26449. },
  26450. head: {
  26451. height: math.unit(1.75, "feet"),
  26452. name: "Head",
  26453. image: {
  26454. source: "./media/characters/kyu/head.svg"
  26455. }
  26456. },
  26457. foot: {
  26458. height: math.unit(0.81, "feet"),
  26459. name: "Foot",
  26460. image: {
  26461. source: "./media/characters/kyu/foot.svg"
  26462. }
  26463. },
  26464. },
  26465. [
  26466. {
  26467. name: "Normal",
  26468. height: math.unit(1.7, "meters")
  26469. },
  26470. {
  26471. name: "Macro",
  26472. height: math.unit(131, "feet"),
  26473. default: true
  26474. },
  26475. {
  26476. name: "Megamacro",
  26477. height: math.unit(91440, "meters")
  26478. },
  26479. {
  26480. name: "Gigamacro",
  26481. height: math.unit(60960000, "meters")
  26482. },
  26483. {
  26484. name: "Teramacro",
  26485. height: math.unit(9144000000, "meters")
  26486. },
  26487. ]
  26488. ))
  26489. characterMakers.push(() => makeCharacter(
  26490. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26491. {
  26492. front: {
  26493. height: math.unit(7 + 1 / 12, "feet"),
  26494. weight: math.unit(250, "lb"),
  26495. name: "Front",
  26496. image: {
  26497. source: "./media/characters/joey/front.svg",
  26498. extra: 1791 / 1537,
  26499. bottom: 28 / 1816
  26500. }
  26501. },
  26502. },
  26503. [
  26504. {
  26505. name: "Micro",
  26506. height: math.unit(3, "inches")
  26507. },
  26508. {
  26509. name: "Normal",
  26510. height: math.unit(7 + 1 / 12, "feet"),
  26511. default: true
  26512. },
  26513. ]
  26514. ))
  26515. characterMakers.push(() => makeCharacter(
  26516. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26517. {
  26518. front: {
  26519. height: math.unit(165, "cm"),
  26520. weight: math.unit(140, "lb"),
  26521. name: "Front",
  26522. image: {
  26523. source: "./media/characters/sam-evans/front.svg",
  26524. extra: 3417 / 3230,
  26525. bottom: 41.3 / 3417
  26526. }
  26527. },
  26528. frontSixTails: {
  26529. height: math.unit(165, "cm"),
  26530. weight: math.unit(140, "lb"),
  26531. name: "Front-six-tails",
  26532. image: {
  26533. source: "./media/characters/sam-evans/front-six-tails.svg",
  26534. extra: 3417 / 3230,
  26535. bottom: 41.3 / 3417
  26536. }
  26537. },
  26538. back: {
  26539. height: math.unit(165, "cm"),
  26540. weight: math.unit(140, "lb"),
  26541. name: "Back",
  26542. image: {
  26543. source: "./media/characters/sam-evans/back.svg",
  26544. extra: 3227 / 3032,
  26545. bottom: 6.8 / 3234
  26546. }
  26547. },
  26548. face: {
  26549. height: math.unit(0.68, "feet"),
  26550. name: "Face",
  26551. image: {
  26552. source: "./media/characters/sam-evans/face.svg"
  26553. }
  26554. },
  26555. },
  26556. [
  26557. {
  26558. name: "Normal",
  26559. height: math.unit(165, "cm"),
  26560. default: true
  26561. },
  26562. {
  26563. name: "Macro",
  26564. height: math.unit(100, "meters")
  26565. },
  26566. {
  26567. name: "Macro+",
  26568. height: math.unit(800, "meters")
  26569. },
  26570. {
  26571. name: "Macro++",
  26572. height: math.unit(3, "km")
  26573. },
  26574. {
  26575. name: "Macro+++",
  26576. height: math.unit(30, "km")
  26577. },
  26578. ]
  26579. ))
  26580. characterMakers.push(() => makeCharacter(
  26581. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26582. {
  26583. front: {
  26584. height: math.unit(10, "feet"),
  26585. weight: math.unit(750, "lb"),
  26586. name: "Front",
  26587. image: {
  26588. source: "./media/characters/juliet-a/front.svg",
  26589. extra: 1766 / 1720,
  26590. bottom: 43 / 1809
  26591. }
  26592. },
  26593. back: {
  26594. height: math.unit(10, "feet"),
  26595. weight: math.unit(750, "lb"),
  26596. name: "Back",
  26597. image: {
  26598. source: "./media/characters/juliet-a/back.svg",
  26599. extra: 1781 / 1734,
  26600. bottom: 35 / 1810,
  26601. }
  26602. },
  26603. },
  26604. [
  26605. {
  26606. name: "Normal",
  26607. height: math.unit(10, "feet"),
  26608. default: true
  26609. },
  26610. {
  26611. name: "Dragon Form",
  26612. height: math.unit(250, "feet")
  26613. },
  26614. {
  26615. name: "Macro",
  26616. height: math.unit(1000, "feet")
  26617. },
  26618. {
  26619. name: "Megamacro",
  26620. height: math.unit(10000, "feet")
  26621. }
  26622. ]
  26623. ))
  26624. characterMakers.push(() => makeCharacter(
  26625. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26626. {
  26627. regular: {
  26628. height: math.unit(7 + 3 / 12, "feet"),
  26629. weight: math.unit(260, "lb"),
  26630. name: "Regular",
  26631. image: {
  26632. source: "./media/characters/wild/regular.svg",
  26633. extra: 97.45 / 92,
  26634. bottom: 6.8 / 104.3
  26635. }
  26636. },
  26637. biggums: {
  26638. height: math.unit(8 + 6 / 12, "feet"),
  26639. weight: math.unit(425, "lb"),
  26640. name: "Biggums",
  26641. image: {
  26642. source: "./media/characters/wild/biggums.svg",
  26643. extra: 97.45 / 92,
  26644. bottom: 7.5 / 132.34
  26645. }
  26646. },
  26647. mawRegular: {
  26648. height: math.unit(1.24, "feet"),
  26649. name: "Maw (Regular)",
  26650. image: {
  26651. source: "./media/characters/wild/maw.svg"
  26652. }
  26653. },
  26654. mawBiggums: {
  26655. height: math.unit(1.47, "feet"),
  26656. name: "Maw (Biggums)",
  26657. image: {
  26658. source: "./media/characters/wild/maw.svg"
  26659. }
  26660. },
  26661. },
  26662. [
  26663. {
  26664. name: "Normal",
  26665. height: math.unit(7 + 3 / 12, "feet"),
  26666. default: true
  26667. },
  26668. ]
  26669. ))
  26670. characterMakers.push(() => makeCharacter(
  26671. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26672. {
  26673. front: {
  26674. height: math.unit(2.5, "meters"),
  26675. weight: math.unit(200, "kg"),
  26676. name: "Front",
  26677. image: {
  26678. source: "./media/characters/vidar/front.svg",
  26679. extra: 2994 / 2795,
  26680. bottom: 56 / 3061
  26681. }
  26682. },
  26683. back: {
  26684. height: math.unit(2.5, "meters"),
  26685. weight: math.unit(200, "kg"),
  26686. name: "Back",
  26687. image: {
  26688. source: "./media/characters/vidar/back.svg",
  26689. extra: 3131 / 2928,
  26690. bottom: 13.5 / 3141.5
  26691. }
  26692. },
  26693. feral: {
  26694. height: math.unit(2.5, "meters"),
  26695. weight: math.unit(2000, "kg"),
  26696. name: "Feral",
  26697. image: {
  26698. source: "./media/characters/vidar/feral.svg",
  26699. extra: 2790 / 1765,
  26700. bottom: 6 / 2796
  26701. }
  26702. },
  26703. },
  26704. [
  26705. {
  26706. name: "Normal",
  26707. height: math.unit(2.5, "meters"),
  26708. default: true
  26709. },
  26710. {
  26711. name: "Macro",
  26712. height: math.unit(100, "meters")
  26713. },
  26714. ]
  26715. ))
  26716. characterMakers.push(() => makeCharacter(
  26717. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26718. {
  26719. front: {
  26720. height: math.unit(5 + 9 / 12, "feet"),
  26721. weight: math.unit(120, "lb"),
  26722. name: "Front",
  26723. image: {
  26724. source: "./media/characters/ash/front.svg",
  26725. extra: 2189 / 1961,
  26726. bottom: 5.2 / 2194
  26727. }
  26728. },
  26729. },
  26730. [
  26731. {
  26732. name: "Normal",
  26733. height: math.unit(5 + 9 / 12, "feet"),
  26734. default: true
  26735. },
  26736. ]
  26737. ))
  26738. characterMakers.push(() => makeCharacter(
  26739. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26740. {
  26741. front: {
  26742. height: math.unit(9, "feet"),
  26743. weight: math.unit(10000, "lb"),
  26744. name: "Front",
  26745. image: {
  26746. source: "./media/characters/gygabite/front.svg",
  26747. bottom: 31.7 / 537.8,
  26748. extra: 505 / 370
  26749. }
  26750. },
  26751. },
  26752. [
  26753. {
  26754. name: "Normal",
  26755. height: math.unit(9, "feet"),
  26756. default: true
  26757. },
  26758. ]
  26759. ))
  26760. characterMakers.push(() => makeCharacter(
  26761. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26762. {
  26763. front: {
  26764. height: math.unit(12, "feet"),
  26765. weight: math.unit(35000, "lb"),
  26766. name: "Front",
  26767. image: {
  26768. source: "./media/characters/p0tat0/front.svg",
  26769. extra: 1065 / 921,
  26770. bottom: 55.7 / 1121.25
  26771. }
  26772. },
  26773. },
  26774. [
  26775. {
  26776. name: "Normal",
  26777. height: math.unit(12, "feet"),
  26778. default: true
  26779. },
  26780. ]
  26781. ))
  26782. characterMakers.push(() => makeCharacter(
  26783. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26784. {
  26785. side: {
  26786. height: math.unit(6.5, "feet"),
  26787. weight: math.unit(800, "lb"),
  26788. name: "Side",
  26789. image: {
  26790. source: "./media/characters/dusk/side.svg",
  26791. extra: 615 / 373,
  26792. bottom: 53 / 664
  26793. }
  26794. },
  26795. sitting: {
  26796. height: math.unit(7, "feet"),
  26797. weight: math.unit(800, "lb"),
  26798. name: "Sitting",
  26799. image: {
  26800. source: "./media/characters/dusk/sitting.svg",
  26801. extra: 753 / 425,
  26802. bottom: 33 / 774
  26803. }
  26804. },
  26805. head: {
  26806. height: math.unit(6.1, "feet"),
  26807. name: "Head",
  26808. image: {
  26809. source: "./media/characters/dusk/head.svg"
  26810. }
  26811. },
  26812. },
  26813. [
  26814. {
  26815. name: "Normal",
  26816. height: math.unit(7, "feet"),
  26817. default: true
  26818. },
  26819. ]
  26820. ))
  26821. characterMakers.push(() => makeCharacter(
  26822. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26823. {
  26824. front: {
  26825. height: math.unit(15, "feet"),
  26826. weight: math.unit(7000, "lb"),
  26827. name: "Front",
  26828. image: {
  26829. source: "./media/characters/jay-direwolf/front.svg",
  26830. extra: 1810 / 1732,
  26831. bottom: 66 / 1892
  26832. }
  26833. },
  26834. },
  26835. [
  26836. {
  26837. name: "Normal",
  26838. height: math.unit(15, "feet"),
  26839. default: true
  26840. },
  26841. ]
  26842. ))
  26843. characterMakers.push(() => makeCharacter(
  26844. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26845. {
  26846. front: {
  26847. height: math.unit(4 + 9 / 12, "feet"),
  26848. weight: math.unit(130, "lb"),
  26849. name: "Front",
  26850. image: {
  26851. source: "./media/characters/anchovie/front.svg",
  26852. extra: 382 / 350,
  26853. bottom: 25 / 409
  26854. }
  26855. },
  26856. back: {
  26857. height: math.unit(4 + 9 / 12, "feet"),
  26858. weight: math.unit(130, "lb"),
  26859. name: "Back",
  26860. image: {
  26861. source: "./media/characters/anchovie/back.svg",
  26862. extra: 385 / 352,
  26863. bottom: 16.6 / 402
  26864. }
  26865. },
  26866. frontDressed: {
  26867. height: math.unit(4 + 9 / 12, "feet"),
  26868. weight: math.unit(130, "lb"),
  26869. name: "Front (Dressed)",
  26870. image: {
  26871. source: "./media/characters/anchovie/front-dressed.svg",
  26872. extra: 382 / 350,
  26873. bottom: 25 / 409
  26874. }
  26875. },
  26876. backDressed: {
  26877. height: math.unit(4 + 9 / 12, "feet"),
  26878. weight: math.unit(130, "lb"),
  26879. name: "Back (Dressed)",
  26880. image: {
  26881. source: "./media/characters/anchovie/back-dressed.svg",
  26882. extra: 385 / 352,
  26883. bottom: 16.6 / 402
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Micro",
  26890. height: math.unit(6.4, "inches")
  26891. },
  26892. {
  26893. name: "Normal",
  26894. height: math.unit(4 + 9 / 12, "feet"),
  26895. default: true
  26896. },
  26897. ]
  26898. ))
  26899. characterMakers.push(() => makeCharacter(
  26900. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26901. {
  26902. front: {
  26903. height: math.unit(2, "meters"),
  26904. weight: math.unit(180, "lb"),
  26905. name: "Front",
  26906. image: {
  26907. source: "./media/characters/acidrenamon/front.svg",
  26908. extra: 987 / 890,
  26909. bottom: 22.8 / 1009
  26910. }
  26911. },
  26912. back: {
  26913. height: math.unit(2, "meters"),
  26914. weight: math.unit(180, "lb"),
  26915. name: "Back",
  26916. image: {
  26917. source: "./media/characters/acidrenamon/back.svg",
  26918. extra: 983 / 891,
  26919. bottom: 8.4 / 992
  26920. }
  26921. },
  26922. head: {
  26923. height: math.unit(1.92, "feet"),
  26924. name: "Head",
  26925. image: {
  26926. source: "./media/characters/acidrenamon/head.svg"
  26927. }
  26928. },
  26929. rump: {
  26930. height: math.unit(1.72, "feet"),
  26931. name: "Rump",
  26932. image: {
  26933. source: "./media/characters/acidrenamon/rump.svg"
  26934. }
  26935. },
  26936. tail: {
  26937. height: math.unit(4.2, "feet"),
  26938. name: "Tail",
  26939. image: {
  26940. source: "./media/characters/acidrenamon/tail.svg"
  26941. }
  26942. },
  26943. },
  26944. [
  26945. {
  26946. name: "Normal",
  26947. height: math.unit(2, "meters"),
  26948. default: true
  26949. },
  26950. {
  26951. name: "Minimacro",
  26952. height: math.unit(7, "meters")
  26953. },
  26954. {
  26955. name: "Macro",
  26956. height: math.unit(200, "meters")
  26957. },
  26958. {
  26959. name: "Gigamacro",
  26960. height: math.unit(0.2, "earths")
  26961. },
  26962. ]
  26963. ))
  26964. characterMakers.push(() => makeCharacter(
  26965. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26966. {
  26967. front: {
  26968. height: math.unit(6, "feet"),
  26969. weight: math.unit(150, "lb"),
  26970. name: "Front",
  26971. image: {
  26972. source: "./media/characters/kenzie-lee/front.svg",
  26973. extra: 1525 / 1465,
  26974. bottom: 45 / 1570
  26975. }
  26976. },
  26977. side: {
  26978. height: math.unit(6, "feet"),
  26979. weight: math.unit(150, "lb"),
  26980. name: "Side",
  26981. image: {
  26982. source: "./media/characters/kenzie-lee/side.svg",
  26983. extra: 5505 / 5383,
  26984. bottom: 60 / 5573
  26985. }
  26986. },
  26987. paw: {
  26988. height: math.unit(0.57, "feet"),
  26989. name: "Paw",
  26990. image: {
  26991. source: "./media/characters/kenzie-lee/paw.svg"
  26992. }
  26993. },
  26994. },
  26995. [
  26996. {
  26997. name: "Normal",
  26998. height: math.unit(152, "feet"),
  26999. default: true
  27000. },
  27001. {
  27002. name: "Megamacro",
  27003. height: math.unit(7, "miles")
  27004. },
  27005. {
  27006. name: "Gigamacro",
  27007. height: math.unit(8000, "miles")
  27008. },
  27009. ]
  27010. ))
  27011. characterMakers.push(() => makeCharacter(
  27012. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27013. {
  27014. side: {
  27015. height: math.unit(6, "feet"),
  27016. weight: math.unit(150, "lb"),
  27017. name: "Side",
  27018. image: {
  27019. source: "./media/characters/withers/side.svg",
  27020. extra: 1830 / 1728,
  27021. bottom: 96 / 1927
  27022. }
  27023. },
  27024. front: {
  27025. height: math.unit(6, "feet"),
  27026. weight: math.unit(150, "lb"),
  27027. name: "Front",
  27028. image: {
  27029. source: "./media/characters/withers/front.svg",
  27030. extra: 1514 / 1438,
  27031. bottom: 118 / 1632
  27032. }
  27033. },
  27034. },
  27035. [
  27036. {
  27037. name: "Macro",
  27038. height: math.unit(168, "feet"),
  27039. default: true
  27040. },
  27041. {
  27042. name: "Megamacro",
  27043. height: math.unit(15, "miles")
  27044. }
  27045. ]
  27046. ))
  27047. characterMakers.push(() => makeCharacter(
  27048. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27049. {
  27050. front: {
  27051. height: math.unit(6 + 7 / 12, "feet"),
  27052. weight: math.unit(250, "lb"),
  27053. name: "Front",
  27054. image: {
  27055. source: "./media/characters/nemoskii/front.svg",
  27056. extra: 2270 / 1734,
  27057. bottom: 86 / 2354
  27058. }
  27059. },
  27060. back: {
  27061. height: math.unit(6 + 7 / 12, "feet"),
  27062. weight: math.unit(250, "lb"),
  27063. name: "Back",
  27064. image: {
  27065. source: "./media/characters/nemoskii/back.svg",
  27066. extra: 1845 / 1788,
  27067. bottom: 10.5 / 1852
  27068. }
  27069. },
  27070. head: {
  27071. height: math.unit(1.31, "feet"),
  27072. name: "Head",
  27073. image: {
  27074. source: "./media/characters/nemoskii/head.svg"
  27075. }
  27076. },
  27077. },
  27078. [
  27079. {
  27080. name: "Micro",
  27081. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27082. },
  27083. {
  27084. name: "Normal",
  27085. height: math.unit(6 + 7 / 12, "feet"),
  27086. default: true
  27087. },
  27088. {
  27089. name: "Macro",
  27090. height: math.unit((6 + 7 / 12) * 150, "feet")
  27091. },
  27092. {
  27093. name: "Macro+",
  27094. height: math.unit((6 + 7 / 12) * 500, "feet")
  27095. },
  27096. {
  27097. name: "Megamacro",
  27098. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27099. },
  27100. ]
  27101. ))
  27102. characterMakers.push(() => makeCharacter(
  27103. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27104. {
  27105. front: {
  27106. height: math.unit(1, "mile"),
  27107. weight: math.unit(265261.9, "lb"),
  27108. name: "Front",
  27109. image: {
  27110. source: "./media/characters/shui/front.svg",
  27111. extra: 1633 / 1564,
  27112. bottom: 91.5 / 1726
  27113. }
  27114. },
  27115. },
  27116. [
  27117. {
  27118. name: "Macro",
  27119. height: math.unit(1, "mile"),
  27120. default: true
  27121. },
  27122. ]
  27123. ))
  27124. characterMakers.push(() => makeCharacter(
  27125. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27126. {
  27127. front: {
  27128. height: math.unit(12 + 6 / 12, "feet"),
  27129. weight: math.unit(1342, "lb"),
  27130. name: "Front",
  27131. image: {
  27132. source: "./media/characters/arokh-takakura/front.svg",
  27133. extra: 1089 / 1043,
  27134. bottom: 77.4 / 1176.7
  27135. }
  27136. },
  27137. back: {
  27138. height: math.unit(12 + 6 / 12, "feet"),
  27139. weight: math.unit(1342, "lb"),
  27140. name: "Back",
  27141. image: {
  27142. source: "./media/characters/arokh-takakura/back.svg",
  27143. extra: 1046 / 1019,
  27144. bottom: 102 / 1150
  27145. }
  27146. },
  27147. },
  27148. [
  27149. {
  27150. name: "Big",
  27151. height: math.unit(12 + 6 / 12, "feet"),
  27152. default: true
  27153. },
  27154. ]
  27155. ))
  27156. characterMakers.push(() => makeCharacter(
  27157. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27158. {
  27159. front: {
  27160. height: math.unit(5 + 6 / 12, "feet"),
  27161. weight: math.unit(150, "lb"),
  27162. name: "Front",
  27163. image: {
  27164. source: "./media/characters/theo/front.svg",
  27165. extra: 1184 / 1131,
  27166. bottom: 7.4 / 1191
  27167. }
  27168. },
  27169. },
  27170. [
  27171. {
  27172. name: "Micro",
  27173. height: math.unit(5, "inches")
  27174. },
  27175. {
  27176. name: "Normal",
  27177. height: math.unit(5 + 6 / 12, "feet"),
  27178. default: true
  27179. },
  27180. ]
  27181. ))
  27182. characterMakers.push(() => makeCharacter(
  27183. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27184. {
  27185. front: {
  27186. height: math.unit(5 + 9 / 12, "feet"),
  27187. weight: math.unit(130, "lb"),
  27188. name: "Front",
  27189. image: {
  27190. source: "./media/characters/cecelia-swift/front.svg",
  27191. extra: 502 / 484,
  27192. bottom: 23 / 523
  27193. }
  27194. },
  27195. back: {
  27196. height: math.unit(5 + 9 / 12, "feet"),
  27197. weight: math.unit(130, "lb"),
  27198. name: "Back",
  27199. image: {
  27200. source: "./media/characters/cecelia-swift/back.svg",
  27201. extra: 499 / 485,
  27202. bottom: 12 / 511
  27203. }
  27204. },
  27205. head: {
  27206. height: math.unit(0.90, "feet"),
  27207. name: "Head",
  27208. image: {
  27209. source: "./media/characters/cecelia-swift/head.svg"
  27210. }
  27211. },
  27212. rump: {
  27213. height: math.unit(1.75, "feet"),
  27214. name: "Rump",
  27215. image: {
  27216. source: "./media/characters/cecelia-swift/rump.svg"
  27217. }
  27218. },
  27219. },
  27220. [
  27221. {
  27222. name: "Normal",
  27223. height: math.unit(5 + 9 / 12, "feet"),
  27224. default: true
  27225. },
  27226. {
  27227. name: "Big",
  27228. height: math.unit(50, "feet")
  27229. },
  27230. {
  27231. name: "Macro",
  27232. height: math.unit(100, "feet")
  27233. },
  27234. {
  27235. name: "Macro+",
  27236. height: math.unit(500, "feet")
  27237. },
  27238. {
  27239. name: "Macro++",
  27240. height: math.unit(1000, "feet")
  27241. },
  27242. ]
  27243. ))
  27244. characterMakers.push(() => makeCharacter(
  27245. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27246. {
  27247. front: {
  27248. height: math.unit(6, "feet"),
  27249. weight: math.unit(150, "lb"),
  27250. name: "Front",
  27251. image: {
  27252. source: "./media/characters/kaunan/front.svg",
  27253. extra: 2890 / 2523,
  27254. bottom: 49 / 2939
  27255. }
  27256. },
  27257. },
  27258. [
  27259. {
  27260. name: "Macro",
  27261. height: math.unit(150, "feet"),
  27262. default: true
  27263. },
  27264. ]
  27265. ))
  27266. characterMakers.push(() => makeCharacter(
  27267. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27268. {
  27269. front: {
  27270. height: math.unit(175, "cm"),
  27271. weight: math.unit(60, "kg"),
  27272. name: "Front",
  27273. image: {
  27274. source: "./media/characters/fei/front.svg",
  27275. extra: 2581 / 2400,
  27276. bottom: 82.2 / 2663
  27277. }
  27278. },
  27279. },
  27280. [
  27281. {
  27282. name: "Mortal",
  27283. height: math.unit(175, "cm")
  27284. },
  27285. {
  27286. name: "Normal",
  27287. height: math.unit(3500, "m"),
  27288. default: true
  27289. },
  27290. {
  27291. name: "Stroll",
  27292. height: math.unit(17.5, "km")
  27293. },
  27294. {
  27295. name: "Showoff",
  27296. height: math.unit(175, "km")
  27297. },
  27298. ]
  27299. ))
  27300. characterMakers.push(() => makeCharacter(
  27301. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27302. {
  27303. front: {
  27304. height: math.unit(7, "feet"),
  27305. weight: math.unit(1000, "kg"),
  27306. name: "Front",
  27307. image: {
  27308. source: "./media/characters/edrax/front.svg",
  27309. extra: 2838 / 2550,
  27310. bottom: 130 / 2968
  27311. }
  27312. },
  27313. },
  27314. [
  27315. {
  27316. name: "Small",
  27317. height: math.unit(7, "feet")
  27318. },
  27319. {
  27320. name: "Normal",
  27321. height: math.unit(1500, "meters")
  27322. },
  27323. {
  27324. name: "Mega",
  27325. height: math.unit(12000000, "km"),
  27326. default: true
  27327. },
  27328. {
  27329. name: "Megamacro",
  27330. height: math.unit(10600000, "lightyears")
  27331. },
  27332. {
  27333. name: "Hypermacro",
  27334. height: math.unit(256, "yottameters")
  27335. },
  27336. ]
  27337. ))
  27338. characterMakers.push(() => makeCharacter(
  27339. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27340. {
  27341. front: {
  27342. height: math.unit(10, "feet"),
  27343. weight: math.unit(750, "lb"),
  27344. name: "Front",
  27345. image: {
  27346. source: "./media/characters/clove/front.svg",
  27347. extra: 2031 / 1860,
  27348. bottom: 47.8 / 2080
  27349. }
  27350. },
  27351. back: {
  27352. height: math.unit(10, "feet"),
  27353. weight: math.unit(750, "lb"),
  27354. name: "Back",
  27355. image: {
  27356. source: "./media/characters/clove/back.svg",
  27357. extra: 2025 / 1859,
  27358. bottom: 46 / 2071
  27359. }
  27360. },
  27361. },
  27362. [
  27363. {
  27364. name: "Normal",
  27365. height: math.unit(10, "feet"),
  27366. default: true
  27367. },
  27368. ]
  27369. ))
  27370. characterMakers.push(() => makeCharacter(
  27371. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27372. {
  27373. front: {
  27374. height: math.unit(4, "feet"),
  27375. weight: math.unit(50, "lb"),
  27376. name: "Front",
  27377. image: {
  27378. source: "./media/characters/alex-rabbit/front.svg",
  27379. extra: 507 / 458,
  27380. bottom: 18.5 / 527
  27381. }
  27382. },
  27383. back: {
  27384. height: math.unit(4, "feet"),
  27385. weight: math.unit(50, "lb"),
  27386. name: "Back",
  27387. image: {
  27388. source: "./media/characters/alex-rabbit/back.svg",
  27389. extra: 502 / 460,
  27390. bottom: 18.9 / 521
  27391. }
  27392. },
  27393. },
  27394. [
  27395. {
  27396. name: "Normal",
  27397. height: math.unit(4, "feet"),
  27398. default: true
  27399. },
  27400. ]
  27401. ))
  27402. characterMakers.push(() => makeCharacter(
  27403. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27404. {
  27405. front: {
  27406. height: math.unit(1 + 3 / 12, "feet"),
  27407. weight: math.unit(80, "lb"),
  27408. name: "Front",
  27409. image: {
  27410. source: "./media/characters/zander-rose/front.svg",
  27411. extra: 916 / 797,
  27412. bottom: 17 / 933
  27413. }
  27414. },
  27415. back: {
  27416. height: math.unit(1 + 3 / 12, "feet"),
  27417. weight: math.unit(80, "lb"),
  27418. name: "Back",
  27419. image: {
  27420. source: "./media/characters/zander-rose/back.svg",
  27421. extra: 903 / 779,
  27422. bottom: 31 / 934
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(1 + 3 / 12, "feet"),
  27430. default: true
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27436. {
  27437. anthro: {
  27438. height: math.unit(6, "feet"),
  27439. weight: math.unit(150, "lb"),
  27440. name: "Anthro",
  27441. image: {
  27442. source: "./media/characters/razz/anthro.svg",
  27443. extra: 1437 / 1343,
  27444. bottom: 48 / 1485
  27445. }
  27446. },
  27447. feral: {
  27448. height: math.unit(6, "feet"),
  27449. weight: math.unit(150, "lb"),
  27450. name: "Feral",
  27451. image: {
  27452. source: "./media/characters/razz/feral.svg",
  27453. extra: 2569 / 1385,
  27454. bottom: 95 / 2664
  27455. }
  27456. },
  27457. },
  27458. [
  27459. {
  27460. name: "Normal",
  27461. height: math.unit(6, "feet"),
  27462. default: true
  27463. },
  27464. ]
  27465. ))
  27466. characterMakers.push(() => makeCharacter(
  27467. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27468. {
  27469. front: {
  27470. height: math.unit(9 + 4 / 12, "feet"),
  27471. weight: math.unit(500, "lb"),
  27472. name: "Front",
  27473. image: {
  27474. source: "./media/characters/morrigan/front.svg",
  27475. extra: 2707 / 2579,
  27476. bottom: 156 / 2863
  27477. }
  27478. },
  27479. },
  27480. [
  27481. {
  27482. name: "Normal",
  27483. height: math.unit(9 + 4 / 12, "feet"),
  27484. default: true
  27485. },
  27486. ]
  27487. ))
  27488. characterMakers.push(() => makeCharacter(
  27489. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27490. {
  27491. front: {
  27492. height: math.unit(5, "stories"),
  27493. weight: math.unit(4000, "lb"),
  27494. name: "Front",
  27495. image: {
  27496. source: "./media/characters/jenene/front.svg",
  27497. extra: 1780 / 1710,
  27498. bottom: 57 / 1837
  27499. }
  27500. },
  27501. },
  27502. [
  27503. {
  27504. name: "Normal",
  27505. height: math.unit(5, "stories"),
  27506. default: true
  27507. },
  27508. ]
  27509. ))
  27510. characterMakers.push(() => makeCharacter(
  27511. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27512. {
  27513. front: {
  27514. height: math.unit(6, "feet"),
  27515. weight: math.unit(150, "lb"),
  27516. name: "Front",
  27517. image: {
  27518. source: "./media/characters/vix-archaser/front.svg",
  27519. extra: 2767 / 2562,
  27520. bottom: 36 / 2803
  27521. }
  27522. },
  27523. },
  27524. [
  27525. {
  27526. name: "Micro",
  27527. height: math.unit(1, "foot")
  27528. },
  27529. {
  27530. name: "Normal",
  27531. height: math.unit(6 + 5 / 12, "feet")
  27532. },
  27533. {
  27534. name: "Minimacro",
  27535. height: math.unit(500, "feet")
  27536. },
  27537. {
  27538. name: "Macro",
  27539. height: math.unit(4, "miles")
  27540. },
  27541. {
  27542. name: "Megamacro",
  27543. height: math.unit(250, "miles"),
  27544. default: true
  27545. },
  27546. {
  27547. name: "Gigamacro",
  27548. height: math.unit(1, "universe")
  27549. },
  27550. {
  27551. name: "Endgame",
  27552. height: math.unit(100, "multiverses")
  27553. }
  27554. ]
  27555. ))
  27556. characterMakers.push(() => makeCharacter(
  27557. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27558. {
  27559. taurSfw: {
  27560. height: math.unit(10, "meters"),
  27561. weight: math.unit(17500, "kg"),
  27562. name: "Taur",
  27563. image: {
  27564. source: "./media/characters/faey/taur-sfw.svg",
  27565. extra: 1200 / 968,
  27566. bottom: 41 / 1241
  27567. }
  27568. },
  27569. chestmaw: {
  27570. height: math.unit(2.01, "meters"),
  27571. name: "Chestmaw",
  27572. image: {
  27573. source: "./media/characters/faey/chestmaw.svg"
  27574. }
  27575. },
  27576. foot: {
  27577. height: math.unit(2.43, "meters"),
  27578. name: "Foot",
  27579. image: {
  27580. source: "./media/characters/faey/foot.svg"
  27581. }
  27582. },
  27583. jaws: {
  27584. height: math.unit(1.66, "meters"),
  27585. name: "Jaws",
  27586. image: {
  27587. source: "./media/characters/faey/jaws.svg"
  27588. }
  27589. },
  27590. tongues: {
  27591. height: math.unit(2.01, "meters"),
  27592. name: "Tongues",
  27593. image: {
  27594. source: "./media/characters/faey/tongues.svg"
  27595. }
  27596. },
  27597. },
  27598. [
  27599. {
  27600. name: "Small",
  27601. height: math.unit(10, "meters"),
  27602. default: true
  27603. },
  27604. {
  27605. name: "Big",
  27606. height: math.unit(500000, "km")
  27607. },
  27608. ]
  27609. ))
  27610. characterMakers.push(() => makeCharacter(
  27611. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27612. {
  27613. front: {
  27614. height: math.unit(7, "feet"),
  27615. weight: math.unit(275, "lb"),
  27616. name: "Front",
  27617. image: {
  27618. source: "./media/characters/roku/front.svg",
  27619. extra: 903 / 878,
  27620. bottom: 37 / 940
  27621. }
  27622. },
  27623. },
  27624. [
  27625. {
  27626. name: "Normal",
  27627. height: math.unit(7, "feet"),
  27628. default: true
  27629. },
  27630. {
  27631. name: "Macro",
  27632. height: math.unit(500, "feet")
  27633. },
  27634. {
  27635. name: "Megamacro",
  27636. height: math.unit(200, "miles")
  27637. },
  27638. ]
  27639. ))
  27640. characterMakers.push(() => makeCharacter(
  27641. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27642. {
  27643. front: {
  27644. height: math.unit(6 + 2 / 12, "feet"),
  27645. weight: math.unit(150, "lb"),
  27646. name: "Front",
  27647. image: {
  27648. source: "./media/characters/lira/front.svg",
  27649. extra: 1727 / 1605,
  27650. bottom: 26 / 1753
  27651. }
  27652. },
  27653. back: {
  27654. height: math.unit(6 + 2 / 12, "feet"),
  27655. weight: math.unit(150, "lb"),
  27656. name: "Back",
  27657. image: {
  27658. source: "./media/characters/lira/back.svg",
  27659. extra: 1713/1621,
  27660. bottom: 20/1733
  27661. }
  27662. },
  27663. hand: {
  27664. height: math.unit(0.75, "feet"),
  27665. name: "Hand",
  27666. image: {
  27667. source: "./media/characters/lira/hand.svg"
  27668. }
  27669. },
  27670. maw: {
  27671. height: math.unit(0.65, "feet"),
  27672. name: "Maw",
  27673. image: {
  27674. source: "./media/characters/lira/maw.svg"
  27675. }
  27676. },
  27677. pawDigi: {
  27678. height: math.unit(1.6, "feet"),
  27679. name: "Paw Digi",
  27680. image: {
  27681. source: "./media/characters/lira/paw-digi.svg"
  27682. }
  27683. },
  27684. pawPlanti: {
  27685. height: math.unit(1.4, "feet"),
  27686. name: "Paw Planti",
  27687. image: {
  27688. source: "./media/characters/lira/paw-planti.svg"
  27689. }
  27690. },
  27691. },
  27692. [
  27693. {
  27694. name: "Normal",
  27695. height: math.unit(6 + 2 / 12, "feet"),
  27696. default: true
  27697. },
  27698. {
  27699. name: "Macro",
  27700. height: math.unit(100, "feet")
  27701. },
  27702. {
  27703. name: "Macro²",
  27704. height: math.unit(1600, "feet")
  27705. },
  27706. {
  27707. name: "Planetary",
  27708. height: math.unit(20, "earths")
  27709. },
  27710. ]
  27711. ))
  27712. characterMakers.push(() => makeCharacter(
  27713. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27714. {
  27715. front: {
  27716. height: math.unit(6, "feet"),
  27717. weight: math.unit(150, "lb"),
  27718. name: "Front",
  27719. image: {
  27720. source: "./media/characters/hadjet/front.svg",
  27721. extra: 1480 / 1346,
  27722. bottom: 26 / 1506
  27723. }
  27724. },
  27725. frontNsfw: {
  27726. height: math.unit(6, "feet"),
  27727. weight: math.unit(150, "lb"),
  27728. name: "Front (NSFW)",
  27729. image: {
  27730. source: "./media/characters/hadjet/front-nsfw.svg",
  27731. extra: 1440 / 1358,
  27732. bottom: 52 / 1492
  27733. }
  27734. },
  27735. },
  27736. [
  27737. {
  27738. name: "Macro",
  27739. height: math.unit(10, "stories"),
  27740. default: true
  27741. },
  27742. {
  27743. name: "Megamacro",
  27744. height: math.unit(1.5, "miles")
  27745. },
  27746. {
  27747. name: "Megamacro+",
  27748. height: math.unit(5, "miles")
  27749. },
  27750. ]
  27751. ))
  27752. characterMakers.push(() => makeCharacter(
  27753. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27754. {
  27755. side: {
  27756. height: math.unit(106, "feet"),
  27757. weight: math.unit(500, "tonnes"),
  27758. name: "Side",
  27759. image: {
  27760. source: "./media/characters/kodran/side.svg",
  27761. extra: 553 / 480,
  27762. bottom: 33 / 586
  27763. }
  27764. },
  27765. front: {
  27766. height: math.unit(132, "feet"),
  27767. weight: math.unit(500, "tonnes"),
  27768. name: "Front",
  27769. image: {
  27770. source: "./media/characters/kodran/front.svg",
  27771. extra: 667 / 643,
  27772. bottom: 42 / 709
  27773. }
  27774. },
  27775. flying: {
  27776. height: math.unit(350, "feet"),
  27777. weight: math.unit(500, "tonnes"),
  27778. name: "Flying",
  27779. image: {
  27780. source: "./media/characters/kodran/flying.svg"
  27781. }
  27782. },
  27783. foot: {
  27784. height: math.unit(33, "feet"),
  27785. name: "Foot",
  27786. image: {
  27787. source: "./media/characters/kodran/foot.svg"
  27788. }
  27789. },
  27790. footFront: {
  27791. height: math.unit(19, "feet"),
  27792. name: "Foot (Front)",
  27793. image: {
  27794. source: "./media/characters/kodran/foot-front.svg",
  27795. extra: 261 / 261,
  27796. bottom: 91 / 352
  27797. }
  27798. },
  27799. headFront: {
  27800. height: math.unit(53, "feet"),
  27801. name: "Head (Front)",
  27802. image: {
  27803. source: "./media/characters/kodran/head-front.svg"
  27804. }
  27805. },
  27806. headSide: {
  27807. height: math.unit(65, "feet"),
  27808. name: "Head (Side)",
  27809. image: {
  27810. source: "./media/characters/kodran/head-side.svg"
  27811. }
  27812. },
  27813. throat: {
  27814. height: math.unit(79, "feet"),
  27815. name: "Throat",
  27816. image: {
  27817. source: "./media/characters/kodran/throat.svg"
  27818. }
  27819. },
  27820. },
  27821. [
  27822. {
  27823. name: "Large",
  27824. height: math.unit(106, "feet"),
  27825. default: true
  27826. },
  27827. ]
  27828. ))
  27829. characterMakers.push(() => makeCharacter(
  27830. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27831. {
  27832. side: {
  27833. height: math.unit(11, "feet"),
  27834. weight: math.unit(150, "lb"),
  27835. name: "Side",
  27836. image: {
  27837. source: "./media/characters/pyxaron/side.svg",
  27838. extra: 305 / 195,
  27839. bottom: 17 / 322
  27840. }
  27841. },
  27842. },
  27843. [
  27844. {
  27845. name: "Normal",
  27846. height: math.unit(11, "feet"),
  27847. default: true
  27848. },
  27849. ]
  27850. ))
  27851. characterMakers.push(() => makeCharacter(
  27852. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27853. {
  27854. front: {
  27855. height: math.unit(6, "feet"),
  27856. weight: math.unit(150, "lb"),
  27857. name: "Front",
  27858. image: {
  27859. source: "./media/characters/meep/front.svg",
  27860. extra: 88 / 80,
  27861. bottom: 6 / 94
  27862. }
  27863. },
  27864. },
  27865. [
  27866. {
  27867. name: "Fun Sized",
  27868. height: math.unit(2, "inches"),
  27869. default: true
  27870. },
  27871. {
  27872. name: "Friend Sized",
  27873. height: math.unit(8, "inches")
  27874. },
  27875. ]
  27876. ))
  27877. characterMakers.push(() => makeCharacter(
  27878. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27879. {
  27880. front: {
  27881. height: math.unit(15, "feet"),
  27882. weight: math.unit(2500, "lb"),
  27883. name: "Front",
  27884. image: {
  27885. source: "./media/characters/holly-rabbit/front.svg",
  27886. extra: 1433 / 1233,
  27887. bottom: 125 / 1558
  27888. }
  27889. },
  27890. dick: {
  27891. height: math.unit(4.6, "feet"),
  27892. name: "Dick",
  27893. image: {
  27894. source: "./media/characters/holly-rabbit/dick.svg"
  27895. }
  27896. },
  27897. },
  27898. [
  27899. {
  27900. name: "Normal",
  27901. height: math.unit(15, "feet"),
  27902. default: true
  27903. },
  27904. {
  27905. name: "Macro",
  27906. height: math.unit(250, "feet")
  27907. },
  27908. {
  27909. name: "Macro+",
  27910. height: math.unit(2500, "feet")
  27911. },
  27912. ]
  27913. ))
  27914. characterMakers.push(() => makeCharacter(
  27915. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27916. {
  27917. front: {
  27918. height: math.unit(3.02, "meters"),
  27919. weight: math.unit(500, "kg"),
  27920. name: "Front",
  27921. image: {
  27922. source: "./media/characters/drena/front.svg",
  27923. extra: 282 / 243,
  27924. bottom: 8 / 290
  27925. }
  27926. },
  27927. side: {
  27928. height: math.unit(3.02, "meters"),
  27929. weight: math.unit(500, "kg"),
  27930. name: "Side",
  27931. image: {
  27932. source: "./media/characters/drena/side.svg",
  27933. extra: 280 / 245,
  27934. bottom: 10 / 290
  27935. }
  27936. },
  27937. back: {
  27938. height: math.unit(3.02, "meters"),
  27939. weight: math.unit(500, "kg"),
  27940. name: "Back",
  27941. image: {
  27942. source: "./media/characters/drena/back.svg",
  27943. extra: 278 / 243,
  27944. bottom: 2 / 280
  27945. }
  27946. },
  27947. foot: {
  27948. height: math.unit(0.75, "meters"),
  27949. name: "Foot",
  27950. image: {
  27951. source: "./media/characters/drena/foot.svg"
  27952. }
  27953. },
  27954. maw: {
  27955. height: math.unit(0.82, "meters"),
  27956. name: "Maw",
  27957. image: {
  27958. source: "./media/characters/drena/maw.svg"
  27959. }
  27960. },
  27961. rump: {
  27962. height: math.unit(0.93, "meters"),
  27963. name: "Rump",
  27964. image: {
  27965. source: "./media/characters/drena/rump.svg"
  27966. }
  27967. },
  27968. },
  27969. [
  27970. {
  27971. name: "Normal",
  27972. height: math.unit(3.02, "meters"),
  27973. default: true
  27974. },
  27975. ]
  27976. ))
  27977. characterMakers.push(() => makeCharacter(
  27978. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27979. {
  27980. front: {
  27981. height: math.unit(6 + 4 / 12, "feet"),
  27982. weight: math.unit(250, "lb"),
  27983. name: "Front",
  27984. image: {
  27985. source: "./media/characters/remmyzilla/front.svg",
  27986. extra: 4033 / 3588,
  27987. bottom: 123 / 4156
  27988. }
  27989. },
  27990. back: {
  27991. height: math.unit(6 + 4 / 12, "feet"),
  27992. weight: math.unit(250, "lb"),
  27993. name: "Back",
  27994. image: {
  27995. source: "./media/characters/remmyzilla/back.svg",
  27996. extra: 2687 / 2555,
  27997. bottom: 48 / 2735
  27998. }
  27999. },
  28000. frontFancy: {
  28001. height: math.unit(6 + 4 / 12, "feet"),
  28002. weight: math.unit(250, "lb"),
  28003. name: "Front (Fancy)",
  28004. image: {
  28005. source: "./media/characters/remmyzilla/front-fancy.svg",
  28006. extra: 4119 / 3419,
  28007. bottom: 237 / 4356
  28008. }
  28009. },
  28010. paw: {
  28011. height: math.unit(1.73, "feet"),
  28012. name: "Paw",
  28013. image: {
  28014. source: "./media/characters/remmyzilla/paw.svg"
  28015. }
  28016. },
  28017. maw: {
  28018. height: math.unit(1.73, "feet"),
  28019. name: "Maw",
  28020. image: {
  28021. source: "./media/characters/remmyzilla/maw.svg"
  28022. }
  28023. },
  28024. },
  28025. [
  28026. {
  28027. name: "Normal",
  28028. height: math.unit(6 + 4 / 12, "feet")
  28029. },
  28030. {
  28031. name: "Minimacro",
  28032. height: math.unit(12 + 8 / 12, "feet")
  28033. },
  28034. {
  28035. name: "Normal",
  28036. height: math.unit(640, "feet"),
  28037. default: true
  28038. },
  28039. {
  28040. name: "Megamacro",
  28041. height: math.unit(6400, "feet")
  28042. },
  28043. {
  28044. name: "Gigamacro",
  28045. height: math.unit(64000, "miles")
  28046. },
  28047. ]
  28048. ))
  28049. characterMakers.push(() => makeCharacter(
  28050. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28051. {
  28052. front: {
  28053. height: math.unit(2.5, "meters"),
  28054. weight: math.unit(300, "lb"),
  28055. name: "Front",
  28056. image: {
  28057. source: "./media/characters/lawrence/front.svg",
  28058. extra: 357 / 335,
  28059. bottom: 30 / 387
  28060. }
  28061. },
  28062. back: {
  28063. height: math.unit(2.5, "meters"),
  28064. weight: math.unit(300, "lb"),
  28065. name: "Back",
  28066. image: {
  28067. source: "./media/characters/lawrence/back.svg",
  28068. extra: 357 / 338,
  28069. bottom: 16 / 373
  28070. }
  28071. },
  28072. head: {
  28073. height: math.unit(0.9, "meter"),
  28074. name: "Head",
  28075. image: {
  28076. source: "./media/characters/lawrence/head.svg"
  28077. }
  28078. },
  28079. maw: {
  28080. height: math.unit(0.7, "meter"),
  28081. name: "Maw",
  28082. image: {
  28083. source: "./media/characters/lawrence/maw.svg"
  28084. }
  28085. },
  28086. footBottom: {
  28087. height: math.unit(0.5, "meter"),
  28088. name: "Foot (Bottom)",
  28089. image: {
  28090. source: "./media/characters/lawrence/foot-bottom.svg"
  28091. }
  28092. },
  28093. footTop: {
  28094. height: math.unit(0.5, "meter"),
  28095. name: "Foot (Top)",
  28096. image: {
  28097. source: "./media/characters/lawrence/foot-top.svg"
  28098. }
  28099. },
  28100. },
  28101. [
  28102. {
  28103. name: "Normal",
  28104. height: math.unit(2.5, "meters"),
  28105. default: true
  28106. },
  28107. {
  28108. name: "Macro",
  28109. height: math.unit(95, "meters")
  28110. },
  28111. {
  28112. name: "Megamacro",
  28113. height: math.unit(150, "km")
  28114. },
  28115. ]
  28116. ))
  28117. characterMakers.push(() => makeCharacter(
  28118. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28119. {
  28120. front: {
  28121. height: math.unit(4.2, "meters"),
  28122. name: "Front",
  28123. image: {
  28124. source: "./media/characters/sydney/front.svg",
  28125. extra: 1323 / 1277,
  28126. bottom: 111 / 1434
  28127. }
  28128. },
  28129. },
  28130. [
  28131. {
  28132. name: "Normal",
  28133. height: math.unit(4.2, "meters"),
  28134. default: true
  28135. },
  28136. ]
  28137. ))
  28138. characterMakers.push(() => makeCharacter(
  28139. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28140. {
  28141. back: {
  28142. height: math.unit(201, "feet"),
  28143. name: "Back",
  28144. image: {
  28145. source: "./media/characters/jessica/back.svg",
  28146. extra: 273 / 259,
  28147. bottom: 7 / 280
  28148. }
  28149. },
  28150. },
  28151. [
  28152. {
  28153. name: "Normal",
  28154. height: math.unit(201, "feet"),
  28155. default: true
  28156. },
  28157. {
  28158. name: "Megamacro",
  28159. height: math.unit(8, "miles")
  28160. },
  28161. ]
  28162. ))
  28163. characterMakers.push(() => makeCharacter(
  28164. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28165. {
  28166. side: {
  28167. height: math.unit(320, "cm"),
  28168. name: "Side",
  28169. image: {
  28170. source: "./media/characters/victoria/side.svg",
  28171. extra: 778 / 346,
  28172. bottom: 56 / 834
  28173. }
  28174. },
  28175. maw: {
  28176. height: math.unit(5.9, "feet"),
  28177. name: "Maw",
  28178. image: {
  28179. source: "./media/characters/victoria/maw.svg"
  28180. }
  28181. },
  28182. },
  28183. [
  28184. {
  28185. name: "Normal",
  28186. height: math.unit(320, "cm"),
  28187. default: true
  28188. },
  28189. ]
  28190. ))
  28191. characterMakers.push(() => makeCharacter(
  28192. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28193. {
  28194. front: {
  28195. height: math.unit(5 + 6 / 12, "feet"),
  28196. name: "Front",
  28197. image: {
  28198. source: "./media/characters/cat/front.svg",
  28199. extra: 1374 / 1257,
  28200. bottom: 59 / 1433
  28201. }
  28202. },
  28203. back: {
  28204. height: math.unit(5 + 6 / 12, "feet"),
  28205. name: "Back",
  28206. image: {
  28207. source: "./media/characters/cat/back.svg",
  28208. extra: 1337 / 1226,
  28209. bottom: 34 / 1371
  28210. }
  28211. },
  28212. taur: {
  28213. height: math.unit(7, "feet"),
  28214. name: "Taur",
  28215. image: {
  28216. source: "./media/characters/cat/taur.svg",
  28217. extra: 1345 / 1231,
  28218. bottom: 66 / 1411
  28219. }
  28220. },
  28221. lucario: {
  28222. height: math.unit(4, "feet"),
  28223. name: "Lucario",
  28224. image: {
  28225. source: "./media/characters/cat/lucario.svg",
  28226. extra: 1470 / 1318,
  28227. bottom: 65 / 1535
  28228. }
  28229. },
  28230. megaLucario: {
  28231. height: math.unit(4, "feet"),
  28232. name: "Mega Lucario",
  28233. image: {
  28234. source: "./media/characters/cat/mega-lucario.svg",
  28235. extra: 1515 / 1319,
  28236. bottom: 63 / 1578
  28237. }
  28238. },
  28239. nickit: {
  28240. height: math.unit(2, "feet"),
  28241. name: "Nickit",
  28242. image: {
  28243. source: "./media/characters/cat/nickit.svg",
  28244. extra: 1980 / 1585,
  28245. bottom: 102 / 2082
  28246. }
  28247. },
  28248. lopunnyFront: {
  28249. height: math.unit(5, "feet"),
  28250. name: "Lopunny (Front)",
  28251. image: {
  28252. source: "./media/characters/cat/lopunny-front.svg",
  28253. extra: 1782 / 1469,
  28254. bottom: 38 / 1820
  28255. }
  28256. },
  28257. lopunnyBack: {
  28258. height: math.unit(5, "feet"),
  28259. name: "Lopunny (Back)",
  28260. image: {
  28261. source: "./media/characters/cat/lopunny-back.svg",
  28262. extra: 1660 / 1490,
  28263. bottom: 25 / 1685
  28264. }
  28265. },
  28266. },
  28267. [
  28268. {
  28269. name: "Really small",
  28270. height: math.unit(1, "nm")
  28271. },
  28272. {
  28273. name: "Micro",
  28274. height: math.unit(5, "inches")
  28275. },
  28276. {
  28277. name: "Normal",
  28278. height: math.unit(5 + 6 / 12, "feet"),
  28279. default: true
  28280. },
  28281. {
  28282. name: "Macro",
  28283. height: math.unit(50, "feet")
  28284. },
  28285. {
  28286. name: "Macro+",
  28287. height: math.unit(150, "feet")
  28288. },
  28289. {
  28290. name: "Megamacro",
  28291. height: math.unit(100, "miles")
  28292. },
  28293. ]
  28294. ))
  28295. characterMakers.push(() => makeCharacter(
  28296. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28297. {
  28298. front: {
  28299. height: math.unit(63.4, "meters"),
  28300. weight: math.unit(3.28349e+6, "kilograms"),
  28301. name: "Front",
  28302. image: {
  28303. source: "./media/characters/kirina-violet/front.svg",
  28304. extra: 2812 / 2725,
  28305. bottom: 0 / 2812
  28306. }
  28307. },
  28308. back: {
  28309. height: math.unit(63.4, "meters"),
  28310. weight: math.unit(3.28349e+6, "kilograms"),
  28311. name: "Back",
  28312. image: {
  28313. source: "./media/characters/kirina-violet/back.svg",
  28314. extra: 2812 / 2725,
  28315. bottom: 0 / 2812
  28316. }
  28317. },
  28318. mouth: {
  28319. height: math.unit(4.35, "meters"),
  28320. name: "Mouth",
  28321. image: {
  28322. source: "./media/characters/kirina-violet/mouth.svg"
  28323. }
  28324. },
  28325. paw: {
  28326. height: math.unit(5.6, "meters"),
  28327. name: "Paw",
  28328. image: {
  28329. source: "./media/characters/kirina-violet/paw.svg"
  28330. }
  28331. },
  28332. tail: {
  28333. height: math.unit(18, "meters"),
  28334. name: "Tail",
  28335. image: {
  28336. source: "./media/characters/kirina-violet/tail.svg"
  28337. }
  28338. },
  28339. },
  28340. [
  28341. {
  28342. name: "Macro",
  28343. height: math.unit(63.4, "meters"),
  28344. default: true
  28345. },
  28346. ]
  28347. ))
  28348. characterMakers.push(() => makeCharacter(
  28349. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28350. {
  28351. front: {
  28352. height: math.unit(60, "feet"),
  28353. name: "Front",
  28354. image: {
  28355. source: "./media/characters/cat-gigachu/front.svg",
  28356. extra: 1024 / 780,
  28357. bottom: 23 / 1047
  28358. }
  28359. },
  28360. back: {
  28361. height: math.unit(60, "feet"),
  28362. name: "Back",
  28363. image: {
  28364. source: "./media/characters/cat-gigachu/back.svg",
  28365. extra: 1024 / 780,
  28366. bottom: 23 / 1047
  28367. }
  28368. },
  28369. },
  28370. [
  28371. {
  28372. name: "Dynamax",
  28373. height: math.unit(60, "feet"),
  28374. default: true
  28375. },
  28376. ]
  28377. ))
  28378. characterMakers.push(() => makeCharacter(
  28379. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28380. {
  28381. front: {
  28382. height: math.unit(6, "feet"),
  28383. weight: math.unit(150, "lb"),
  28384. name: "Front",
  28385. image: {
  28386. source: "./media/characters/sfaiyan/front.svg",
  28387. extra: 999 / 978,
  28388. bottom: 5 / 1004
  28389. }
  28390. },
  28391. },
  28392. [
  28393. {
  28394. name: "Normal",
  28395. height: math.unit(1.82, "meters")
  28396. },
  28397. {
  28398. name: "Giant",
  28399. height: math.unit(2.27, "km"),
  28400. default: true
  28401. },
  28402. ]
  28403. ))
  28404. characterMakers.push(() => makeCharacter(
  28405. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28406. {
  28407. front: {
  28408. height: math.unit(179, "cm"),
  28409. weight: math.unit(100, "kg"),
  28410. name: "Front",
  28411. image: {
  28412. source: "./media/characters/raunehkeli/front.svg",
  28413. extra: 1934 / 1926,
  28414. bottom: 0 / 1934
  28415. }
  28416. },
  28417. },
  28418. [
  28419. {
  28420. name: "Normal",
  28421. height: math.unit(179, "cm")
  28422. },
  28423. {
  28424. name: "Maximum",
  28425. height: math.unit(575, "meters"),
  28426. default: true
  28427. },
  28428. ]
  28429. ))
  28430. characterMakers.push(() => makeCharacter(
  28431. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28432. {
  28433. front: {
  28434. height: math.unit(6, "feet"),
  28435. weight: math.unit(150, "lb"),
  28436. name: "Front",
  28437. image: {
  28438. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28439. extra: 2625 / 2518,
  28440. bottom: 60 / 2685
  28441. }
  28442. },
  28443. },
  28444. [
  28445. {
  28446. name: "Normal",
  28447. height: math.unit(6 + 2 / 12, "feet")
  28448. },
  28449. {
  28450. name: "Macro",
  28451. height: math.unit(1180, "feet"),
  28452. default: true
  28453. },
  28454. ]
  28455. ))
  28456. characterMakers.push(() => makeCharacter(
  28457. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28458. {
  28459. front: {
  28460. height: math.unit(5 + 6 / 12, "feet"),
  28461. weight: math.unit(108, "lb"),
  28462. name: "Front",
  28463. image: {
  28464. source: "./media/characters/lilith-zott/front.svg",
  28465. extra: 2510 / 2238,
  28466. bottom: 100 / 2610
  28467. }
  28468. },
  28469. frontDressed: {
  28470. height: math.unit(5 + 6 / 12, "feet"),
  28471. weight: math.unit(108, "lb"),
  28472. name: "Front (Dressed)",
  28473. image: {
  28474. source: "./media/characters/lilith-zott/front-dressed.svg",
  28475. extra: 2510 / 2238,
  28476. bottom: 100 / 2610
  28477. }
  28478. },
  28479. },
  28480. [
  28481. {
  28482. name: "Normal",
  28483. height: math.unit(5 + 6 / 12, "feet")
  28484. },
  28485. {
  28486. name: "Macro",
  28487. height: math.unit(1030, "feet"),
  28488. default: true
  28489. },
  28490. ]
  28491. ))
  28492. characterMakers.push(() => makeCharacter(
  28493. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28494. {
  28495. front: {
  28496. height: math.unit(6, "feet"),
  28497. weight: math.unit(150, "lb"),
  28498. name: "Front",
  28499. image: {
  28500. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28501. extra: 2567 / 2435,
  28502. bottom: 39 / 2606
  28503. }
  28504. },
  28505. frontSuper: {
  28506. height: math.unit(6, "feet"),
  28507. name: "Front (Super)",
  28508. image: {
  28509. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28510. extra: 2567 / 2435,
  28511. bottom: 39 / 2606
  28512. }
  28513. },
  28514. },
  28515. [
  28516. {
  28517. name: "Normal",
  28518. height: math.unit(5 + 10 / 12, "feet")
  28519. },
  28520. {
  28521. name: "Macro",
  28522. height: math.unit(1100, "feet"),
  28523. default: true
  28524. },
  28525. ]
  28526. ))
  28527. characterMakers.push(() => makeCharacter(
  28528. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28529. {
  28530. front: {
  28531. height: math.unit(100, "miles"),
  28532. name: "Front",
  28533. image: {
  28534. source: "./media/characters/sona/front.svg",
  28535. extra: 2433 / 2201,
  28536. bottom: 53 / 2486
  28537. }
  28538. },
  28539. foot: {
  28540. height: math.unit(16.1, "miles"),
  28541. name: "Foot",
  28542. image: {
  28543. source: "./media/characters/sona/foot.svg"
  28544. }
  28545. },
  28546. },
  28547. [
  28548. {
  28549. name: "Macro",
  28550. height: math.unit(100, "miles"),
  28551. default: true
  28552. },
  28553. ]
  28554. ))
  28555. characterMakers.push(() => makeCharacter(
  28556. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28557. {
  28558. front: {
  28559. height: math.unit(6, "feet"),
  28560. weight: math.unit(150, "lb"),
  28561. name: "Front",
  28562. image: {
  28563. source: "./media/characters/bailey/front.svg",
  28564. extra: 1778 / 1724,
  28565. bottom: 30 / 1808
  28566. }
  28567. },
  28568. },
  28569. [
  28570. {
  28571. name: "Micro",
  28572. height: math.unit(4, "inches")
  28573. },
  28574. {
  28575. name: "Normal",
  28576. height: math.unit(5 + 5 / 12, "feet"),
  28577. default: true
  28578. },
  28579. {
  28580. name: "Macro",
  28581. height: math.unit(250, "feet")
  28582. },
  28583. {
  28584. name: "Megamacro",
  28585. height: math.unit(100, "miles")
  28586. },
  28587. ]
  28588. ))
  28589. characterMakers.push(() => makeCharacter(
  28590. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28591. {
  28592. front: {
  28593. height: math.unit(5 + 2 / 12, "feet"),
  28594. weight: math.unit(120, "lb"),
  28595. name: "Front",
  28596. image: {
  28597. source: "./media/characters/snaps/front.svg",
  28598. extra: 2370 / 2177,
  28599. bottom: 48 / 2418
  28600. }
  28601. },
  28602. back: {
  28603. height: math.unit(5 + 2 / 12, "feet"),
  28604. weight: math.unit(120, "lb"),
  28605. name: "Back",
  28606. image: {
  28607. source: "./media/characters/snaps/back.svg",
  28608. extra: 2408 / 2258,
  28609. bottom: 15 / 2423
  28610. }
  28611. },
  28612. },
  28613. [
  28614. {
  28615. name: "Micro",
  28616. height: math.unit(9, "inches")
  28617. },
  28618. {
  28619. name: "Normal",
  28620. height: math.unit(5 + 2 / 12, "feet"),
  28621. default: true
  28622. },
  28623. {
  28624. name: "Mini Macro",
  28625. height: math.unit(10, "feet")
  28626. },
  28627. ]
  28628. ))
  28629. characterMakers.push(() => makeCharacter(
  28630. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28631. {
  28632. front: {
  28633. height: math.unit(1.8, "meters"),
  28634. weight: math.unit(85, "kg"),
  28635. name: "Front",
  28636. image: {
  28637. source: "./media/characters/azteck/front.svg",
  28638. extra: 2815 / 2625,
  28639. bottom: 89 / 2904
  28640. }
  28641. },
  28642. back: {
  28643. height: math.unit(1.8, "meters"),
  28644. weight: math.unit(85, "kg"),
  28645. name: "Back",
  28646. image: {
  28647. source: "./media/characters/azteck/back.svg",
  28648. extra: 2856 / 2648,
  28649. bottom: 85 / 2941
  28650. }
  28651. },
  28652. frontDressed: {
  28653. height: math.unit(1.8, "meters"),
  28654. weight: math.unit(85, "kg"),
  28655. name: "Front (Dressed)",
  28656. image: {
  28657. source: "./media/characters/azteck/front-dressed.svg",
  28658. extra: 2147 / 2003,
  28659. bottom: 68 / 2215
  28660. }
  28661. },
  28662. head: {
  28663. height: math.unit(0.47, "meters"),
  28664. weight: math.unit(85, "kg"),
  28665. name: "Head",
  28666. image: {
  28667. source: "./media/characters/azteck/head.svg"
  28668. }
  28669. },
  28670. },
  28671. [
  28672. {
  28673. name: "Bite sized",
  28674. height: math.unit(16, "cm")
  28675. },
  28676. {
  28677. name: "Normal",
  28678. height: math.unit(1.8, "meters"),
  28679. default: true
  28680. },
  28681. ]
  28682. ))
  28683. characterMakers.push(() => makeCharacter(
  28684. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28685. {
  28686. front: {
  28687. height: math.unit(6, "feet"),
  28688. weight: math.unit(150, "lb"),
  28689. name: "Front",
  28690. image: {
  28691. source: "./media/characters/pidge/front.svg",
  28692. extra: 620 / 588,
  28693. bottom: 9 / 629
  28694. }
  28695. },
  28696. back: {
  28697. height: math.unit(6, "feet"),
  28698. weight: math.unit(150, "lb"),
  28699. name: "Back",
  28700. image: {
  28701. source: "./media/characters/pidge/back.svg",
  28702. extra: 620 / 588,
  28703. bottom: 9 / 629
  28704. }
  28705. },
  28706. },
  28707. [
  28708. {
  28709. name: "Macro",
  28710. height: math.unit(1, "mile"),
  28711. default: true
  28712. },
  28713. ]
  28714. ))
  28715. characterMakers.push(() => makeCharacter(
  28716. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28717. {
  28718. front: {
  28719. height: math.unit(6, "feet"),
  28720. weight: math.unit(150, "lb"),
  28721. name: "Front",
  28722. image: {
  28723. source: "./media/characters/en/front.svg",
  28724. extra: 1697 / 1563,
  28725. bottom: 103 / 1800
  28726. }
  28727. },
  28728. back: {
  28729. height: math.unit(6, "feet"),
  28730. weight: math.unit(150, "lb"),
  28731. name: "Back",
  28732. image: {
  28733. source: "./media/characters/en/back.svg",
  28734. extra: 1700 / 1570,
  28735. bottom: 51 / 1751
  28736. }
  28737. },
  28738. frontDressed: {
  28739. height: math.unit(6, "feet"),
  28740. weight: math.unit(150, "lb"),
  28741. name: "Front (Dressed)",
  28742. image: {
  28743. source: "./media/characters/en/front-dressed.svg",
  28744. extra: 1697 / 1563,
  28745. bottom: 103 / 1800
  28746. }
  28747. },
  28748. backDressed: {
  28749. height: math.unit(6, "feet"),
  28750. weight: math.unit(150, "lb"),
  28751. name: "Back (Dressed)",
  28752. image: {
  28753. source: "./media/characters/en/back-dressed.svg",
  28754. extra: 1700 / 1570,
  28755. bottom: 51 / 1751
  28756. }
  28757. },
  28758. },
  28759. [
  28760. {
  28761. name: "Macro",
  28762. height: math.unit(210, "feet"),
  28763. default: true
  28764. },
  28765. ]
  28766. ))
  28767. characterMakers.push(() => makeCharacter(
  28768. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28769. {
  28770. front: {
  28771. height: math.unit(6, "feet"),
  28772. weight: math.unit(150, "lb"),
  28773. name: "Front",
  28774. image: {
  28775. source: "./media/characters/haze-orris/front.svg",
  28776. extra: 3975 / 3525,
  28777. bottom: 137 / 4112
  28778. }
  28779. },
  28780. },
  28781. [
  28782. {
  28783. name: "Micro",
  28784. height: math.unit(150, "mm"),
  28785. default: true
  28786. },
  28787. ]
  28788. ))
  28789. characterMakers.push(() => makeCharacter(
  28790. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28791. {
  28792. front: {
  28793. height: math.unit(6, "feet"),
  28794. weight: math.unit(150, "lb"),
  28795. name: "Front",
  28796. image: {
  28797. source: "./media/characters/casselene-yaro/front.svg",
  28798. extra: 4721 / 4541,
  28799. bottom: 82 / 4803
  28800. }
  28801. },
  28802. back: {
  28803. height: math.unit(6, "feet"),
  28804. weight: math.unit(150, "lb"),
  28805. name: "Back",
  28806. image: {
  28807. source: "./media/characters/casselene-yaro/back.svg",
  28808. extra: 4569 / 4377,
  28809. bottom: 69 / 4638
  28810. }
  28811. },
  28812. frontDressed: {
  28813. height: math.unit(6, "feet"),
  28814. weight: math.unit(150, "lb"),
  28815. name: "Front-dressed",
  28816. image: {
  28817. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28818. extra: 4721 / 4541,
  28819. bottom: 82 / 4803
  28820. }
  28821. },
  28822. },
  28823. [
  28824. {
  28825. name: "Macro",
  28826. height: math.unit(190, "feet"),
  28827. default: true
  28828. },
  28829. ]
  28830. ))
  28831. characterMakers.push(() => makeCharacter(
  28832. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28833. {
  28834. front: {
  28835. height: math.unit(6, "feet"),
  28836. weight: math.unit(150, "lb"),
  28837. name: "Front",
  28838. image: {
  28839. source: "./media/characters/myra-rue-delore/front.svg",
  28840. extra: 1340 / 1308,
  28841. bottom: 67 / 1407
  28842. }
  28843. },
  28844. back: {
  28845. height: math.unit(6, "feet"),
  28846. weight: math.unit(150, "lb"),
  28847. name: "Back",
  28848. image: {
  28849. source: "./media/characters/myra-rue-delore/back.svg",
  28850. extra: 1341 / 1310,
  28851. bottom: 40 / 1381
  28852. }
  28853. },
  28854. frontDressed: {
  28855. height: math.unit(6, "feet"),
  28856. weight: math.unit(150, "lb"),
  28857. name: "Front (Dressed)",
  28858. image: {
  28859. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28860. extra: 1340 / 1308,
  28861. bottom: 67 / 1407
  28862. }
  28863. },
  28864. },
  28865. [
  28866. {
  28867. name: "Macro",
  28868. height: math.unit(150, "feet"),
  28869. default: true
  28870. },
  28871. ]
  28872. ))
  28873. characterMakers.push(() => makeCharacter(
  28874. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28875. {
  28876. front: {
  28877. height: math.unit(10, "feet"),
  28878. weight: math.unit(15015, "lb"),
  28879. name: "Front",
  28880. image: {
  28881. source: "./media/characters/fem!plat/front.svg",
  28882. extra: 2799 / 2604,
  28883. bottom: 149 / 2948
  28884. }
  28885. },
  28886. },
  28887. [
  28888. {
  28889. name: "Normal",
  28890. height: math.unit(10, "feet"),
  28891. default: true
  28892. },
  28893. {
  28894. name: "Macro",
  28895. height: math.unit(100, "feet")
  28896. },
  28897. {
  28898. name: "Megamacro",
  28899. height: math.unit(1000, "feet")
  28900. },
  28901. ]
  28902. ))
  28903. characterMakers.push(() => makeCharacter(
  28904. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28905. {
  28906. front: {
  28907. height: math.unit(15 + 5 / 12, "feet"),
  28908. weight: math.unit(4600, "lb"),
  28909. name: "Front",
  28910. image: {
  28911. source: "./media/characters/neapolitan-ananassa/front.svg",
  28912. extra: 2903 / 2736,
  28913. bottom: 0 / 2903
  28914. }
  28915. },
  28916. side: {
  28917. height: math.unit(15 + 5 / 12, "feet"),
  28918. weight: math.unit(4600, "lb"),
  28919. name: "Side",
  28920. image: {
  28921. source: "./media/characters/neapolitan-ananassa/side.svg",
  28922. extra: 2925 / 2719,
  28923. bottom: 0 / 2925
  28924. }
  28925. },
  28926. back: {
  28927. height: math.unit(15 + 5 / 12, "feet"),
  28928. weight: math.unit(4600, "lb"),
  28929. name: "Back",
  28930. image: {
  28931. source: "./media/characters/neapolitan-ananassa/back.svg",
  28932. extra: 2903 / 2736,
  28933. bottom: 0 / 2903
  28934. }
  28935. },
  28936. },
  28937. [
  28938. {
  28939. name: "Normal",
  28940. height: math.unit(15 + 5 / 12, "feet"),
  28941. default: true
  28942. },
  28943. {
  28944. name: "Post-Millenium",
  28945. height: math.unit(35 + 5 / 12, "feet")
  28946. },
  28947. {
  28948. name: "Post-Era",
  28949. height: math.unit(450 + 5 / 12, "feet")
  28950. },
  28951. ]
  28952. ))
  28953. characterMakers.push(() => makeCharacter(
  28954. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28955. {
  28956. front: {
  28957. height: math.unit(300, "meters"),
  28958. weight: math.unit(125000, "tonnes"),
  28959. name: "Front",
  28960. image: {
  28961. source: "./media/characters/pazuzu/front.svg",
  28962. extra: 877 / 794,
  28963. bottom: 47 / 924
  28964. }
  28965. },
  28966. },
  28967. [
  28968. {
  28969. name: "Macro",
  28970. height: math.unit(300, "meters"),
  28971. default: true
  28972. },
  28973. ]
  28974. ))
  28975. characterMakers.push(() => makeCharacter(
  28976. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28977. {
  28978. side: {
  28979. height: math.unit(10 + 7 / 12, "feet"),
  28980. weight: math.unit(2.5, "tons"),
  28981. name: "Side",
  28982. image: {
  28983. source: "./media/characters/aasha/side.svg",
  28984. extra: 1345 / 1245,
  28985. bottom: 111 / 1456
  28986. }
  28987. },
  28988. back: {
  28989. height: math.unit(10 + 7 / 12, "feet"),
  28990. weight: math.unit(2.5, "tons"),
  28991. name: "Back",
  28992. image: {
  28993. source: "./media/characters/aasha/back.svg",
  28994. extra: 1133 / 1057,
  28995. bottom: 257 / 1390
  28996. }
  28997. },
  28998. },
  28999. [
  29000. {
  29001. name: "Normal",
  29002. height: math.unit(10 + 7 / 12, "feet"),
  29003. default: true
  29004. },
  29005. ]
  29006. ))
  29007. characterMakers.push(() => makeCharacter(
  29008. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29009. {
  29010. front: {
  29011. height: math.unit(6 + 3 / 12, "feet"),
  29012. name: "Front",
  29013. image: {
  29014. source: "./media/characters/nevan/front.svg",
  29015. extra: 704 / 704,
  29016. bottom: 28 / 732
  29017. }
  29018. },
  29019. back: {
  29020. height: math.unit(6 + 3 / 12, "feet"),
  29021. name: "Back",
  29022. image: {
  29023. source: "./media/characters/nevan/back.svg",
  29024. extra: 714 / 714,
  29025. bottom: 21 / 735
  29026. }
  29027. },
  29028. frontFlaccid: {
  29029. height: math.unit(6 + 3 / 12, "feet"),
  29030. name: "Front (Flaccid)",
  29031. image: {
  29032. source: "./media/characters/nevan/front-flaccid.svg",
  29033. extra: 704 / 704,
  29034. bottom: 28 / 732
  29035. }
  29036. },
  29037. frontErect: {
  29038. height: math.unit(6 + 3 / 12, "feet"),
  29039. name: "Front (Erect)",
  29040. image: {
  29041. source: "./media/characters/nevan/front-erect.svg",
  29042. extra: 704 / 704,
  29043. bottom: 28 / 732
  29044. }
  29045. },
  29046. backFlaccid: {
  29047. height: math.unit(6 + 3 / 12, "feet"),
  29048. name: "Back (Flaccid)",
  29049. image: {
  29050. source: "./media/characters/nevan/back-flaccid.svg",
  29051. extra: 714 / 714,
  29052. bottom: 21 / 735
  29053. }
  29054. },
  29055. },
  29056. [
  29057. {
  29058. name: "Normal",
  29059. height: math.unit(6 + 3 / 12, "feet"),
  29060. default: true
  29061. },
  29062. ]
  29063. ))
  29064. characterMakers.push(() => makeCharacter(
  29065. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29066. {
  29067. front: {
  29068. height: math.unit(4, "feet"),
  29069. name: "Front",
  29070. image: {
  29071. source: "./media/characters/arhan/front.svg",
  29072. extra: 3368 / 3133,
  29073. bottom: 0 / 3368
  29074. }
  29075. },
  29076. side: {
  29077. height: math.unit(4, "feet"),
  29078. name: "Side",
  29079. image: {
  29080. source: "./media/characters/arhan/side.svg",
  29081. extra: 3347 / 3105,
  29082. bottom: 0 / 3347
  29083. }
  29084. },
  29085. tongue: {
  29086. height: math.unit(1.42, "feet"),
  29087. name: "Tongue",
  29088. image: {
  29089. source: "./media/characters/arhan/tongue.svg"
  29090. }
  29091. },
  29092. head: {
  29093. height: math.unit(0.85, "feet"),
  29094. name: "Head",
  29095. image: {
  29096. source: "./media/characters/arhan/head.svg"
  29097. }
  29098. },
  29099. },
  29100. [
  29101. {
  29102. name: "Normal",
  29103. height: math.unit(4, "feet"),
  29104. default: true
  29105. },
  29106. ]
  29107. ))
  29108. characterMakers.push(() => makeCharacter(
  29109. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29110. {
  29111. front: {
  29112. height: math.unit(5 + 7.5 / 12, "feet"),
  29113. weight: math.unit(120, "lb"),
  29114. name: "Front",
  29115. image: {
  29116. source: "./media/characters/digi-duncan/front.svg",
  29117. extra: 330 / 326,
  29118. bottom: 16 / 346
  29119. }
  29120. },
  29121. side: {
  29122. height: math.unit(5 + 7.5 / 12, "feet"),
  29123. weight: math.unit(120, "lb"),
  29124. name: "Side",
  29125. image: {
  29126. source: "./media/characters/digi-duncan/side.svg",
  29127. extra: 341 / 337,
  29128. bottom: 1 / 342
  29129. }
  29130. },
  29131. back: {
  29132. height: math.unit(5 + 7.5 / 12, "feet"),
  29133. weight: math.unit(120, "lb"),
  29134. name: "Back",
  29135. image: {
  29136. source: "./media/characters/digi-duncan/back.svg",
  29137. extra: 330 / 326,
  29138. bottom: 12 / 342
  29139. }
  29140. },
  29141. },
  29142. [
  29143. {
  29144. name: "Speck",
  29145. height: math.unit(0.25, "mm")
  29146. },
  29147. {
  29148. name: "Micro",
  29149. height: math.unit(5, "mm")
  29150. },
  29151. {
  29152. name: "Tiny",
  29153. height: math.unit(0.5, "inches"),
  29154. default: true
  29155. },
  29156. {
  29157. name: "Human",
  29158. height: math.unit(5 + 7.5 / 12, "feet")
  29159. },
  29160. {
  29161. name: "Minigiant",
  29162. height: math.unit(8 + 5.25, "feet")
  29163. },
  29164. {
  29165. name: "Giant",
  29166. height: math.unit(2000, "feet")
  29167. },
  29168. {
  29169. name: "Mega",
  29170. height: math.unit(371.1, "miles")
  29171. },
  29172. ]
  29173. ))
  29174. characterMakers.push(() => makeCharacter(
  29175. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29176. {
  29177. front: {
  29178. height: math.unit(2, "meters"),
  29179. weight: math.unit(350, "kg"),
  29180. name: "Front",
  29181. image: {
  29182. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29183. extra: 898 / 838,
  29184. bottom: 9 / 907
  29185. }
  29186. },
  29187. },
  29188. [
  29189. {
  29190. name: "Micro",
  29191. height: math.unit(8, "meters")
  29192. },
  29193. {
  29194. name: "Normal",
  29195. height: math.unit(50, "meters"),
  29196. default: true
  29197. },
  29198. {
  29199. name: "Macro",
  29200. height: math.unit(500, "meters")
  29201. },
  29202. ]
  29203. ))
  29204. characterMakers.push(() => makeCharacter(
  29205. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29206. {
  29207. front: {
  29208. height: math.unit(6 + 6 / 12, "feet"),
  29209. name: "Front",
  29210. image: {
  29211. source: "./media/characters/khardesh/front.svg",
  29212. extra: 888 / 797,
  29213. bottom: 25 / 913
  29214. }
  29215. },
  29216. },
  29217. [
  29218. {
  29219. name: "Normal",
  29220. height: math.unit(6 + 6 / 12, "feet"),
  29221. default: true
  29222. },
  29223. {
  29224. name: "Normal+",
  29225. height: math.unit(4, "meters")
  29226. },
  29227. {
  29228. name: "Macro",
  29229. height: math.unit(50, "meters")
  29230. },
  29231. {
  29232. name: "Macro+",
  29233. height: math.unit(100, "meters")
  29234. },
  29235. {
  29236. name: "Megamacro",
  29237. height: math.unit(20, "km")
  29238. },
  29239. ]
  29240. ))
  29241. characterMakers.push(() => makeCharacter(
  29242. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29243. {
  29244. front: {
  29245. height: math.unit(6, "feet"),
  29246. weight: math.unit(150, "lb"),
  29247. name: "Front",
  29248. image: {
  29249. source: "./media/characters/kosho/front.svg",
  29250. extra: 1847 / 1847,
  29251. bottom: 86 / 1933
  29252. }
  29253. },
  29254. },
  29255. [
  29256. {
  29257. name: "Second-stage micro",
  29258. height: math.unit(0.5, "inches")
  29259. },
  29260. {
  29261. name: "First-stage micro",
  29262. height: math.unit(6, "inches")
  29263. },
  29264. {
  29265. name: "Normal",
  29266. height: math.unit(6, "feet"),
  29267. default: true
  29268. },
  29269. {
  29270. name: "First-stage macro",
  29271. height: math.unit(72, "feet")
  29272. },
  29273. {
  29274. name: "Second-stage macro",
  29275. height: math.unit(864, "feet")
  29276. },
  29277. ]
  29278. ))
  29279. characterMakers.push(() => makeCharacter(
  29280. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29281. {
  29282. normal: {
  29283. height: math.unit(4 + 6 / 12, "feet"),
  29284. name: "Normal",
  29285. image: {
  29286. source: "./media/characters/hydra/normal.svg",
  29287. extra: 2833 / 2634,
  29288. bottom: 68 / 2901
  29289. }
  29290. },
  29291. smol: {
  29292. height: math.unit(0.705, "inches"),
  29293. name: "Smol",
  29294. image: {
  29295. source: "./media/characters/hydra/smol.svg",
  29296. extra: 2715 / 2540,
  29297. bottom: 0 / 2715
  29298. }
  29299. },
  29300. },
  29301. [
  29302. {
  29303. name: "Normal",
  29304. height: math.unit(4 + 6 / 12, "feet"),
  29305. default: true
  29306. }
  29307. ]
  29308. ))
  29309. characterMakers.push(() => makeCharacter(
  29310. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29311. {
  29312. front: {
  29313. height: math.unit(0.6, "cm"),
  29314. name: "Front",
  29315. image: {
  29316. source: "./media/characters/daz/front.svg",
  29317. extra: 1682 / 1164,
  29318. bottom: 42 / 1724
  29319. }
  29320. },
  29321. },
  29322. [
  29323. {
  29324. name: "Normal",
  29325. height: math.unit(0.6, "cm"),
  29326. default: true
  29327. },
  29328. ]
  29329. ))
  29330. characterMakers.push(() => makeCharacter(
  29331. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29332. {
  29333. front: {
  29334. height: math.unit(6, "feet"),
  29335. weight: math.unit(235, "lb"),
  29336. name: "Front",
  29337. image: {
  29338. source: "./media/characters/theo-pangolin/front.svg",
  29339. extra: 1996 / 1969,
  29340. bottom: 115 / 2111
  29341. }
  29342. },
  29343. back: {
  29344. height: math.unit(6, "feet"),
  29345. weight: math.unit(235, "lb"),
  29346. name: "Back",
  29347. image: {
  29348. source: "./media/characters/theo-pangolin/back.svg",
  29349. extra: 1979 / 1979,
  29350. bottom: 40 / 2019
  29351. }
  29352. },
  29353. feral: {
  29354. height: math.unit(2, "feet"),
  29355. weight: math.unit(30, "lb"),
  29356. name: "Feral",
  29357. image: {
  29358. source: "./media/characters/theo-pangolin/feral.svg",
  29359. extra: 803 / 791,
  29360. bottom: 181 / 984
  29361. }
  29362. },
  29363. footFive: {
  29364. height: math.unit(1.43, "feet"),
  29365. name: "Foot (Five Toes)",
  29366. image: {
  29367. source: "./media/characters/theo-pangolin/foot-five.svg"
  29368. }
  29369. },
  29370. footFour: {
  29371. height: math.unit(1.43, "feet"),
  29372. name: "Foot (Four Toes)",
  29373. image: {
  29374. source: "./media/characters/theo-pangolin/foot-four.svg"
  29375. }
  29376. },
  29377. handFour: {
  29378. height: math.unit(0.81, "feet"),
  29379. name: "Hand (Four Fingers)",
  29380. image: {
  29381. source: "./media/characters/theo-pangolin/hand-four.svg"
  29382. }
  29383. },
  29384. handThree: {
  29385. height: math.unit(0.81, "feet"),
  29386. name: "Hand (Three Fingers)",
  29387. image: {
  29388. source: "./media/characters/theo-pangolin/hand-three.svg"
  29389. }
  29390. },
  29391. headFront: {
  29392. height: math.unit(1.37, "feet"),
  29393. name: "Head (Front)",
  29394. image: {
  29395. source: "./media/characters/theo-pangolin/head-front.svg"
  29396. }
  29397. },
  29398. headSide: {
  29399. height: math.unit(1.43, "feet"),
  29400. name: "Head (Side)",
  29401. image: {
  29402. source: "./media/characters/theo-pangolin/head-side.svg"
  29403. }
  29404. },
  29405. tongue: {
  29406. height: math.unit(2.29, "feet"),
  29407. name: "Tongue",
  29408. image: {
  29409. source: "./media/characters/theo-pangolin/tongue.svg"
  29410. }
  29411. },
  29412. },
  29413. [
  29414. {
  29415. name: "Normal",
  29416. height: math.unit(6, "feet")
  29417. },
  29418. {
  29419. name: "Macro",
  29420. height: math.unit(400, "feet"),
  29421. default: true
  29422. },
  29423. ]
  29424. ))
  29425. characterMakers.push(() => makeCharacter(
  29426. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29427. {
  29428. front: {
  29429. height: math.unit(6, "inches"),
  29430. weight: math.unit(0.036, "kg"),
  29431. name: "Front",
  29432. image: {
  29433. source: "./media/characters/renée/front.svg",
  29434. extra: 900 / 886,
  29435. bottom: 8 / 908
  29436. }
  29437. },
  29438. },
  29439. [
  29440. {
  29441. name: "Nano",
  29442. height: math.unit(1, "nm")
  29443. },
  29444. {
  29445. name: "Micro",
  29446. height: math.unit(1, "mm")
  29447. },
  29448. {
  29449. name: "Normal",
  29450. height: math.unit(6, "inches")
  29451. },
  29452. {
  29453. name: "Macro",
  29454. height: math.unit(2000, "feet"),
  29455. default: true
  29456. },
  29457. {
  29458. name: "Megamacro",
  29459. height: math.unit(2, "km")
  29460. },
  29461. {
  29462. name: "Gigamacro",
  29463. height: math.unit(2000, "km")
  29464. },
  29465. {
  29466. name: "Teramacro",
  29467. height: math.unit(250000, "km")
  29468. },
  29469. ]
  29470. ))
  29471. characterMakers.push(() => makeCharacter(
  29472. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29473. {
  29474. front: {
  29475. height: math.unit(4, "meters"),
  29476. weight: math.unit(150, "kg"),
  29477. name: "Front",
  29478. image: {
  29479. source: "./media/characters/caledvwlch/front.svg",
  29480. extra: 1760 / 1551,
  29481. bottom: 28 / 1788
  29482. }
  29483. },
  29484. side: {
  29485. height: math.unit(4, "meters"),
  29486. weight: math.unit(150, "kg"),
  29487. name: "Side",
  29488. image: {
  29489. source: "./media/characters/caledvwlch/side.svg",
  29490. extra: 1605 / 1536,
  29491. bottom: 31 / 1636
  29492. }
  29493. },
  29494. back: {
  29495. height: math.unit(4, "meters"),
  29496. weight: math.unit(150, "kg"),
  29497. name: "Back",
  29498. image: {
  29499. source: "./media/characters/caledvwlch/back.svg",
  29500. extra: 1635 / 1565,
  29501. bottom: 27 / 1662
  29502. }
  29503. },
  29504. },
  29505. [
  29506. {
  29507. name: "\"Incognito\"",
  29508. height: math.unit(4, "meters")
  29509. },
  29510. {
  29511. name: "Small rampage",
  29512. height: math.unit(600, "meters")
  29513. },
  29514. {
  29515. name: "Mega",
  29516. height: math.unit(30, "km")
  29517. },
  29518. {
  29519. name: "Home-size",
  29520. height: math.unit(50, "km"),
  29521. default: true
  29522. },
  29523. {
  29524. name: "Giga",
  29525. height: math.unit(300, "km")
  29526. },
  29527. {
  29528. name: "Lounging",
  29529. height: math.unit(11000, "km")
  29530. },
  29531. {
  29532. name: "Planet snacking",
  29533. height: math.unit(2000000, "km")
  29534. },
  29535. ]
  29536. ))
  29537. characterMakers.push(() => makeCharacter(
  29538. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29539. {
  29540. front: {
  29541. height: math.unit(6, "feet"),
  29542. weight: math.unit(215, "lb"),
  29543. name: "Front",
  29544. image: {
  29545. source: "./media/characters/sapphire-svell/front.svg",
  29546. extra: 495 / 455,
  29547. bottom: 20 / 515
  29548. }
  29549. },
  29550. back: {
  29551. height: math.unit(6, "feet"),
  29552. weight: math.unit(216, "lb"),
  29553. name: "Back",
  29554. image: {
  29555. source: "./media/characters/sapphire-svell/back.svg",
  29556. extra: 497 / 477,
  29557. bottom: 7 / 504
  29558. }
  29559. },
  29560. maw: {
  29561. height: math.unit(1.57, "feet"),
  29562. name: "Maw",
  29563. image: {
  29564. source: "./media/characters/sapphire-svell/maw.svg"
  29565. }
  29566. },
  29567. foot: {
  29568. height: math.unit(1.07, "feet"),
  29569. name: "Foot",
  29570. image: {
  29571. source: "./media/characters/sapphire-svell/foot.svg"
  29572. }
  29573. },
  29574. toering: {
  29575. height: math.unit(1.7, "inch"),
  29576. name: "Toering",
  29577. image: {
  29578. source: "./media/characters/sapphire-svell/toering.svg"
  29579. }
  29580. },
  29581. },
  29582. [
  29583. {
  29584. name: "Normal",
  29585. height: math.unit(300, "feet"),
  29586. default: true
  29587. },
  29588. {
  29589. name: "Augmented",
  29590. height: math.unit(1250, "feet")
  29591. },
  29592. {
  29593. name: "Unleashed",
  29594. height: math.unit(3000, "feet")
  29595. },
  29596. ]
  29597. ))
  29598. characterMakers.push(() => makeCharacter(
  29599. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29600. {
  29601. side: {
  29602. height: math.unit(2 + 3 / 12, "feet"),
  29603. weight: math.unit(110, "lb"),
  29604. name: "Side",
  29605. image: {
  29606. source: "./media/characters/glitch-flux/side.svg",
  29607. extra: 997 / 805,
  29608. bottom: 20 / 1017
  29609. }
  29610. },
  29611. },
  29612. [
  29613. {
  29614. name: "Normal",
  29615. height: math.unit(2 + 3 / 12, "feet"),
  29616. default: true
  29617. },
  29618. ]
  29619. ))
  29620. characterMakers.push(() => makeCharacter(
  29621. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29622. {
  29623. front: {
  29624. height: math.unit(4, "meters"),
  29625. name: "Front",
  29626. image: {
  29627. source: "./media/characters/mid/front.svg",
  29628. extra: 507 / 476,
  29629. bottom: 17 / 524
  29630. }
  29631. },
  29632. back: {
  29633. height: math.unit(4, "meters"),
  29634. name: "Back",
  29635. image: {
  29636. source: "./media/characters/mid/back.svg",
  29637. extra: 519 / 487,
  29638. bottom: 7 / 526
  29639. }
  29640. },
  29641. stuck: {
  29642. height: math.unit(2.2, "meters"),
  29643. name: "Stuck",
  29644. image: {
  29645. source: "./media/characters/mid/stuck.svg",
  29646. extra: 1951 / 1869,
  29647. bottom: 88 / 2039
  29648. }
  29649. }
  29650. },
  29651. [
  29652. {
  29653. name: "Normal",
  29654. height: math.unit(4, "meters"),
  29655. default: true
  29656. },
  29657. {
  29658. name: "Big",
  29659. height: math.unit(10, "meters")
  29660. },
  29661. {
  29662. name: "Macro",
  29663. height: math.unit(800, "meters")
  29664. },
  29665. {
  29666. name: "Megamacro",
  29667. height: math.unit(100, "km")
  29668. },
  29669. {
  29670. name: "Overgrown",
  29671. height: math.unit(1, "parsec")
  29672. },
  29673. ]
  29674. ))
  29675. characterMakers.push(() => makeCharacter(
  29676. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29677. {
  29678. front: {
  29679. height: math.unit(2.5, "meters"),
  29680. weight: math.unit(225, "kg"),
  29681. name: "Front",
  29682. image: {
  29683. source: "./media/characters/iris/front.svg",
  29684. extra: 3348 / 3251,
  29685. bottom: 205 / 3553
  29686. }
  29687. },
  29688. maw: {
  29689. height: math.unit(0.56, "meter"),
  29690. name: "Maw",
  29691. image: {
  29692. source: "./media/characters/iris/maw.svg"
  29693. }
  29694. },
  29695. },
  29696. [
  29697. {
  29698. name: "Mewter cat",
  29699. height: math.unit(1.2, "meters")
  29700. },
  29701. {
  29702. name: "Minimacro",
  29703. height: math.unit(2.5, "meters"),
  29704. default: true
  29705. },
  29706. {
  29707. name: "Macro",
  29708. height: math.unit(180, "meters")
  29709. },
  29710. {
  29711. name: "Megamacro",
  29712. height: math.unit(2746, "meters")
  29713. },
  29714. ]
  29715. ))
  29716. characterMakers.push(() => makeCharacter(
  29717. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29718. {
  29719. front: {
  29720. height: math.unit(6, "feet"),
  29721. weight: math.unit(135, "lb"),
  29722. name: "Front",
  29723. image: {
  29724. source: "./media/characters/axel/front.svg",
  29725. extra: 908 / 908,
  29726. bottom: 58 / 966
  29727. }
  29728. },
  29729. side: {
  29730. height: math.unit(6, "feet"),
  29731. weight: math.unit(135, "lb"),
  29732. name: "Side",
  29733. image: {
  29734. source: "./media/characters/axel/side.svg",
  29735. extra: 958 / 958,
  29736. bottom: 11 / 969
  29737. }
  29738. },
  29739. back: {
  29740. height: math.unit(6, "feet"),
  29741. weight: math.unit(135, "lb"),
  29742. name: "Back",
  29743. image: {
  29744. source: "./media/characters/axel/back.svg",
  29745. extra: 887 / 887,
  29746. bottom: 34 / 921
  29747. }
  29748. },
  29749. head: {
  29750. height: math.unit(1.07, "feet"),
  29751. name: "Head",
  29752. image: {
  29753. source: "./media/characters/axel/head.svg"
  29754. }
  29755. },
  29756. beak: {
  29757. height: math.unit(1.4, "feet"),
  29758. name: "Beak",
  29759. image: {
  29760. source: "./media/characters/axel/beak.svg"
  29761. }
  29762. },
  29763. beakSide: {
  29764. height: math.unit(1.4, "feet"),
  29765. name: "Beak Side",
  29766. image: {
  29767. source: "./media/characters/axel/beak-side.svg"
  29768. }
  29769. },
  29770. sheath: {
  29771. height: math.unit(0.5, "feet"),
  29772. name: "Sheath",
  29773. image: {
  29774. source: "./media/characters/axel/sheath.svg"
  29775. }
  29776. },
  29777. dick: {
  29778. height: math.unit(0.98, "feet"),
  29779. name: "Dick",
  29780. image: {
  29781. source: "./media/characters/axel/dick.svg"
  29782. }
  29783. },
  29784. },
  29785. [
  29786. {
  29787. name: "Macro",
  29788. height: math.unit(68, "meters"),
  29789. default: true
  29790. },
  29791. ]
  29792. ))
  29793. characterMakers.push(() => makeCharacter(
  29794. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29795. {
  29796. front: {
  29797. height: math.unit(3.5, "meters"),
  29798. weight: math.unit(1200, "kg"),
  29799. name: "Front",
  29800. image: {
  29801. source: "./media/characters/joanna/front.svg",
  29802. extra: 1596 / 1488,
  29803. bottom: 29 / 1625
  29804. }
  29805. },
  29806. back: {
  29807. height: math.unit(3.5, "meters"),
  29808. weight: math.unit(1200, "kg"),
  29809. name: "Back",
  29810. image: {
  29811. source: "./media/characters/joanna/back.svg",
  29812. extra: 1594 / 1495,
  29813. bottom: 26 / 1620
  29814. }
  29815. },
  29816. frontShorts: {
  29817. height: math.unit(3.5, "meters"),
  29818. weight: math.unit(1200, "kg"),
  29819. name: "Front (Shorts)",
  29820. image: {
  29821. source: "./media/characters/joanna/front-shorts.svg",
  29822. extra: 1596 / 1488,
  29823. bottom: 29 / 1625
  29824. }
  29825. },
  29826. frontBiker: {
  29827. height: math.unit(3.5, "meters"),
  29828. weight: math.unit(1200, "kg"),
  29829. name: "Front (Biker)",
  29830. image: {
  29831. source: "./media/characters/joanna/front-biker.svg",
  29832. extra: 1596 / 1488,
  29833. bottom: 29 / 1625
  29834. }
  29835. },
  29836. backBiker: {
  29837. height: math.unit(3.5, "meters"),
  29838. weight: math.unit(1200, "kg"),
  29839. name: "Back (Biker)",
  29840. image: {
  29841. source: "./media/characters/joanna/back-biker.svg",
  29842. extra: 1594 / 1495,
  29843. bottom: 88 / 1682
  29844. }
  29845. },
  29846. bikeLeft: {
  29847. height: math.unit(2.4, "meters"),
  29848. weight: math.unit(1600, "kg"),
  29849. name: "Bike (Left)",
  29850. image: {
  29851. source: "./media/characters/joanna/bike-left.svg",
  29852. extra: 720 / 720,
  29853. bottom: 8 / 728
  29854. }
  29855. },
  29856. bikeRight: {
  29857. height: math.unit(2.4, "meters"),
  29858. weight: math.unit(1600, "kg"),
  29859. name: "Bike (Right)",
  29860. image: {
  29861. source: "./media/characters/joanna/bike-right.svg",
  29862. extra: 720 / 720,
  29863. bottom: 8 / 728
  29864. }
  29865. },
  29866. },
  29867. [
  29868. {
  29869. name: "Incognito",
  29870. height: math.unit(3.5, "meters")
  29871. },
  29872. {
  29873. name: "Casual Big",
  29874. height: math.unit(200, "meters")
  29875. },
  29876. {
  29877. name: "Macro",
  29878. height: math.unit(600, "meters")
  29879. },
  29880. {
  29881. name: "Original",
  29882. height: math.unit(20, "km"),
  29883. default: true
  29884. },
  29885. {
  29886. name: "Giga",
  29887. height: math.unit(400, "km")
  29888. },
  29889. {
  29890. name: "Lounging",
  29891. height: math.unit(1500, "km")
  29892. },
  29893. {
  29894. name: "Planetary",
  29895. height: math.unit(200000, "km")
  29896. },
  29897. ]
  29898. ))
  29899. characterMakers.push(() => makeCharacter(
  29900. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29901. {
  29902. front: {
  29903. height: math.unit(6, "feet"),
  29904. weight: math.unit(150, "lb"),
  29905. name: "Front",
  29906. image: {
  29907. source: "./media/characters/hugo-sigil/front.svg",
  29908. extra: 522 / 500,
  29909. bottom: 2 / 524
  29910. }
  29911. },
  29912. back: {
  29913. height: math.unit(6, "feet"),
  29914. weight: math.unit(150, "lb"),
  29915. name: "Back",
  29916. image: {
  29917. source: "./media/characters/hugo-sigil/back.svg",
  29918. extra: 519 / 495,
  29919. bottom: 5 / 524
  29920. }
  29921. },
  29922. maw: {
  29923. height: math.unit(1.4, "feet"),
  29924. weight: math.unit(150, "lb"),
  29925. name: "Maw",
  29926. image: {
  29927. source: "./media/characters/hugo-sigil/maw.svg"
  29928. }
  29929. },
  29930. feet: {
  29931. height: math.unit(1.56, "feet"),
  29932. weight: math.unit(150, "lb"),
  29933. name: "Feet",
  29934. image: {
  29935. source: "./media/characters/hugo-sigil/feet.svg",
  29936. extra: 177 / 177,
  29937. bottom: 12 / 189
  29938. }
  29939. },
  29940. },
  29941. [
  29942. {
  29943. name: "Normal",
  29944. height: math.unit(6, "feet")
  29945. },
  29946. {
  29947. name: "Macro",
  29948. height: math.unit(200, "feet"),
  29949. default: true
  29950. },
  29951. ]
  29952. ))
  29953. characterMakers.push(() => makeCharacter(
  29954. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29955. {
  29956. front: {
  29957. height: math.unit(6, "feet"),
  29958. weight: math.unit(150, "lb"),
  29959. name: "Front",
  29960. image: {
  29961. source: "./media/characters/peri/front.svg",
  29962. extra: 2354 / 2233,
  29963. bottom: 49 / 2403
  29964. }
  29965. },
  29966. },
  29967. [
  29968. {
  29969. name: "Really Small",
  29970. height: math.unit(1, "nm")
  29971. },
  29972. {
  29973. name: "Micro",
  29974. height: math.unit(4, "inches")
  29975. },
  29976. {
  29977. name: "Normal",
  29978. height: math.unit(7, "inches"),
  29979. default: true
  29980. },
  29981. {
  29982. name: "Macro",
  29983. height: math.unit(400, "feet")
  29984. },
  29985. {
  29986. name: "Megamacro",
  29987. height: math.unit(100, "miles")
  29988. },
  29989. ]
  29990. ))
  29991. characterMakers.push(() => makeCharacter(
  29992. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29993. {
  29994. frontSlim: {
  29995. height: math.unit(7, "feet"),
  29996. name: "Front (Slim)",
  29997. image: {
  29998. source: "./media/characters/issilora/front-slim.svg",
  29999. extra: 529 / 449,
  30000. bottom: 53 / 582
  30001. }
  30002. },
  30003. sideSlim: {
  30004. height: math.unit(7, "feet"),
  30005. name: "Side (Slim)",
  30006. image: {
  30007. source: "./media/characters/issilora/side-slim.svg",
  30008. extra: 570 / 480,
  30009. bottom: 30 / 600
  30010. }
  30011. },
  30012. backSlim: {
  30013. height: math.unit(7, "feet"),
  30014. name: "Back (Slim)",
  30015. image: {
  30016. source: "./media/characters/issilora/back-slim.svg",
  30017. extra: 537 / 455,
  30018. bottom: 46 / 583
  30019. }
  30020. },
  30021. frontBuff: {
  30022. height: math.unit(7, "feet"),
  30023. name: "Front (Buff)",
  30024. image: {
  30025. source: "./media/characters/issilora/front-buff.svg",
  30026. extra: 2310 / 2035,
  30027. bottom: 335 / 2645
  30028. }
  30029. },
  30030. head: {
  30031. height: math.unit(1.94, "feet"),
  30032. name: "Head",
  30033. image: {
  30034. source: "./media/characters/issilora/head.svg"
  30035. }
  30036. },
  30037. },
  30038. [
  30039. {
  30040. name: "Minimum",
  30041. height: math.unit(7, "feet")
  30042. },
  30043. {
  30044. name: "Comfortable",
  30045. height: math.unit(17, "feet")
  30046. },
  30047. {
  30048. name: "Fun Size",
  30049. height: math.unit(47, "feet")
  30050. },
  30051. {
  30052. name: "Natural Macro",
  30053. height: math.unit(137, "feet"),
  30054. default: true
  30055. },
  30056. {
  30057. name: "Maximum Kaiju",
  30058. height: math.unit(397, "feet")
  30059. },
  30060. ]
  30061. ))
  30062. characterMakers.push(() => makeCharacter(
  30063. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30064. {
  30065. front: {
  30066. height: math.unit(50 + 9/12, "feet"),
  30067. weight: math.unit(32.8, "tons"),
  30068. name: "Front",
  30069. image: {
  30070. source: "./media/characters/irb'iiritaahn/front.svg",
  30071. extra: 1878/1826,
  30072. bottom: 326/2204
  30073. }
  30074. },
  30075. back: {
  30076. height: math.unit(50 + 9/12, "feet"),
  30077. weight: math.unit(32.8, "tons"),
  30078. name: "Back",
  30079. image: {
  30080. source: "./media/characters/irb'iiritaahn/back.svg",
  30081. extra: 2052/2018,
  30082. bottom: 152/2204
  30083. }
  30084. },
  30085. head: {
  30086. height: math.unit(12.86, "feet"),
  30087. name: "Head",
  30088. image: {
  30089. source: "./media/characters/irb'iiritaahn/head.svg"
  30090. }
  30091. },
  30092. maw: {
  30093. height: math.unit(9.66, "feet"),
  30094. name: "Maw",
  30095. image: {
  30096. source: "./media/characters/irb'iiritaahn/maw.svg"
  30097. }
  30098. },
  30099. frontDick: {
  30100. height: math.unit(8.78461, "feet"),
  30101. name: "Front Dick",
  30102. image: {
  30103. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30104. }
  30105. },
  30106. rearDick: {
  30107. height: math.unit(8.78461, "feet"),
  30108. name: "Rear Dick",
  30109. image: {
  30110. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30111. }
  30112. },
  30113. rearDickUnfolded: {
  30114. height: math.unit(8.78, "feet"),
  30115. name: "Rear Dick (Unfolded)",
  30116. image: {
  30117. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30118. }
  30119. },
  30120. wings: {
  30121. height: math.unit(43, "feet"),
  30122. name: "Wings",
  30123. image: {
  30124. source: "./media/characters/irb'iiritaahn/wings.svg"
  30125. }
  30126. },
  30127. },
  30128. [
  30129. {
  30130. name: "Macro",
  30131. height: math.unit(50 + 9/12, "feet"),
  30132. default: true
  30133. },
  30134. ]
  30135. ))
  30136. characterMakers.push(() => makeCharacter(
  30137. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30138. {
  30139. front: {
  30140. height: math.unit(205, "cm"),
  30141. weight: math.unit(102, "kg"),
  30142. name: "Front",
  30143. image: {
  30144. source: "./media/characters/irbisgreif/front.svg",
  30145. extra: 785/706,
  30146. bottom: 13/798
  30147. }
  30148. },
  30149. back: {
  30150. height: math.unit(205, "cm"),
  30151. weight: math.unit(102, "kg"),
  30152. name: "Back",
  30153. image: {
  30154. source: "./media/characters/irbisgreif/back.svg",
  30155. extra: 713/701,
  30156. bottom: 26/739
  30157. }
  30158. },
  30159. frontDressed: {
  30160. height: math.unit(216, "cm"),
  30161. weight: math.unit(102, "kg"),
  30162. name: "Front-dressed",
  30163. image: {
  30164. source: "./media/characters/irbisgreif/front-dressed.svg",
  30165. extra: 902/776,
  30166. bottom: 14/916
  30167. }
  30168. },
  30169. sideDressed: {
  30170. height: math.unit(195, "cm"),
  30171. weight: math.unit(102, "kg"),
  30172. name: "Side-dressed",
  30173. image: {
  30174. source: "./media/characters/irbisgreif/side-dressed.svg",
  30175. extra: 788/688,
  30176. bottom: 21/809
  30177. }
  30178. },
  30179. backDressed: {
  30180. height: math.unit(216, "cm"),
  30181. weight: math.unit(102, "kg"),
  30182. name: "Back-dressed",
  30183. image: {
  30184. source: "./media/characters/irbisgreif/back-dressed.svg",
  30185. extra: 901/783,
  30186. bottom: 10/911
  30187. }
  30188. },
  30189. dick: {
  30190. height: math.unit(0.49, "feet"),
  30191. name: "Dick",
  30192. image: {
  30193. source: "./media/characters/irbisgreif/dick.svg"
  30194. }
  30195. },
  30196. wingTop: {
  30197. height: math.unit(1.93 , "feet"),
  30198. name: "Wing-top",
  30199. image: {
  30200. source: "./media/characters/irbisgreif/wing-top.svg"
  30201. }
  30202. },
  30203. wingBottom: {
  30204. height: math.unit(1.93 , "feet"),
  30205. name: "Wing-bottom",
  30206. image: {
  30207. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30208. }
  30209. },
  30210. },
  30211. [
  30212. {
  30213. name: "Normal",
  30214. height: math.unit(216, "cm"),
  30215. default: true
  30216. },
  30217. ]
  30218. ))
  30219. characterMakers.push(() => makeCharacter(
  30220. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30221. {
  30222. front: {
  30223. height: math.unit(6, "feet"),
  30224. weight: math.unit(150, "lb"),
  30225. name: "Front",
  30226. image: {
  30227. source: "./media/characters/pride/front.svg",
  30228. extra: 1299/1230,
  30229. bottom: 18/1317
  30230. }
  30231. },
  30232. },
  30233. [
  30234. {
  30235. name: "Normal",
  30236. height: math.unit(7, "feet")
  30237. },
  30238. {
  30239. name: "Mini-macro",
  30240. height: math.unit(11, "feet")
  30241. },
  30242. {
  30243. name: "Macro",
  30244. height: math.unit(15, "meters"),
  30245. default: true
  30246. },
  30247. {
  30248. name: "Macro+",
  30249. height: math.unit(40, "meters")
  30250. },
  30251. ]
  30252. ))
  30253. characterMakers.push(() => makeCharacter(
  30254. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30255. {
  30256. front: {
  30257. height: math.unit(4 + 2 / 12, "feet"),
  30258. weight: math.unit(95, "lb"),
  30259. name: "Front",
  30260. image: {
  30261. source: "./media/characters/vaelophis-nyx/front.svg",
  30262. extra: 2532/2330,
  30263. bottom: 0/2532
  30264. }
  30265. },
  30266. back: {
  30267. height: math.unit(4 + 2 / 12, "feet"),
  30268. weight: math.unit(95, "lb"),
  30269. name: "Back",
  30270. image: {
  30271. source: "./media/characters/vaelophis-nyx/back.svg",
  30272. extra: 2484/2361,
  30273. bottom: 0/2484
  30274. }
  30275. },
  30276. feralSide: {
  30277. height: math.unit(2 + 1/12, "feet"),
  30278. weight: math.unit(20, "lb"),
  30279. name: "Feral (Side)",
  30280. image: {
  30281. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30282. extra: 1721/1581,
  30283. bottom: 70/1791
  30284. }
  30285. },
  30286. feralLazing: {
  30287. height: math.unit(1.08, "feet"),
  30288. weight: math.unit(20, "lb"),
  30289. name: "Feral (Lazing)",
  30290. image: {
  30291. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30292. extra: 822/822,
  30293. bottom: 248/1070
  30294. }
  30295. },
  30296. ear: {
  30297. height: math.unit(0.416, "feet"),
  30298. name: "Ear",
  30299. image: {
  30300. source: "./media/characters/vaelophis-nyx/ear.svg"
  30301. }
  30302. },
  30303. eye: {
  30304. height: math.unit(0.0748, "feet"),
  30305. name: "Eye",
  30306. image: {
  30307. source: "./media/characters/vaelophis-nyx/eye.svg"
  30308. }
  30309. },
  30310. mouth: {
  30311. height: math.unit(0.378, "feet"),
  30312. name: "Mouth",
  30313. image: {
  30314. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30315. }
  30316. },
  30317. spade: {
  30318. height: math.unit(0.55, "feet"),
  30319. name: "Spade",
  30320. image: {
  30321. source: "./media/characters/vaelophis-nyx/spade.svg"
  30322. }
  30323. },
  30324. },
  30325. [
  30326. {
  30327. name: "Normal",
  30328. height: math.unit(4 + 2/12, "feet"),
  30329. default: true
  30330. },
  30331. ]
  30332. ))
  30333. characterMakers.push(() => makeCharacter(
  30334. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30335. {
  30336. front: {
  30337. height: math.unit(7, "feet"),
  30338. weight: math.unit(231, "lb"),
  30339. name: "Front",
  30340. image: {
  30341. source: "./media/characters/flux/front.svg",
  30342. extra: 919/871,
  30343. bottom: 0/919
  30344. }
  30345. },
  30346. back: {
  30347. height: math.unit(7, "feet"),
  30348. weight: math.unit(231, "lb"),
  30349. name: "Back",
  30350. image: {
  30351. source: "./media/characters/flux/back.svg",
  30352. extra: 1040/992,
  30353. bottom: 0/1040
  30354. }
  30355. },
  30356. frontDressed: {
  30357. height: math.unit(7, "feet"),
  30358. weight: math.unit(231, "lb"),
  30359. name: "Front (Dressed)",
  30360. image: {
  30361. source: "./media/characters/flux/front-dressed.svg",
  30362. extra: 919/871,
  30363. bottom: 0/919
  30364. }
  30365. },
  30366. feralSide: {
  30367. height: math.unit(5, "feet"),
  30368. weight: math.unit(150, "lb"),
  30369. name: "Feral (Side)",
  30370. image: {
  30371. source: "./media/characters/flux/feral-side.svg",
  30372. extra: 598/528,
  30373. bottom: 28/626
  30374. }
  30375. },
  30376. head: {
  30377. height: math.unit(1.585, "feet"),
  30378. name: "Head",
  30379. image: {
  30380. source: "./media/characters/flux/head.svg"
  30381. }
  30382. },
  30383. headSide: {
  30384. height: math.unit(1.74, "feet"),
  30385. name: "Head (Side)",
  30386. image: {
  30387. source: "./media/characters/flux/head-side.svg"
  30388. }
  30389. },
  30390. headSideFire: {
  30391. height: math.unit(1.76, "feet"),
  30392. name: "Head (Side, Fire)",
  30393. image: {
  30394. source: "./media/characters/flux/head-side-fire.svg"
  30395. }
  30396. },
  30397. },
  30398. [
  30399. {
  30400. name: "Normal",
  30401. height: math.unit(7, "feet"),
  30402. default: true
  30403. },
  30404. ]
  30405. ))
  30406. characterMakers.push(() => makeCharacter(
  30407. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30408. {
  30409. front: {
  30410. height: math.unit(9, "feet"),
  30411. weight: math.unit(1012, "lb"),
  30412. name: "Front",
  30413. image: {
  30414. source: "./media/characters/ulfra-lupae/front.svg",
  30415. extra: 1083/1011,
  30416. bottom: 67/1150
  30417. }
  30418. },
  30419. },
  30420. [
  30421. {
  30422. name: "Micro",
  30423. height: math.unit(6, "inches")
  30424. },
  30425. {
  30426. name: "Socializing",
  30427. height: math.unit(6 + 5/12, "feet")
  30428. },
  30429. {
  30430. name: "Normal",
  30431. height: math.unit(9, "feet"),
  30432. default: true
  30433. },
  30434. {
  30435. name: "Macro",
  30436. height: math.unit(150, "feet")
  30437. },
  30438. ]
  30439. ))
  30440. characterMakers.push(() => makeCharacter(
  30441. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30442. {
  30443. front: {
  30444. height: math.unit(5 + 2/12, "feet"),
  30445. weight: math.unit(120, "lb"),
  30446. name: "Front",
  30447. image: {
  30448. source: "./media/characters/timber/front.svg",
  30449. extra: 2814/2705,
  30450. bottom: 181/2995
  30451. }
  30452. },
  30453. },
  30454. [
  30455. {
  30456. name: "Normal",
  30457. height: math.unit(5 + 2/12, "feet"),
  30458. default: true
  30459. },
  30460. ]
  30461. ))
  30462. characterMakers.push(() => makeCharacter(
  30463. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30464. {
  30465. front: {
  30466. height: math.unit(5 + 7/12, "feet"),
  30467. weight: math.unit(220, "lb"),
  30468. name: "Front",
  30469. image: {
  30470. source: "./media/characters/nicki/front.svg",
  30471. extra: 453/419,
  30472. bottom: 7/460
  30473. }
  30474. },
  30475. frontAlt: {
  30476. height: math.unit(5 + 7/12, "feet"),
  30477. weight: math.unit(220, "lb"),
  30478. name: "Front-alt",
  30479. image: {
  30480. source: "./media/characters/nicki/front-alt.svg",
  30481. extra: 435/411,
  30482. bottom: 12/447
  30483. }
  30484. },
  30485. back: {
  30486. height: math.unit(5 + 7/12, "feet"),
  30487. weight: math.unit(220, "lb"),
  30488. name: "Back",
  30489. image: {
  30490. source: "./media/characters/nicki/back.svg",
  30491. extra: 440/413,
  30492. bottom: 19/459
  30493. }
  30494. },
  30495. taur: {
  30496. height: math.unit(7 + 6/12, "feet"),
  30497. weight: math.unit(700, "lb"),
  30498. name: "Taur",
  30499. image: {
  30500. source: "./media/characters/nicki/taur.svg",
  30501. extra: 975/773,
  30502. bottom: 0/975
  30503. }
  30504. },
  30505. frontNsfw: {
  30506. height: math.unit(5 + 7/12, "feet"),
  30507. weight: math.unit(220, "lb"),
  30508. name: "Front (NSFW)",
  30509. image: {
  30510. source: "./media/characters/nicki/front-nsfw.svg",
  30511. extra: 453/419,
  30512. bottom: 7/460
  30513. }
  30514. },
  30515. frontNsfwAlt: {
  30516. height: math.unit(5 + 7/12, "feet"),
  30517. weight: math.unit(220, "lb"),
  30518. name: "Front (Alt, NSFW)",
  30519. image: {
  30520. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30521. extra: 435/411,
  30522. bottom: 12/447
  30523. }
  30524. },
  30525. backNsfw: {
  30526. height: math.unit(5 + 7/12, "feet"),
  30527. weight: math.unit(220, "lb"),
  30528. name: "Back (NSFW)",
  30529. image: {
  30530. source: "./media/characters/nicki/back-nsfw.svg",
  30531. extra: 440/413,
  30532. bottom: 19/459
  30533. }
  30534. },
  30535. head: {
  30536. height: math.unit(2.1, "feet"),
  30537. name: "Head",
  30538. image: {
  30539. source: "./media/characters/nicki/head.svg"
  30540. }
  30541. },
  30542. paw: {
  30543. height: math.unit(1.88, "feet"),
  30544. name: "Paw",
  30545. image: {
  30546. source: "./media/characters/nicki/paw.svg"
  30547. }
  30548. },
  30549. },
  30550. [
  30551. {
  30552. name: "Normal",
  30553. height: math.unit(5 + 7/12, "feet"),
  30554. default: true
  30555. },
  30556. ]
  30557. ))
  30558. characterMakers.push(() => makeCharacter(
  30559. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30560. {
  30561. front: {
  30562. height: math.unit(7 + 10/12, "feet"),
  30563. weight: math.unit(3.5, "tons"),
  30564. name: "Front",
  30565. image: {
  30566. source: "./media/characters/lee/front.svg",
  30567. extra: 1773/1615,
  30568. bottom: 86/1859
  30569. }
  30570. },
  30571. hand: {
  30572. height: math.unit(1.78, "feet"),
  30573. name: "Hand",
  30574. image: {
  30575. source: "./media/characters/lee/hand.svg"
  30576. }
  30577. },
  30578. maw: {
  30579. height: math.unit(1.18, "feet"),
  30580. name: "Maw",
  30581. image: {
  30582. source: "./media/characters/lee/maw.svg"
  30583. }
  30584. },
  30585. },
  30586. [
  30587. {
  30588. name: "Normal",
  30589. height: math.unit(7 + 10/12, "feet"),
  30590. default: true
  30591. },
  30592. ]
  30593. ))
  30594. characterMakers.push(() => makeCharacter(
  30595. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30596. {
  30597. front: {
  30598. height: math.unit(9, "feet"),
  30599. name: "Front",
  30600. image: {
  30601. source: "./media/characters/guti/front.svg",
  30602. extra: 4551/4355,
  30603. bottom: 123/4674
  30604. }
  30605. },
  30606. tongue: {
  30607. height: math.unit(1, "feet"),
  30608. name: "Tongue",
  30609. image: {
  30610. source: "./media/characters/guti/tongue.svg"
  30611. }
  30612. },
  30613. paw: {
  30614. height: math.unit(1.18, "feet"),
  30615. name: "Paw",
  30616. image: {
  30617. source: "./media/characters/guti/paw.svg"
  30618. }
  30619. },
  30620. },
  30621. [
  30622. {
  30623. name: "Normal",
  30624. height: math.unit(9, "feet"),
  30625. default: true
  30626. },
  30627. ]
  30628. ))
  30629. characterMakers.push(() => makeCharacter(
  30630. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30631. {
  30632. side: {
  30633. height: math.unit(5, "meters"),
  30634. name: "Side",
  30635. image: {
  30636. source: "./media/characters/vesper/side.svg",
  30637. extra: 1605/1518,
  30638. bottom: 0/1605
  30639. }
  30640. },
  30641. },
  30642. [
  30643. {
  30644. name: "Small",
  30645. height: math.unit(5, "meters")
  30646. },
  30647. {
  30648. name: "Sage",
  30649. height: math.unit(100, "meters"),
  30650. default: true
  30651. },
  30652. {
  30653. name: "Fun Size",
  30654. height: math.unit(600, "meters")
  30655. },
  30656. {
  30657. name: "Goddess",
  30658. height: math.unit(20000, "km")
  30659. },
  30660. {
  30661. name: "Maximum",
  30662. height: math.unit(5, "galaxies")
  30663. },
  30664. ]
  30665. ))
  30666. characterMakers.push(() => makeCharacter(
  30667. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30668. {
  30669. front: {
  30670. height: math.unit(6 + 3/12, "feet"),
  30671. weight: math.unit(190, "lb"),
  30672. name: "Front",
  30673. image: {
  30674. source: "./media/characters/gawain/front.svg",
  30675. extra: 2222/2139,
  30676. bottom: 90/2312
  30677. }
  30678. },
  30679. back: {
  30680. height: math.unit(6 + 3/12, "feet"),
  30681. weight: math.unit(190, "lb"),
  30682. name: "Back",
  30683. image: {
  30684. source: "./media/characters/gawain/back.svg",
  30685. extra: 2199/2111,
  30686. bottom: 73/2272
  30687. }
  30688. },
  30689. },
  30690. [
  30691. {
  30692. name: "Normal",
  30693. height: math.unit(6 + 3/12, "feet"),
  30694. default: true
  30695. },
  30696. ]
  30697. ))
  30698. characterMakers.push(() => makeCharacter(
  30699. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30700. {
  30701. side: {
  30702. height: math.unit(3.5, "meters"),
  30703. weight: math.unit(16000, "lb"),
  30704. name: "Side",
  30705. image: {
  30706. source: "./media/characters/dascalti/side.svg",
  30707. extra: 392/273,
  30708. bottom: 47/439
  30709. }
  30710. },
  30711. breath: {
  30712. height: math.unit(7.4, "feet"),
  30713. name: "Breath",
  30714. image: {
  30715. source: "./media/characters/dascalti/breath.svg"
  30716. }
  30717. },
  30718. fed: {
  30719. height: math.unit(3.6, "meters"),
  30720. weight: math.unit(16000, "lb"),
  30721. name: "Fed",
  30722. image: {
  30723. source: "./media/characters/dascalti/fed.svg",
  30724. extra: 1419/820,
  30725. bottom: 95/1514
  30726. }
  30727. },
  30728. },
  30729. [
  30730. {
  30731. name: "Normal",
  30732. height: math.unit(3.5, "meters"),
  30733. default: true
  30734. },
  30735. ]
  30736. ))
  30737. characterMakers.push(() => makeCharacter(
  30738. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30739. {
  30740. front: {
  30741. height: math.unit(3 + 5/12, "feet"),
  30742. name: "Front",
  30743. image: {
  30744. source: "./media/characters/mauve/front.svg",
  30745. extra: 1126/1033,
  30746. bottom: 65/1191
  30747. }
  30748. },
  30749. side: {
  30750. height: math.unit(3 + 5/12, "feet"),
  30751. name: "Side",
  30752. image: {
  30753. source: "./media/characters/mauve/side.svg",
  30754. extra: 1089/1001,
  30755. bottom: 29/1118
  30756. }
  30757. },
  30758. back: {
  30759. height: math.unit(3 + 5/12, "feet"),
  30760. name: "Back",
  30761. image: {
  30762. source: "./media/characters/mauve/back.svg",
  30763. extra: 1173/1053,
  30764. bottom: 109/1282
  30765. }
  30766. },
  30767. },
  30768. [
  30769. {
  30770. name: "Normal",
  30771. height: math.unit(3 + 5/12, "feet"),
  30772. default: true
  30773. },
  30774. ]
  30775. ))
  30776. characterMakers.push(() => makeCharacter(
  30777. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30778. {
  30779. front: {
  30780. height: math.unit(6 + 3/12, "feet"),
  30781. weight: math.unit(430, "lb"),
  30782. name: "Front",
  30783. image: {
  30784. source: "./media/characters/carlos/front.svg",
  30785. extra: 1964/1913,
  30786. bottom: 70/2034
  30787. }
  30788. },
  30789. },
  30790. [
  30791. {
  30792. name: "Normal",
  30793. height: math.unit(6 + 3/12, "feet"),
  30794. default: true
  30795. },
  30796. ]
  30797. ))
  30798. characterMakers.push(() => makeCharacter(
  30799. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30800. {
  30801. back: {
  30802. height: math.unit(5 + 10/12, "feet"),
  30803. weight: math.unit(200, "lb"),
  30804. name: "Back",
  30805. image: {
  30806. source: "./media/characters/jax/back.svg",
  30807. extra: 764/739,
  30808. bottom: 25/789
  30809. }
  30810. },
  30811. },
  30812. [
  30813. {
  30814. name: "Normal",
  30815. height: math.unit(5 + 10/12, "feet"),
  30816. default: true
  30817. },
  30818. ]
  30819. ))
  30820. characterMakers.push(() => makeCharacter(
  30821. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30822. {
  30823. front: {
  30824. height: math.unit(8, "feet"),
  30825. weight: math.unit(250, "lb"),
  30826. name: "Front",
  30827. image: {
  30828. source: "./media/characters/eikthynir/front.svg",
  30829. extra: 1332/1166,
  30830. bottom: 82/1414
  30831. }
  30832. },
  30833. back: {
  30834. height: math.unit(8, "feet"),
  30835. weight: math.unit(250, "lb"),
  30836. name: "Back",
  30837. image: {
  30838. source: "./media/characters/eikthynir/back.svg",
  30839. extra: 1342/1190,
  30840. bottom: 19/1361
  30841. }
  30842. },
  30843. dick: {
  30844. height: math.unit(2.35, "feet"),
  30845. name: "Dick",
  30846. image: {
  30847. source: "./media/characters/eikthynir/dick.svg"
  30848. }
  30849. },
  30850. },
  30851. [
  30852. {
  30853. name: "Normal",
  30854. height: math.unit(8, "feet"),
  30855. default: true
  30856. },
  30857. ]
  30858. ))
  30859. characterMakers.push(() => makeCharacter(
  30860. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30861. {
  30862. front: {
  30863. height: math.unit(99, "meters"),
  30864. weight: math.unit(13000, "tons"),
  30865. name: "Front",
  30866. image: {
  30867. source: "./media/characters/zlmos/front.svg",
  30868. extra: 2202/1992,
  30869. bottom: 315/2517
  30870. }
  30871. },
  30872. },
  30873. [
  30874. {
  30875. name: "Macro",
  30876. height: math.unit(99, "meters"),
  30877. default: true
  30878. },
  30879. ]
  30880. ))
  30881. characterMakers.push(() => makeCharacter(
  30882. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30883. {
  30884. front: {
  30885. height: math.unit(6 + 5/12, "feet"),
  30886. name: "Front",
  30887. image: {
  30888. source: "./media/characters/purri/front.svg",
  30889. extra: 1698/1610,
  30890. bottom: 32/1730
  30891. }
  30892. },
  30893. frontAlt: {
  30894. height: math.unit(6 + 5/12, "feet"),
  30895. name: "Front (Alt)",
  30896. image: {
  30897. source: "./media/characters/purri/front-alt.svg",
  30898. extra: 450/420,
  30899. bottom: 26/476
  30900. }
  30901. },
  30902. boots: {
  30903. height: math.unit(5.5, "feet"),
  30904. name: "Boots",
  30905. image: {
  30906. source: "./media/characters/purri/boots.svg",
  30907. extra: 905/853,
  30908. bottom: 18/923
  30909. }
  30910. },
  30911. lying: {
  30912. height: math.unit(2, "feet"),
  30913. name: "Lying",
  30914. image: {
  30915. source: "./media/characters/purri/lying.svg",
  30916. extra: 940/843,
  30917. bottom: 146/1086
  30918. }
  30919. },
  30920. devious: {
  30921. height: math.unit(1.77, "feet"),
  30922. name: "Devious",
  30923. image: {
  30924. source: "./media/characters/purri/devious.svg",
  30925. extra: 1440/1155,
  30926. bottom: 147/1587
  30927. }
  30928. },
  30929. bean: {
  30930. height: math.unit(1.94, "feet"),
  30931. name: "Bean",
  30932. image: {
  30933. source: "./media/characters/purri/bean.svg"
  30934. }
  30935. },
  30936. },
  30937. [
  30938. {
  30939. name: "Micro",
  30940. height: math.unit(1, "mm")
  30941. },
  30942. {
  30943. name: "Normal",
  30944. height: math.unit(6 + 5/12, "feet"),
  30945. default: true
  30946. },
  30947. {
  30948. name: "Macro :3c",
  30949. height: math.unit(2, "miles")
  30950. },
  30951. ]
  30952. ))
  30953. characterMakers.push(() => makeCharacter(
  30954. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30955. {
  30956. front: {
  30957. height: math.unit(6 + 2/12, "feet"),
  30958. weight: math.unit(250, "lb"),
  30959. name: "Front",
  30960. image: {
  30961. source: "./media/characters/moonlight/front.svg",
  30962. extra: 1044/908,
  30963. bottom: 56/1100
  30964. }
  30965. },
  30966. feral: {
  30967. height: math.unit(3 + 1/12, "feet"),
  30968. weight: math.unit(50, "kg"),
  30969. name: "Feral",
  30970. image: {
  30971. source: "./media/characters/moonlight/feral.svg",
  30972. extra: 3705/2791,
  30973. bottom: 145/3850
  30974. }
  30975. },
  30976. paw: {
  30977. height: math.unit(1, "feet"),
  30978. name: "Paw",
  30979. image: {
  30980. source: "./media/characters/moonlight/paw.svg"
  30981. }
  30982. },
  30983. paws: {
  30984. height: math.unit(0.98, "feet"),
  30985. name: "Paws",
  30986. image: {
  30987. source: "./media/characters/moonlight/paws.svg",
  30988. extra: 939/939,
  30989. bottom: 50/989
  30990. }
  30991. },
  30992. mouth: {
  30993. height: math.unit(0.48, "feet"),
  30994. name: "Mouth",
  30995. image: {
  30996. source: "./media/characters/moonlight/mouth.svg"
  30997. }
  30998. },
  30999. dick: {
  31000. height: math.unit(1.46, "feet"),
  31001. name: "Dick",
  31002. image: {
  31003. source: "./media/characters/moonlight/dick.svg"
  31004. }
  31005. },
  31006. },
  31007. [
  31008. {
  31009. name: "Normal",
  31010. height: math.unit(6 + 2/12, "feet"),
  31011. default: true
  31012. },
  31013. {
  31014. name: "Macro",
  31015. height: math.unit(300, "feet")
  31016. },
  31017. {
  31018. name: "Macro+",
  31019. height: math.unit(1, "mile")
  31020. },
  31021. {
  31022. name: "Mt. Moon",
  31023. height: math.unit(5, "miles")
  31024. },
  31025. {
  31026. name: "Megamacro",
  31027. height: math.unit(15, "miles")
  31028. },
  31029. ]
  31030. ))
  31031. characterMakers.push(() => makeCharacter(
  31032. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31033. {
  31034. back: {
  31035. height: math.unit(6, "feet"),
  31036. weight: math.unit(150, "lb"),
  31037. name: "Back",
  31038. image: {
  31039. source: "./media/characters/sylen/back.svg",
  31040. extra: 1335/1273,
  31041. bottom: 107/1442
  31042. }
  31043. },
  31044. },
  31045. [
  31046. {
  31047. name: "Normal",
  31048. height: math.unit(5 + 5/12, "feet")
  31049. },
  31050. {
  31051. name: "Megamacro",
  31052. height: math.unit(3, "miles"),
  31053. default: true
  31054. },
  31055. ]
  31056. ))
  31057. characterMakers.push(() => makeCharacter(
  31058. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31059. {
  31060. front: {
  31061. height: math.unit(6, "feet"),
  31062. weight: math.unit(190, "lb"),
  31063. name: "Front",
  31064. image: {
  31065. source: "./media/characters/huttser/front.svg",
  31066. extra: 1152/1058,
  31067. bottom: 23/1175
  31068. }
  31069. },
  31070. side: {
  31071. height: math.unit(6, "feet"),
  31072. weight: math.unit(190, "lb"),
  31073. name: "Side",
  31074. image: {
  31075. source: "./media/characters/huttser/side.svg",
  31076. extra: 1174/1065,
  31077. bottom: 18/1192
  31078. }
  31079. },
  31080. back: {
  31081. height: math.unit(6, "feet"),
  31082. weight: math.unit(190, "lb"),
  31083. name: "Back",
  31084. image: {
  31085. source: "./media/characters/huttser/back.svg",
  31086. extra: 1158/1056,
  31087. bottom: 12/1170
  31088. }
  31089. },
  31090. },
  31091. [
  31092. ]
  31093. ))
  31094. characterMakers.push(() => makeCharacter(
  31095. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31096. {
  31097. side: {
  31098. height: math.unit(12 + 9/12, "feet"),
  31099. weight: math.unit(15000, "lb"),
  31100. name: "Side",
  31101. image: {
  31102. source: "./media/characters/faan/side.svg",
  31103. extra: 2747/2697,
  31104. bottom: 0/2747
  31105. }
  31106. },
  31107. front: {
  31108. height: math.unit(12 + 9/12, "feet"),
  31109. weight: math.unit(15000, "lb"),
  31110. name: "Front",
  31111. image: {
  31112. source: "./media/characters/faan/front.svg",
  31113. extra: 607/571,
  31114. bottom: 24/631
  31115. }
  31116. },
  31117. head: {
  31118. height: math.unit(2.85, "feet"),
  31119. name: "Head",
  31120. image: {
  31121. source: "./media/characters/faan/head.svg"
  31122. }
  31123. },
  31124. headAlt: {
  31125. height: math.unit(3.13, "feet"),
  31126. name: "Head-alt",
  31127. image: {
  31128. source: "./media/characters/faan/head-alt.svg"
  31129. }
  31130. },
  31131. },
  31132. [
  31133. {
  31134. name: "Normal",
  31135. height: math.unit(12 + 9/12, "feet"),
  31136. default: true
  31137. },
  31138. ]
  31139. ))
  31140. characterMakers.push(() => makeCharacter(
  31141. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31142. {
  31143. front: {
  31144. height: math.unit(6, "feet"),
  31145. weight: math.unit(300, "lb"),
  31146. name: "Front",
  31147. image: {
  31148. source: "./media/characters/tanio/front.svg",
  31149. extra: 711/673,
  31150. bottom: 25/736
  31151. }
  31152. },
  31153. },
  31154. [
  31155. {
  31156. name: "Normal",
  31157. height: math.unit(6, "feet"),
  31158. default: true
  31159. },
  31160. ]
  31161. ))
  31162. characterMakers.push(() => makeCharacter(
  31163. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31164. {
  31165. front: {
  31166. height: math.unit(3, "inches"),
  31167. name: "Front",
  31168. image: {
  31169. source: "./media/characters/noboru/front.svg",
  31170. extra: 1039/932,
  31171. bottom: 18/1057
  31172. }
  31173. },
  31174. },
  31175. [
  31176. {
  31177. name: "Micro",
  31178. height: math.unit(3, "inches"),
  31179. default: true
  31180. },
  31181. ]
  31182. ))
  31183. characterMakers.push(() => makeCharacter(
  31184. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31185. {
  31186. front: {
  31187. height: math.unit(1.85, "meters"),
  31188. weight: math.unit(80, "kg"),
  31189. name: "Front",
  31190. image: {
  31191. source: "./media/characters/daniel-barrett/front.svg",
  31192. extra: 355/337,
  31193. bottom: 9/364
  31194. }
  31195. },
  31196. },
  31197. [
  31198. {
  31199. name: "Pico",
  31200. height: math.unit(0.0433, "mm")
  31201. },
  31202. {
  31203. name: "Nano",
  31204. height: math.unit(1.5, "mm")
  31205. },
  31206. {
  31207. name: "Micro",
  31208. height: math.unit(5.3, "cm"),
  31209. default: true
  31210. },
  31211. {
  31212. name: "Normal",
  31213. height: math.unit(1.85, "meters")
  31214. },
  31215. {
  31216. name: "Macro",
  31217. height: math.unit(64.7, "meters")
  31218. },
  31219. {
  31220. name: "Megamacro",
  31221. height: math.unit(2.26, "km")
  31222. },
  31223. {
  31224. name: "Gigamacro",
  31225. height: math.unit(79, "km")
  31226. },
  31227. {
  31228. name: "Teramacro",
  31229. height: math.unit(2765, "km")
  31230. },
  31231. {
  31232. name: "Petamacro",
  31233. height: math.unit(96678, "km")
  31234. },
  31235. ]
  31236. ))
  31237. characterMakers.push(() => makeCharacter(
  31238. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31239. {
  31240. front: {
  31241. height: math.unit(30, "meters"),
  31242. weight: math.unit(400, "tons"),
  31243. name: "Front",
  31244. image: {
  31245. source: "./media/characters/zeel/front.svg",
  31246. extra: 2599/2599,
  31247. bottom: 226/2825
  31248. }
  31249. },
  31250. },
  31251. [
  31252. {
  31253. name: "Macro",
  31254. height: math.unit(30, "meters"),
  31255. default: true
  31256. },
  31257. ]
  31258. ))
  31259. characterMakers.push(() => makeCharacter(
  31260. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31261. {
  31262. front: {
  31263. height: math.unit(6 + 7/12, "feet"),
  31264. weight: math.unit(210, "lb"),
  31265. name: "Front",
  31266. image: {
  31267. source: "./media/characters/tarn/front.svg",
  31268. extra: 3517/3220,
  31269. bottom: 91/3608
  31270. }
  31271. },
  31272. back: {
  31273. height: math.unit(6 + 7/12, "feet"),
  31274. weight: math.unit(210, "lb"),
  31275. name: "Back",
  31276. image: {
  31277. source: "./media/characters/tarn/back.svg",
  31278. extra: 3566/3241,
  31279. bottom: 34/3600
  31280. }
  31281. },
  31282. dick: {
  31283. height: math.unit(1.65, "feet"),
  31284. name: "Dick",
  31285. image: {
  31286. source: "./media/characters/tarn/dick.svg"
  31287. }
  31288. },
  31289. paw: {
  31290. height: math.unit(1.80, "feet"),
  31291. name: "Paw",
  31292. image: {
  31293. source: "./media/characters/tarn/paw.svg"
  31294. }
  31295. },
  31296. tongue: {
  31297. height: math.unit(0.97, "feet"),
  31298. name: "Tongue",
  31299. image: {
  31300. source: "./media/characters/tarn/tongue.svg"
  31301. }
  31302. },
  31303. },
  31304. [
  31305. {
  31306. name: "Micro",
  31307. height: math.unit(4, "inches")
  31308. },
  31309. {
  31310. name: "Normal",
  31311. height: math.unit(6 + 7/12, "feet"),
  31312. default: true
  31313. },
  31314. {
  31315. name: "Macro",
  31316. height: math.unit(300, "feet")
  31317. },
  31318. ]
  31319. ))
  31320. characterMakers.push(() => makeCharacter(
  31321. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31322. {
  31323. front: {
  31324. height: math.unit(5 + 7/12, "feet"),
  31325. weight: math.unit(80, "kg"),
  31326. name: "Front",
  31327. image: {
  31328. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31329. extra: 3023/2865,
  31330. bottom: 33/3056
  31331. }
  31332. },
  31333. back: {
  31334. height: math.unit(5 + 7/12, "feet"),
  31335. weight: math.unit(80, "kg"),
  31336. name: "Back",
  31337. image: {
  31338. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31339. extra: 3020/2886,
  31340. bottom: 30/3050
  31341. }
  31342. },
  31343. dick: {
  31344. height: math.unit(0.98, "feet"),
  31345. name: "Dick",
  31346. image: {
  31347. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31348. }
  31349. },
  31350. anatomy: {
  31351. height: math.unit(2.86, "feet"),
  31352. name: "Anatomy",
  31353. image: {
  31354. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31355. }
  31356. },
  31357. },
  31358. [
  31359. {
  31360. name: "Really Small",
  31361. height: math.unit(2, "inches")
  31362. },
  31363. {
  31364. name: "Micro",
  31365. height: math.unit(5.583, "inches")
  31366. },
  31367. {
  31368. name: "Normal",
  31369. height: math.unit(5 + 7/12, "feet"),
  31370. default: true
  31371. },
  31372. {
  31373. name: "Macro",
  31374. height: math.unit(67, "feet")
  31375. },
  31376. {
  31377. name: "Megamacro",
  31378. height: math.unit(134, "feet")
  31379. },
  31380. ]
  31381. ))
  31382. characterMakers.push(() => makeCharacter(
  31383. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31384. {
  31385. front: {
  31386. height: math.unit(9, "feet"),
  31387. weight: math.unit(120, "lb"),
  31388. name: "Front",
  31389. image: {
  31390. source: "./media/characters/sally/front.svg",
  31391. extra: 1506/1349,
  31392. bottom: 66/1572
  31393. }
  31394. },
  31395. },
  31396. [
  31397. {
  31398. name: "Normal",
  31399. height: math.unit(9, "feet"),
  31400. default: true
  31401. },
  31402. ]
  31403. ))
  31404. characterMakers.push(() => makeCharacter(
  31405. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31406. {
  31407. front: {
  31408. height: math.unit(8, "feet"),
  31409. weight: math.unit(900, "lb"),
  31410. name: "Front",
  31411. image: {
  31412. source: "./media/characters/owen/front.svg",
  31413. extra: 1761/1657,
  31414. bottom: 74/1835
  31415. }
  31416. },
  31417. side: {
  31418. height: math.unit(8, "feet"),
  31419. weight: math.unit(900, "lb"),
  31420. name: "Side",
  31421. image: {
  31422. source: "./media/characters/owen/side.svg",
  31423. extra: 1797/1734,
  31424. bottom: 30/1827
  31425. }
  31426. },
  31427. back: {
  31428. height: math.unit(8, "feet"),
  31429. weight: math.unit(900, "lb"),
  31430. name: "Back",
  31431. image: {
  31432. source: "./media/characters/owen/back.svg",
  31433. extra: 1796/1706,
  31434. bottom: 59/1855
  31435. }
  31436. },
  31437. maw: {
  31438. height: math.unit(1.76, "feet"),
  31439. name: "Maw",
  31440. image: {
  31441. source: "./media/characters/owen/maw.svg"
  31442. }
  31443. },
  31444. },
  31445. [
  31446. {
  31447. name: "Normal",
  31448. height: math.unit(8, "feet"),
  31449. default: true
  31450. },
  31451. ]
  31452. ))
  31453. characterMakers.push(() => makeCharacter(
  31454. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31455. {
  31456. front: {
  31457. height: math.unit(4, "feet"),
  31458. weight: math.unit(400, "lb"),
  31459. name: "Front",
  31460. image: {
  31461. source: "./media/characters/ryth/front.svg",
  31462. extra: 876/691,
  31463. bottom: 25/901
  31464. }
  31465. },
  31466. goia: {
  31467. height: math.unit(12, "feet"),
  31468. weight: math.unit(10800, "lb"),
  31469. name: "Goia",
  31470. image: {
  31471. source: "./media/characters/ryth/goia.svg",
  31472. extra: 3450/3198,
  31473. bottom: 61/3511
  31474. }
  31475. },
  31476. },
  31477. [
  31478. {
  31479. name: "Normal",
  31480. height: math.unit(4, "feet"),
  31481. default: true
  31482. },
  31483. ]
  31484. ))
  31485. characterMakers.push(() => makeCharacter(
  31486. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31487. {
  31488. front: {
  31489. height: math.unit(7, "feet"),
  31490. weight: math.unit(180, "lb"),
  31491. name: "Front",
  31492. image: {
  31493. source: "./media/characters/necrolance/front.svg",
  31494. extra: 1062/947,
  31495. bottom: 41/1103
  31496. }
  31497. },
  31498. back: {
  31499. height: math.unit(7, "feet"),
  31500. weight: math.unit(180, "lb"),
  31501. name: "Back",
  31502. image: {
  31503. source: "./media/characters/necrolance/back.svg",
  31504. extra: 1045/984,
  31505. bottom: 14/1059
  31506. }
  31507. },
  31508. wing: {
  31509. height: math.unit(2.67, "feet"),
  31510. name: "Wing",
  31511. image: {
  31512. source: "./media/characters/necrolance/wing.svg"
  31513. }
  31514. },
  31515. },
  31516. [
  31517. {
  31518. name: "Normal",
  31519. height: math.unit(7, "feet"),
  31520. default: true
  31521. },
  31522. ]
  31523. ))
  31524. characterMakers.push(() => makeCharacter(
  31525. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31526. {
  31527. front: {
  31528. height: math.unit(76, "meters"),
  31529. weight: math.unit(30000, "tons"),
  31530. name: "Front",
  31531. image: {
  31532. source: "./media/characters/tyler/front.svg",
  31533. extra: 1640/1640,
  31534. bottom: 114/1754
  31535. }
  31536. },
  31537. },
  31538. [
  31539. {
  31540. name: "Macro",
  31541. height: math.unit(76, "meters"),
  31542. default: true
  31543. },
  31544. ]
  31545. ))
  31546. characterMakers.push(() => makeCharacter(
  31547. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31548. {
  31549. front: {
  31550. height: math.unit(4 + 11/12, "feet"),
  31551. weight: math.unit(132, "lb"),
  31552. name: "Front",
  31553. image: {
  31554. source: "./media/characters/icey/front.svg",
  31555. extra: 2750/2550,
  31556. bottom: 33/2783
  31557. }
  31558. },
  31559. back: {
  31560. height: math.unit(4 + 11/12, "feet"),
  31561. weight: math.unit(132, "lb"),
  31562. name: "Back",
  31563. image: {
  31564. source: "./media/characters/icey/back.svg",
  31565. extra: 2624/2481,
  31566. bottom: 35/2659
  31567. }
  31568. },
  31569. },
  31570. [
  31571. {
  31572. name: "Normal",
  31573. height: math.unit(4 + 11/12, "feet"),
  31574. default: true
  31575. },
  31576. ]
  31577. ))
  31578. characterMakers.push(() => makeCharacter(
  31579. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31580. {
  31581. front: {
  31582. height: math.unit(100, "feet"),
  31583. weight: math.unit(0, "lb"),
  31584. name: "Front",
  31585. image: {
  31586. source: "./media/characters/smile/front.svg",
  31587. extra: 2983/2912,
  31588. bottom: 162/3145
  31589. }
  31590. },
  31591. back: {
  31592. height: math.unit(100, "feet"),
  31593. weight: math.unit(0, "lb"),
  31594. name: "Back",
  31595. image: {
  31596. source: "./media/characters/smile/back.svg",
  31597. extra: 3143/3031,
  31598. bottom: 91/3234
  31599. }
  31600. },
  31601. head: {
  31602. height: math.unit(26.3, "feet"),
  31603. weight: math.unit(0, "lb"),
  31604. name: "Head",
  31605. image: {
  31606. source: "./media/characters/smile/head.svg"
  31607. }
  31608. },
  31609. collar: {
  31610. height: math.unit(5.3, "feet"),
  31611. weight: math.unit(0, "lb"),
  31612. name: "Collar",
  31613. image: {
  31614. source: "./media/characters/smile/collar.svg"
  31615. }
  31616. },
  31617. },
  31618. [
  31619. {
  31620. name: "Macro",
  31621. height: math.unit(100, "feet"),
  31622. default: true
  31623. },
  31624. ]
  31625. ))
  31626. characterMakers.push(() => makeCharacter(
  31627. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31628. {
  31629. dragon: {
  31630. height: math.unit(26, "feet"),
  31631. weight: math.unit(36, "tons"),
  31632. name: "Dragon",
  31633. image: {
  31634. source: "./media/characters/arimphae/dragon.svg",
  31635. extra: 1574/983,
  31636. bottom: 357/1931
  31637. }
  31638. },
  31639. drake: {
  31640. height: math.unit(9, "feet"),
  31641. weight: math.unit(1.5, "tons"),
  31642. name: "Drake",
  31643. image: {
  31644. source: "./media/characters/arimphae/drake.svg",
  31645. extra: 1120/925,
  31646. bottom: 435/1555
  31647. }
  31648. },
  31649. },
  31650. [
  31651. {
  31652. name: "Small",
  31653. height: math.unit(26*5/9, "feet")
  31654. },
  31655. {
  31656. name: "Normal",
  31657. height: math.unit(26, "feet"),
  31658. default: true
  31659. },
  31660. ]
  31661. ))
  31662. characterMakers.push(() => makeCharacter(
  31663. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31664. {
  31665. front: {
  31666. height: math.unit(8 + 9/12, "feet"),
  31667. name: "Front",
  31668. image: {
  31669. source: "./media/characters/xander/front.svg",
  31670. extra: 848/673,
  31671. bottom: 62/910
  31672. }
  31673. },
  31674. },
  31675. [
  31676. {
  31677. name: "Normal",
  31678. height: math.unit(8 + 9/12, "feet"),
  31679. default: true
  31680. },
  31681. {
  31682. name: "Gaze Grabber",
  31683. height: math.unit(13 + 8/12, "feet")
  31684. },
  31685. {
  31686. name: "Jaw Dropper",
  31687. height: math.unit(27, "feet")
  31688. },
  31689. {
  31690. name: "Show Stopper",
  31691. height: math.unit(136, "feet")
  31692. },
  31693. {
  31694. name: "Superstar",
  31695. height: math.unit(1.9e6, "miles")
  31696. },
  31697. ]
  31698. ))
  31699. characterMakers.push(() => makeCharacter(
  31700. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31701. {
  31702. side: {
  31703. height: math.unit(2100, "feet"),
  31704. name: "Side",
  31705. image: {
  31706. source: "./media/characters/osiris/side.svg",
  31707. extra: 1105/939,
  31708. bottom: 167/1272
  31709. }
  31710. },
  31711. },
  31712. [
  31713. {
  31714. name: "Macro",
  31715. height: math.unit(2100, "feet"),
  31716. default: true
  31717. },
  31718. ]
  31719. ))
  31720. characterMakers.push(() => makeCharacter(
  31721. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31722. {
  31723. front: {
  31724. height: math.unit(6 + 8/12, "feet"),
  31725. weight: math.unit(225, "lb"),
  31726. name: "Front",
  31727. image: {
  31728. source: "./media/characters/rhys-londe/front.svg",
  31729. extra: 2258/2141,
  31730. bottom: 188/2446
  31731. }
  31732. },
  31733. back: {
  31734. height: math.unit(6 + 8/12, "feet"),
  31735. weight: math.unit(225, "lb"),
  31736. name: "Back",
  31737. image: {
  31738. source: "./media/characters/rhys-londe/back.svg",
  31739. extra: 2237/2137,
  31740. bottom: 63/2300
  31741. }
  31742. },
  31743. frontNsfw: {
  31744. height: math.unit(6 + 8/12, "feet"),
  31745. weight: math.unit(225, "lb"),
  31746. name: "Front (NSFW)",
  31747. image: {
  31748. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31749. extra: 2258/2141,
  31750. bottom: 188/2446
  31751. }
  31752. },
  31753. backNsfw: {
  31754. height: math.unit(6 + 8/12, "feet"),
  31755. weight: math.unit(225, "lb"),
  31756. name: "Back (NSFW)",
  31757. image: {
  31758. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31759. extra: 2237/2137,
  31760. bottom: 63/2300
  31761. }
  31762. },
  31763. dick: {
  31764. height: math.unit(30, "inches"),
  31765. name: "Dick",
  31766. image: {
  31767. source: "./media/characters/rhys-londe/dick.svg"
  31768. }
  31769. },
  31770. maw: {
  31771. height: math.unit(1.6, "feet"),
  31772. name: "Maw",
  31773. image: {
  31774. source: "./media/characters/rhys-londe/maw.svg"
  31775. }
  31776. },
  31777. },
  31778. [
  31779. {
  31780. name: "Normal",
  31781. height: math.unit(6 + 8/12, "feet"),
  31782. default: true
  31783. },
  31784. ]
  31785. ))
  31786. characterMakers.push(() => makeCharacter(
  31787. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31788. {
  31789. front: {
  31790. height: math.unit(3 + 10/12, "feet"),
  31791. weight: math.unit(90, "lb"),
  31792. name: "Front",
  31793. image: {
  31794. source: "./media/characters/taivas-ensim/front.svg",
  31795. extra: 1327/1216,
  31796. bottom: 96/1423
  31797. }
  31798. },
  31799. back: {
  31800. height: math.unit(3 + 10/12, "feet"),
  31801. weight: math.unit(90, "lb"),
  31802. name: "Back",
  31803. image: {
  31804. source: "./media/characters/taivas-ensim/back.svg",
  31805. extra: 1355/1247,
  31806. bottom: 11/1366
  31807. }
  31808. },
  31809. frontNsfw: {
  31810. height: math.unit(3 + 10/12, "feet"),
  31811. weight: math.unit(90, "lb"),
  31812. name: "Front (NSFW)",
  31813. image: {
  31814. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31815. extra: 1327/1216,
  31816. bottom: 96/1423
  31817. }
  31818. },
  31819. backNsfw: {
  31820. height: math.unit(3 + 10/12, "feet"),
  31821. weight: math.unit(90, "lb"),
  31822. name: "Back (NSFW)",
  31823. image: {
  31824. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31825. extra: 1355/1247,
  31826. bottom: 11/1366
  31827. }
  31828. },
  31829. },
  31830. [
  31831. {
  31832. name: "Normal",
  31833. height: math.unit(3 + 10/12, "feet"),
  31834. default: true
  31835. },
  31836. ]
  31837. ))
  31838. characterMakers.push(() => makeCharacter(
  31839. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31840. {
  31841. front: {
  31842. height: math.unit(9 + 6/12, "feet"),
  31843. weight: math.unit(940, "lb"),
  31844. name: "Front",
  31845. image: {
  31846. source: "./media/characters/byliss/front.svg",
  31847. extra: 1327/1290,
  31848. bottom: 82/1409
  31849. }
  31850. },
  31851. back: {
  31852. height: math.unit(9 + 6/12, "feet"),
  31853. weight: math.unit(940, "lb"),
  31854. name: "Back",
  31855. image: {
  31856. source: "./media/characters/byliss/back.svg",
  31857. extra: 1376/1349,
  31858. bottom: 9/1385
  31859. }
  31860. },
  31861. frontNsfw: {
  31862. height: math.unit(9 + 6/12, "feet"),
  31863. weight: math.unit(940, "lb"),
  31864. name: "Front (NSFW)",
  31865. image: {
  31866. source: "./media/characters/byliss/front-nsfw.svg",
  31867. extra: 1327/1290,
  31868. bottom: 82/1409
  31869. }
  31870. },
  31871. backNsfw: {
  31872. height: math.unit(9 + 6/12, "feet"),
  31873. weight: math.unit(940, "lb"),
  31874. name: "Back (NSFW)",
  31875. image: {
  31876. source: "./media/characters/byliss/back-nsfw.svg",
  31877. extra: 1376/1349,
  31878. bottom: 9/1385
  31879. }
  31880. },
  31881. },
  31882. [
  31883. {
  31884. name: "Normal",
  31885. height: math.unit(9 + 6/12, "feet"),
  31886. default: true
  31887. },
  31888. ]
  31889. ))
  31890. characterMakers.push(() => makeCharacter(
  31891. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31892. {
  31893. front: {
  31894. height: math.unit(5 + 2/12, "feet"),
  31895. weight: math.unit(200, "lb"),
  31896. name: "Front",
  31897. image: {
  31898. source: "./media/characters/noraly/front.svg",
  31899. extra: 4985/4773,
  31900. bottom: 150/5135
  31901. }
  31902. },
  31903. full: {
  31904. height: math.unit(5 + 2/12, "feet"),
  31905. weight: math.unit(164, "lb"),
  31906. name: "Full",
  31907. image: {
  31908. source: "./media/characters/noraly/full.svg",
  31909. extra: 1114/1059,
  31910. bottom: 35/1149
  31911. }
  31912. },
  31913. fuller: {
  31914. height: math.unit(5 + 2/12, "feet"),
  31915. weight: math.unit(230, "lb"),
  31916. name: "Fuller",
  31917. image: {
  31918. source: "./media/characters/noraly/fuller.svg",
  31919. extra: 1114/1059,
  31920. bottom: 35/1149
  31921. }
  31922. },
  31923. fullest: {
  31924. height: math.unit(5 + 2/12, "feet"),
  31925. weight: math.unit(300, "lb"),
  31926. name: "Fullest",
  31927. image: {
  31928. source: "./media/characters/noraly/fullest.svg",
  31929. extra: 1114/1059,
  31930. bottom: 35/1149
  31931. }
  31932. },
  31933. },
  31934. [
  31935. {
  31936. name: "Normal",
  31937. height: math.unit(5 + 2/12, "feet"),
  31938. default: true
  31939. },
  31940. ]
  31941. ))
  31942. characterMakers.push(() => makeCharacter(
  31943. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31944. {
  31945. front: {
  31946. height: math.unit(5 + 2/12, "feet"),
  31947. weight: math.unit(210, "lb"),
  31948. name: "Front",
  31949. image: {
  31950. source: "./media/characters/pera/front.svg",
  31951. extra: 1560/1531,
  31952. bottom: 165/1725
  31953. }
  31954. },
  31955. back: {
  31956. height: math.unit(5 + 2/12, "feet"),
  31957. weight: math.unit(210, "lb"),
  31958. name: "Back",
  31959. image: {
  31960. source: "./media/characters/pera/back.svg",
  31961. extra: 1523/1493,
  31962. bottom: 152/1675
  31963. }
  31964. },
  31965. dick: {
  31966. height: math.unit(2.4, "feet"),
  31967. name: "Dick",
  31968. image: {
  31969. source: "./media/characters/pera/dick.svg"
  31970. }
  31971. },
  31972. },
  31973. [
  31974. {
  31975. name: "Normal",
  31976. height: math.unit(5 + 2/12, "feet"),
  31977. default: true
  31978. },
  31979. ]
  31980. ))
  31981. characterMakers.push(() => makeCharacter(
  31982. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31983. {
  31984. front: {
  31985. height: math.unit(12, "feet"),
  31986. weight: math.unit(3200, "lb"),
  31987. name: "Front",
  31988. image: {
  31989. source: "./media/characters/julian/front.svg",
  31990. extra: 2962/2701,
  31991. bottom: 184/3146
  31992. }
  31993. },
  31994. maw: {
  31995. height: math.unit(5.35, "feet"),
  31996. name: "Maw",
  31997. image: {
  31998. source: "./media/characters/julian/maw.svg"
  31999. }
  32000. },
  32001. paw: {
  32002. height: math.unit(3.07, "feet"),
  32003. name: "Paw",
  32004. image: {
  32005. source: "./media/characters/julian/paw.svg"
  32006. }
  32007. },
  32008. },
  32009. [
  32010. {
  32011. name: "Default",
  32012. height: math.unit(12, "feet"),
  32013. default: true
  32014. },
  32015. {
  32016. name: "Big",
  32017. height: math.unit(50, "feet")
  32018. },
  32019. {
  32020. name: "Really Big",
  32021. height: math.unit(1, "mile")
  32022. },
  32023. {
  32024. name: "Extremely Big",
  32025. height: math.unit(100, "miles")
  32026. },
  32027. {
  32028. name: "Planet Hugger",
  32029. height: math.unit(200, "megameters")
  32030. },
  32031. {
  32032. name: "Unreasonably Big",
  32033. height: math.unit(1e300, "meters")
  32034. },
  32035. ]
  32036. ))
  32037. characterMakers.push(() => makeCharacter(
  32038. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32039. {
  32040. solgooleo: {
  32041. height: math.unit(4, "meters"),
  32042. weight: math.unit(6000*1.5, "kg"),
  32043. volume: math.unit(6000, "liters"),
  32044. name: "Solgooleo",
  32045. image: {
  32046. source: "./media/characters/pi/solgooleo.svg",
  32047. extra: 388/331,
  32048. bottom: 29/417
  32049. }
  32050. },
  32051. },
  32052. [
  32053. {
  32054. name: "Normal",
  32055. height: math.unit(4, "meters"),
  32056. default: true
  32057. },
  32058. ]
  32059. ))
  32060. characterMakers.push(() => makeCharacter(
  32061. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32062. {
  32063. front: {
  32064. height: math.unit(8 + 2/12, "feet"),
  32065. weight: math.unit(4, "tons"),
  32066. name: "Front",
  32067. image: {
  32068. source: "./media/characters/shaun/front.svg",
  32069. extra: 1550/1505,
  32070. bottom: 353/1903
  32071. }
  32072. },
  32073. },
  32074. [
  32075. {
  32076. name: "Lorg",
  32077. height: math.unit(8 + 2/12, "feet"),
  32078. default: true
  32079. },
  32080. ]
  32081. ))
  32082. characterMakers.push(() => makeCharacter(
  32083. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32084. {
  32085. front: {
  32086. height: math.unit(7, "feet"),
  32087. name: "Front",
  32088. image: {
  32089. source: "./media/characters/sini/front.svg",
  32090. extra: 726/678,
  32091. bottom: 35/761
  32092. }
  32093. },
  32094. back: {
  32095. height: math.unit(7, "feet"),
  32096. name: "Back",
  32097. image: {
  32098. source: "./media/characters/sini/back.svg",
  32099. extra: 743/701,
  32100. bottom: 12/755
  32101. }
  32102. },
  32103. mawAnthro: {
  32104. height: math.unit(2.14, "feet"),
  32105. name: "Maw (Anthro)",
  32106. image: {
  32107. source: "./media/characters/sini/maw-anthro.svg"
  32108. }
  32109. },
  32110. dick: {
  32111. height: math.unit(1.45, "feet"),
  32112. name: "Dick (Anthro)",
  32113. image: {
  32114. source: "./media/characters/sini/dick-anthro.svg"
  32115. }
  32116. },
  32117. feral: {
  32118. height: math.unit(13, "feet"),
  32119. name: "Feral",
  32120. image: {
  32121. source: "./media/characters/sini/feral.svg",
  32122. extra: 814/605,
  32123. bottom: 11/825
  32124. }
  32125. },
  32126. mawFeral: {
  32127. height: math.unit(4.6, "feet"),
  32128. name: "Maw-feral",
  32129. image: {
  32130. source: "./media/characters/sini/maw-feral.svg"
  32131. }
  32132. },
  32133. footFeral: {
  32134. height: math.unit(4.2, "feet"),
  32135. name: "Foot-feral",
  32136. image: {
  32137. source: "./media/characters/sini/foot-feral.svg"
  32138. }
  32139. },
  32140. },
  32141. [
  32142. {
  32143. name: "Normal",
  32144. height: math.unit(7, "feet"),
  32145. default: true
  32146. },
  32147. ]
  32148. ))
  32149. characterMakers.push(() => makeCharacter(
  32150. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32151. {
  32152. side: {
  32153. height: math.unit(13, "meters"),
  32154. weight: math.unit(9072, "kg"),
  32155. name: "Side",
  32156. image: {
  32157. source: "./media/characters/raylldo/side.svg",
  32158. extra: 403/344,
  32159. bottom: 42/445
  32160. }
  32161. },
  32162. leaping: {
  32163. height: math.unit(12.3, "meters"),
  32164. weight: math.unit(9072, "kg"),
  32165. name: "Leaping",
  32166. image: {
  32167. source: "./media/characters/raylldo/leaping.svg",
  32168. extra: 470/249,
  32169. bottom: 13/483
  32170. }
  32171. },
  32172. flying: {
  32173. height: math.unit(18, "meters"),
  32174. weight: math.unit(9072, "kg"),
  32175. name: "Flying",
  32176. image: {
  32177. source: "./media/characters/raylldo/flying.svg"
  32178. }
  32179. },
  32180. head: {
  32181. height: math.unit(5.85, "meters"),
  32182. name: "Head",
  32183. image: {
  32184. source: "./media/characters/raylldo/head.svg"
  32185. }
  32186. },
  32187. maw: {
  32188. height: math.unit(5.32, "meters"),
  32189. name: "Maw",
  32190. image: {
  32191. source: "./media/characters/raylldo/maw.svg"
  32192. }
  32193. },
  32194. eye: {
  32195. height: math.unit(0.54, "meters"),
  32196. name: "Eye",
  32197. image: {
  32198. source: "./media/characters/raylldo/eye.svg"
  32199. }
  32200. },
  32201. },
  32202. [
  32203. {
  32204. name: "Normal",
  32205. height: math.unit(13, "meters"),
  32206. default: true
  32207. },
  32208. ]
  32209. ))
  32210. characterMakers.push(() => makeCharacter(
  32211. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32212. {
  32213. anthroFront: {
  32214. height: math.unit(9, "feet"),
  32215. weight: math.unit(600, "lb"),
  32216. name: "Anthro (Front)",
  32217. image: {
  32218. source: "./media/characters/glint/anthro-front.svg",
  32219. extra: 1097/1018,
  32220. bottom: 28/1125
  32221. }
  32222. },
  32223. anthroBack: {
  32224. height: math.unit(9, "feet"),
  32225. weight: math.unit(600, "lb"),
  32226. name: "Anthro (Back)",
  32227. image: {
  32228. source: "./media/characters/glint/anthro-back.svg",
  32229. extra: 1154/997,
  32230. bottom: 36/1190
  32231. }
  32232. },
  32233. feral: {
  32234. height: math.unit(11, "feet"),
  32235. weight: math.unit(50000, "lb"),
  32236. name: "Feral",
  32237. image: {
  32238. source: "./media/characters/glint/feral.svg",
  32239. extra: 3035/1585,
  32240. bottom: 1169/4204
  32241. }
  32242. },
  32243. dickAnthro: {
  32244. height: math.unit(0.7, "meters"),
  32245. name: "Dick (Anthro)",
  32246. image: {
  32247. source: "./media/characters/glint/dick-anthro.svg"
  32248. }
  32249. },
  32250. dickFeral: {
  32251. height: math.unit(2.65, "meters"),
  32252. name: "Dick (Feral)",
  32253. image: {
  32254. source: "./media/characters/glint/dick-feral.svg"
  32255. }
  32256. },
  32257. slitHidden: {
  32258. height: math.unit(5.85, "meters"),
  32259. name: "Slit (Hidden)",
  32260. image: {
  32261. source: "./media/characters/glint/slit-hidden.svg"
  32262. }
  32263. },
  32264. slitErect: {
  32265. height: math.unit(5.85, "meters"),
  32266. name: "Slit (Erect)",
  32267. image: {
  32268. source: "./media/characters/glint/slit-erect.svg"
  32269. }
  32270. },
  32271. mawAnthro: {
  32272. height: math.unit(0.63, "meters"),
  32273. name: "Maw (Anthro)",
  32274. image: {
  32275. source: "./media/characters/glint/maw.svg"
  32276. }
  32277. },
  32278. mawFeral: {
  32279. height: math.unit(2.89, "meters"),
  32280. name: "Maw (Feral)",
  32281. image: {
  32282. source: "./media/characters/glint/maw.svg"
  32283. }
  32284. },
  32285. },
  32286. [
  32287. {
  32288. name: "Normal",
  32289. height: math.unit(9, "feet"),
  32290. default: true
  32291. },
  32292. ]
  32293. ))
  32294. characterMakers.push(() => makeCharacter(
  32295. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32296. {
  32297. side: {
  32298. height: math.unit(15, "feet"),
  32299. weight: math.unit(5000, "kg"),
  32300. name: "Side",
  32301. image: {
  32302. source: "./media/characters/kairne/side.svg",
  32303. extra: 979/811,
  32304. bottom: 13/992
  32305. }
  32306. },
  32307. front: {
  32308. height: math.unit(15, "feet"),
  32309. weight: math.unit(5000, "kg"),
  32310. name: "Front",
  32311. image: {
  32312. source: "./media/characters/kairne/front.svg",
  32313. extra: 908/814,
  32314. bottom: 26/934
  32315. }
  32316. },
  32317. sideNsfw: {
  32318. height: math.unit(15, "feet"),
  32319. weight: math.unit(5000, "kg"),
  32320. name: "Side (NSFW)",
  32321. image: {
  32322. source: "./media/characters/kairne/side-nsfw.svg",
  32323. extra: 979/811,
  32324. bottom: 13/992
  32325. }
  32326. },
  32327. frontNsfw: {
  32328. height: math.unit(15, "feet"),
  32329. weight: math.unit(5000, "kg"),
  32330. name: "Front (NSFW)",
  32331. image: {
  32332. source: "./media/characters/kairne/front-nsfw.svg",
  32333. extra: 908/814,
  32334. bottom: 26/934
  32335. }
  32336. },
  32337. dickCaged: {
  32338. height: math.unit(0.65, "meters"),
  32339. name: "Dick-caged",
  32340. image: {
  32341. source: "./media/characters/kairne/dick-caged.svg"
  32342. }
  32343. },
  32344. dick: {
  32345. height: math.unit(0.79, "meters"),
  32346. name: "Dick",
  32347. image: {
  32348. source: "./media/characters/kairne/dick.svg"
  32349. }
  32350. },
  32351. genitals: {
  32352. height: math.unit(1.29, "meters"),
  32353. name: "Genitals",
  32354. image: {
  32355. source: "./media/characters/kairne/genitals.svg"
  32356. }
  32357. },
  32358. maw: {
  32359. height: math.unit(1.73, "meters"),
  32360. name: "Maw",
  32361. image: {
  32362. source: "./media/characters/kairne/maw.svg"
  32363. }
  32364. },
  32365. },
  32366. [
  32367. {
  32368. name: "Normal",
  32369. height: math.unit(15, "feet"),
  32370. default: true
  32371. },
  32372. ]
  32373. ))
  32374. characterMakers.push(() => makeCharacter(
  32375. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32376. {
  32377. front: {
  32378. height: math.unit(5 + 8/12, "feet"),
  32379. weight: math.unit(139, "lb"),
  32380. name: "Front",
  32381. image: {
  32382. source: "./media/characters/biscuit-jackal/front.svg",
  32383. extra: 2106/1961,
  32384. bottom: 58/2164
  32385. }
  32386. },
  32387. back: {
  32388. height: math.unit(5 + 8/12, "feet"),
  32389. weight: math.unit(139, "lb"),
  32390. name: "Back",
  32391. image: {
  32392. source: "./media/characters/biscuit-jackal/back.svg",
  32393. extra: 2132/1976,
  32394. bottom: 57/2189
  32395. }
  32396. },
  32397. werejackal: {
  32398. height: math.unit(6 + 3/12, "feet"),
  32399. weight: math.unit(188, "lb"),
  32400. name: "Werejackal",
  32401. image: {
  32402. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32403. extra: 2373/2178,
  32404. bottom: 53/2426
  32405. }
  32406. },
  32407. },
  32408. [
  32409. {
  32410. name: "Normal",
  32411. height: math.unit(5 + 8/12, "feet"),
  32412. default: true
  32413. },
  32414. ]
  32415. ))
  32416. characterMakers.push(() => makeCharacter(
  32417. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32418. {
  32419. front: {
  32420. height: math.unit(140, "cm"),
  32421. weight: math.unit(45, "kg"),
  32422. name: "Front",
  32423. image: {
  32424. source: "./media/characters/tayra-white/front.svg",
  32425. extra: 2229/2192,
  32426. bottom: 75/2304
  32427. }
  32428. },
  32429. },
  32430. [
  32431. {
  32432. name: "Normal",
  32433. height: math.unit(140, "cm"),
  32434. default: true
  32435. },
  32436. ]
  32437. ))
  32438. characterMakers.push(() => makeCharacter(
  32439. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32440. {
  32441. front: {
  32442. height: math.unit(4 + 5/12, "feet"),
  32443. name: "Front",
  32444. image: {
  32445. source: "./media/characters/scoop/front.svg",
  32446. extra: 1257/1136,
  32447. bottom: 69/1326
  32448. }
  32449. },
  32450. back: {
  32451. height: math.unit(4 + 5/12, "feet"),
  32452. name: "Back",
  32453. image: {
  32454. source: "./media/characters/scoop/back.svg",
  32455. extra: 1321/1152,
  32456. bottom: 32/1353
  32457. }
  32458. },
  32459. maw: {
  32460. height: math.unit(0.68, "feet"),
  32461. name: "Maw",
  32462. image: {
  32463. source: "./media/characters/scoop/maw.svg"
  32464. }
  32465. },
  32466. },
  32467. [
  32468. {
  32469. name: "Really Small",
  32470. height: math.unit(1, "mm")
  32471. },
  32472. {
  32473. name: "Micro",
  32474. height: math.unit(1, "inch")
  32475. },
  32476. {
  32477. name: "Normal",
  32478. height: math.unit(4 + 5/12, "feet"),
  32479. default: true
  32480. },
  32481. {
  32482. name: "Macro",
  32483. height: math.unit(200, "feet")
  32484. },
  32485. {
  32486. name: "Megamacro",
  32487. height: math.unit(3240, "feet")
  32488. },
  32489. {
  32490. name: "Teramacro",
  32491. height: math.unit(2500, "miles")
  32492. },
  32493. ]
  32494. ))
  32495. characterMakers.push(() => makeCharacter(
  32496. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32497. {
  32498. front: {
  32499. height: math.unit(15 + 7/12, "feet"),
  32500. name: "Front",
  32501. image: {
  32502. source: "./media/characters/saphinara/front.svg",
  32503. extra: 604/546,
  32504. bottom: 19/623
  32505. }
  32506. },
  32507. side: {
  32508. height: math.unit(15 + 7/12, "feet"),
  32509. name: "Side",
  32510. image: {
  32511. source: "./media/characters/saphinara/side.svg",
  32512. extra: 605/547,
  32513. bottom: 6/611
  32514. }
  32515. },
  32516. back: {
  32517. height: math.unit(15 + 7/12, "feet"),
  32518. name: "Back",
  32519. image: {
  32520. source: "./media/characters/saphinara/back.svg",
  32521. extra: 591/531,
  32522. bottom: 13/604
  32523. }
  32524. },
  32525. frontTail: {
  32526. height: math.unit(15 + 7/12, "feet"),
  32527. name: "Front (Full Tail)",
  32528. image: {
  32529. source: "./media/characters/saphinara/front-tail.svg",
  32530. extra: 748/547,
  32531. bottom: 66/814
  32532. }
  32533. },
  32534. },
  32535. [
  32536. {
  32537. name: "Normal",
  32538. height: math.unit(15 + 7/12, "feet"),
  32539. default: true
  32540. },
  32541. {
  32542. name: "Angry",
  32543. height: math.unit(30 + 6/12, "feet")
  32544. },
  32545. {
  32546. name: "Enraged",
  32547. height: math.unit(102 + 1/12, "feet")
  32548. },
  32549. ]
  32550. ))
  32551. characterMakers.push(() => makeCharacter(
  32552. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32553. {
  32554. front: {
  32555. height: math.unit(6 + 8/12, "feet"),
  32556. weight: math.unit(300, "lb"),
  32557. name: "Front",
  32558. image: {
  32559. source: "./media/characters/jrain/front.svg",
  32560. extra: 3039/2865,
  32561. bottom: 399/3438
  32562. }
  32563. },
  32564. back: {
  32565. height: math.unit(6 + 8/12, "feet"),
  32566. weight: math.unit(300, "lb"),
  32567. name: "Back",
  32568. image: {
  32569. source: "./media/characters/jrain/back.svg",
  32570. extra: 3089/2938,
  32571. bottom: 172/3261
  32572. }
  32573. },
  32574. head: {
  32575. height: math.unit(2.14, "feet"),
  32576. name: "Head",
  32577. image: {
  32578. source: "./media/characters/jrain/head.svg"
  32579. }
  32580. },
  32581. maw: {
  32582. height: math.unit(1.77, "feet"),
  32583. name: "Maw",
  32584. image: {
  32585. source: "./media/characters/jrain/maw.svg"
  32586. }
  32587. },
  32588. leftHand: {
  32589. height: math.unit(1.1, "feet"),
  32590. name: "Left Hand",
  32591. image: {
  32592. source: "./media/characters/jrain/left-hand.svg"
  32593. }
  32594. },
  32595. rightHand: {
  32596. height: math.unit(1.1, "feet"),
  32597. name: "Right Hand",
  32598. image: {
  32599. source: "./media/characters/jrain/right-hand.svg"
  32600. }
  32601. },
  32602. eye: {
  32603. height: math.unit(0.35, "feet"),
  32604. name: "Eye",
  32605. image: {
  32606. source: "./media/characters/jrain/eye.svg"
  32607. }
  32608. },
  32609. },
  32610. [
  32611. {
  32612. name: "Normal",
  32613. height: math.unit(6 + 8/12, "feet"),
  32614. default: true
  32615. },
  32616. {
  32617. name: "Casually Large",
  32618. height: math.unit(25, "feet")
  32619. },
  32620. {
  32621. name: "Giant",
  32622. height: math.unit(100, "feet")
  32623. },
  32624. {
  32625. name: "Kaiju",
  32626. height: math.unit(300, "feet")
  32627. },
  32628. ]
  32629. ))
  32630. characterMakers.push(() => makeCharacter(
  32631. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32632. {
  32633. dragon: {
  32634. height: math.unit(5, "meters"),
  32635. name: "Dragon",
  32636. image: {
  32637. source: "./media/characters/sabrina/dragon.svg",
  32638. extra: 3670 / 2365,
  32639. bottom: 333 / 4003
  32640. }
  32641. },
  32642. gryphon: {
  32643. height: math.unit(3, "meters"),
  32644. name: "Gryphon",
  32645. image: {
  32646. source: "./media/characters/sabrina/gryphon.svg",
  32647. extra: 1576 / 945,
  32648. bottom: 71 / 1647
  32649. }
  32650. },
  32651. snake: {
  32652. height: math.unit(12, "meters"),
  32653. name: "Snake",
  32654. image: {
  32655. source: "./media/characters/sabrina/snake.svg",
  32656. extra: 1758 / 1320,
  32657. bottom: 186 / 1944
  32658. }
  32659. },
  32660. collar: {
  32661. height: math.unit(1.86, "meters"),
  32662. name: "Collar",
  32663. image: {
  32664. source: "./media/characters/sabrina/collar.svg"
  32665. }
  32666. },
  32667. eye: {
  32668. height: math.unit(0.53, "meters"),
  32669. name: "Eye",
  32670. image: {
  32671. source: "./media/characters/sabrina/eye.svg"
  32672. }
  32673. },
  32674. foot: {
  32675. height: math.unit(1.86, "meters"),
  32676. name: "Foot",
  32677. image: {
  32678. source: "./media/characters/sabrina/foot.svg"
  32679. }
  32680. },
  32681. hand: {
  32682. height: math.unit(1.32, "meters"),
  32683. name: "Hand",
  32684. image: {
  32685. source: "./media/characters/sabrina/hand.svg"
  32686. }
  32687. },
  32688. head: {
  32689. height: math.unit(2.44, "meters"),
  32690. name: "Head",
  32691. image: {
  32692. source: "./media/characters/sabrina/head.svg"
  32693. }
  32694. },
  32695. headAngry: {
  32696. height: math.unit(2.44, "meters"),
  32697. name: "Head (Angry))",
  32698. image: {
  32699. source: "./media/characters/sabrina/head-angry.svg"
  32700. }
  32701. },
  32702. maw: {
  32703. height: math.unit(1.65, "meters"),
  32704. name: "Maw",
  32705. image: {
  32706. source: "./media/characters/sabrina/maw.svg"
  32707. }
  32708. },
  32709. spikes: {
  32710. height: math.unit(1.69, "meters"),
  32711. name: "Spikes",
  32712. image: {
  32713. source: "./media/characters/sabrina/spikes.svg"
  32714. }
  32715. },
  32716. stomach: {
  32717. height: math.unit(1.15, "meters"),
  32718. name: "Stomach",
  32719. image: {
  32720. source: "./media/characters/sabrina/stomach.svg"
  32721. }
  32722. },
  32723. tongue: {
  32724. height: math.unit(1.27, "meters"),
  32725. name: "Tongue",
  32726. image: {
  32727. source: "./media/characters/sabrina/tongue.svg"
  32728. }
  32729. },
  32730. wingDorsal: {
  32731. height: math.unit(4.85, "meters"),
  32732. name: "Wing (Dorsal)",
  32733. image: {
  32734. source: "./media/characters/sabrina/wing-dorsal.svg"
  32735. }
  32736. },
  32737. wingVentral: {
  32738. height: math.unit(4.85, "meters"),
  32739. name: "Wing (Ventral)",
  32740. image: {
  32741. source: "./media/characters/sabrina/wing-ventral.svg"
  32742. }
  32743. },
  32744. },
  32745. [
  32746. {
  32747. name: "Normal",
  32748. height: math.unit(5, "meters"),
  32749. default: true
  32750. },
  32751. ]
  32752. ))
  32753. characterMakers.push(() => makeCharacter(
  32754. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32755. {
  32756. frontMaid: {
  32757. height: math.unit(5 + 5/12, "feet"),
  32758. weight: math.unit(130, "lb"),
  32759. name: "Front (Maid)",
  32760. image: {
  32761. source: "./media/characters/midnight-tales/front-maid.svg",
  32762. extra: 489/454,
  32763. bottom: 61/550
  32764. }
  32765. },
  32766. frontFormal: {
  32767. height: math.unit(5 + 5/12, "feet"),
  32768. weight: math.unit(130, "lb"),
  32769. name: "Front (Formal)",
  32770. image: {
  32771. source: "./media/characters/midnight-tales/front-formal.svg",
  32772. extra: 489/454,
  32773. bottom: 61/550
  32774. }
  32775. },
  32776. back: {
  32777. height: math.unit(5 + 5/12, "feet"),
  32778. weight: math.unit(130, "lb"),
  32779. name: "Back",
  32780. image: {
  32781. source: "./media/characters/midnight-tales/back.svg",
  32782. extra: 498/456,
  32783. bottom: 33/531
  32784. }
  32785. },
  32786. frontBeast: {
  32787. height: math.unit(40, "feet"),
  32788. weight: math.unit(64000, "lb"),
  32789. name: "Front (Beast)",
  32790. image: {
  32791. source: "./media/characters/midnight-tales/front-beast.svg",
  32792. extra: 927/860,
  32793. bottom: 53/980
  32794. }
  32795. },
  32796. backBeast: {
  32797. height: math.unit(40, "feet"),
  32798. weight: math.unit(64000, "lb"),
  32799. name: "Back (Beast)",
  32800. image: {
  32801. source: "./media/characters/midnight-tales/back-beast.svg",
  32802. extra: 929/855,
  32803. bottom: 16/945
  32804. }
  32805. },
  32806. footBeast: {
  32807. height: math.unit(6.7, "feet"),
  32808. name: "Foot (Beast)",
  32809. image: {
  32810. source: "./media/characters/midnight-tales/foot-beast.svg"
  32811. }
  32812. },
  32813. headBeast: {
  32814. height: math.unit(8, "feet"),
  32815. name: "Head (Beast)",
  32816. image: {
  32817. source: "./media/characters/midnight-tales/head-beast.svg"
  32818. }
  32819. },
  32820. },
  32821. [
  32822. {
  32823. name: "Normal",
  32824. height: math.unit(5 + 5 / 12, "feet"),
  32825. default: true
  32826. },
  32827. {
  32828. name: "Macro",
  32829. height: math.unit(25, "feet")
  32830. },
  32831. ]
  32832. ))
  32833. characterMakers.push(() => makeCharacter(
  32834. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32835. {
  32836. front: {
  32837. height: math.unit(5 + 10/12, "feet"),
  32838. name: "Front",
  32839. image: {
  32840. source: "./media/characters/argon/front.svg",
  32841. extra: 2009/1935,
  32842. bottom: 118/2127
  32843. }
  32844. },
  32845. back: {
  32846. height: math.unit(5 + 10/12, "feet"),
  32847. name: "Back",
  32848. image: {
  32849. source: "./media/characters/argon/back.svg",
  32850. extra: 2047/1992,
  32851. bottom: 20/2067
  32852. }
  32853. },
  32854. frontDressed: {
  32855. height: math.unit(5 + 10/12, "feet"),
  32856. name: "Front (Dressed)",
  32857. image: {
  32858. source: "./media/characters/argon/front-dressed.svg",
  32859. extra: 2009/1935,
  32860. bottom: 118/2127
  32861. }
  32862. },
  32863. },
  32864. [
  32865. {
  32866. name: "Normal",
  32867. height: math.unit(5 + 10/12, "feet"),
  32868. default: true
  32869. },
  32870. ]
  32871. ))
  32872. characterMakers.push(() => makeCharacter(
  32873. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32874. {
  32875. front: {
  32876. height: math.unit(8 + 6/12, "feet"),
  32877. weight: math.unit(1150, "lb"),
  32878. name: "Front",
  32879. image: {
  32880. source: "./media/characters/kichi/front.svg",
  32881. extra: 1267/1164,
  32882. bottom: 61/1328
  32883. }
  32884. },
  32885. back: {
  32886. height: math.unit(8 + 6/12, "feet"),
  32887. weight: math.unit(1150, "lb"),
  32888. name: "Back",
  32889. image: {
  32890. source: "./media/characters/kichi/back.svg",
  32891. extra: 1273/1166,
  32892. bottom: 33/1306
  32893. }
  32894. },
  32895. },
  32896. [
  32897. {
  32898. name: "Normal",
  32899. height: math.unit(8 + 6/12, "feet"),
  32900. default: true
  32901. },
  32902. ]
  32903. ))
  32904. characterMakers.push(() => makeCharacter(
  32905. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32906. {
  32907. front: {
  32908. height: math.unit(6, "feet"),
  32909. weight: math.unit(210, "lb"),
  32910. name: "Front",
  32911. image: {
  32912. source: "./media/characters/manetel-greyscale/front.svg",
  32913. extra: 350/312,
  32914. bottom: 8/358
  32915. }
  32916. },
  32917. },
  32918. [
  32919. {
  32920. name: "Micro",
  32921. height: math.unit(2, "inches")
  32922. },
  32923. {
  32924. name: "Normal",
  32925. height: math.unit(6, "feet"),
  32926. default: true
  32927. },
  32928. {
  32929. name: "Minimacro",
  32930. height: math.unit(17, "feet")
  32931. },
  32932. {
  32933. name: "Macro",
  32934. height: math.unit(117, "feet")
  32935. },
  32936. ]
  32937. ))
  32938. characterMakers.push(() => makeCharacter(
  32939. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32940. {
  32941. side: {
  32942. height: math.unit(5 + 1/12, "feet"),
  32943. weight: math.unit(418, "lb"),
  32944. name: "Side",
  32945. image: {
  32946. source: "./media/characters/softpurr/side.svg",
  32947. extra: 1993/1945,
  32948. bottom: 134/2127
  32949. }
  32950. },
  32951. front: {
  32952. height: math.unit(5 + 1/12, "feet"),
  32953. weight: math.unit(418, "lb"),
  32954. name: "Front",
  32955. image: {
  32956. source: "./media/characters/softpurr/front.svg",
  32957. extra: 1950/1856,
  32958. bottom: 174/2124
  32959. }
  32960. },
  32961. paw: {
  32962. height: math.unit(1, "feet"),
  32963. name: "Paw",
  32964. image: {
  32965. source: "./media/characters/softpurr/paw.svg"
  32966. }
  32967. },
  32968. },
  32969. [
  32970. {
  32971. name: "Normal",
  32972. height: math.unit(5 + 1/12, "feet"),
  32973. default: true
  32974. },
  32975. ]
  32976. ))
  32977. characterMakers.push(() => makeCharacter(
  32978. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32979. {
  32980. front: {
  32981. height: math.unit(260, "meters"),
  32982. name: "Front",
  32983. image: {
  32984. source: "./media/characters/anahita/front.svg",
  32985. extra: 665/635,
  32986. bottom: 89/754
  32987. }
  32988. },
  32989. },
  32990. [
  32991. {
  32992. name: "Macro",
  32993. height: math.unit(260, "meters"),
  32994. default: true
  32995. },
  32996. ]
  32997. ))
  32998. characterMakers.push(() => makeCharacter(
  32999. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33000. {
  33001. front: {
  33002. height: math.unit(4 + 10/12, "feet"),
  33003. weight: math.unit(160, "lb"),
  33004. name: "Front",
  33005. image: {
  33006. source: "./media/characters/chip-mouse/front.svg",
  33007. extra: 3528/3408,
  33008. bottom: 0/3528
  33009. }
  33010. },
  33011. frontNsfw: {
  33012. height: math.unit(4 + 10/12, "feet"),
  33013. weight: math.unit(160, "lb"),
  33014. name: "Front (NSFW)",
  33015. image: {
  33016. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33017. extra: 3528/3408,
  33018. bottom: 0/3528
  33019. }
  33020. },
  33021. },
  33022. [
  33023. {
  33024. name: "Normal",
  33025. height: math.unit(4 + 10/12, "feet"),
  33026. default: true
  33027. },
  33028. ]
  33029. ))
  33030. characterMakers.push(() => makeCharacter(
  33031. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33032. {
  33033. side: {
  33034. height: math.unit(10, "feet"),
  33035. weight: math.unit(14000, "lb"),
  33036. name: "Side",
  33037. image: {
  33038. source: "./media/characters/kremm/side.svg",
  33039. extra: 1390/1053,
  33040. bottom: 90/1480
  33041. }
  33042. },
  33043. gut: {
  33044. height: math.unit(5.8, "feet"),
  33045. name: "Gut",
  33046. image: {
  33047. source: "./media/characters/kremm/gut.svg"
  33048. }
  33049. },
  33050. ass: {
  33051. height: math.unit(6.1, "feet"),
  33052. name: "Ass",
  33053. image: {
  33054. source: "./media/characters/kremm/ass.svg"
  33055. }
  33056. },
  33057. jaws: {
  33058. height: math.unit(2.2, "feet"),
  33059. name: "Jaws",
  33060. image: {
  33061. source: "./media/characters/kremm/jaws.svg"
  33062. }
  33063. },
  33064. dick: {
  33065. height: math.unit(4.26, "feet"),
  33066. name: "Dick",
  33067. image: {
  33068. source: "./media/characters/kremm/dick.svg"
  33069. }
  33070. },
  33071. },
  33072. [
  33073. {
  33074. name: "Normal",
  33075. height: math.unit(10, "feet"),
  33076. default: true
  33077. },
  33078. ]
  33079. ))
  33080. characterMakers.push(() => makeCharacter(
  33081. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33082. {
  33083. front: {
  33084. height: math.unit(30, "stories"),
  33085. name: "Front",
  33086. image: {
  33087. source: "./media/characters/kai/front.svg",
  33088. extra: 1892/1718,
  33089. bottom: 162/2054
  33090. }
  33091. },
  33092. },
  33093. [
  33094. {
  33095. name: "Macro",
  33096. height: math.unit(30, "stories"),
  33097. default: true
  33098. },
  33099. ]
  33100. ))
  33101. characterMakers.push(() => makeCharacter(
  33102. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33103. {
  33104. front: {
  33105. height: math.unit(6 + 4/12, "feet"),
  33106. weight: math.unit(145, "lb"),
  33107. name: "Front",
  33108. image: {
  33109. source: "./media/characters/sykes/front.svg",
  33110. extra: 1321 / 1187,
  33111. bottom: 66 / 1387
  33112. }
  33113. },
  33114. back: {
  33115. height: math.unit(6 + 4/12, "feet"),
  33116. weight: math.unit(145, "lb"),
  33117. name: "Back",
  33118. image: {
  33119. source: "./media/characters/sykes/back.svg",
  33120. extra: 1326/1181,
  33121. bottom: 31/1357
  33122. }
  33123. },
  33124. handBack: {
  33125. height: math.unit(0.9, "feet"),
  33126. name: "Hand (Back)",
  33127. image: {
  33128. source: "./media/characters/sykes/hand-back.svg"
  33129. }
  33130. },
  33131. handFront: {
  33132. height: math.unit(0.839, "feet"),
  33133. name: "Hand (Front)",
  33134. image: {
  33135. source: "./media/characters/sykes/hand-front.svg"
  33136. }
  33137. },
  33138. leftFoot: {
  33139. height: math.unit(1.2, "feet"),
  33140. name: "Foot (Left)",
  33141. image: {
  33142. source: "./media/characters/sykes/foot-left.svg"
  33143. }
  33144. },
  33145. rightFoot: {
  33146. height: math.unit(1.2, "feet"),
  33147. name: "Foot (Right)",
  33148. image: {
  33149. source: "./media/characters/sykes/foot-right.svg"
  33150. }
  33151. },
  33152. maw: {
  33153. height: math.unit(1.93, "feet"),
  33154. name: "Maw",
  33155. image: {
  33156. source: "./media/characters/sykes/maw.svg"
  33157. }
  33158. },
  33159. teeth: {
  33160. height: math.unit(0.51, "feet"),
  33161. name: "Teeth",
  33162. image: {
  33163. source: "./media/characters/sykes/teeth.svg"
  33164. }
  33165. },
  33166. tongue: {
  33167. height: math.unit(2.13, "feet"),
  33168. name: "Tongue",
  33169. image: {
  33170. source: "./media/characters/sykes/tongue.svg"
  33171. }
  33172. },
  33173. uvula: {
  33174. height: math.unit(0.16, "feet"),
  33175. name: "Uvula",
  33176. image: {
  33177. source: "./media/characters/sykes/uvula.svg"
  33178. }
  33179. },
  33180. collar: {
  33181. height: math.unit(0.287, "feet"),
  33182. name: "Collar",
  33183. image: {
  33184. source: "./media/characters/sykes/collar.svg"
  33185. }
  33186. },
  33187. },
  33188. [
  33189. {
  33190. name: "Shrunken",
  33191. height: math.unit(5, "inches")
  33192. },
  33193. {
  33194. name: "Normal",
  33195. height: math.unit(6 + 4 / 12, "feet"),
  33196. default: true
  33197. },
  33198. {
  33199. name: "Big",
  33200. height: math.unit(15, "feet")
  33201. },
  33202. ]
  33203. ))
  33204. characterMakers.push(() => makeCharacter(
  33205. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33206. {
  33207. front: {
  33208. height: math.unit(5 + 8/12, "feet"),
  33209. weight: math.unit(190, "lb"),
  33210. name: "Front",
  33211. image: {
  33212. source: "./media/characters/oven-otter/front.svg",
  33213. extra: 1809/1740,
  33214. bottom: 181/1990
  33215. }
  33216. },
  33217. back: {
  33218. height: math.unit(5 + 8/12, "feet"),
  33219. weight: math.unit(190, "lb"),
  33220. name: "Back",
  33221. image: {
  33222. source: "./media/characters/oven-otter/back.svg",
  33223. extra: 1709/1635,
  33224. bottom: 118/1827
  33225. }
  33226. },
  33227. hand: {
  33228. height: math.unit(1.07, "feet"),
  33229. name: "Hand",
  33230. image: {
  33231. source: "./media/characters/oven-otter/hand.svg"
  33232. }
  33233. },
  33234. beans: {
  33235. height: math.unit(1.74, "feet"),
  33236. name: "Beans",
  33237. image: {
  33238. source: "./media/characters/oven-otter/beans.svg"
  33239. }
  33240. },
  33241. },
  33242. [
  33243. {
  33244. name: "Micro",
  33245. height: math.unit(0.5, "inches")
  33246. },
  33247. {
  33248. name: "Normal",
  33249. height: math.unit(5 + 8/12, "feet"),
  33250. default: true
  33251. },
  33252. {
  33253. name: "Macro",
  33254. height: math.unit(250, "feet")
  33255. },
  33256. {
  33257. name: "Really High",
  33258. height: math.unit(420, "feet")
  33259. },
  33260. ]
  33261. ))
  33262. characterMakers.push(() => makeCharacter(
  33263. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33264. {
  33265. front: {
  33266. height: math.unit(5, "meters"),
  33267. weight: math.unit(292000000000000, "kg"),
  33268. name: "Front",
  33269. image: {
  33270. source: "./media/characters/devourer/front.svg",
  33271. extra: 1800/1733,
  33272. bottom: 211/2011
  33273. }
  33274. },
  33275. maw: {
  33276. height: math.unit(1.1, "meter"),
  33277. name: "Maw",
  33278. image: {
  33279. source: "./media/characters/devourer/maw.svg"
  33280. }
  33281. },
  33282. },
  33283. [
  33284. {
  33285. name: "Small",
  33286. height: math.unit(3, "meters")
  33287. },
  33288. {
  33289. name: "Large",
  33290. height: math.unit(5, "meters"),
  33291. default: true
  33292. },
  33293. ]
  33294. ))
  33295. characterMakers.push(() => makeCharacter(
  33296. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33297. {
  33298. front: {
  33299. height: math.unit(6, "feet"),
  33300. weight: math.unit(400, "lb"),
  33301. name: "Front",
  33302. image: {
  33303. source: "./media/characters/ellarby/front.svg",
  33304. extra: 1909/1763,
  33305. bottom: 80/1989
  33306. }
  33307. },
  33308. back: {
  33309. height: math.unit(6, "feet"),
  33310. weight: math.unit(400, "lb"),
  33311. name: "Back",
  33312. image: {
  33313. source: "./media/characters/ellarby/back.svg",
  33314. extra: 1914/1784,
  33315. bottom: 172/2086
  33316. }
  33317. },
  33318. },
  33319. [
  33320. {
  33321. name: "Mischief",
  33322. height: math.unit(18, "inches")
  33323. },
  33324. {
  33325. name: "Trouble",
  33326. height: math.unit(12, "feet")
  33327. },
  33328. {
  33329. name: "Havoc",
  33330. height: math.unit(200, "feet"),
  33331. default: true
  33332. },
  33333. {
  33334. name: "Pandemonium",
  33335. height: math.unit(1, "mile")
  33336. },
  33337. {
  33338. name: "Catastrophe",
  33339. height: math.unit(100, "miles")
  33340. },
  33341. ]
  33342. ))
  33343. characterMakers.push(() => makeCharacter(
  33344. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33345. {
  33346. front: {
  33347. height: math.unit(4.7, "meters"),
  33348. weight: math.unit(6500, "kg"),
  33349. name: "Front",
  33350. image: {
  33351. source: "./media/characters/vex/front.svg",
  33352. extra: 1288/1140,
  33353. bottom: 100/1388
  33354. }
  33355. },
  33356. },
  33357. [
  33358. {
  33359. name: "Normal",
  33360. height: math.unit(4.7, "meters"),
  33361. default: true
  33362. },
  33363. ]
  33364. ))
  33365. characterMakers.push(() => makeCharacter(
  33366. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33367. {
  33368. normal: {
  33369. height: math.unit(6, "feet"),
  33370. weight: math.unit(350, "lb"),
  33371. name: "Normal",
  33372. image: {
  33373. source: "./media/characters/teshy/normal.svg",
  33374. extra: 1795/1735,
  33375. bottom: 16/1811
  33376. }
  33377. },
  33378. monsterFront: {
  33379. height: math.unit(12, "feet"),
  33380. weight: math.unit(4700, "lb"),
  33381. name: "Monster (Front)",
  33382. image: {
  33383. source: "./media/characters/teshy/monster-front.svg",
  33384. extra: 2042/2034,
  33385. bottom: 128/2170
  33386. }
  33387. },
  33388. monsterSide: {
  33389. height: math.unit(12, "feet"),
  33390. weight: math.unit(4700, "lb"),
  33391. name: "Monster (Side)",
  33392. image: {
  33393. source: "./media/characters/teshy/monster-side.svg",
  33394. extra: 2067/2056,
  33395. bottom: 70/2137
  33396. }
  33397. },
  33398. monsterBack: {
  33399. height: math.unit(12, "feet"),
  33400. weight: math.unit(4700, "lb"),
  33401. name: "Monster (Back)",
  33402. image: {
  33403. source: "./media/characters/teshy/monster-back.svg",
  33404. extra: 1921/1914,
  33405. bottom: 171/2092
  33406. }
  33407. },
  33408. },
  33409. [
  33410. {
  33411. name: "Normal",
  33412. height: math.unit(6, "feet"),
  33413. default: true
  33414. },
  33415. ]
  33416. ))
  33417. characterMakers.push(() => makeCharacter(
  33418. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33419. {
  33420. front: {
  33421. height: math.unit(6, "feet"),
  33422. name: "Front",
  33423. image: {
  33424. source: "./media/characters/ramey/front.svg",
  33425. extra: 790/787,
  33426. bottom: 27/817
  33427. }
  33428. },
  33429. },
  33430. [
  33431. {
  33432. name: "Normal",
  33433. height: math.unit(6, "feet"),
  33434. default: true
  33435. },
  33436. ]
  33437. ))
  33438. characterMakers.push(() => makeCharacter(
  33439. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33440. {
  33441. front: {
  33442. height: math.unit(5 + 5/12, "feet"),
  33443. weight: math.unit(120, "lb"),
  33444. name: "Front",
  33445. image: {
  33446. source: "./media/characters/phirae/front.svg",
  33447. extra: 2491/2436,
  33448. bottom: 38/2529
  33449. }
  33450. },
  33451. },
  33452. [
  33453. {
  33454. name: "Normal",
  33455. height: math.unit(5 + 5/12, "feet"),
  33456. default: true
  33457. },
  33458. ]
  33459. ))
  33460. characterMakers.push(() => makeCharacter(
  33461. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33462. {
  33463. front: {
  33464. height: math.unit(6, "feet"),
  33465. weight: math.unit(150, "lb"),
  33466. name: "Front",
  33467. image: {
  33468. source: "./media/characters/stagglas/front.svg",
  33469. extra: 962/882,
  33470. bottom: 53/1015
  33471. }
  33472. },
  33473. },
  33474. [
  33475. {
  33476. name: "Normal",
  33477. height: math.unit(5 + 3/12, "feet"),
  33478. default: true
  33479. },
  33480. ]
  33481. ))
  33482. characterMakers.push(() => makeCharacter(
  33483. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33484. {
  33485. front: {
  33486. height: math.unit(5 + 4/12, "feet"),
  33487. weight: math.unit(145, "lb"),
  33488. name: "Front",
  33489. image: {
  33490. source: "./media/characters/starra/front.svg",
  33491. extra: 1790/1691,
  33492. bottom: 91/1881
  33493. }
  33494. },
  33495. },
  33496. [
  33497. {
  33498. name: "Normal",
  33499. height: math.unit(5 + 4/12, "feet"),
  33500. default: true
  33501. },
  33502. ]
  33503. ))
  33504. characterMakers.push(() => makeCharacter(
  33505. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33506. {
  33507. front: {
  33508. height: math.unit(2.2, "meters"),
  33509. name: "Front",
  33510. image: {
  33511. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33512. extra: 1194/1005,
  33513. bottom: 25/1219
  33514. }
  33515. },
  33516. },
  33517. [
  33518. {
  33519. name: "Normal",
  33520. height: math.unit(2.2, "meters"),
  33521. default: true
  33522. },
  33523. ]
  33524. ))
  33525. characterMakers.push(() => makeCharacter(
  33526. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33527. {
  33528. side: {
  33529. height: math.unit(8 + 2/12, "feet"),
  33530. weight: math.unit(1240, "lb"),
  33531. name: "Side",
  33532. image: {
  33533. source: "./media/characters/mika-valentine/side.svg",
  33534. extra: 2670/2501,
  33535. bottom: 250/2920
  33536. }
  33537. },
  33538. },
  33539. [
  33540. {
  33541. name: "Normal",
  33542. height: math.unit(8 + 2/12, "feet"),
  33543. default: true
  33544. },
  33545. ]
  33546. ))
  33547. characterMakers.push(() => makeCharacter(
  33548. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33549. {
  33550. front: {
  33551. height: math.unit(7 + 2/12, "feet"),
  33552. name: "Front",
  33553. image: {
  33554. source: "./media/characters/xoltol/front.svg",
  33555. extra: 2212/2124,
  33556. bottom: 84/2296
  33557. }
  33558. },
  33559. side: {
  33560. height: math.unit(7 + 2/12, "feet"),
  33561. name: "Side",
  33562. image: {
  33563. source: "./media/characters/xoltol/side.svg",
  33564. extra: 2273/2197,
  33565. bottom: 26/2299
  33566. }
  33567. },
  33568. hand: {
  33569. height: math.unit(2.5, "feet"),
  33570. name: "Hand",
  33571. image: {
  33572. source: "./media/characters/xoltol/hand.svg"
  33573. }
  33574. },
  33575. },
  33576. [
  33577. {
  33578. name: "Small-ish",
  33579. height: math.unit(5 + 11/12, "feet")
  33580. },
  33581. {
  33582. name: "Normal",
  33583. height: math.unit(7 + 2/12, "feet")
  33584. },
  33585. {
  33586. name: "\"Macro\"",
  33587. height: math.unit(14 + 9/12, "feet"),
  33588. default: true
  33589. },
  33590. {
  33591. name: "Alternate Height",
  33592. height: math.unit(20, "feet")
  33593. },
  33594. {
  33595. name: "Actually Macro",
  33596. height: math.unit(100, "feet")
  33597. },
  33598. ]
  33599. ))
  33600. characterMakers.push(() => makeCharacter(
  33601. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33602. {
  33603. front: {
  33604. height: math.unit(5 + 2/12, "feet"),
  33605. name: "Front",
  33606. image: {
  33607. source: "./media/characters/kotetsu-redwood/front.svg",
  33608. extra: 1053/942,
  33609. bottom: 60/1113
  33610. }
  33611. },
  33612. },
  33613. [
  33614. {
  33615. name: "Normal",
  33616. height: math.unit(5 + 2/12, "feet"),
  33617. default: true
  33618. },
  33619. ]
  33620. ))
  33621. characterMakers.push(() => makeCharacter(
  33622. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33623. {
  33624. front: {
  33625. height: math.unit(2.4, "meters"),
  33626. weight: math.unit(125, "kg"),
  33627. name: "Front",
  33628. image: {
  33629. source: "./media/characters/lilith/front.svg",
  33630. extra: 1590/1513,
  33631. bottom: 203/1793
  33632. }
  33633. },
  33634. },
  33635. [
  33636. {
  33637. name: "Humanoid",
  33638. height: math.unit(2.4, "meters")
  33639. },
  33640. {
  33641. name: "Normal",
  33642. height: math.unit(6, "meters"),
  33643. default: true
  33644. },
  33645. {
  33646. name: "Largest",
  33647. height: math.unit(55, "meters")
  33648. },
  33649. ]
  33650. ))
  33651. characterMakers.push(() => makeCharacter(
  33652. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33653. {
  33654. front: {
  33655. height: math.unit(8 + 4/12, "feet"),
  33656. weight: math.unit(535, "lb"),
  33657. name: "Front",
  33658. image: {
  33659. source: "./media/characters/beh'kah-bolger/front.svg",
  33660. extra: 1660/1603,
  33661. bottom: 37/1697
  33662. }
  33663. },
  33664. },
  33665. [
  33666. {
  33667. name: "Normal",
  33668. height: math.unit(8 + 4/12, "feet"),
  33669. default: true
  33670. },
  33671. {
  33672. name: "Kaiju",
  33673. height: math.unit(250, "feet")
  33674. },
  33675. {
  33676. name: "Still Growing",
  33677. height: math.unit(10, "miles")
  33678. },
  33679. {
  33680. name: "Continental",
  33681. height: math.unit(5000, "miles")
  33682. },
  33683. {
  33684. name: "Final Form",
  33685. height: math.unit(2500000, "miles")
  33686. },
  33687. ]
  33688. ))
  33689. characterMakers.push(() => makeCharacter(
  33690. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33691. {
  33692. front: {
  33693. height: math.unit(7 + 2/12, "feet"),
  33694. weight: math.unit(230, "kg"),
  33695. name: "Front",
  33696. image: {
  33697. source: "./media/characters/tatyana-milewska/front.svg",
  33698. extra: 1199/1150,
  33699. bottom: 86/1285
  33700. }
  33701. },
  33702. },
  33703. [
  33704. {
  33705. name: "Normal",
  33706. height: math.unit(7 + 2/12, "feet"),
  33707. default: true
  33708. },
  33709. {
  33710. name: "Big",
  33711. height: math.unit(12, "feet")
  33712. },
  33713. {
  33714. name: "Minimacro",
  33715. height: math.unit(20, "feet")
  33716. },
  33717. {
  33718. name: "Macro",
  33719. height: math.unit(120, "feet")
  33720. },
  33721. ]
  33722. ))
  33723. characterMakers.push(() => makeCharacter(
  33724. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33725. {
  33726. front: {
  33727. height: math.unit(7 + 8/12, "feet"),
  33728. weight: math.unit(152, "kg"),
  33729. name: "Front",
  33730. image: {
  33731. source: "./media/characters/helen-arri/front.svg",
  33732. extra: 440/423,
  33733. bottom: 14/454
  33734. }
  33735. },
  33736. back: {
  33737. height: math.unit(7 + 8/12, "feet"),
  33738. weight: math.unit(152, "kg"),
  33739. name: "Back",
  33740. image: {
  33741. source: "./media/characters/helen-arri/back.svg",
  33742. extra: 443/426,
  33743. bottom: 8/451
  33744. }
  33745. },
  33746. },
  33747. [
  33748. {
  33749. name: "Normal",
  33750. height: math.unit(7 + 8/12, "feet"),
  33751. default: true
  33752. },
  33753. {
  33754. name: "Big",
  33755. height: math.unit(14, "feet")
  33756. },
  33757. {
  33758. name: "Minimacro",
  33759. height: math.unit(24, "feet")
  33760. },
  33761. {
  33762. name: "Macro",
  33763. height: math.unit(140, "feet")
  33764. },
  33765. ]
  33766. ))
  33767. characterMakers.push(() => makeCharacter(
  33768. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33769. {
  33770. front: {
  33771. height: math.unit(6, "meters"),
  33772. name: "Front",
  33773. image: {
  33774. source: "./media/characters/ehanu-rehu/front.svg",
  33775. extra: 1800/1800,
  33776. bottom: 59/1859
  33777. }
  33778. },
  33779. },
  33780. [
  33781. {
  33782. name: "Normal",
  33783. height: math.unit(6, "meters"),
  33784. default: true
  33785. },
  33786. ]
  33787. ))
  33788. characterMakers.push(() => makeCharacter(
  33789. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33790. {
  33791. front: {
  33792. height: math.unit(7 + 3/12, "feet"),
  33793. name: "Front",
  33794. image: {
  33795. source: "./media/characters/renholder/front.svg",
  33796. extra: 3096/2960,
  33797. bottom: 250/3346
  33798. }
  33799. },
  33800. },
  33801. [
  33802. {
  33803. name: "Normal Bat",
  33804. height: math.unit(7 + 3/12, "feet"),
  33805. default: true
  33806. },
  33807. {
  33808. name: "Slightly Tall Bat",
  33809. height: math.unit(100, "feet")
  33810. },
  33811. {
  33812. name: "Big Bat",
  33813. height: math.unit(1000, "feet")
  33814. },
  33815. {
  33816. name: "City-Sized Bat",
  33817. height: math.unit(200000, "feet")
  33818. },
  33819. {
  33820. name: "Bigger Bat",
  33821. height: math.unit(10000, "miles")
  33822. },
  33823. {
  33824. name: "Solar Sized Bat",
  33825. height: math.unit(100, "AU")
  33826. },
  33827. {
  33828. name: "Galactic Bat",
  33829. height: math.unit(200000, "lightyears")
  33830. },
  33831. {
  33832. name: "Universally Known Bat",
  33833. height: math.unit(1, "universe")
  33834. },
  33835. ]
  33836. ))
  33837. characterMakers.push(() => makeCharacter(
  33838. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33839. {
  33840. front: {
  33841. height: math.unit(6 + 11/12, "feet"),
  33842. weight: math.unit(250, "lb"),
  33843. name: "Front",
  33844. image: {
  33845. source: "./media/characters/cookiecat/front.svg",
  33846. extra: 893/827,
  33847. bottom: 14/907
  33848. }
  33849. },
  33850. },
  33851. [
  33852. {
  33853. name: "Micro",
  33854. height: math.unit(3, "inches")
  33855. },
  33856. {
  33857. name: "Normal",
  33858. height: math.unit(6 + 11/12, "feet"),
  33859. default: true
  33860. },
  33861. {
  33862. name: "Macro",
  33863. height: math.unit(100, "feet")
  33864. },
  33865. {
  33866. name: "Macro+",
  33867. height: math.unit(404, "feet")
  33868. },
  33869. {
  33870. name: "Megamacro",
  33871. height: math.unit(165, "miles")
  33872. },
  33873. {
  33874. name: "Planetary",
  33875. height: math.unit(4600, "miles")
  33876. },
  33877. ]
  33878. ))
  33879. characterMakers.push(() => makeCharacter(
  33880. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33881. {
  33882. front: {
  33883. height: math.unit(10 + 3/12, "feet"),
  33884. weight: math.unit(1500, "lb"),
  33885. name: "Front",
  33886. image: {
  33887. source: "./media/characters/tux-kusanagi/front.svg",
  33888. extra: 944/840,
  33889. bottom: 39/983
  33890. }
  33891. },
  33892. back: {
  33893. height: math.unit(10 + 3/12, "feet"),
  33894. weight: math.unit(1500, "lb"),
  33895. name: "Back",
  33896. image: {
  33897. source: "./media/characters/tux-kusanagi/back.svg",
  33898. extra: 941/842,
  33899. bottom: 28/969
  33900. }
  33901. },
  33902. rump: {
  33903. height: math.unit(5.25, "feet"),
  33904. name: "Rump",
  33905. image: {
  33906. source: "./media/characters/tux-kusanagi/rump.svg"
  33907. }
  33908. },
  33909. beak: {
  33910. height: math.unit(1.54, "feet"),
  33911. name: "Beak",
  33912. image: {
  33913. source: "./media/characters/tux-kusanagi/beak.svg"
  33914. }
  33915. },
  33916. },
  33917. [
  33918. {
  33919. name: "Normal",
  33920. height: math.unit(10 + 3/12, "feet"),
  33921. default: true
  33922. },
  33923. ]
  33924. ))
  33925. characterMakers.push(() => makeCharacter(
  33926. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33927. {
  33928. front: {
  33929. height: math.unit(58, "feet"),
  33930. weight: math.unit(200, "tons"),
  33931. name: "Front",
  33932. image: {
  33933. source: "./media/characters/uzarmazari/front.svg",
  33934. extra: 1575/1455,
  33935. bottom: 152/1727
  33936. }
  33937. },
  33938. back: {
  33939. height: math.unit(58, "feet"),
  33940. weight: math.unit(200, "tons"),
  33941. name: "Back",
  33942. image: {
  33943. source: "./media/characters/uzarmazari/back.svg",
  33944. extra: 1585/1510,
  33945. bottom: 157/1742
  33946. }
  33947. },
  33948. head: {
  33949. height: math.unit(26, "feet"),
  33950. name: "Head",
  33951. image: {
  33952. source: "./media/characters/uzarmazari/head.svg"
  33953. }
  33954. },
  33955. },
  33956. [
  33957. {
  33958. name: "Normal",
  33959. height: math.unit(58, "feet"),
  33960. default: true
  33961. },
  33962. ]
  33963. ))
  33964. characterMakers.push(() => makeCharacter(
  33965. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33966. {
  33967. side: {
  33968. height: math.unit(15, "feet"),
  33969. name: "Side",
  33970. image: {
  33971. source: "./media/characters/akitu/side.svg",
  33972. extra: 1421/1321,
  33973. bottom: 157/1578
  33974. }
  33975. },
  33976. front: {
  33977. height: math.unit(15, "feet"),
  33978. name: "Front",
  33979. image: {
  33980. source: "./media/characters/akitu/front.svg",
  33981. extra: 1435/1326,
  33982. bottom: 232/1667
  33983. }
  33984. },
  33985. },
  33986. [
  33987. {
  33988. name: "Normal",
  33989. height: math.unit(15, "feet"),
  33990. default: true
  33991. },
  33992. ]
  33993. ))
  33994. characterMakers.push(() => makeCharacter(
  33995. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33996. {
  33997. front: {
  33998. height: math.unit(10 + 8/12, "feet"),
  33999. name: "Front",
  34000. image: {
  34001. source: "./media/characters/azalie-croixland/front.svg",
  34002. extra: 1972/1856,
  34003. bottom: 31/2003
  34004. }
  34005. },
  34006. },
  34007. [
  34008. {
  34009. name: "Original Height",
  34010. height: math.unit(5 + 4/12, "feet")
  34011. },
  34012. {
  34013. name: "Normal Height",
  34014. height: math.unit(10 + 8/12, "feet"),
  34015. default: true
  34016. },
  34017. ]
  34018. ))
  34019. characterMakers.push(() => makeCharacter(
  34020. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34021. {
  34022. side: {
  34023. height: math.unit(7 + 1/12, "feet"),
  34024. weight: math.unit(245, "lb"),
  34025. name: "Side",
  34026. image: {
  34027. source: "./media/characters/kavus-kazian/side.svg",
  34028. extra: 349/342,
  34029. bottom: 15/364
  34030. }
  34031. },
  34032. },
  34033. [
  34034. {
  34035. name: "Normal",
  34036. height: math.unit(7 + 1/12, "feet"),
  34037. default: true
  34038. },
  34039. ]
  34040. ))
  34041. characterMakers.push(() => makeCharacter(
  34042. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34043. {
  34044. normal: {
  34045. height: math.unit(5 + 11/12, "feet"),
  34046. name: "Normal",
  34047. image: {
  34048. source: "./media/characters/moonlight-rose/normal.svg",
  34049. extra: 1979/1835,
  34050. bottom: 14/1993
  34051. }
  34052. },
  34053. demon: {
  34054. height: math.unit(5, "km"),
  34055. name: "Demon",
  34056. image: {
  34057. source: "./media/characters/moonlight-rose/demon.svg",
  34058. extra: 986/916,
  34059. bottom: 28/1014
  34060. }
  34061. },
  34062. },
  34063. [
  34064. {
  34065. name: "\"Natural\" height",
  34066. height: math.unit(5 + 11/12, "feet")
  34067. },
  34068. {
  34069. name: "Comfortable Size",
  34070. height: math.unit(40, "meters")
  34071. },
  34072. {
  34073. name: "Common Size",
  34074. height: math.unit(50, "km"),
  34075. default: true
  34076. },
  34077. {
  34078. name: "Demonic",
  34079. height: math.unit(1.24415e+21, "meters")
  34080. },
  34081. ]
  34082. ))
  34083. characterMakers.push(() => makeCharacter(
  34084. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34085. {
  34086. front: {
  34087. height: math.unit(16, "feet"),
  34088. weight: math.unit(610, "kg"),
  34089. name: "Front",
  34090. image: {
  34091. source: "./media/characters/huckle/front.svg",
  34092. extra: 1731/1625,
  34093. bottom: 33/1764
  34094. }
  34095. },
  34096. back: {
  34097. height: math.unit(16, "feet"),
  34098. weight: math.unit(610, "kg"),
  34099. name: "Back",
  34100. image: {
  34101. source: "./media/characters/huckle/back.svg",
  34102. extra: 1738/1651,
  34103. bottom: 37/1775
  34104. }
  34105. },
  34106. laughing: {
  34107. height: math.unit(3.75, "feet"),
  34108. name: "Laughing",
  34109. image: {
  34110. source: "./media/characters/huckle/laughing.svg"
  34111. }
  34112. },
  34113. angry: {
  34114. height: math.unit(4.15, "feet"),
  34115. name: "Angry",
  34116. image: {
  34117. source: "./media/characters/huckle/angry.svg"
  34118. }
  34119. },
  34120. },
  34121. [
  34122. {
  34123. name: "Normal",
  34124. height: math.unit(16, "feet"),
  34125. default: true
  34126. },
  34127. {
  34128. name: "Mini Macro",
  34129. height: math.unit(463, "feet")
  34130. },
  34131. {
  34132. name: "Macro",
  34133. height: math.unit(1680, "meters")
  34134. },
  34135. {
  34136. name: "Mega Macro",
  34137. height: math.unit(175, "km")
  34138. },
  34139. {
  34140. name: "Terra Macro",
  34141. height: math.unit(32, "gigameters")
  34142. },
  34143. {
  34144. name: "Multiverse+",
  34145. height: math.unit(2.56e23, "yottameters")
  34146. },
  34147. ]
  34148. ))
  34149. characterMakers.push(() => makeCharacter(
  34150. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34151. {
  34152. front: {
  34153. height: math.unit(6 + 9/12, "feet"),
  34154. weight: math.unit(280, "lb"),
  34155. name: "Front",
  34156. image: {
  34157. source: "./media/characters/candy/front.svg",
  34158. extra: 234/217,
  34159. bottom: 11/245
  34160. }
  34161. },
  34162. },
  34163. [
  34164. {
  34165. name: "Really Small",
  34166. height: math.unit(0.1, "nm")
  34167. },
  34168. {
  34169. name: "Micro",
  34170. height: math.unit(2, "inches")
  34171. },
  34172. {
  34173. name: "Normal",
  34174. height: math.unit(6 + 9/12, "feet"),
  34175. default: true
  34176. },
  34177. {
  34178. name: "Small Macro",
  34179. height: math.unit(69, "feet")
  34180. },
  34181. {
  34182. name: "Macro",
  34183. height: math.unit(160, "feet")
  34184. },
  34185. {
  34186. name: "Megamacro",
  34187. height: math.unit(22000, "miles")
  34188. },
  34189. {
  34190. name: "Gigamacro",
  34191. height: math.unit(50000, "miles")
  34192. },
  34193. ]
  34194. ))
  34195. characterMakers.push(() => makeCharacter(
  34196. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34197. {
  34198. front: {
  34199. height: math.unit(4, "feet"),
  34200. weight: math.unit(90, "lb"),
  34201. name: "Front",
  34202. image: {
  34203. source: "./media/characters/joey-mcdonald/front.svg",
  34204. extra: 1059/852,
  34205. bottom: 33/1092
  34206. }
  34207. },
  34208. back: {
  34209. height: math.unit(4, "feet"),
  34210. weight: math.unit(90, "lb"),
  34211. name: "Back",
  34212. image: {
  34213. source: "./media/characters/joey-mcdonald/back.svg",
  34214. extra: 1077/879,
  34215. bottom: 5/1082
  34216. }
  34217. },
  34218. },
  34219. [
  34220. {
  34221. name: "Normal",
  34222. height: math.unit(4, "feet"),
  34223. default: true
  34224. },
  34225. ]
  34226. ))
  34227. characterMakers.push(() => makeCharacter(
  34228. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34229. {
  34230. front: {
  34231. height: math.unit(12 + 6/12, "feet"),
  34232. name: "Front",
  34233. image: {
  34234. source: "./media/characters/kass-lockheed/front.svg",
  34235. extra: 354/343,
  34236. bottom: 9/363
  34237. }
  34238. },
  34239. back: {
  34240. height: math.unit(12 + 6/12, "feet"),
  34241. name: "Back",
  34242. image: {
  34243. source: "./media/characters/kass-lockheed/back.svg",
  34244. extra: 364/352,
  34245. bottom: 3/367
  34246. }
  34247. },
  34248. dick: {
  34249. height: math.unit(3.12, "feet"),
  34250. name: "Dick",
  34251. image: {
  34252. source: "./media/characters/kass-lockheed/dick.svg"
  34253. }
  34254. },
  34255. head: {
  34256. height: math.unit(2.6, "feet"),
  34257. name: "Head",
  34258. image: {
  34259. source: "./media/characters/kass-lockheed/head.svg"
  34260. }
  34261. },
  34262. bleh: {
  34263. height: math.unit(2.85, "feet"),
  34264. name: "Bleh",
  34265. image: {
  34266. source: "./media/characters/kass-lockheed/bleh.svg"
  34267. }
  34268. },
  34269. smug: {
  34270. height: math.unit(2.85, "feet"),
  34271. name: "Smug",
  34272. image: {
  34273. source: "./media/characters/kass-lockheed/smug.svg"
  34274. }
  34275. },
  34276. },
  34277. [
  34278. {
  34279. name: "Normal",
  34280. height: math.unit(12 + 6/12, "feet"),
  34281. default: true
  34282. },
  34283. ]
  34284. ))
  34285. characterMakers.push(() => makeCharacter(
  34286. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34287. {
  34288. front: {
  34289. height: math.unit(6 + 2/12, "feet"),
  34290. name: "Front",
  34291. image: {
  34292. source: "./media/characters/taylor/front.svg",
  34293. extra: 639/495,
  34294. bottom: 12/651
  34295. }
  34296. },
  34297. },
  34298. [
  34299. {
  34300. name: "Normal",
  34301. height: math.unit(6 + 2/12, "feet"),
  34302. default: true
  34303. },
  34304. {
  34305. name: "Big",
  34306. height: math.unit(15, "feet")
  34307. },
  34308. {
  34309. name: "Lorg",
  34310. height: math.unit(80, "feet")
  34311. },
  34312. {
  34313. name: "Too Lorg",
  34314. height: math.unit(120, "feet")
  34315. },
  34316. ]
  34317. ))
  34318. characterMakers.push(() => makeCharacter(
  34319. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34320. {
  34321. front: {
  34322. height: math.unit(15, "feet"),
  34323. name: "Front",
  34324. image: {
  34325. source: "./media/characters/kaizer/front.svg",
  34326. extra: 1612/1436,
  34327. bottom: 43/1655
  34328. }
  34329. },
  34330. },
  34331. [
  34332. {
  34333. name: "Normal",
  34334. height: math.unit(15, "feet"),
  34335. default: true
  34336. },
  34337. ]
  34338. ))
  34339. characterMakers.push(() => makeCharacter(
  34340. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34341. {
  34342. front: {
  34343. height: math.unit(2, "feet"),
  34344. weight: math.unit(30, "lb"),
  34345. name: "Front",
  34346. image: {
  34347. source: "./media/characters/sandy/front.svg",
  34348. extra: 1439/1307,
  34349. bottom: 194/1633
  34350. }
  34351. },
  34352. },
  34353. [
  34354. {
  34355. name: "Normal",
  34356. height: math.unit(2, "feet"),
  34357. default: true
  34358. },
  34359. ]
  34360. ))
  34361. characterMakers.push(() => makeCharacter(
  34362. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34363. {
  34364. front: {
  34365. height: math.unit(3, "feet"),
  34366. name: "Front",
  34367. image: {
  34368. source: "./media/characters/mellvi/front.svg",
  34369. extra: 1831/1630,
  34370. bottom: 58/1889
  34371. }
  34372. },
  34373. },
  34374. [
  34375. {
  34376. name: "Normal",
  34377. height: math.unit(3, "feet"),
  34378. default: true
  34379. },
  34380. ]
  34381. ))
  34382. characterMakers.push(() => makeCharacter(
  34383. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34384. {
  34385. front: {
  34386. height: math.unit(5 + 11/12, "feet"),
  34387. weight: math.unit(200, "lb"),
  34388. name: "Front",
  34389. image: {
  34390. source: "./media/characters/shirou/front.svg",
  34391. extra: 2491/2383,
  34392. bottom: 189/2680
  34393. }
  34394. },
  34395. back: {
  34396. height: math.unit(5 + 11/12, "feet"),
  34397. weight: math.unit(200, "lb"),
  34398. name: "Back",
  34399. image: {
  34400. source: "./media/characters/shirou/back.svg",
  34401. extra: 2554/2450,
  34402. bottom: 76/2630
  34403. }
  34404. },
  34405. },
  34406. [
  34407. {
  34408. name: "Normal",
  34409. height: math.unit(5 + 11/12, "feet"),
  34410. default: true
  34411. },
  34412. ]
  34413. ))
  34414. characterMakers.push(() => makeCharacter(
  34415. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34416. {
  34417. front: {
  34418. height: math.unit(6 + 3/12, "feet"),
  34419. weight: math.unit(177, "lb"),
  34420. name: "Front",
  34421. image: {
  34422. source: "./media/characters/noryu/front.svg",
  34423. extra: 973/885,
  34424. bottom: 10/983
  34425. }
  34426. },
  34427. },
  34428. [
  34429. {
  34430. name: "Normal",
  34431. height: math.unit(6 + 3/12, "feet"),
  34432. default: true
  34433. },
  34434. ]
  34435. ))
  34436. characterMakers.push(() => makeCharacter(
  34437. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34438. {
  34439. front: {
  34440. height: math.unit(5 + 6/12, "feet"),
  34441. weight: math.unit(170, "lb"),
  34442. name: "Front",
  34443. image: {
  34444. source: "./media/characters/mevolas-rubenido/front.svg",
  34445. extra: 2109/1901,
  34446. bottom: 96/2205
  34447. }
  34448. },
  34449. },
  34450. [
  34451. {
  34452. name: "Normal",
  34453. height: math.unit(5 + 6/12, "feet"),
  34454. default: true
  34455. },
  34456. ]
  34457. ))
  34458. characterMakers.push(() => makeCharacter(
  34459. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34460. {
  34461. front: {
  34462. height: math.unit(100, "feet"),
  34463. name: "Front",
  34464. image: {
  34465. source: "./media/characters/dee/front.svg",
  34466. extra: 2153/2036,
  34467. bottom: 59/2212
  34468. }
  34469. },
  34470. back: {
  34471. height: math.unit(100, "feet"),
  34472. name: "Back",
  34473. image: {
  34474. source: "./media/characters/dee/back.svg",
  34475. extra: 2183/2058,
  34476. bottom: 75/2258
  34477. }
  34478. },
  34479. foot: {
  34480. height: math.unit(19.43, "feet"),
  34481. name: "Foot",
  34482. image: {
  34483. source: "./media/characters/dee/foot.svg"
  34484. }
  34485. },
  34486. hoof: {
  34487. height: math.unit(20.6, "feet"),
  34488. name: "Hoof",
  34489. image: {
  34490. source: "./media/characters/dee/hoof.svg"
  34491. }
  34492. },
  34493. },
  34494. [
  34495. {
  34496. name: "Macro",
  34497. height: math.unit(100, "feet"),
  34498. default: true
  34499. },
  34500. ]
  34501. ))
  34502. characterMakers.push(() => makeCharacter(
  34503. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34504. {
  34505. front: {
  34506. height: math.unit(5 + 6/12, "feet"),
  34507. name: "Front",
  34508. image: {
  34509. source: "./media/characters/teh/front.svg",
  34510. extra: 1002/847,
  34511. bottom: 62/1064
  34512. }
  34513. },
  34514. },
  34515. [
  34516. {
  34517. name: "Normal",
  34518. height: math.unit(5 + 6/12, "feet"),
  34519. default: true
  34520. },
  34521. ]
  34522. ))
  34523. characterMakers.push(() => makeCharacter(
  34524. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34525. {
  34526. side: {
  34527. height: math.unit(6 + 1/12, "feet"),
  34528. weight: math.unit(204, "lb"),
  34529. name: "Side",
  34530. image: {
  34531. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34532. extra: 974/775,
  34533. bottom: 169/1143
  34534. }
  34535. },
  34536. sitting: {
  34537. height: math.unit(6 + 2/12, "feet"),
  34538. weight: math.unit(204, "lb"),
  34539. name: "Sitting",
  34540. image: {
  34541. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34542. extra: 1175/964,
  34543. bottom: 378/1553
  34544. }
  34545. },
  34546. },
  34547. [
  34548. {
  34549. name: "Normal",
  34550. height: math.unit(6 + 1/12, "feet"),
  34551. default: true
  34552. },
  34553. ]
  34554. ))
  34555. characterMakers.push(() => makeCharacter(
  34556. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34557. {
  34558. front: {
  34559. height: math.unit(6, "inches"),
  34560. name: "Front",
  34561. image: {
  34562. source: "./media/characters/tululi/front.svg",
  34563. extra: 1997/1876,
  34564. bottom: 20/2017
  34565. }
  34566. },
  34567. },
  34568. [
  34569. {
  34570. name: "Normal",
  34571. height: math.unit(6, "inches"),
  34572. default: true
  34573. },
  34574. ]
  34575. ))
  34576. characterMakers.push(() => makeCharacter(
  34577. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34578. {
  34579. front: {
  34580. height: math.unit(4 + 1/12, "feet"),
  34581. name: "Front",
  34582. image: {
  34583. source: "./media/characters/star/front.svg",
  34584. extra: 1493/1189,
  34585. bottom: 48/1541
  34586. }
  34587. },
  34588. },
  34589. [
  34590. {
  34591. name: "Normal",
  34592. height: math.unit(4 + 1/12, "feet"),
  34593. default: true
  34594. },
  34595. ]
  34596. ))
  34597. characterMakers.push(() => makeCharacter(
  34598. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34599. {
  34600. front: {
  34601. height: math.unit(6 + 3/12, "feet"),
  34602. name: "Front",
  34603. image: {
  34604. source: "./media/characters/comet/front.svg",
  34605. extra: 1681/1462,
  34606. bottom: 26/1707
  34607. }
  34608. },
  34609. },
  34610. [
  34611. {
  34612. name: "Normal",
  34613. height: math.unit(6 + 3/12, "feet"),
  34614. default: true
  34615. },
  34616. ]
  34617. ))
  34618. characterMakers.push(() => makeCharacter(
  34619. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34620. {
  34621. front: {
  34622. height: math.unit(950, "feet"),
  34623. name: "Front",
  34624. image: {
  34625. source: "./media/characters/vortex/front.svg",
  34626. extra: 1497/1434,
  34627. bottom: 56/1553
  34628. }
  34629. },
  34630. maw: {
  34631. height: math.unit(285, "feet"),
  34632. name: "Maw",
  34633. image: {
  34634. source: "./media/characters/vortex/maw.svg"
  34635. }
  34636. },
  34637. },
  34638. [
  34639. {
  34640. name: "Macro",
  34641. height: math.unit(950, "feet"),
  34642. default: true
  34643. },
  34644. ]
  34645. ))
  34646. characterMakers.push(() => makeCharacter(
  34647. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34648. {
  34649. front: {
  34650. height: math.unit(600, "feet"),
  34651. weight: math.unit(0.02, "grams"),
  34652. name: "Front",
  34653. image: {
  34654. source: "./media/characters/doodle/front.svg",
  34655. extra: 1578/1413,
  34656. bottom: 37/1615
  34657. }
  34658. },
  34659. },
  34660. [
  34661. {
  34662. name: "Macro",
  34663. height: math.unit(600, "feet"),
  34664. default: true
  34665. },
  34666. ]
  34667. ))
  34668. characterMakers.push(() => makeCharacter(
  34669. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34670. {
  34671. front: {
  34672. height: math.unit(6 + 6/12, "feet"),
  34673. name: "Front",
  34674. image: {
  34675. source: "./media/characters/jai/front.svg",
  34676. extra: 1645/1534,
  34677. bottom: 115/1760
  34678. }
  34679. },
  34680. },
  34681. [
  34682. {
  34683. name: "Normal",
  34684. height: math.unit(6 + 6/12, "feet"),
  34685. default: true
  34686. },
  34687. ]
  34688. ))
  34689. characterMakers.push(() => makeCharacter(
  34690. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34691. {
  34692. front: {
  34693. height: math.unit(6 + 8/12, "feet"),
  34694. name: "Front",
  34695. image: {
  34696. source: "./media/characters/pixel/front.svg",
  34697. extra: 1900/1735,
  34698. bottom: 63/1963
  34699. }
  34700. },
  34701. },
  34702. [
  34703. {
  34704. name: "Normal",
  34705. height: math.unit(6 + 8/12, "feet"),
  34706. default: true
  34707. },
  34708. ]
  34709. ))
  34710. characterMakers.push(() => makeCharacter(
  34711. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34712. {
  34713. front: {
  34714. height: math.unit(4 + 11/12, "feet"),
  34715. weight: math.unit(111, "lb"),
  34716. name: "Front",
  34717. image: {
  34718. source: "./media/characters/rhett/front.svg",
  34719. extra: 1682/1586,
  34720. bottom: 92/1774
  34721. }
  34722. },
  34723. },
  34724. [
  34725. {
  34726. name: "Mini",
  34727. height: math.unit(1 + 1/12, "feet")
  34728. },
  34729. {
  34730. name: "Normal",
  34731. height: math.unit(4 + 11/12, "feet"),
  34732. default: true
  34733. },
  34734. ]
  34735. ))
  34736. characterMakers.push(() => makeCharacter(
  34737. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34738. {
  34739. front: {
  34740. height: math.unit(3 + 3/12, "feet"),
  34741. name: "Front",
  34742. image: {
  34743. source: "./media/characters/penny/front.svg",
  34744. extra: 1406/1311,
  34745. bottom: 26/1432
  34746. }
  34747. },
  34748. },
  34749. [
  34750. {
  34751. name: "Normal",
  34752. height: math.unit(3 + 3/12, "feet"),
  34753. default: true
  34754. },
  34755. ]
  34756. ))
  34757. characterMakers.push(() => makeCharacter(
  34758. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34759. {
  34760. front: {
  34761. height: math.unit(4 + 11/12, "feet"),
  34762. name: "Front",
  34763. image: {
  34764. source: "./media/characters/monty/front.svg",
  34765. extra: 1479/1209,
  34766. bottom: 0/1479
  34767. }
  34768. },
  34769. },
  34770. [
  34771. {
  34772. name: "Normal",
  34773. height: math.unit(4 + 11/12, "feet"),
  34774. default: true
  34775. },
  34776. ]
  34777. ))
  34778. characterMakers.push(() => makeCharacter(
  34779. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34780. {
  34781. front: {
  34782. height: math.unit(8 + 4/12, "feet"),
  34783. name: "Front",
  34784. image: {
  34785. source: "./media/characters/sterling/front.svg",
  34786. extra: 1420/1236,
  34787. bottom: 27/1447
  34788. }
  34789. },
  34790. },
  34791. [
  34792. {
  34793. name: "Normal",
  34794. height: math.unit(8 + 4/12, "feet"),
  34795. default: true
  34796. },
  34797. ]
  34798. ))
  34799. characterMakers.push(() => makeCharacter(
  34800. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34801. {
  34802. front: {
  34803. height: math.unit(15, "feet"),
  34804. name: "Front",
  34805. image: {
  34806. source: "./media/characters/marble/front.svg",
  34807. extra: 973/937,
  34808. bottom: 32/1005
  34809. }
  34810. },
  34811. },
  34812. [
  34813. {
  34814. name: "Normal",
  34815. height: math.unit(15, "feet"),
  34816. default: true
  34817. },
  34818. ]
  34819. ))
  34820. characterMakers.push(() => makeCharacter(
  34821. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34822. {
  34823. front: {
  34824. height: math.unit(3, "inches"),
  34825. name: "Front",
  34826. image: {
  34827. source: "./media/characters/powder/front.svg",
  34828. extra: 1504/1334,
  34829. bottom: 518/2022
  34830. }
  34831. },
  34832. },
  34833. [
  34834. {
  34835. name: "Normal",
  34836. height: math.unit(3, "inches"),
  34837. default: true
  34838. },
  34839. ]
  34840. ))
  34841. characterMakers.push(() => makeCharacter(
  34842. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34843. {
  34844. front: {
  34845. height: math.unit(4 + 5/12, "feet"),
  34846. name: "Front",
  34847. image: {
  34848. source: "./media/characters/joey-raccoon/front.svg",
  34849. extra: 1273/1197,
  34850. bottom: 0/1273
  34851. }
  34852. },
  34853. },
  34854. [
  34855. {
  34856. name: "Normal",
  34857. height: math.unit(4 + 5/12, "feet"),
  34858. default: true
  34859. },
  34860. ]
  34861. ))
  34862. characterMakers.push(() => makeCharacter(
  34863. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34864. {
  34865. front: {
  34866. height: math.unit(8 + 4/12, "feet"),
  34867. name: "Front",
  34868. image: {
  34869. source: "./media/characters/vick/front.svg",
  34870. extra: 2187/2118,
  34871. bottom: 47/2234
  34872. }
  34873. },
  34874. },
  34875. [
  34876. {
  34877. name: "Normal",
  34878. height: math.unit(8 + 4/12, "feet"),
  34879. default: true
  34880. },
  34881. ]
  34882. ))
  34883. characterMakers.push(() => makeCharacter(
  34884. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34885. {
  34886. front: {
  34887. height: math.unit(5 + 5/12, "feet"),
  34888. name: "Front",
  34889. image: {
  34890. source: "./media/characters/mitsy/front.svg",
  34891. extra: 1842/1695,
  34892. bottom: 0/1842
  34893. }
  34894. },
  34895. },
  34896. [
  34897. {
  34898. name: "Normal",
  34899. height: math.unit(5 + 5/12, "feet"),
  34900. default: true
  34901. },
  34902. ]
  34903. ))
  34904. characterMakers.push(() => makeCharacter(
  34905. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34906. {
  34907. front: {
  34908. height: math.unit(6 + 3/12, "feet"),
  34909. name: "Front",
  34910. image: {
  34911. source: "./media/characters/silvy/front.svg",
  34912. extra: 1995/1836,
  34913. bottom: 225/2220
  34914. }
  34915. },
  34916. },
  34917. [
  34918. {
  34919. name: "Normal",
  34920. height: math.unit(6 + 3/12, "feet"),
  34921. default: true
  34922. },
  34923. ]
  34924. ))
  34925. characterMakers.push(() => makeCharacter(
  34926. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34927. {
  34928. front: {
  34929. height: math.unit(3 + 8/12, "feet"),
  34930. name: "Front",
  34931. image: {
  34932. source: "./media/characters/rodney/front.svg",
  34933. extra: 1956/1747,
  34934. bottom: 31/1987
  34935. }
  34936. },
  34937. frontDressed: {
  34938. height: math.unit(2.9, "feet"),
  34939. name: "Front (Dressed)",
  34940. image: {
  34941. source: "./media/characters/rodney/front-dressed.svg",
  34942. extra: 1382/1241,
  34943. bottom: 385/1767
  34944. }
  34945. },
  34946. },
  34947. [
  34948. {
  34949. name: "Normal",
  34950. height: math.unit(3 + 8/12, "feet"),
  34951. default: true
  34952. },
  34953. ]
  34954. ))
  34955. characterMakers.push(() => makeCharacter(
  34956. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34957. {
  34958. front: {
  34959. height: math.unit(5 + 9/12, "feet"),
  34960. weight: math.unit(194, "lbs"),
  34961. name: "Front",
  34962. image: {
  34963. source: "./media/characters/zakail-sudekai/front.svg",
  34964. extra: 2696/2533,
  34965. bottom: 248/2944
  34966. }
  34967. },
  34968. maw: {
  34969. height: math.unit(1.35, "feet"),
  34970. name: "Maw",
  34971. image: {
  34972. source: "./media/characters/zakail-sudekai/maw.svg"
  34973. }
  34974. },
  34975. },
  34976. [
  34977. {
  34978. name: "Normal",
  34979. height: math.unit(5 + 9/12, "feet"),
  34980. default: true
  34981. },
  34982. ]
  34983. ))
  34984. characterMakers.push(() => makeCharacter(
  34985. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34986. {
  34987. front: {
  34988. height: math.unit(8 + 4/12, "feet"),
  34989. weight: math.unit(1200, "lb"),
  34990. name: "Front",
  34991. image: {
  34992. source: "./media/characters/eleanor/front.svg",
  34993. extra: 1226/1192,
  34994. bottom: 52/1278
  34995. }
  34996. },
  34997. back: {
  34998. height: math.unit(8 + 4/12, "feet"),
  34999. weight: math.unit(1200, "lb"),
  35000. name: "Back",
  35001. image: {
  35002. source: "./media/characters/eleanor/back.svg",
  35003. extra: 1242/1184,
  35004. bottom: 60/1302
  35005. }
  35006. },
  35007. head: {
  35008. height: math.unit(2.62, "feet"),
  35009. name: "Head",
  35010. image: {
  35011. source: "./media/characters/eleanor/head.svg"
  35012. }
  35013. },
  35014. },
  35015. [
  35016. {
  35017. name: "Normal",
  35018. height: math.unit(8 + 4/12, "feet"),
  35019. default: true
  35020. },
  35021. ]
  35022. ))
  35023. characterMakers.push(() => makeCharacter(
  35024. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35025. {
  35026. front: {
  35027. height: math.unit(8 + 4/12, "feet"),
  35028. weight: math.unit(750, "lb"),
  35029. name: "Front",
  35030. image: {
  35031. source: "./media/characters/tanya/front.svg",
  35032. extra: 1749/1615,
  35033. bottom: 33/1782
  35034. }
  35035. },
  35036. },
  35037. [
  35038. {
  35039. name: "Normal",
  35040. height: math.unit(8 + 4/12, "feet"),
  35041. default: true
  35042. },
  35043. ]
  35044. ))
  35045. characterMakers.push(() => makeCharacter(
  35046. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35047. {
  35048. front: {
  35049. height: math.unit(5, "feet"),
  35050. weight: math.unit(225, "lb"),
  35051. name: "Front",
  35052. image: {
  35053. source: "./media/characters/cindy/front.svg",
  35054. extra: 1320/1250,
  35055. bottom: 42/1362
  35056. }
  35057. },
  35058. frontDressed: {
  35059. height: math.unit(5, "feet"),
  35060. weight: math.unit(225, "lb"),
  35061. name: "Front (Dressed)",
  35062. image: {
  35063. source: "./media/characters/cindy/front-dressed.svg",
  35064. extra: 1320/1250,
  35065. bottom: 42/1362
  35066. }
  35067. },
  35068. back: {
  35069. height: math.unit(5, "feet"),
  35070. weight: math.unit(225, "lb"),
  35071. name: "Back",
  35072. image: {
  35073. source: "./media/characters/cindy/back.svg",
  35074. extra: 1384/1346,
  35075. bottom: 14/1398
  35076. }
  35077. },
  35078. },
  35079. [
  35080. {
  35081. name: "Normal",
  35082. height: math.unit(5, "feet"),
  35083. default: true
  35084. },
  35085. ]
  35086. ))
  35087. characterMakers.push(() => makeCharacter(
  35088. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35089. {
  35090. front: {
  35091. height: math.unit(6 + 9/12, "feet"),
  35092. weight: math.unit(440, "lb"),
  35093. name: "Front",
  35094. image: {
  35095. source: "./media/characters/wilbur-owen/front.svg",
  35096. extra: 1575/1448,
  35097. bottom: 72/1647
  35098. }
  35099. },
  35100. back: {
  35101. height: math.unit(6 + 9/12, "feet"),
  35102. weight: math.unit(440, "lb"),
  35103. name: "Back",
  35104. image: {
  35105. source: "./media/characters/wilbur-owen/back.svg",
  35106. extra: 1578/1445,
  35107. bottom: 36/1614
  35108. }
  35109. },
  35110. },
  35111. [
  35112. {
  35113. name: "Normal",
  35114. height: math.unit(6 + 9/12, "feet"),
  35115. default: true
  35116. },
  35117. ]
  35118. ))
  35119. characterMakers.push(() => makeCharacter(
  35120. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35121. {
  35122. front: {
  35123. height: math.unit(6 + 5/12, "feet"),
  35124. weight: math.unit(650, "lb"),
  35125. name: "Front",
  35126. image: {
  35127. source: "./media/characters/keegan/front.svg",
  35128. extra: 2387/2198,
  35129. bottom: 33/2420
  35130. }
  35131. },
  35132. side: {
  35133. height: math.unit(6 + 5/12, "feet"),
  35134. weight: math.unit(650, "lb"),
  35135. name: "Side",
  35136. image: {
  35137. source: "./media/characters/keegan/side.svg",
  35138. extra: 2390/2202,
  35139. bottom: 47/2437
  35140. }
  35141. },
  35142. back: {
  35143. height: math.unit(6 + 5/12, "feet"),
  35144. weight: math.unit(650, "lb"),
  35145. name: "Back",
  35146. image: {
  35147. source: "./media/characters/keegan/back.svg",
  35148. extra: 2418/2268,
  35149. bottom: 15/2433
  35150. }
  35151. },
  35152. frontSfw: {
  35153. height: math.unit(6 + 5/12, "feet"),
  35154. weight: math.unit(650, "lb"),
  35155. name: "Front (SFW)",
  35156. image: {
  35157. source: "./media/characters/keegan/front-sfw.svg",
  35158. extra: 2387/2198,
  35159. bottom: 33/2420
  35160. }
  35161. },
  35162. beans: {
  35163. height: math.unit(1.85, "feet"),
  35164. name: "Beans",
  35165. image: {
  35166. source: "./media/characters/keegan/beans.svg"
  35167. }
  35168. },
  35169. },
  35170. [
  35171. {
  35172. name: "Normal",
  35173. height: math.unit(6 + 5/12, "feet"),
  35174. default: true
  35175. },
  35176. ]
  35177. ))
  35178. characterMakers.push(() => makeCharacter(
  35179. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35180. {
  35181. front: {
  35182. height: math.unit(9, "feet"),
  35183. name: "Front",
  35184. image: {
  35185. source: "./media/characters/colton/front.svg",
  35186. extra: 1589/1326,
  35187. bottom: 139/1728
  35188. }
  35189. },
  35190. },
  35191. [
  35192. {
  35193. name: "Normal",
  35194. height: math.unit(9, "feet"),
  35195. default: true
  35196. },
  35197. ]
  35198. ))
  35199. characterMakers.push(() => makeCharacter(
  35200. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35201. {
  35202. front: {
  35203. height: math.unit(2 + 9/12, "feet"),
  35204. name: "Front",
  35205. image: {
  35206. source: "./media/characters/bora/front.svg",
  35207. extra: 1265/1250,
  35208. bottom: 24/1289
  35209. }
  35210. },
  35211. },
  35212. [
  35213. {
  35214. name: "Normal",
  35215. height: math.unit(2 + 9/12, "feet"),
  35216. default: true
  35217. },
  35218. ]
  35219. ))
  35220. characterMakers.push(() => makeCharacter(
  35221. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35222. {
  35223. front: {
  35224. height: math.unit(8, "feet"),
  35225. name: "Front",
  35226. image: {
  35227. source: "./media/characters/myu-myu/front.svg",
  35228. extra: 1949/1857,
  35229. bottom: 90/2039
  35230. }
  35231. },
  35232. },
  35233. [
  35234. {
  35235. name: "Normal",
  35236. height: math.unit(8, "feet"),
  35237. default: true
  35238. },
  35239. {
  35240. name: "Big",
  35241. height: math.unit(15, "feet")
  35242. },
  35243. {
  35244. name: "BIG",
  35245. height: math.unit(25, "feet")
  35246. },
  35247. ]
  35248. ))
  35249. characterMakers.push(() => makeCharacter(
  35250. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35251. {
  35252. side: {
  35253. height: math.unit(7 + 5/12, "feet"),
  35254. weight: math.unit(2800, "lb"),
  35255. name: "Side",
  35256. image: {
  35257. source: "./media/characters/haloren/side.svg",
  35258. extra: 1793/409,
  35259. bottom: 59/1852
  35260. }
  35261. },
  35262. frontPaw: {
  35263. height: math.unit(2.36, "feet"),
  35264. name: "Front paw",
  35265. image: {
  35266. source: "./media/characters/haloren/front-paw.svg"
  35267. }
  35268. },
  35269. hindPaw: {
  35270. height: math.unit(3.18, "feet"),
  35271. name: "Hind paw",
  35272. image: {
  35273. source: "./media/characters/haloren/hind-paw.svg"
  35274. }
  35275. },
  35276. maw: {
  35277. height: math.unit(5.05, "feet"),
  35278. name: "Maw",
  35279. image: {
  35280. source: "./media/characters/haloren/maw.svg"
  35281. }
  35282. },
  35283. dick: {
  35284. height: math.unit(2.90, "feet"),
  35285. name: "Dick",
  35286. image: {
  35287. source: "./media/characters/haloren/dick.svg"
  35288. }
  35289. },
  35290. },
  35291. [
  35292. {
  35293. name: "Normal",
  35294. height: math.unit(7 + 5/12, "feet"),
  35295. default: true
  35296. },
  35297. {
  35298. name: "Enhanced",
  35299. height: math.unit(14 + 3/12, "feet")
  35300. },
  35301. ]
  35302. ))
  35303. characterMakers.push(() => makeCharacter(
  35304. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35305. {
  35306. front: {
  35307. height: math.unit(171, "cm"),
  35308. name: "Front",
  35309. image: {
  35310. source: "./media/characters/kimmy/front.svg",
  35311. extra: 1491/1435,
  35312. bottom: 53/1544
  35313. }
  35314. },
  35315. },
  35316. [
  35317. {
  35318. name: "Small",
  35319. height: math.unit(9, "cm")
  35320. },
  35321. {
  35322. name: "Normal",
  35323. height: math.unit(171, "cm"),
  35324. default: true
  35325. },
  35326. ]
  35327. ))
  35328. characterMakers.push(() => makeCharacter(
  35329. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35330. {
  35331. front: {
  35332. height: math.unit(8, "feet"),
  35333. weight: math.unit(300, "lb"),
  35334. name: "Front",
  35335. image: {
  35336. source: "./media/characters/galeboomer/front.svg",
  35337. extra: 4651/4415,
  35338. bottom: 162/4813
  35339. }
  35340. },
  35341. back: {
  35342. height: math.unit(8, "feet"),
  35343. weight: math.unit(300, "lb"),
  35344. name: "Back",
  35345. image: {
  35346. source: "./media/characters/galeboomer/back.svg",
  35347. extra: 4544/4314,
  35348. bottom: 16/4560
  35349. }
  35350. },
  35351. frontAlt: {
  35352. height: math.unit(8, "feet"),
  35353. weight: math.unit(300, "lb"),
  35354. name: "Front (Alt)",
  35355. image: {
  35356. source: "./media/characters/galeboomer/front-alt.svg",
  35357. extra: 4458/4228,
  35358. bottom: 68/4526
  35359. }
  35360. },
  35361. maw: {
  35362. height: math.unit(1.2, "feet"),
  35363. name: "Maw",
  35364. image: {
  35365. source: "./media/characters/galeboomer/maw.svg"
  35366. }
  35367. },
  35368. },
  35369. [
  35370. {
  35371. name: "Normal",
  35372. height: math.unit(8, "feet"),
  35373. default: true
  35374. },
  35375. ]
  35376. ))
  35377. characterMakers.push(() => makeCharacter(
  35378. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35379. {
  35380. front: {
  35381. height: math.unit(5 + 9/12, "feet"),
  35382. weight: math.unit(120, "lb"),
  35383. name: "Front",
  35384. image: {
  35385. source: "./media/characters/chyr/front.svg",
  35386. extra: 1323/1254,
  35387. bottom: 63/1386
  35388. }
  35389. },
  35390. back: {
  35391. height: math.unit(5 + 9/12, "feet"),
  35392. weight: math.unit(120, "lb"),
  35393. name: "Back",
  35394. image: {
  35395. source: "./media/characters/chyr/back.svg",
  35396. extra: 1323/1252,
  35397. bottom: 48/1371
  35398. }
  35399. },
  35400. },
  35401. [
  35402. {
  35403. name: "Normal",
  35404. height: math.unit(5 + 9/12, "feet"),
  35405. default: true
  35406. },
  35407. ]
  35408. ))
  35409. characterMakers.push(() => makeCharacter(
  35410. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35411. {
  35412. front: {
  35413. height: math.unit(7, "feet"),
  35414. weight: math.unit(310, "lb"),
  35415. name: "Front",
  35416. image: {
  35417. source: "./media/characters/solarus/front.svg",
  35418. extra: 2415/2021,
  35419. bottom: 103/2518
  35420. }
  35421. },
  35422. back: {
  35423. height: math.unit(7, "feet"),
  35424. weight: math.unit(310, "lb"),
  35425. name: "Back",
  35426. image: {
  35427. source: "./media/characters/solarus/back.svg",
  35428. extra: 2463/2089,
  35429. bottom: 79/2542
  35430. }
  35431. },
  35432. },
  35433. [
  35434. {
  35435. name: "Normal",
  35436. height: math.unit(7, "feet"),
  35437. default: true
  35438. },
  35439. ]
  35440. ))
  35441. characterMakers.push(() => makeCharacter(
  35442. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35443. {
  35444. front: {
  35445. height: math.unit(16, "feet"),
  35446. name: "Front",
  35447. image: {
  35448. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35449. extra: 1844/1780,
  35450. bottom: 58/1902
  35451. }
  35452. },
  35453. },
  35454. [
  35455. {
  35456. name: "Normal",
  35457. height: math.unit(16, "feet"),
  35458. default: true
  35459. },
  35460. ]
  35461. ))
  35462. characterMakers.push(() => makeCharacter(
  35463. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35464. {
  35465. front: {
  35466. height: math.unit(11 + 6/12, "feet"),
  35467. weight: math.unit(1366, "lb"),
  35468. name: "Front",
  35469. image: {
  35470. source: "./media/characters/lexor/front.svg",
  35471. extra: 1560/1481,
  35472. bottom: 211/1771
  35473. }
  35474. },
  35475. back: {
  35476. height: math.unit(11 + 6/12, "feet"),
  35477. weight: math.unit(1366, "lb"),
  35478. name: "Back",
  35479. image: {
  35480. source: "./media/characters/lexor/back.svg",
  35481. extra: 1614/1533,
  35482. bottom: 76/1690
  35483. }
  35484. },
  35485. maw: {
  35486. height: math.unit(3, "feet"),
  35487. name: "Maw",
  35488. image: {
  35489. source: "./media/characters/lexor/maw.svg"
  35490. }
  35491. },
  35492. dick: {
  35493. height: math.unit(2.59, "feet"),
  35494. name: "Dick",
  35495. image: {
  35496. source: "./media/characters/lexor/dick.svg"
  35497. }
  35498. },
  35499. },
  35500. [
  35501. {
  35502. name: "Normal",
  35503. height: math.unit(11 + 6/12, "feet"),
  35504. default: true
  35505. },
  35506. ]
  35507. ))
  35508. characterMakers.push(() => makeCharacter(
  35509. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35510. {
  35511. front: {
  35512. height: math.unit(5 + 8/12, "feet"),
  35513. name: "Front",
  35514. image: {
  35515. source: "./media/characters/magnum/front.svg",
  35516. extra: 942/855,
  35517. bottom: 26/968
  35518. }
  35519. },
  35520. },
  35521. [
  35522. {
  35523. name: "Normal",
  35524. height: math.unit(5 + 8/12, "feet"),
  35525. default: true
  35526. },
  35527. ]
  35528. ))
  35529. characterMakers.push(() => makeCharacter(
  35530. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35531. {
  35532. front: {
  35533. height: math.unit(18 + 4/12, "feet"),
  35534. weight: math.unit(1500, "kg"),
  35535. name: "Front",
  35536. image: {
  35537. source: "./media/characters/solas-sharpsman/front.svg",
  35538. extra: 1698/1589,
  35539. bottom: 0/1698
  35540. }
  35541. },
  35542. },
  35543. [
  35544. {
  35545. name: "Normal",
  35546. height: math.unit(18 + 4/12, "feet"),
  35547. default: true
  35548. },
  35549. ]
  35550. ))
  35551. characterMakers.push(() => makeCharacter(
  35552. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35553. {
  35554. front: {
  35555. height: math.unit(5 + 5/12, "feet"),
  35556. weight: math.unit(180, "lb"),
  35557. name: "Front",
  35558. image: {
  35559. source: "./media/characters/october/front.svg",
  35560. extra: 1800/1650,
  35561. bottom: 0/1800
  35562. }
  35563. },
  35564. frontNsfw: {
  35565. height: math.unit(5 + 5/12, "feet"),
  35566. weight: math.unit(180, "lb"),
  35567. name: "Front (NSFW)",
  35568. image: {
  35569. source: "./media/characters/october/front-nsfw.svg",
  35570. extra: 1392/1307,
  35571. bottom: 42/1434
  35572. }
  35573. },
  35574. },
  35575. [
  35576. {
  35577. name: "Normal",
  35578. height: math.unit(5 + 5/12, "feet"),
  35579. default: true
  35580. },
  35581. ]
  35582. ))
  35583. characterMakers.push(() => makeCharacter(
  35584. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35585. {
  35586. front: {
  35587. height: math.unit(8 + 6/12, "feet"),
  35588. name: "Front",
  35589. image: {
  35590. source: "./media/characters/essynkardi/front.svg",
  35591. extra: 1914/1846,
  35592. bottom: 22/1936
  35593. }
  35594. },
  35595. },
  35596. [
  35597. {
  35598. name: "Normal",
  35599. height: math.unit(8 + 6/12, "feet"),
  35600. default: true
  35601. },
  35602. ]
  35603. ))
  35604. characterMakers.push(() => makeCharacter(
  35605. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35606. {
  35607. front: {
  35608. height: math.unit(6 + 6/12, "feet"),
  35609. weight: math.unit(7, "lb"),
  35610. name: "Front",
  35611. image: {
  35612. source: "./media/characters/icky/front.svg",
  35613. extra: 813/782,
  35614. bottom: 66/879
  35615. }
  35616. },
  35617. back: {
  35618. height: math.unit(6 + 6/12, "feet"),
  35619. weight: math.unit(7, "lb"),
  35620. name: "Back",
  35621. image: {
  35622. source: "./media/characters/icky/back.svg",
  35623. extra: 754/735,
  35624. bottom: 56/810
  35625. }
  35626. },
  35627. },
  35628. [
  35629. {
  35630. name: "Normal",
  35631. height: math.unit(6 + 6/12, "feet"),
  35632. default: true
  35633. },
  35634. ]
  35635. ))
  35636. characterMakers.push(() => makeCharacter(
  35637. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35638. {
  35639. front: {
  35640. height: math.unit(15, "feet"),
  35641. name: "Front",
  35642. image: {
  35643. source: "./media/characters/rojas/front.svg",
  35644. extra: 1462/1408,
  35645. bottom: 95/1557
  35646. }
  35647. },
  35648. back: {
  35649. height: math.unit(15, "feet"),
  35650. name: "Back",
  35651. image: {
  35652. source: "./media/characters/rojas/back.svg",
  35653. extra: 1023/954,
  35654. bottom: 28/1051
  35655. }
  35656. },
  35657. },
  35658. [
  35659. {
  35660. name: "Normal",
  35661. height: math.unit(15, "feet"),
  35662. default: true
  35663. },
  35664. ]
  35665. ))
  35666. characterMakers.push(() => makeCharacter(
  35667. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35668. {
  35669. frontHuman: {
  35670. height: math.unit(5 + 7/12, "feet"),
  35671. name: "Front (Human)",
  35672. image: {
  35673. source: "./media/characters/alek-dryagan/front-human.svg",
  35674. extra: 1687/1667,
  35675. bottom: 69/1756
  35676. }
  35677. },
  35678. backHuman: {
  35679. height: math.unit(5 + 7/12, "feet"),
  35680. name: "Back (Human)",
  35681. image: {
  35682. source: "./media/characters/alek-dryagan/back-human.svg",
  35683. extra: 1670/1649,
  35684. bottom: 65/1735
  35685. }
  35686. },
  35687. frontDemi: {
  35688. height: math.unit(65, "feet"),
  35689. name: "Front (Demi)",
  35690. image: {
  35691. source: "./media/characters/alek-dryagan/front-demi.svg",
  35692. extra: 1669/1642,
  35693. bottom: 49/1718
  35694. }
  35695. },
  35696. backDemi: {
  35697. height: math.unit(65, "feet"),
  35698. name: "Back (Demi)",
  35699. image: {
  35700. source: "./media/characters/alek-dryagan/back-demi.svg",
  35701. extra: 1658/1637,
  35702. bottom: 40/1698
  35703. }
  35704. },
  35705. mawHuman: {
  35706. height: math.unit(0.3, "feet"),
  35707. name: "Maw (Human)",
  35708. image: {
  35709. source: "./media/characters/alek-dryagan/maw-human.svg"
  35710. }
  35711. },
  35712. mawDemi: {
  35713. height: math.unit(3.8, "feet"),
  35714. name: "Maw (Demi)",
  35715. image: {
  35716. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35717. }
  35718. },
  35719. },
  35720. [
  35721. {
  35722. name: "Normal",
  35723. height: math.unit(5 + 7/12, "feet"),
  35724. default: true
  35725. },
  35726. ]
  35727. ))
  35728. characterMakers.push(() => makeCharacter(
  35729. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35730. {
  35731. frontHuman: {
  35732. height: math.unit(5 + 2/12, "feet"),
  35733. name: "Front (Human)",
  35734. image: {
  35735. source: "./media/characters/gen/front-human.svg",
  35736. extra: 1627/1538,
  35737. bottom: 71/1698
  35738. }
  35739. },
  35740. backHuman: {
  35741. height: math.unit(5 + 2/12, "feet"),
  35742. name: "Back (Human)",
  35743. image: {
  35744. source: "./media/characters/gen/back-human.svg",
  35745. extra: 1638/1548,
  35746. bottom: 69/1707
  35747. }
  35748. },
  35749. frontDemi: {
  35750. height: math.unit(5 + 2/12, "feet"),
  35751. name: "Front (Demi)",
  35752. image: {
  35753. source: "./media/characters/gen/front-demi.svg",
  35754. extra: 1627/1538,
  35755. bottom: 71/1698
  35756. }
  35757. },
  35758. backDemi: {
  35759. height: math.unit(5 + 2/12, "feet"),
  35760. name: "Back (Demi)",
  35761. image: {
  35762. source: "./media/characters/gen/back-demi.svg",
  35763. extra: 1638/1548,
  35764. bottom: 69/1707
  35765. }
  35766. },
  35767. },
  35768. [
  35769. {
  35770. name: "Normal",
  35771. height: math.unit(5 + 2/12, "feet"),
  35772. default: true
  35773. },
  35774. ]
  35775. ))
  35776. characterMakers.push(() => makeCharacter(
  35777. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35778. {
  35779. frontImp: {
  35780. height: math.unit(1 + 11/12, "feet"),
  35781. name: "Front (Imp)",
  35782. image: {
  35783. source: "./media/characters/max-kobold/front-imp.svg",
  35784. extra: 1238/1134,
  35785. bottom: 81/1319
  35786. }
  35787. },
  35788. backImp: {
  35789. height: math.unit(1 + 11/12, "feet"),
  35790. name: "Back (Imp)",
  35791. image: {
  35792. source: "./media/characters/max-kobold/back-imp.svg",
  35793. extra: 1334/1175,
  35794. bottom: 34/1368
  35795. }
  35796. },
  35797. frontDemi: {
  35798. height: math.unit(5 + 9/12, "feet"),
  35799. name: "Front (Demi)",
  35800. image: {
  35801. source: "./media/characters/max-kobold/front-demi.svg",
  35802. extra: 1715/1685,
  35803. bottom: 54/1769
  35804. }
  35805. },
  35806. backDemi: {
  35807. height: math.unit(5 + 9/12, "feet"),
  35808. name: "Back (Demi)",
  35809. image: {
  35810. source: "./media/characters/max-kobold/back-demi.svg",
  35811. extra: 1752/1729,
  35812. bottom: 41/1793
  35813. }
  35814. },
  35815. handImp: {
  35816. height: math.unit(0.45, "feet"),
  35817. name: "Hand (Imp)",
  35818. image: {
  35819. source: "./media/characters/max-kobold/hand.svg"
  35820. }
  35821. },
  35822. pawImp: {
  35823. height: math.unit(0.46, "feet"),
  35824. name: "Paw (Imp)",
  35825. image: {
  35826. source: "./media/characters/max-kobold/paw.svg"
  35827. }
  35828. },
  35829. handDemi: {
  35830. height: math.unit(0.80, "feet"),
  35831. name: "Hand (Demi)",
  35832. image: {
  35833. source: "./media/characters/max-kobold/hand.svg"
  35834. }
  35835. },
  35836. pawDemi: {
  35837. height: math.unit(1.1, "feet"),
  35838. name: "Paw (Demi)",
  35839. image: {
  35840. source: "./media/characters/max-kobold/paw.svg"
  35841. }
  35842. },
  35843. headImp: {
  35844. height: math.unit(1.33, "feet"),
  35845. name: "Head (Imp)",
  35846. image: {
  35847. source: "./media/characters/max-kobold/head-imp.svg"
  35848. }
  35849. },
  35850. mawImp: {
  35851. height: math.unit(0.75, "feet"),
  35852. name: "Maw (Imp)",
  35853. image: {
  35854. source: "./media/characters/max-kobold/maw-imp.svg"
  35855. }
  35856. },
  35857. mawDemi: {
  35858. height: math.unit(0.42, "feet"),
  35859. name: "Maw (Demi)",
  35860. image: {
  35861. source: "./media/characters/max-kobold/maw-demi.svg"
  35862. }
  35863. },
  35864. },
  35865. [
  35866. {
  35867. name: "Normal",
  35868. height: math.unit(1 + 11/12, "feet"),
  35869. default: true
  35870. },
  35871. ]
  35872. ))
  35873. characterMakers.push(() => makeCharacter(
  35874. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35875. {
  35876. front: {
  35877. height: math.unit(7 + 5/12, "feet"),
  35878. name: "Front",
  35879. image: {
  35880. source: "./media/characters/carbon/front.svg",
  35881. extra: 1754/1689,
  35882. bottom: 65/1819
  35883. }
  35884. },
  35885. back: {
  35886. height: math.unit(7 + 5/12, "feet"),
  35887. name: "Back",
  35888. image: {
  35889. source: "./media/characters/carbon/back.svg",
  35890. extra: 1762/1695,
  35891. bottom: 24/1786
  35892. }
  35893. },
  35894. frontGigantamax: {
  35895. height: math.unit(150, "feet"),
  35896. name: "Front (Gigantamax)",
  35897. image: {
  35898. source: "./media/characters/carbon/front-gigantamax.svg",
  35899. extra: 1826/1669,
  35900. bottom: 59/1885
  35901. }
  35902. },
  35903. backGigantamax: {
  35904. height: math.unit(150, "feet"),
  35905. name: "Back (Gigantamax)",
  35906. image: {
  35907. source: "./media/characters/carbon/back-gigantamax.svg",
  35908. extra: 1796/1653,
  35909. bottom: 53/1849
  35910. }
  35911. },
  35912. maw: {
  35913. height: math.unit(0.48, "feet"),
  35914. name: "Maw",
  35915. image: {
  35916. source: "./media/characters/carbon/maw.svg"
  35917. }
  35918. },
  35919. mawGigantamax: {
  35920. height: math.unit(7.5, "feet"),
  35921. name: "Maw (Gigantamax)",
  35922. image: {
  35923. source: "./media/characters/carbon/maw-gigantamax.svg"
  35924. }
  35925. },
  35926. },
  35927. [
  35928. {
  35929. name: "Normal",
  35930. height: math.unit(7 + 5/12, "feet"),
  35931. default: true
  35932. },
  35933. ]
  35934. ))
  35935. characterMakers.push(() => makeCharacter(
  35936. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  35937. {
  35938. front: {
  35939. height: math.unit(6, "feet"),
  35940. name: "Front",
  35941. image: {
  35942. source: "./media/characters/maverick/front.svg",
  35943. extra: 1672/1661,
  35944. bottom: 85/1757
  35945. }
  35946. },
  35947. back: {
  35948. height: math.unit(6, "feet"),
  35949. name: "Back",
  35950. image: {
  35951. source: "./media/characters/maverick/back.svg",
  35952. extra: 1642/1631,
  35953. bottom: 38/1680
  35954. }
  35955. },
  35956. },
  35957. [
  35958. {
  35959. name: "Normal",
  35960. height: math.unit(6, "feet"),
  35961. default: true
  35962. },
  35963. ]
  35964. ))
  35965. characterMakers.push(() => makeCharacter(
  35966. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  35967. {
  35968. front: {
  35969. height: math.unit(15, "feet"),
  35970. weight: math.unit(615, "lb"),
  35971. name: "Front",
  35972. image: {
  35973. source: "./media/characters/grockle/front.svg",
  35974. extra: 1535/1427,
  35975. bottom: 56/1591
  35976. }
  35977. },
  35978. },
  35979. [
  35980. {
  35981. name: "Normal",
  35982. height: math.unit(15, "feet"),
  35983. default: true
  35984. },
  35985. {
  35986. name: "Large",
  35987. height: math.unit(150, "feet")
  35988. },
  35989. {
  35990. name: "Macro",
  35991. height: math.unit(1876, "feet")
  35992. },
  35993. {
  35994. name: "Mega Macro",
  35995. height: math.unit(121940, "feet")
  35996. },
  35997. {
  35998. name: "Giga Macro",
  35999. height: math.unit(750, "km")
  36000. },
  36001. {
  36002. name: "Tera Macro",
  36003. height: math.unit(750000, "km")
  36004. },
  36005. {
  36006. name: "Galactic",
  36007. height: math.unit(1.4e5, "km")
  36008. },
  36009. {
  36010. name: "Godlike",
  36011. height: math.unit(9.8e280, "galaxies")
  36012. },
  36013. ]
  36014. ))
  36015. characterMakers.push(() => makeCharacter(
  36016. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36017. {
  36018. front: {
  36019. height: math.unit(11, "meters"),
  36020. weight: math.unit(20, "tonnes"),
  36021. name: "Front",
  36022. image: {
  36023. source: "./media/characters/alistair/front.svg",
  36024. extra: 1265/1009,
  36025. bottom: 93/1358
  36026. }
  36027. },
  36028. },
  36029. [
  36030. {
  36031. name: "Normal",
  36032. height: math.unit(11, "meters"),
  36033. default: true
  36034. },
  36035. ]
  36036. ))
  36037. characterMakers.push(() => makeCharacter(
  36038. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36039. {
  36040. front: {
  36041. height: math.unit(5 + 8/12, "feet"),
  36042. name: "Front",
  36043. image: {
  36044. source: "./media/characters/haruka/front.svg",
  36045. extra: 2012/1952,
  36046. bottom: 0/2012
  36047. }
  36048. },
  36049. },
  36050. [
  36051. {
  36052. name: "Normal",
  36053. height: math.unit(5 + 8/12, "feet"),
  36054. default: true
  36055. },
  36056. ]
  36057. ))
  36058. characterMakers.push(() => makeCharacter(
  36059. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36060. {
  36061. back: {
  36062. height: math.unit(9, "feet"),
  36063. name: "Back",
  36064. image: {
  36065. source: "./media/characters/vivian-sylveon/back.svg",
  36066. extra: 1853/1714,
  36067. bottom: 0/1853
  36068. }
  36069. },
  36070. },
  36071. [
  36072. {
  36073. name: "Normal",
  36074. height: math.unit(9, "feet"),
  36075. default: true
  36076. },
  36077. {
  36078. name: "Macro",
  36079. height: math.unit(500, "feet")
  36080. },
  36081. {
  36082. name: "Megamacro",
  36083. height: math.unit(600, "miles")
  36084. },
  36085. {
  36086. name: "Gigamacro",
  36087. height: math.unit(30000, "miles")
  36088. },
  36089. ]
  36090. ))
  36091. characterMakers.push(() => makeCharacter(
  36092. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36093. {
  36094. anthro: {
  36095. height: math.unit(5 + 10/12, "feet"),
  36096. weight: math.unit(100, "lb"),
  36097. name: "Anthro",
  36098. image: {
  36099. source: "./media/characters/daiki/anthro.svg",
  36100. extra: 1115/1027,
  36101. bottom: 69/1184
  36102. }
  36103. },
  36104. feral: {
  36105. height: math.unit(200, "feet"),
  36106. name: "Feral",
  36107. image: {
  36108. source: "./media/characters/daiki/feral.svg",
  36109. extra: 1256/313,
  36110. bottom: 39/1295
  36111. }
  36112. },
  36113. feralHead: {
  36114. height: math.unit(171, "feet"),
  36115. name: "Feral Head",
  36116. image: {
  36117. source: "./media/characters/daiki/feral-head.svg"
  36118. }
  36119. },
  36120. },
  36121. [
  36122. {
  36123. name: "Normal",
  36124. height: math.unit(5 + 10/12, "feet"),
  36125. default: true
  36126. },
  36127. ]
  36128. ))
  36129. characterMakers.push(() => makeCharacter(
  36130. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36131. {
  36132. fullyEquippedFront: {
  36133. height: math.unit(3 + 1/12, "feet"),
  36134. weight: math.unit(24, "lb"),
  36135. name: "Fully Equipped (Front)",
  36136. image: {
  36137. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36138. extra: 687/605,
  36139. bottom: 18/705
  36140. }
  36141. },
  36142. fullyEquippedBack: {
  36143. height: math.unit(3 + 1/12, "feet"),
  36144. weight: math.unit(24, "lb"),
  36145. name: "Fully Equipped (Back)",
  36146. image: {
  36147. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36148. extra: 689/590,
  36149. bottom: 18/707
  36150. }
  36151. },
  36152. dailyWear: {
  36153. height: math.unit(3 + 1/12, "feet"),
  36154. weight: math.unit(24, "lb"),
  36155. name: "Daily Wear",
  36156. image: {
  36157. source: "./media/characters/tea-spot/daily-wear.svg",
  36158. extra: 701/620,
  36159. bottom: 21/722
  36160. }
  36161. },
  36162. maidWork: {
  36163. height: math.unit(3 + 1/12, "feet"),
  36164. weight: math.unit(24, "lb"),
  36165. name: "Maid Work",
  36166. image: {
  36167. source: "./media/characters/tea-spot/maid-work.svg",
  36168. extra: 693/609,
  36169. bottom: 15/708
  36170. }
  36171. },
  36172. },
  36173. [
  36174. {
  36175. name: "Normal",
  36176. height: math.unit(3 + 1/12, "feet"),
  36177. default: true
  36178. },
  36179. ]
  36180. ))
  36181. characterMakers.push(() => makeCharacter(
  36182. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36183. {
  36184. front: {
  36185. height: math.unit(175, "cm"),
  36186. weight: math.unit(75, "kg"),
  36187. name: "Front",
  36188. image: {
  36189. source: "./media/characters/chee/front.svg",
  36190. extra: 1796/1740,
  36191. bottom: 40/1836
  36192. }
  36193. },
  36194. },
  36195. [
  36196. {
  36197. name: "Micro-Micro",
  36198. height: math.unit(1, "nm")
  36199. },
  36200. {
  36201. name: "Micro-erst",
  36202. height: math.unit(1, "micrometer")
  36203. },
  36204. {
  36205. name: "Micro-er",
  36206. height: math.unit(1, "cm")
  36207. },
  36208. {
  36209. name: "Normal",
  36210. height: math.unit(175, "cm"),
  36211. default: true
  36212. },
  36213. {
  36214. name: "Macro",
  36215. height: math.unit(100, "m")
  36216. },
  36217. {
  36218. name: "Macro-er",
  36219. height: math.unit(1, "km")
  36220. },
  36221. {
  36222. name: "Macro-erst",
  36223. height: math.unit(10, "km")
  36224. },
  36225. {
  36226. name: "Macro-Macro",
  36227. height: math.unit(100, "km")
  36228. },
  36229. ]
  36230. ))
  36231. characterMakers.push(() => makeCharacter(
  36232. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36233. {
  36234. front: {
  36235. height: math.unit(11 + 9/12, "feet"),
  36236. weight: math.unit(935, "lb"),
  36237. name: "Front",
  36238. image: {
  36239. source: "./media/characters/kingsley/front.svg",
  36240. extra: 1803/1674,
  36241. bottom: 127/1930
  36242. }
  36243. },
  36244. },
  36245. [
  36246. {
  36247. name: "Normal",
  36248. height: math.unit(11 + 9/12, "feet"),
  36249. default: true
  36250. },
  36251. ]
  36252. ))
  36253. //characters
  36254. function makeCharacters() {
  36255. const results = [];
  36256. characterMakers.forEach(character => {
  36257. results.push(character());
  36258. });
  36259. return results;
  36260. }